Skip to content

Commit 6fa1888

Browse files
Merge branch 'coreui:main' into main
2 parents 0611899 + 8aee4c7 commit 6fa1888

File tree

6 files changed

+21
-8
lines changed

6 files changed

+21
-8
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-vue/archive/v4.4.0.zip)
49+
- [Download the latest release](https://github.com/coreui/coreui-vue/archive/v4.5.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`

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
"packages/*"
55
],
66
"useWorkspaces": true,
7-
"version": "4.4.0"
7+
"version": "4.5.0"
88
}

packages/coreui-vue/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coreui/vue",
3-
"version": "4.4.0",
3+
"version": "4.5.0",
44
"description": "UI Components Library for Vue.js",
55
"keywords": [
66
"vue",
@@ -34,7 +34,7 @@
3434
"build": "rollup -c"
3535
},
3636
"config": {
37-
"version_short": "4.3"
37+
"version_short": "4.5"
3838
},
3939
"devDependencies": {
4040
"@popperjs/core": "^2.11.6",

packages/docs/.vuepress/config.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,19 @@ export default defineUserConfig<DefaultThemeOptions>({
4444
},
4545
},
4646
],
47+
[
48+
'@vuepress/container',
49+
{
50+
type: 'demo-rounded',
51+
render: function (tokens, idx) {
52+
if (tokens[idx].nesting === 1) {
53+
return '<div class="docs-example border rounded p-4">\n'
54+
} else {
55+
return '</div>\n'
56+
}
57+
},
58+
},
59+
],
4760
[
4861
'@vuepress/container',
4962
{

packages/docs/components/table.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Due to the widespread use of `<CTable>` elements across third-party widgets like
1111

1212
Using the most basic table CoreUI, here's how `<CTable>`-based tables look in CoreUI.
1313

14-
::: demo
14+
::: demo-rounded
1515
<CTable :columns="columns" :items="items" />
1616
:::
1717

@@ -694,7 +694,7 @@ These hoverable rows can also be combined with the striped variant:
694694

695695
Highlight a table row or cell by adding a `active` property.
696696

697-
::: demo
697+
::: demo-rounded
698698
<CTable :columns="columnsActiveTableExample" :items="itemsActiveTableExample" />
699699
:::
700700

packages/docs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "@coreui/vue-docs",
3-
"version": "4.4.0",
3+
"version": "4.5.0",
44
"config": {
5-
"version_short": "4.4"
5+
"version_short": "4.5"
66
},
77
"scripts": {
88
"api": "vue-docgen -c build/docgen.config.js",

0 commit comments

Comments
 (0)