Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit9802ae6

Browse files
committed
release: v5.0.0
1 parentd4d4ad9 commit9802ae6

File tree

22 files changed

+84
-84
lines changed

22 files changed

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

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-rc.3",
4+
"version":"5.0.0",
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-rc.3",
3+
"version":"5.0.0",
44
"description":"UI Components Library for Vue.js",
55
"keywords": [
66
"vue",

‎packages/coreui-vue/src/components/badge/CBadge.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ const CBadge = defineComponent({
5050
* Sets the component's color scheme to one of CoreUI's themed colors, ensuring the text color contrast adheres to the WCAG 4.5:1 contrast ratio standard for accessibility.
5151
*
5252
*@values 'primary', 'secondary', 'success', 'danger', 'warning', 'info', 'dark', 'light'
53-
*@since 5.0.0-rc.3
53+
*@since 5.0.0
5454
*/
5555
textBgColor:Color,
5656
/**

‎packages/coreui-vue/src/components/card/CCard.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const CCard = defineComponent({
1515
* Sets the component's color scheme to one of CoreUI's themed colors, ensuring the text color contrast adheres to the WCAG 4.5:1 contrast ratio standard for accessibility.
1616
*
1717
*@values 'primary', 'secondary', 'success', 'danger', 'warning', 'info', 'dark', 'light'
18-
*@since 5.0.0-rc.3
18+
*@since 5.0.0
1919
*/
2020
textBgColor:Color,
2121
/**

‎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-rc.3
19+
*@since v5.0.0
2020
*/
2121
container:{
2222
type:[Object,String]asPropType<HTMLElement|(()=>HTMLElement)|string>,

‎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-rc.3
65+
*@since v5.0.0
6666
*/
6767
container:{
6868
type:[Object,String]asPropType<HTMLElement|(()=>HTMLElement)|string>,
@@ -115,7 +115,7 @@ const CDropdown = defineComponent({
115115
/**
116116
* Generates dropdown menu using Teleport.
117117
*
118-
*@since v5.0.0-rc.3
118+
*@since v5.0.0
119119
*/
120120
teleport:{
121121
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-rc.3
52+
*@since v5.0.0
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-rc.3
57+
*@since v5.0.0
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-rc.3
26+
*@since v5.0.0
2727
*/
2828
container:{
2929
type:[Object,String]asPropType<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-rc.3
26+
*@since 5.0.0
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-rc.3
26+
*@since v5.0.0
2727
*/
2828
container:{
2929
type:[Object,String]asPropType<HTMLElement|(()=>HTMLElement)|string>,

‎packages/docs/api/badge/CBadge.api.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ import CBadge from '@coreui/vue/src/components/badge/CBadge'
88

99
####Props
1010

11-
| Prop name| Description| Type| Values| Default|
12-
| ---------------------------------------------------------------------| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------| ------| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -------|
13-
|**as**| Component used for the root node. Either a string to use a HTML element or a component.| string| -| 'span'|
14-
|**color**| Sets the color context of the component to one of CoreUI’s themed colors.| string|`'primary'`,`'secondary'`,`'success'`,`'danger'`,`'warning'`,`'info'`,`'dark'`,`'light'`| -|
15-
|**position**| Position badge in one of the corners of a link or button.| string|`'top-start'`,`'top-end'`,`'bottom-end'`,`'bottom-start'`| -|
16-
|**shape**| Select the shape of the component.| string|`'rounded'`,`'rounded-top'`,`'rounded-end'`,`'rounded-bottom'`,`'rounded-start'`,`'rounded-circle'`,`'rounded-pill'`,`'rounded-0'`,`'rounded-1'`,`'rounded-2'`,`'rounded-3'`| -|
17-
|**size**| Size the component small.| string|`'sm'`| -|
18-
|**text-bg-color** <br><divclass="badge bg-primary">5.0.0-rc.3+</div>| Sets the component's color scheme to one of CoreUI's themed colors, ensuring the text color contrast adheres to the WCAG 4.5:1 contrast ratio standard for accessibility.| string|`'primary'`,`'secondary'`,`'success'`,`'danger'`,`'warning'`,`'info'`,`'dark'`,`'light'`| -|
19-
|**text-color**| Sets the text color of the component to one of CoreUI’s themed colors.| string|`'primary'`,`'secondary'`,`'success'`,`'danger'`,`'warning'`,`'info'`,`'dark'`,`'light'`,`'primary-emphasis'`,`'secondary-emphasis'`,`'success-emphasis'`,`'danger-emphasis'`,`'warning-emphasis'`,`'info-emphasis'`,`'light-emphasis'`,`'body'`,`'body-emphasis'`,`'body-secondary'`,`'body-tertiary'`,`'black'`,`'black-50'`,`'white'`,`'white-50'`| -|
11+
| Prop name| Description| Type| Values| Default|
12+
| ----------------------------------------------------------------| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------| ------| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -------|
13+
|**as**| Component used for the root node. Either a string to use a HTML element or a component.| string| -| 'span'|
14+
|**color**| Sets the color context of the component to one of CoreUI’s themed colors.| string|`'primary'`,`'secondary'`,`'success'`,`'danger'`,`'warning'`,`'info'`,`'dark'`,`'light'`| -|
15+
|**position**| Position badge in one of the corners of a link or button.| string|`'top-start'`,`'top-end'`,`'bottom-end'`,`'bottom-start'`| -|
16+
|**shape**| Select the shape of the component.| string|`'rounded'`,`'rounded-top'`,`'rounded-end'`,`'rounded-bottom'`,`'rounded-start'`,`'rounded-circle'`,`'rounded-pill'`,`'rounded-0'`,`'rounded-1'`,`'rounded-2'`,`'rounded-3'`| -|
17+
|**size**| Size the component small.| string|`'sm'`| -|
18+
|**text-bg-color** <br><divclass="badge bg-primary">5.0.0+</div>| Sets the component's color scheme to one of CoreUI's themed colors, ensuring the text color contrast adheres to the WCAG 4.5:1 contrast ratio standard for accessibility.| string|`'primary'`,`'secondary'`,`'success'`,`'danger'`,`'warning'`,`'info'`,`'dark'`,`'light'`| -|
19+
|**text-color**| Sets the text color of the component to one of CoreUI’s themed colors.| string|`'primary'`,`'secondary'`,`'success'`,`'danger'`,`'warning'`,`'info'`,`'dark'`,`'light'`,`'primary-emphasis'`,`'secondary-emphasis'`,`'success-emphasis'`,`'danger-emphasis'`,`'warning-emphasis'`,`'info-emphasis'`,`'light-emphasis'`,`'body'`,`'body-emphasis'`,`'body-secondary'`,`'body-tertiary'`,`'black'`,`'black-50'`,`'white'`,`'white-50'`| -|

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp