Skip to content

Commit eac3a79

Browse files
committed
release: v5.6.0
1 parent 61ee9b7 commit eac3a79

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

README.md

Lines changed: 2 additions & 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.5.0.zip)
49+
- [Download the latest release](https://github.com/coreui/coreui-vue/archive/v5.6.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`
@@ -117,6 +117,7 @@ import "bootstrap/dist/css/bootstrap.min.css";
117117
- [Vue Date Range Picker](https://coreui.io/vue/docs/forms/date-range-picker.html) **PRO**
118118
- [Vue Dropdown](https://coreui.io/vue/docs/components/dropdown.html)
119119
- [Vue Floating Labels](https://coreui.io/vue/docs/forms/floating-labels.html)
120+
- [Vue Focus Trap](https://coreui.io/vue/docs/components/focus-trap.html)
120121
- [Vue Footer](https://coreui.io/vue/docs/components/footer.html)
121122
- [Vue Header](https://coreui.io/vue/docs/components/header.html)
122123
- [Vue Image](https://coreui.io/vue/docs/components/image.html)

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

packages/coreui-vue/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.5.0.zip)
49+
- [Download the latest release](https://github.com/coreui/coreui-vue/archive/v5.6.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`

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

packages/coreui-vue/src/components/offcanvas/COffcanvas.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import { defineComponent, h, ref, RendererElement, Transition, watch, withDirectives } from 'vue'
22

33
import { CBackdrop } from '../backdrop'
4+
import { CFocusTrap } from '../focus-trap'
45

56
import { vVisible } from '../../directives/v-c-visible'
67
import { executeAfterTransition } from '../../utils/transition'
7-
import { CFocusTrap } from '../focus-trap'
88

99
const COffcanvas = defineComponent({
1010
name: 'COffcanvas',

packages/docs/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-docs",
3-
"version": "5.5.0",
3+
"version": "5.6.0",
44
"scripts": {
55
"api": "vue-docgen -c build/docgen.config.js",
66
"dev": "vuepress dev --clean-cache",

0 commit comments

Comments
 (0)