Skip to content

Commit 569d566

Browse files
committed
release: v5.0.0-rc.1
1 parent de1d509 commit 569d566

16 files changed

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

+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-rc.0",
4+
"version": "5.0.0-rc.1",
55
"$schema": "node_modules/lerna/schemas/lerna-schema.json"
66
}

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coreui/react",
3-
"version": "5.0.0-rc.0",
3+
"version": "5.0.0-rc.1",
44
"description": "UI Components Library for React.js",
55
"keywords": [
66
"react",
@@ -41,7 +41,7 @@
4141
"test:update": "jest --coverage --updateSnapshot"
4242
},
4343
"dependencies": {
44-
"@coreui/coreui": "^5.0.0-rc.0",
44+
"@coreui/coreui": "^5.0.0-rc.1",
4545
"@popperjs/core": "^2.11.8",
4646
"prop-types": "^15.8.1"
4747
},

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

+1-1
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.0
24+
* @since v5.0.0-rc.1
2525
*/
2626
navLink?: boolean
2727
/**

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

+1-1
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.0
25+
* @since 5.0.0-rc.1
2626
*/
2727
as?: ElementType
2828
/**

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

+1-1
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.0
11+
* @since 5.0.0-rc.1
1212
*/
1313
as?: ElementType
1414
/**

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

+1-1
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.0
13+
* @since 5.0.0-rc.1
1414
*/
1515
as?: ElementType
1616
}

packages/coreui-react/src/components/sidebar/CSidebarBrand.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export interface CSidebarBrandProps extends HTMLAttributes<HTMLAnchorElement | H
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.0
11+
* @since 5.0.0-rc.1
1212
*/
1313
as?: ElementType
1414
/**

packages/coreui-react/src/components/sidebar/CSidebarNav.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export interface CSidebarNavProps extends HTMLAttributes<HTMLUListElement> {
1616
/**
1717
* Component used for the root node. Either a string to use a HTML element or a component.
1818
*
19-
* @since 5.0.0-rc.0
19+
* @since 5.0.0-rc.1
2020
*/
2121
as?: ElementType
2222
/**

packages/docs/content/api/CDropdownToggle.api.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import CDropdownToggle from '@coreui/react/src/components/dropdown/CDropdownTogg
1515
| **custom** | Create a custom toggler which accepts any content. | `boolean` | - |
1616
| **disabled** | Toggle the disabled state for the component. | `boolean` | - |
1717
| **href** | The href attribute specifies the URL of the page the link goes to. | `string` | - |
18-
| **navLink** **_v5.0.0-rc.0+_** | If a dropdown `variant` is set to `nav-item` then render the toggler as a link instead of a button. | `boolean` | true |
18+
| **navLink** **_v5.0.0-rc.1+_** | If a dropdown `variant` is set to `nav-item` then render the toggler as a link instead of a button. | `boolean` | true |
1919
| **role** | The role attribute describes the role of an element in programs that can make use of it, such as screen readers or magnifiers. | `string` | - |
2020
| **shape** | Select the shape of the component. | `'rounded'` \| `'rounded-top'` \| `'rounded-end'` \| `'rounded-bottom'` \| `'rounded-start'` \| `'rounded-circle'` \| `'rounded-pill'` \| `'rounded-0'` \| `'rounded-1'` \| `'rounded-2'` \| `'rounded-3'` \| `string` | - |
2121
| **size** | Size the component small or large. | `'sm'` \| `'lg'` | - |

packages/docs/content/api/CNavGroup.api.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import CNavGroup from '@coreui/react/src/components/nav/CNavGroup'
77

88
| Property | Description | Type | Default |
99
| --- | --- | --- | --- |
10-
| **as** **_5.0.0-rc.0+_** | Component used for the root node. Either a string to use a HTML element or a component. | `(ElementType & 'symbol')` \| `(ElementType & 'object')` \| `(ElementType & 'li')` \| `(ElementType & 'slot')` \| `(ElementType & 'style')` \| `... 173 more ...` \| `(ElementType & FunctionComponent<...>)` | - |
10+
| **as** **_5.0.0-rc.1+_** | Component used for the root node. Either a string to use a HTML element or a component. | `(ElementType & 'symbol')` \| `(ElementType & 'object')` \| `(ElementType & 'li')` \| `(ElementType & 'slot')` \| `(ElementType & 'style')` \| `... 173 more ...` \| `(ElementType & FunctionComponent<...>)` | - |
1111
| **className** | A string of all className you want applied to the component. | `string` | - |
1212
| **compact** | Make nav group more compact by cutting all `padding` in half. | `boolean` | - |
1313
| **toggler** | Set group toggler label. | `ReactNode` | - |

packages/docs/content/api/CNavGroupItems.api.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ import CNavGroupItems from '@coreui/react/src/components/nav/CNavGroupItems'
77

88
| Property | Description | Type | Default |
99
| --- | --- | --- | --- |
10-
| **as** **_5.0.0-rc.0+_** | Component used for the root node. Either a string to use a HTML element or a component. | `(ElementType & 'symbol')` \| `(ElementType & 'object')` \| `(ElementType & 'ul')` \| `(ElementType & 'slot')` \| `(ElementType & 'style')` \| `... 173 more ...` \| `(ElementType & FunctionComponent<...>)` | - |
10+
| **as** **_5.0.0-rc.1+_** | Component used for the root node. Either a string to use a HTML element or a component. | `(ElementType & 'symbol')` \| `(ElementType & 'object')` \| `(ElementType & 'ul')` \| `(ElementType & 'slot')` \| `(ElementType & 'style')` \| `... 173 more ...` \| `(ElementType & FunctionComponent<...>)` | - |
1111
| **className** | A string of all className you want applied to the component. | `string` | - |

packages/docs/content/api/CNavItem.api.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import CNavItem from '@coreui/react/src/components/nav/CNavItem'
88
| Property | Description | Type | Default |
99
| --- | --- | --- | --- |
1010
| **active** | Toggle the active state for the component. | `boolean` | - |
11-
| **as** **_5.0.0-rc.0+_** | Component used for the root node. Either a string to use a HTML element or a component. | `(ElementType & 'symbol')` \| `(ElementType & 'object')` \| `(ElementType & 'li')` \| `(ElementType & 'cite')` \| `(ElementType & 'data')` \| `... 173 more ...` \| `(ElementType & FunctionComponent<...>)` | - |
11+
| **as** **_5.0.0-rc.1+_** | Component used for the root node. Either a string to use a HTML element or a component. | `(ElementType & 'symbol')` \| `(ElementType & 'object')` \| `(ElementType & 'li')` \| `(ElementType & 'cite')` \| `(ElementType & 'data')` \| `... 173 more ...` \| `(ElementType & FunctionComponent<...>)` | - |
1212
| **className** | A string of all className you want applied to the component. | `string` | - |
1313
| **disabled** | Toggle the disabled state for the component. | `boolean` | - |
1414
| **href** | The href attribute specifies the URL of the page the link goes to. | `string` | - |

packages/docs/content/api/CSidebarNav.api.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ import CSidebarNav from '@coreui/react/src/components/sidebar/CSidebarNav'
77

88
| Property | Description | Type | Default |
99
| --- | --- | --- | --- |
10-
| **as** **_5.0.0-rc.0+_** | Component used for the root node. Either a string to use a HTML element or a component. | `(ElementType & 'symbol')` \| `(ElementType & 'object')` \| `(ElementType & 'ul')` \| `(ElementType & 'slot')` \| `(ElementType & 'style')` \| `... 173 more ...` \| `(ElementType & FunctionComponent<...>)` | - |
10+
| **as** **_5.0.0-rc.1+_** | Component used for the root node. Either a string to use a HTML element or a component. | `(ElementType & 'symbol')` \| `(ElementType & 'object')` \| `(ElementType & 'ul')` \| `(ElementType & 'slot')` \| `(ElementType & 'style')` \| `... 173 more ...` \| `(ElementType & FunctionComponent<...>)` | - |
1111
| **className** | A string of all className you want applied to the component. | `string` | - |

packages/docs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coreui/react-docs",
3-
"version": "5.0.0-rc.0",
3+
"version": "5.0.0-rc.1",
44
"private": true,
55
"description": "",
66
"homepage": "https://coreui.io/react/",

0 commit comments

Comments
 (0)