File tree 6 files changed +21
-8
lines changed 6 files changed +21
-8
lines changed Original file line number Diff line number Diff line change 46
46
47
47
Several quick start options are available:
48
48
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 )
50
50
- Clone the repo: ` git clone https://github.com/coreui/coreui-vue.git `
51
51
- Install with [ npm] ( https://www.npmjs.com/ ) : ` npm install @coreui/vue `
52
52
- Install with [ yarn] ( https://yarnpkg.com/ ) : ` yarn add @coreui/vue `
Original file line number Diff line number Diff line change 4
4
" packages/*"
5
5
],
6
6
"useWorkspaces" : true ,
7
- "version" : " 4.4 .0"
7
+ "version" : " 4.5 .0"
8
8
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @coreui/vue" ,
3
- "version" : " 4.4 .0" ,
3
+ "version" : " 4.5 .0" ,
4
4
"description" : " UI Components Library for Vue.js" ,
5
5
"keywords" : [
6
6
" vue" ,
34
34
"build" : " rollup -c"
35
35
},
36
36
"config" : {
37
- "version_short" : " 4.3 "
37
+ "version_short" : " 4.5 "
38
38
},
39
39
"devDependencies" : {
40
40
"@popperjs/core" : " ^2.11.6" ,
Original file line number Diff line number Diff line change @@ -44,6 +44,19 @@ export default defineUserConfig<DefaultThemeOptions>({
44
44
} ,
45
45
} ,
46
46
] ,
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
+ ] ,
47
60
[
48
61
'@vuepress/container' ,
49
62
{
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ Due to the widespread use of `<CTable>` elements across third-party widgets like
11
11
12
12
Using the most basic table CoreUI, here's how ` <CTable> ` -based tables look in CoreUI.
13
13
14
- ::: demo
14
+ ::: demo-rounded
15
15
<CTable :columns =" columns " :items =" items " />
16
16
:::
17
17
@@ -694,7 +694,7 @@ These hoverable rows can also be combined with the striped variant:
694
694
695
695
Highlight a table row or cell by adding a ` active ` property.
696
696
697
- ::: demo
697
+ ::: demo-rounded
698
698
<CTable :columns =" columnsActiveTableExample " :items =" itemsActiveTableExample " />
699
699
:::
700
700
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @coreui/vue-docs" ,
3
- "version" : " 4.4 .0" ,
3
+ "version" : " 4.5 .0" ,
4
4
"config" : {
5
- "version_short" : " 4.4 "
5
+ "version_short" : " 4.5 "
6
6
},
7
7
"scripts" : {
8
8
"api" : " vue-docgen -c build/docgen.config.js" ,
You can’t perform that action at this time.
0 commit comments