Skip to content

Commit 7b3a43e

Browse files
committed
release: v4.9.0-rc.0
1 parent 0ac8241 commit 7b3a43e

File tree

12 files changed

+57
-49
lines changed

12 files changed

+57
-49
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/v4.9.0-beta.2.zip)
49+
- [Download the latest release](https://github.com/coreui/coreui-vue/archive/v4.9.0-rc.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
@@ -4,5 +4,5 @@
44
"packages/*"
55
],
66
"useWorkspaces": true,
7-
"version": "4.9.0-beta.2"
7+
"version": "4.9.0-rc.0"
88
}

packages/coreui-vue/package.json

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ const CDropdown = defineComponent({
121121
/**
122122
* Offset of the dropdown menu relative to its target.
123123
*
124-
* @since 4.9.0-beta.2
124+
* @since 4.9.0-rc.0
125125
*/
126126
offset: {
127127
type: Array,

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const CPopover = defineComponent({
1212
/**
1313
* Apply a CSS fade transition to the popover.
1414
*
15-
* @since 4.9.0-beta.2
15+
* @since 4.9.0-rc.0
1616
*/
1717
animation: {
1818
type: Boolean,
@@ -25,7 +25,7 @@ const CPopover = defineComponent({
2525
/**
2626
* 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 }`.
2727
*
28-
* @since 4.9.0-beta.2
28+
* @since 4.9.0-rc.0
2929
*/
3030
delay: {
3131
type: [Number, Object] as PropType<number | { show: number; hide: number }>,
@@ -34,7 +34,7 @@ const CPopover = defineComponent({
3434
/**
3535
* Specify the desired order of fallback placements by providing a list of placements as an array. The placements should be prioritized based on preference.
3636
*
37-
* @since 4.9.0-beta.2
37+
* @since 4.9.0-rc.0
3838
*/
3939
fallbackPlacements: {
4040
type: [String, Array] as PropType<Placements | Placements[]>,

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const CTooltip = defineComponent({
1212
/**
1313
* Apply a CSS fade transition to the tooltip.
1414
*
15-
* @since 4.9.0-beta.2
15+
* @since 4.9.0-rc.0
1616
*/
1717
animation: {
1818
type: Boolean,
@@ -25,7 +25,7 @@ const CTooltip = defineComponent({
2525
/**
2626
* 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 }`.
2727
*
28-
* @since 4.9.0-beta.2
28+
* @since 4.9.0-rc.0
2929
*/
3030
delay: {
3131
type: [Number, Object] as PropType<number | { show: number; hide: number }>,
@@ -34,7 +34,7 @@ const CTooltip = defineComponent({
3434
/**
3535
* Specify the desired order of fallback placements by providing a list of placements as an array. The placements should be prioritized based on preference.
3636
*
37-
* @since 4.9.0-beta.2
37+
* @since 4.9.0-rc.0
3838
*/
3939
fallbackPlacements: {
4040
type: [String, Array] as PropType<Placements | Placements[]>,

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

+13-12
Large diffs are not rendered by default.

packages/docs/api/form/CFormCheck.api.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,11 @@ import CFormCheck from '@coreui/vue/src/components/form/CFormCheck'
2121
| **invalid** | Set component validation state to invalid. | boolean | - | - |
2222
| **label** | The element represents a caption for a component. | string | - | - |
2323
| **model-value** | The default name for a value passed using v-model. | boolean\|string | - | - |
24-
| **reverse** | Put checkboxes or radios on the opposite side.<br/>`@since` 4.8.0 | boolean | - | - |
24+
| **reverse** <br><div class="badge bg-primary">4.8.0+</div> | Put checkboxes or radios on the opposite side. | boolean | - | - |
2525
| **tooltip-feedback** <br><div class="badge bg-primary">4.3.0+</div> | Display validation feedback in a styled tooltip. | boolean | - | - |
2626
| **type** | Specifies the type of component. | string | `'checkbox'`, `'radio'` | 'checkbox' |
2727
| **valid** | Set component validation state to valid. | boolean | - | - |
28+
| **value** | The value attribute of component. | string | - | - |
2829

2930
#### Events
3031

packages/docs/api/form/CFormSwitch.api.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ import CFormSwitch from '@coreui/vue/src/components/form/CFormSwitch'
88

99
#### Props
1010

11-
| Prop name | Description | Type | Values | Default |
12-
| --------------- | -------------------------------------------------------------------------------------------- | --------------- | ----------------------- | ---------- |
13-
| **id** | The id global attribute defines an identifier (ID) that must be unique in the whole document | string | - | - |
14-
| **invalid** | Set component validation state to invalid. | boolean | - | - |
15-
| **label** | The element represents a caption for a component. | string | - | - |
16-
| **model-value** | The default name for a value passed using v-model. | boolean\|string | - | - |
17-
| **reverse** | Put checkboxes or radios on the opposite side.<br/>`@since` 4.8.0 | boolean | - | - |
18-
| **size** | Size the component large or extra large. Works only with `switch`. | string | `'lg' \| 'xl'` | - |
19-
| **type** | Specifies the type of component. | string | `'checkbox'`, `'radio'` | 'checkbox' |
20-
| **valid** | Set component validation state to valid. | boolean | - | - |
11+
| Prop name | Description | Type | Values | Default |
12+
| ---------------------------------------------------------- | -------------------------------------------------------------------------------------------- | --------------- | ----------------------- | ---------- |
13+
| **id** | The id global attribute defines an identifier (ID) that must be unique in the whole document | string | - | - |
14+
| **invalid** | Set component validation state to invalid. | boolean | - | - |
15+
| **label** | The element represents a caption for a component. | string | - | - |
16+
| **model-value** | The default name for a value passed using v-model. | boolean\|string | - | - |
17+
| **reverse** <br><div class="badge bg-primary">4.8.0+</div> | Put checkboxes or radios on the opposite side. | boolean | - | - |
18+
| **size** | Size the component large or extra large. Works only with `switch`. | string | `'lg' \| 'xl'` | - |
19+
| **type** | Specifies the type of component. | string | `'checkbox'`, `'radio'` | 'checkbox' |
20+
| **valid** | Set component validation state to valid. | boolean | - | - |
2121

2222
#### Events
2323

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

+11-8
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,17 @@ import CPopover from '@coreui/vue/src/components/popover/CPopover'
88

99
#### Props
1010

11-
| Prop name | Description | Type | Values | Default |
12-
| ------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------ | ------------------------------- | ------- |
13-
| **content** | Content for your component. If you want to pass non-string value please use dedicated slot `<template #content>...</template>` | string | - | - |
14-
| **offset** | Offset of the popover relative to its target. | array | - | [0, 8] |
15-
| **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 | - | 'top' |
16-
| **title** | Title for your component. If you want to pass non-string value please use dedicated slot `<template #title>...</template>` | string | - | - |
17-
| **trigger** | Sets which event handlers you’d like provided to your toggle prop. You can specify one trigger or an array of them. | string \| string[] | `'click'`, `'focus'`, `'hover'` | 'click' |
18-
| **visible** | Toggle the visibility of popover component. | boolean | - | - |
11+
| Prop name | Description | Type | Values | Default |
12+
| --------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------- | ------------------------------- | ---------------------------------------- |
13+
| **animation** <br><div class="badge bg-primary">4.9.0-rc.0+</div> | Apply a CSS fade transition to the popover. | boolean | - | true |
14+
| **content** | Content for your component. If you want to pass non-string value please use dedicated slot `<template #content>...</template>` | string | - | - |
15+
| **delay** <br><div class="badge bg-primary">4.9.0-rc.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 |
16+
| **fallback-placements** <br><div class="badge bg-primary">4.9.0-rc.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'] |
17+
| **offset** | Offset of the popover relative to its target. | array | - | [0, 8] |
18+
| **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 | - | 'top' |
19+
| **title** | Title for your component. If you want to pass non-string value please use dedicated slot `<template #title>...</template>` | string | - | - |
20+
| **trigger** | Sets which event handlers you’d like provided to your toggle prop. You can specify one trigger or an array of them. | Triggers \| Triggers[] | `'click'`, `'focus'`, `'hover'` | 'click' |
21+
| **visible** | Toggle the visibility of popover component. | boolean | - | - |
1922

2023
#### Events
2124

0 commit comments

Comments
 (0)