Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 5086f06

Browse files
committedNov 6, 2023
release: v5.0.0-beta.1
1 parent f16e18c commit 5086f06

File tree

18 files changed

+20
-20
lines changed

18 files changed

+20
-20
lines changed
 

‎README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747
Several quick start options are available:
4848

49-
- [Download the latest release](https://github.com/coreui/coreui-vue/archive/v5.0.0-beta.0.zip)
49+
- [Download the latest release](https://github.com/coreui/coreui-vue/archive/v5.0.0-beta.1.zip)
5050
- Clone the repo: `git clone https://github.com/coreui/coreui-vue.git`
5151
- Install with [npm](https://www.npmjs.com/): `npm install @coreui/vue`
5252
- Install with [yarn](https://yarnpkg.com/): `yarn add @coreui/vue`

‎lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"npmClient": "yarn",
33
"packages": ["packages/*"],
4-
"version": "5.0.0-beta.0",
4+
"version": "5.0.0-beta.1",
55
"$schema": "node_modules/lerna/schemas/lerna-schema.json"
66
}

‎packages/coreui-vue/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coreui/vue",
3-
"version": "5.0.0-beta.0",
3+
"version": "5.0.0-beta.1",
44
"description": "UI Components Library for Vue.js",
55
"keywords": [
66
"vue",

‎packages/coreui-vue/src/components/conditional-teleport/CConditionalTeleport.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const CConditionalTeleport = defineComponent({
1616
/**
1717
* An HTML element or function that returns a single element, with `document.body` as the default.
1818
*
19-
* @since v5.0.0-beta.0
19+
* @since v5.0.0-beta.1
2020
*/
2121
container: {
2222
type: [Object, String] as PropType<

‎packages/coreui-vue/src/components/dropdown/CDropdown.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ const CDropdown = defineComponent({
6262
/**
6363
* Appends the vue dropdown menu to a specific element. You can pass an HTML element or function that returns a single element. By default `document.body`.
6464
*
65-
* @since v5.0.0-beta.0
65+
* @since v5.0.0-beta.1
6666
*/
6767
container: {
6868
type: [Object, String] as PropType<
@@ -117,7 +117,7 @@ const CDropdown = defineComponent({
117117
/**
118118
* Generates dropdown menu using Teleport.
119119
*
120-
* @since v5.0.0-beta.0
120+
* @since v5.0.0-beta.1
121121
*/
122122
teleport: {
123123
type: Boolean,

‎packages/coreui-vue/src/components/dropdown/CDropdownToggle.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const CDropdownToggle = defineComponent({
4949
/**
5050
* If a dropdown `variant` is set to `nav-item` then render the toggler as a link instead of a button.
5151
*
52-
* @since v5.0.0-beta.0
52+
* @since v5.0.0-beta.1
5353
*/
5454
navLink: {
5555
type: Boolean,

‎packages/coreui-vue/src/components/modal/CModal.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ const CModal = defineComponent({
5454
/**
5555
* Puts the focus on the modal when shown.
5656
*
57-
* @since v5.0.0-beta.0
57+
* @since v5.0.0-beta.1
5858
*/
5959
focus: {
6060
type: Boolean,

‎packages/coreui-vue/src/components/popover/CPopover.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const CPopover = defineComponent({
2323
/**
2424
* Appends the vue popover to a specific element. You can pass an HTML element or function that returns a single element. By default `document.body`.
2525
*
26-
* @since v5.0.0-beta.0
26+
* @since v5.0.0-beta.1
2727
*/
2828
container: {
2929
type: [Object, String] as PropType<HTMLElement | (() => HTMLElement) | string>,

‎packages/coreui-vue/src/components/progress/CProgress.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const CProgress = defineComponent({
2323
/**
2424
* A string of all className you want applied to the <CProgressBar/> component.
2525
*
26-
* @since 5.0.0-beta.0
26+
* @since 5.0.0-beta.1
2727
*/
2828
progressBarClassName: String,
2929
/**

‎packages/coreui-vue/src/components/tooltip/CTooltip.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const CTooltip = defineComponent({
2323
/**
2424
* Appends the vue tooltip to a specific element. You can pass an HTML element or function that returns a single element. By default `document.body`.
2525
*
26-
* @since v5.0.0-beta.0
26+
* @since v5.0.0-beta.1
2727
*/
2828
container: {
2929
type: [Object, String] as PropType<

‎packages/docs/api/conditional-teleport/CConditionalTeleport.api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ import CConditionalTeleport from '@coreui/vue/src/components/conditional-telepor
1010

1111
| Prop name | Description | Type | Values | Default |
1212
| -------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | -------------------------------------------- | ------ | ------- |
13-
| **container** <br><div class="badge bg-primary">v5.0.0-beta.0+</div> | An HTML element or function that returns a single element, with `document.body` as the default. | HTMLElement \| (() => HTMLElement) \| string | - | 'body' |
13+
| **container** <br><div class="badge bg-primary">v5.0.0-beta.1+</div> | An HTML element or function that returns a single element, with `document.body` as the default. | HTMLElement \| (() => HTMLElement) \| string | - | 'body' |
1414
| **teleport** | Render some children into a different part of the DOM | boolean | - | true |

‎packages/docs/api/dropdown/CDropdown.api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ import CDropdown from '@coreui/vue/src/components/dropdown/CDropdown'
1212
| -------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------- |
1313
| **alignment** | Set aligment of dropdown menu. | string \| Alignments | `{ 'start' \| 'end' \| { xs: 'start' \| 'end' } \| { sm: 'start' \| 'end' } \| { md: 'start' \| 'end' } \| { lg: 'start' \| 'end' } \| { xl: 'start' \| 'end'} \| { xxl: 'start' \| 'end'} }` | - |
1414
| **auto-close** | Configure the auto close behavior of the dropdown:<br>- `true` - the dropdown will be closed by clicking outside or inside the dropdown menu.<br>- `false` - the dropdown will be closed by clicking the toggle button and manually calling hide or toggle method. (Also will not be closed by pressing esc key)<br>- `'inside'` - the dropdown will be closed (only) by clicking inside the dropdown menu.<br>- `'outside'` - the dropdown will be closed (only) by clicking outside the dropdown menu. | boolean\|string | - | true |
15-
| **container** <br><div class="badge bg-primary">v5.0.0-beta.0+</div> | Appends the vue dropdown menu to a specific element. You can pass an HTML element or function that returns a single element. By default `document.body`. | HTMLElement \| (() => HTMLElement) \| string | - | 'body' |
15+
| **container** <br><div class="badge bg-primary">v5.0.0-beta.1+</div> | Appends the vue dropdown menu to a specific element. You can pass an HTML element or function that returns a single element. By default `document.body`. | HTMLElement \| (() => HTMLElement) \| string | - | 'body' |
1616
| **dark** | Sets a darker color scheme to match a dark navbar. | boolean | - | - |
1717
| **direction** | Sets a specified direction and location of the dropdown menu. | string | `'center'`, `'dropup'`, `'dropup-center'`, `'dropend'`, `'dropstart'` | - |
1818
| **disabled** | Toggle the disabled state for the component. | boolean | - | - |
1919
| **offset** <br><div class="badge bg-primary">4.9.0+</div> | Offset of the dropdown menu relative to its target. | array | - | [0, 2] |
2020
| **placement** | Describes the placement of your component after Popper.js has applied all the modifiers that may have flipped or altered the originally provided placement property. | Placement | `'auto'`, `'top-end'`, `'top'`, `'top-start'`, `'bottom-end'`, `'bottom'`, `'bottom-start'`, `'right-start'`, `'right'`, `'right-end'`, `'left-start'`, `'left'`, `'left-end'` | 'bottom-start' |
2121
| **popper** | If you want to disable dynamic positioning set this property to `true`. | boolean | - | true |
22-
| **teleport** <br><div class="badge bg-primary">v5.0.0-beta.0+</div> | Generates dropdown menu using Teleport. | boolean | - | false |
22+
| **teleport** <br><div class="badge bg-primary">v5.0.0-beta.1+</div> | Generates dropdown menu using Teleport. | boolean | - | false |
2323
| **trigger** | Sets which event handlers you’d like provided to your toggle prop. You can specify one trigger or an array of them. | Triggers | - | 'click' |
2424
| **variant** | Set the dropdown variant to an btn-group, dropdown, input-group, and nav-item. | string | `'btn-group'`, `'dropdown'`, `'input-group'`, `'nav-item'` | 'btn-group' |
2525
| **visible** | Toggle the visibility of dropdown menu component. | boolean | - | - |

‎packages/docs/api/dropdown/CDropdownToggle.api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import CDropdownToggle from '@coreui/vue/src/components/dropdown/CDropdownToggle
1515
| **component** | Component used for the root node. Either a string to use a HTML element or a component. | string | - | 'button' |
1616
| **custom** | Create a custom toggler which accepts any content. | boolean | - | - |
1717
| **disabled** | Toggle the disabled state for the component. | boolean | - | - |
18-
| **nav-link** <br><div class="badge bg-primary">v5.0.0-beta.0+</div> | If a dropdown `variant` is set to `nav-item` then render the toggler as a link instead of a button. | boolean | - | true |
18+
| **nav-link** <br><div class="badge bg-primary">v5.0.0-beta.1+</div> | If a dropdown `variant` is set to `nav-item` then render the toggler as a link instead of a button. | boolean | - | true |
1919
| **size** | Size the component small or large. | string | `'sm'`, `'lg'` | - |
2020
| **split** | Similarly, create split button dropdowns with virtually the same markup as single button dropdowns, but with the addition of `.dropdown-toggle-split` className for proper spacing around the dropdown caret. | boolean | - | - |
2121
| **trigger** | Sets which event handlers you’d like provided to your toggle prop. You can specify one trigger or an array of them.<br/>`@type` 'hover' \| 'focus' \| 'click' | Triggers | - | 'click' |

‎packages/docs/api/modal/CModal.api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import CModal from '@coreui/vue/src/components/modal/CModal'
1313
| **alignment** | Align the modal in the center or top of the screen. | string | `'top'`, `'center'` | 'top' |
1414
| **backdrop** | Apply a backdrop on body while offcanvas is open. | boolean\|string | `boolean \| 'static'` | true |
1515
| **content-class-name** | A string of all className you want applied to the modal content component. | string | - | - |
16-
| **focus** <br><div class="badge bg-primary">v5.0.0-beta.0+</div> | Puts the focus on the modal when shown. | boolean | - | true |
16+
| **focus** <br><div class="badge bg-primary">v5.0.0-beta.1+</div> | Puts the focus on the modal when shown. | boolean | - | true |
1717
| **fullscreen** | Set modal to covers the entire user viewport | boolean\|string | `boolean`, `'sm'`, `'md'`, `'lg'`, `'xl'`, `'xxl'` | - |
1818
| **keyboard** | Closes the modal when escape key is pressed. | boolean | - | true |
1919
| **scrollable** | Create a scrollable modal that allows scrolling the modal body. | boolean | - | - |

‎packages/docs/api/popover/CPopover.api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import CPopover from '@coreui/vue/src/components/popover/CPopover'
1111
| Prop name | Description | Type | Values | Default |
1212
| ---------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------- | ------------------------------- | ---------------------------------------- |
1313
| **animation** <br><div class="badge bg-primary">4.9.0+</div> | Apply a CSS fade transition to the popover. | boolean | - | true |
14-
| **container** <br><div class="badge bg-primary">v5.0.0-beta.0+</div> | Appends the vue popover to a specific element. You can pass an HTML element or function that returns a single element. By default `document.body`. | HTMLElement \| (() => HTMLElement) \| string | - | 'body' |
14+
| **container** <br><div class="badge bg-primary">v5.0.0-beta.1+</div> | Appends the vue popover to a specific element. You can pass an HTML element or function that returns a single element. By default `document.body`. | HTMLElement \| (() => HTMLElement) \| string | - | 'body' |
1515
| **content** | Content for your component. If you want to pass non-string value please use dedicated slot `<template #content>...</template>` | string | - | - |
1616
| **delay** <br><div class="badge bg-primary">4.9.0+</div> | The delay for displaying and hiding the popover (in milliseconds). When a numerical value is provided, the delay applies to both the hide and show actions. The object structure for specifying the delay is as follows: delay: `{ 'show': 500, 'hide': 100 }`. | number \| { show: number; hide: number } | - | 0 |
1717
| **fallback-placements** <br><div class="badge bg-primary">4.9.0+</div> | Specify the desired order of fallback placements by providing a list of placements as an array. The placements should be prioritized based on preference. | Placements \| Placements[] | - | () => ['top', 'right', 'bottom', 'left'] |

‎packages/docs/api/progress/CProgress.api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import CProgress from '@coreui/vue/src/components/progress/CProgress'
1313
| **animated** | Use to animate the stripes right to left via CSS3 animations. | boolean | - | - |
1414
| **color** | Sets the color context of the component to one of CoreUI’s themed colors. | string | `'primary'`, `'secondary'`, `'success'`, `'danger'`, `'warning'`, `'info'`, `'dark'`, `'light'` | - |
1515
| **height** | Sets the height of the component. If you set that value the inner `<CProgressBar>` will automatically resize accordingly. | number | - | - |
16-
| **progress-bar-class-name** <br><div class="badge bg-primary">5.0.0-beta.0+</div> | A string of all className you want applied to the <CProgressBar/> component. | string | - | - |
16+
| **progress-bar-class-name** <br><div class="badge bg-primary">5.0.0-beta.1+</div> | A string of all className you want applied to the <CProgressBar/> component. | string | - | - |
1717
| **thin** | Makes progress bar thinner. | boolean | - | - |
1818
| **value** | The percent to progress the ProgressBar. | number | - | 0 |
1919
| **variant** | Set the progress bar variant to optional striped. | string | `'striped'` | - |

‎packages/docs/api/tooltip/CTooltip.api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import CTooltip from '@coreui/vue/src/components/tooltip/CTooltip'
1111
| Prop name | Description | Type | Values | Default |
1212
| ---------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------- | ------------------------------- | ---------------------------------------- |
1313
| **animation** <br><div class="badge bg-primary">4.9.0+</div> | Apply a CSS fade transition to the tooltip. | boolean | - | true |
14-
| **container** <br><div class="badge bg-primary">v5.0.0-beta.0+</div> | Appends the vue tooltip to a specific element. You can pass an HTML element or function that returns a single element. By default `document.body`. | HTMLElement \| (() => HTMLElement) \| string | - | 'body' |
14+
| **container** <br><div class="badge bg-primary">v5.0.0-beta.1+</div> | Appends the vue tooltip to a specific element. You can pass an HTML element or function that returns a single element. By default `document.body`. | HTMLElement \| (() => HTMLElement) \| string | - | 'body' |
1515
| **content** | Content for your component. If you want to pass non-string value please use dedicated slot `<template #content>...</template>` | string | - | - |
1616
| **delay** <br><div class="badge bg-primary">4.9.0+</div> | The delay for displaying and hiding the popover (in milliseconds). When a numerical value is provided, the delay applies to both the hide and show actions. The object structure for specifying the delay is as follows: delay: `{ 'show': 500, 'hide': 100 }`. | number \| { show: number; hide: number } | - | 0 |
1717
| **fallback-placements** <br><div class="badge bg-primary">4.9.0+</div> | Specify the desired order of fallback placements by providing a list of placements as an array. The placements should be prioritized based on preference. | Placements \| Placements[] | - | () => ['top', 'right', 'bottom', 'left'] |

‎packages/docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coreui/vue-docs",
3-
"version": "5.0.0-beta.0",
3+
"version": "5.0.0-beta.1",
44
"scripts": {
55
"api": "vue-docgen -c build/docgen.config.js",
66
"dev": "vuepress dev --clean-cache",

0 commit comments

Comments
 (0)
Please sign in to comment.