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.
Files changed (31) hide show
  1. package/dist/comand-component-library.js +1155 -1155
  2. package/dist/comand-component-library.umd.cjs +3 -3
  3. package/dist/style.css +1 -1
  4. package/package.json +2 -2
  5. package/src/ComponentLibrary.vue +14 -0
  6. package/src/assets/fonts/iconfonts/logos-iconfont/fonts/icomoon-logos.woff +0 -0
  7. package/src/assets/fonts/iconfonts/logos-iconfont/fonts/icomoon.eot +0 -0
  8. package/src/assets/fonts/iconfonts/logos-iconfont/fonts/icomoon.svg +46 -0
  9. package/src/assets/fonts/iconfonts/logos-iconfont/fonts/icomoon.ttf +0 -0
  10. package/src/assets/fonts/iconfonts/logos-iconfont/icomoon-logos.woff +0 -0
  11. package/src/assets/fonts/iconfonts/logos-iconfont/selection.json +1 -1
  12. package/src/assets/styles/logos-iconfont.css +44 -33
  13. package/src/componentSettingsDataAndControls.vue +7 -7
  14. package/src/components/CmdBackToTopButton.vue +1 -1
  15. package/src/components/CmdBasicForm.vue +2 -2
  16. package/src/components/CmdBox.vue +2 -2
  17. package/src/components/CmdBoxWrapper.vue +2 -2
  18. package/src/components/CmdFakeSelect.vue +2 -2
  19. package/src/components/CmdLoginForm.vue +1 -1
  20. package/src/components/CmdMainNavigation.vue +2 -2
  21. package/src/components/CmdMultistepFormProgressBar.vue +1 -1
  22. package/src/components/CmdPagination.vue +2 -2
  23. package/src/components/CmdSidebar.vue +4 -4
  24. package/src/components/CmdSiteHeader.vue +2 -2
  25. package/src/components/CmdSiteSearch.vue +2 -2
  26. package/src/components/CmdSlideButton.vue +4 -4
  27. package/src/components/CmdSlideshow.vue +4 -3
  28. package/src/components/CmdTable.vue +3 -3
  29. package/src/components/CmdThumbnailScroller.vue +2 -2
  30. package/src/documentation/generated/CmdFakeSelectPropertyDescriptions.json +1 -1
  31. 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-single-arrow-left",
42
+ iconClass: "icon-chevron-one-stripe-left",
43
43
  tooltip: "Previous"
44
44
  },
45
45
  next: {
46
- iconClass: "icon-single-arrow-right",
46
+ iconClass: "icon-chevron-one-stripe-right",
47
47
  tooltip: "Next"
48
48
  },
49
49
  up: {
50
- iconClass: "icon-single-arrow-up",
50
+ iconClass: "icon-chevron-one-stripe-up",
51
51
  tooltip: "Previous"
52
52
  },
53
53
  down: {
54
- iconClass: "icon-single-arrow-down",
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-single-arrow-right",
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-single-arrow-left",
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-single-arrow-down",
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-single-arrow-up",
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-single-arrow-right",
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-single-arrow-right",
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-single-arrow-left",
240
+ iconClass: "icon-chevron-one-stripe-left",
241
241
  tooltip: "Previous"
242
242
  }
243
243
  }
@@ -60,7 +60,7 @@
60
60
  "partial"
61
61
  ],
62
62
  "defaultIcon": [
63
- "icon-single-arrow-down"
63
+ "icon-chevron-one-stripe-down"
64
64
  ]
65
65
  }
66
66
  },
@@ -204,7 +204,7 @@ export default {
204
204
  computed: {
205
205
  iconBackToTop() {
206
206
  return {
207
- iconClass: "icon-single-arrow-up",
207
+ iconClass: "icon-chevron-one-stripe-up",
208
208
  tooltip: this.label("back_to_top_button.tooltip")
209
209
  }
210
210
  }