Skip to content

Commit 92c5c78

Browse files
committed
docs: update API documentation
1 parent b164c5a commit 92c5c78

File tree

6 files changed

+41
-41
lines changed

6 files changed

+41
-41
lines changed

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

Lines changed: 1 addition & 1 deletion
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-rc.0
124+
* @since 4.9.0
125125
*/
126126
offset: {
127127
type: Array,

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

Lines changed: 3 additions & 3 deletions
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-rc.0
15+
* @since 4.9.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-rc.0
28+
* @since 4.9.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-rc.0
37+
* @since 4.9.0
3838
*/
3939
fallbackPlacements: {
4040
type: [String, Array] as PropType<Placements | Placements[]>,

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

Lines changed: 3 additions & 3 deletions
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-rc.0
15+
* @since 4.9.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-rc.0
28+
* @since 4.9.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-rc.0
37+
* @since 4.9.0
3838
*/
3939
fallbackPlacements: {
4040
type: [String, Array] as PropType<Placements | Placements[]>,

0 commit comments

Comments
 (0)