comand-component-library 4.0.19 → 4.0.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/comand-component-library.js +1155 -1155
- package/dist/comand-component-library.umd.cjs +3 -3
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/src/ComponentLibrary.vue +14 -0
- package/src/assets/fonts/iconfonts/logos-iconfont/fonts/icomoon-logos.woff +0 -0
- package/src/assets/fonts/iconfonts/logos-iconfont/fonts/icomoon.eot +0 -0
- package/src/assets/fonts/iconfonts/logos-iconfont/fonts/icomoon.svg +46 -0
- package/src/assets/fonts/iconfonts/logos-iconfont/fonts/icomoon.ttf +0 -0
- package/src/assets/fonts/iconfonts/logos-iconfont/icomoon-logos.woff +0 -0
- package/src/assets/fonts/iconfonts/logos-iconfont/selection.json +1 -1
- package/src/assets/styles/logos-iconfont.css +44 -33
- package/src/componentSettingsDataAndControls.vue +7 -7
- package/src/components/CmdBackToTopButton.vue +1 -1
- package/src/components/CmdBasicForm.vue +2 -2
- package/src/components/CmdBox.vue +2 -2
- package/src/components/CmdBoxWrapper.vue +2 -2
- package/src/components/CmdFakeSelect.vue +2 -2
- package/src/components/CmdLoginForm.vue +1 -1
- package/src/components/CmdMainNavigation.vue +2 -2
- package/src/components/CmdMultistepFormProgressBar.vue +1 -1
- package/src/components/CmdPagination.vue +2 -2
- package/src/components/CmdSidebar.vue +4 -4
- package/src/components/CmdSiteHeader.vue +2 -2
- package/src/components/CmdSiteSearch.vue +2 -2
- package/src/components/CmdSlideButton.vue +4 -4
- package/src/components/CmdSlideshow.vue +4 -3
- package/src/components/CmdTable.vue +3 -3
- package/src/components/CmdThumbnailScroller.vue +2 -2
- package/src/documentation/generated/CmdFakeSelectPropertyDescriptions.json +1 -1
- package/src/pages/PageWrapper.vue +1 -1
@@ -39,19 +39,19 @@ export default {
|
|
39
39
|
default: function() {
|
40
40
|
return {
|
41
41
|
prev: {
|
42
|
-
iconClass: "icon-
|
42
|
+
iconClass: "icon-chevron-one-stripe-left",
|
43
43
|
tooltip: "Previous"
|
44
44
|
},
|
45
45
|
next: {
|
46
|
-
iconClass: "icon-
|
46
|
+
iconClass: "icon-chevron-one-stripe-right",
|
47
47
|
tooltip: "Next"
|
48
48
|
},
|
49
49
|
up: {
|
50
|
-
iconClass: "icon-
|
50
|
+
iconClass: "icon-chevron-one-stripe-up",
|
51
51
|
tooltip: "Previous"
|
52
52
|
},
|
53
53
|
down: {
|
54
|
-
iconClass: "icon-
|
54
|
+
iconClass: "icon-chevron-one-stripe-down",
|
55
55
|
tooltip: "Next"
|
56
56
|
}
|
57
57
|
}
|
@@ -164,14 +164,14 @@ export default {
|
|
164
164
|
return {
|
165
165
|
next: {
|
166
166
|
next: {
|
167
|
-
"iconClass": "icon-
|
167
|
+
"iconClass": "icon-chevron-one-stripe-right",
|
168
168
|
"tooltip": "Next"
|
169
169
|
}
|
170
170
|
},
|
171
171
|
prev: {
|
172
172
|
prev: {
|
173
173
|
"type": "prev",
|
174
|
-
"iconClass": "icon-
|
174
|
+
"iconClass": "icon-chevron-one-stripe-left",
|
175
175
|
"tooltip": "Previous"
|
176
176
|
}
|
177
177
|
}
|
@@ -367,6 +367,7 @@ export default {
|
|
367
367
|
justify-content: center;
|
368
368
|
|
369
369
|
> a:not(.button) {
|
370
|
+
display: block;
|
370
371
|
text-decoration: none;
|
371
372
|
|
372
373
|
figcaption {
|
@@ -417,9 +418,9 @@ export default {
|
|
417
418
|
padding: .2rem;
|
418
419
|
list-style-type: none;
|
419
420
|
margin: 0;
|
420
|
-
border: var(--default-border-reduced-opacity);
|
421
421
|
border-radius: var(--full-circle);
|
422
422
|
background: var(--light-gray);
|
423
|
+
border: var(--default-border-reduced-opacity);
|
423
424
|
|
424
425
|
a {
|
425
426
|
display: block;
|
@@ -141,7 +141,7 @@ export default {
|
|
141
141
|
type: Object,
|
142
142
|
default: function () {
|
143
143
|
return {
|
144
|
-
iconClass: "icon-
|
144
|
+
iconClass: "icon-chevron-one-stripe-down",
|
145
145
|
tooltip: "Expand table"
|
146
146
|
}
|
147
147
|
}
|
@@ -155,7 +155,7 @@ export default {
|
|
155
155
|
type: Object,
|
156
156
|
default: function () {
|
157
157
|
return {
|
158
|
-
iconClass: "icon-
|
158
|
+
iconClass: "icon-chevron-one-stripe-up",
|
159
159
|
tooltip: "Collapse table"
|
160
160
|
}
|
161
161
|
}
|
@@ -183,7 +183,7 @@ export default {
|
|
183
183
|
type: Object,
|
184
184
|
default: function () {
|
185
185
|
return {
|
186
|
-
iconClass: "icon-
|
186
|
+
iconClass: "icon-chevron-one-stripe-right",
|
187
187
|
tooltip: "Stretch table"
|
188
188
|
}
|
189
189
|
}
|
@@ -230,14 +230,14 @@ export default {
|
|
230
230
|
next: {
|
231
231
|
next: {
|
232
232
|
type: "next",
|
233
|
-
iconClass: "icon-
|
233
|
+
iconClass: "icon-chevron-one-stripe-right",
|
234
234
|
tooltip: "Next"
|
235
235
|
}
|
236
236
|
},
|
237
237
|
prev: {
|
238
238
|
prev: {
|
239
239
|
type: "prev",
|
240
|
-
iconClass: "icon-
|
240
|
+
iconClass: "icon-chevron-one-stripe-left",
|
241
241
|
tooltip: "Previous"
|
242
242
|
}
|
243
243
|
}
|