Skip to content

Commit 1888df5

Browse files
committed
release: v5.0.0
1 parent 8c1ad99 commit 1888df5

21 files changed

+21
-21
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-react/archive/v5.0.0-rc.3.zip)
49+
- [Download the latest release](https://github.com/coreui/coreui-react/archive/v5.0.0.zip)
5050
- Clone the repo: `git clone https://github.com/coreui/coreui-react.git`
5151
- Install with [npm](https://www.npmjs.com/): `npm install @coreui/react`
5252
- Install with [yarn](https://yarnpkg.com/): `yarn add @coreui/react`

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-react/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-react/archive/v5.0.0-rc.3.zip)
49+
- [Download the latest release](https://github.com/coreui/coreui-react/archive/v5.0.0.zip)
5050
- Clone the repo: `git clone https://github.com/coreui/coreui-react.git`
5151
- Install with [npm](https://www.npmjs.com/): `npm install @coreui/react`
5252
- Install with [yarn](https://yarnpkg.com/): `yarn add @coreui/react`

packages/coreui-react/package.json

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

packages/coreui-react/src/components/badge/CBadge.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export interface CBadgeProps extends HTMLAttributes<HTMLDivElement | HTMLSpanEle
3939
* 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.
4040
*
4141
* @type 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'dark' | 'light' | string
42-
* @since 5.0.0-rc.3
42+
* @since 5.0.0
4343
*/
4444
textBgColor?: Colors
4545
/**

packages/coreui-react/src/components/card/CCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export interface CCardProps extends HTMLAttributes<HTMLDivElement> {
2626
* 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.
2727
*
2828
* @type 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'dark' | 'light' | string
29-
* @since 5.0.0-rc.3
29+
* @since 5.0.0
3030
*/
3131
textBgColor?: Colors
3232
}

packages/coreui-react/src/components/dropdown/CDropdownToggle.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export interface CDropdownToggleProps extends Omit<CButtonProps, 'type'> {
2121
/**
2222
* If a dropdown `variant` is set to `nav-item` then render the toggler as a link instead of a button.
2323
*
24-
* @since v5.0.0-rc.3
24+
* @since v5.0.0
2525
*/
2626
navLink?: boolean
2727
/**

packages/coreui-react/src/components/nav/CNavGroup.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export interface CNavGroupProps extends HTMLAttributes<HTMLDivElement | HTMLLIEl
2222
/**
2323
* Component used for the root node. Either a string to use a HTML element or a component.
2424
*
25-
* @since 5.0.0-rc.3
25+
* @since 5.0.0
2626
*/
2727
as?: ElementType
2828
/**

packages/coreui-react/src/components/nav/CNavGroupItems.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export interface CNavGroupItemsProps extends HTMLAttributes<HTMLDivElement | HTM
88
/**
99
* Component used for the root node. Either a string to use a HTML element or a component.
1010
*
11-
* @since 5.0.0-rc.3
11+
* @since 5.0.0
1212
*/
1313
as?: ElementType
1414
/**

packages/coreui-react/src/components/nav/CNavItem.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export interface CNavItemProps extends Omit<CNavLinkProps, 'component'> {
1010
/**
1111
* Component used for the root node. Either a string to use a HTML element or a component.
1212
*
13-
* @since 5.0.0-rc.3
13+
* @since 5.0.0
1414
*/
1515
as?: ElementType
1616
}

0 commit comments

Comments
 (0)