Skip to content

Commit

Permalink
release: v4.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mrholek committed Apr 8, 2023
1 parent bfd1ece commit a9fca48
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@

Several quick start options are available:

- [Download the latest release](https://github.com/coreui/coreui-vue/archive/v4.8.0.zip)
- [Download the latest release](https://github.com/coreui/coreui-vue/archive/v4.8.1.zip)
- Clone the repo: `git clone https://github.com/coreui/coreui-vue.git`
- Install with [npm](https://www.npmjs.com/): `npm install @coreui/vue`
- Install with [yarn](https://yarnpkg.com/): `yarn add @coreui/vue`
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
"packages/*"
],
"useWorkspaces": true,
"version": "4.8.0"
"version": "4.8.1"
}
2 changes: 1 addition & 1 deletion packages/coreui-vue/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@coreui/vue",
"version": "4.8.0",
"version": "4.8.1",
"description": "UI Components Library for Vue.js",
"keywords": [
"vue",
Expand Down
2 changes: 1 addition & 1 deletion packages/coreui-vue/src/components/form/CFormCheck.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ const CFormCheck = defineComponent({
/**
* Put checkboxes or radios on the opposite side.
*
* @sinve 4.8.0
* @since 4.8.0
*/
reverse: Boolean,
/**
Expand Down
2 changes: 1 addition & 1 deletion packages/coreui-vue/src/components/form/CFormSwitch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const CFormSwitch = defineComponent({
/**
* Put checkboxes or radios on the opposite side.
*
* @sinve 4.8.0
* @since 4.8.0
*/
reverse: Boolean,
/**
Expand Down
2 changes: 1 addition & 1 deletion packages/docs/api/form/CFormCheck.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import CFormCheck from '@coreui/vue/src/components/form/CFormCheck'
| **invalid** | Set component validation state to invalid. | boolean | - | - |
| **label** | The element represents a caption for a component. | string | - | - |
| **model-value** | The default name for a value passed using v-model. | boolean\|string | - | - |
| **reverse** | Put checkboxes or radios on the opposite side.<br/>`@sinve` 4.8.0 | boolean | - | - |
| **reverse** | Put checkboxes or radios on the opposite side.<br/>`@since` 4.8.0 | boolean | - | - |
| **tooltip-feedback** <br><div class="badge bg-primary">4.3.0+</div> | Display validation feedback in a styled tooltip. | boolean | - | - |
| **type** | Specifies the type of component. | string | `'checkbox'`, `'radio'` | 'checkbox' |
| **valid** | Set component validation state to valid. | boolean | - | - |
Expand Down
2 changes: 1 addition & 1 deletion packages/docs/api/form/CFormSwitch.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import CFormSwitch from '@coreui/vue/src/components/form/CFormSwitch'
| **invalid** | Set component validation state to invalid. | boolean | - | - |
| **label** | The element represents a caption for a component. | string | - | - |
| **model-value** | The default name for a value passed using v-model. | boolean\|string | - | - |
| **reverse** | Put checkboxes or radios on the opposite side.<br/>`@sinve` 4.8.0 | boolean | - | - |
| **reverse** | Put checkboxes or radios on the opposite side.<br/>`@since` 4.8.0 | boolean | - | - |
| **size** | Size the component large or extra large. Works only with `switch`. | string | `'lg' \| 'xl'` | - |
| **type** | Specifies the type of component. | string | `'checkbox'`, `'radio'` | 'checkbox' |
| **valid** | Set component validation state to valid. | boolean | - | - |
Expand Down
2 changes: 1 addition & 1 deletion packages/docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@coreui/vue-docs",
"version": "4.8.0",
"version": "4.8.1",
"scripts": {
"api": "vue-docgen -c build/docgen.config.js",
"dev": "vuepress dev --clean-cache",
Expand Down

0 comments on commit a9fca48

Please sign in to comment.