Skip to content

Commit ab47d01

Browse files
committed
release: v5.0.0-beta.0
1 parent 7ec652b commit ab47d01

File tree

12 files changed

+14
-13
lines changed

12 files changed

+14
-13
lines changed

README.md

+1-1
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-alpha.1.zip)
49+
- [Download the latest release](https://github.com/coreui/coreui-vue/archive/v5.0.0-beta.0.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

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

packages/coreui-vue/package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coreui/vue",
3-
"version": "5.0.0-alpha.1",
3+
"version": "5.0.0-beta.0",
44
"description": "UI Components Library for Vue.js",
55
"keywords": [
66
"vue",
@@ -59,7 +59,8 @@
5959
"vue-types": "^5.1.1"
6060
},
6161
"peerDependencies": {
62-
"@coreui/coreui": "^5.0.0-alpha.2",
62+
"@coreui/coreui": "^5.0.0-beta.1",
63+
"@popperjs/core": "^2.11.8",
6364
"vue": "^3.2.21"
6465
},
6566
"standard": {

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

+1-1
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-alpha.1
52+
* @since v5.0.0-beta.0
5353
*/
5454
navLink: {
5555
type: Boolean,

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

+1-1
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-alpha.1
57+
* @since v5.0.0-beta.0
5858
*/
5959
focus: {
6060
type: Boolean,

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

+1-1
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-alpha.1
26+
* @since 5.0.0-beta.0
2727
*/
2828
progressBarClassName: String,
2929
/**

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

+1-1
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-alpha.1+</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.0+</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

+1-1
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-alpha.1+</div> | Puts the focus on the modal when shown. | boolean | - | true |
16+
| **focus** <br><div class="badge bg-primary">v5.0.0-beta.0+</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/progress/CProgress.api.md

+1-1
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-alpha.1+</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.0+</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/package.json

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

0 commit comments

Comments
 (0)