Skip to content

Commit ea3731a

Browse files
committedFeb 19, 2020
chore: 3.0.0 release: update build files and dependencies, small fixes
·
3.2.113.0.0
1 parent 7386b50 commit ea3731a

File tree

12 files changed

+12729
-11281
lines changed

12 files changed

+12729
-11281
lines changed
 

‎dist/coreui-vue.common.js

Lines changed: 4439 additions & 4013 deletions
Large diffs are not rendered by default.

‎dist/coreui-vue.common.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎dist/coreui-vue.umd.js

Lines changed: 4439 additions & 4013 deletions
Large diffs are not rendered by default.

‎dist/coreui-vue.umd.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎dist/coreui-vue.umd.min.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎dist/coreui-vue.umd.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎dist/vetur/coreui-attributes.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4830,5 +4830,21 @@
48304830
"CWidgetSimple/text": {
48314831
"description": "For API documentation please visit https://coreui.io/vue/docs",
48324832
"type": "string"
4833+
},
4834+
"c-wrapper/fluid": {
4835+
"description": "For API documentation please visit https://coreui.io/vue/docs",
4836+
"type": "boolean"
4837+
},
4838+
"CWrapper/fluid": {
4839+
"description": "For API documentation please visit https://coreui.io/vue/docs",
4840+
"type": "boolean"
4841+
},
4842+
"c-wrapper/tag": {
4843+
"description": "For API documentation please visit https://coreui.io/vue/docs",
4844+
"type": "string"
4845+
},
4846+
"CWrapper/tag": {
4847+
"description": "For API documentation please visit https://coreui.io/vue/docs",
4848+
"type": "string"
48334849
}
48344850
}

‎dist/vetur/coreui-tags.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2116,5 +2116,19 @@
21162116
"text"
21172117
],
21182118
"description": ""
2119+
},
2120+
"CWrapper": {
2121+
"attributes": [
2122+
"fluid",
2123+
"tag"
2124+
],
2125+
"description": ""
2126+
},
2127+
"c-wrapper": {
2128+
"attributes": [
2129+
"fluid",
2130+
"tag"
2131+
],
2132+
"description": ""
21192133
}
21202134
}

‎package-lock.json

Lines changed: 3806 additions & 3244 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@coreui/vue",
33
"description": "CoreUI Vue Bootstrap 4 layout components",
4-
"version": "3.0.0-beta.11",
4+
"version": "3.0.0",
55
"license": "MIT",
66
"main": "dist/coreui-vue.common.js",
77
"types": "src/index.d.ts",
@@ -68,7 +68,7 @@
6868
},
6969
"dependencies": {
7070
"@coreui/icons": "~1.0.1",
71-
"@coreui/icons-vue": "~1.2.0",
71+
"@coreui/icons-vue": "~1.3.0",
7272
"@coreui/utils": "~1.2.2",
7373
"@popperjs/core": "~2.0.6",
7474
"lodash.clonedeep": "~4.5.0",

‎src/components/template/index.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ import CSidebarNavDropdown from './CSidebarNavDropdown'
2020
import CSidebarNavItem from './CSidebarNavItem'
2121
import CSidebarNavTitle from './CSidebarNavTitle'
2222

23+
import CWrapper from './CWrapper'
24+
2325
export {
2426
CFooter,
2527

@@ -41,5 +43,7 @@ export {
4143
CSidebarNavDivider,
4244
CSidebarNavDropdown,
4345
CSidebarNavItem,
44-
CSidebarNavTitle
46+
CSidebarNavTitle,
47+
48+
CWrapper
4549
}

‎src/components/template/tests/__snapshots__/CWrapper.spec.js.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
exports[`CWrapper.vue renders correctly 1`] = `
44
<div
5-
class="c-wrapper c-fixed-components"
5+
class="c-wrapper"
66
/>
77
`;

0 commit comments

Comments
 (0)
Please sign in to comment.