comand-component-library 3.3.86 → 4.0.0

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 (69) hide show
  1. package/dist/comand-component-library.js +856 -835
  2. package/dist/comand-component-library.umd.cjs +4 -4
  3. package/dist/media/images/slideshow-images/large/slide1.jpg +0 -0
  4. package/dist/media/images/slideshow-images/large/slide2.jpg +0 -0
  5. package/dist/media/images/slideshow-images/large/slide3.jpg +0 -0
  6. package/dist/media/images/slideshow-images/large/slide4.jpg +0 -0
  7. package/dist/media/images/slideshow-images/medium/slide1.jpg +0 -0
  8. package/dist/media/images/slideshow-images/medium/slide2.jpg +0 -0
  9. package/dist/media/images/slideshow-images/medium/slide3.jpg +0 -0
  10. package/dist/media/images/slideshow-images/medium/slide4.jpg +0 -0
  11. package/dist/media/images/slideshow-images/small/slide1.jpg +0 -0
  12. package/dist/media/images/slideshow-images/small/slide2.jpg +0 -0
  13. package/dist/media/images/slideshow-images/small/slide3.jpg +0 -0
  14. package/dist/media/images/slideshow-images/small/slide4.jpg +0 -0
  15. package/dist/style.css +1 -1
  16. package/package.json +2 -2
  17. package/src/App.vue +680 -632
  18. package/src/assets/data/address-data.json +3 -3
  19. package/src/components/CmdAddressData.vue +90 -96
  20. package/src/components/CmdAddressDataItem.vue +60 -52
  21. package/src/components/CmdBankAccountData.vue +1 -1
  22. package/src/components/CmdBox.vue +10 -10
  23. package/src/components/CmdBoxWrapper.vue +8 -4
  24. package/src/components/CmdBreadcrumbs.vue +1 -1
  25. package/src/components/CmdCompanyLogo.vue +14 -11
  26. package/src/components/CmdContainer.vue +24 -0
  27. package/src/components/CmdCookieDisclaimer.vue +1 -1
  28. package/src/components/CmdCopyrightInformation.vue +1 -1
  29. package/src/components/CmdFancyBox.vue +9 -6
  30. package/src/components/CmdForm.vue +7 -1
  31. package/src/components/CmdFormElement.vue +21 -75
  32. package/src/components/CmdFormFilters.vue +2 -1
  33. package/src/components/CmdGoogleMaps.vue +1 -1
  34. package/src/components/CmdHeadline.vue +20 -25
  35. package/src/components/CmdIcon.vue +1 -1
  36. package/src/components/CmdImage.vue +1 -1
  37. package/src/components/CmdImageGallery.vue +1 -1
  38. package/src/components/CmdImageZoom.vue +1 -1
  39. package/src/components/CmdInputGroup.vue +2 -2
  40. package/src/components/CmdListOfLinks.vue +1 -1
  41. package/src/components/CmdListOfLinksItem.vue +0 -4
  42. package/src/components/CmdListOfRequirements.vue +10 -2
  43. package/src/components/CmdLoginForm.vue +1 -1
  44. package/src/components/CmdMainNavigation.vue +18 -17
  45. package/src/components/CmdMultistepFormProgressBar.vue +7 -3
  46. package/src/components/CmdNewsletterSubscription.vue +1 -8
  47. package/src/components/CmdOpeningHours.vue +1 -1
  48. package/src/components/CmdOpeningHoursItem.vue +1 -1
  49. package/src/components/CmdPagination.vue +21 -15
  50. package/src/components/CmdProgressBar.vue +1 -1
  51. package/src/components/CmdSidebar.vue +7 -1
  52. package/src/components/CmdSiteFooter.vue +14 -14
  53. package/src/components/CmdSiteHeader.vue +12 -29
  54. package/src/components/CmdSlideButton.vue +9 -7
  55. package/src/components/CmdSlideshow.vue +14 -12
  56. package/src/components/CmdSocialNetworks.vue +11 -4
  57. package/src/components/CmdSocialNetworksItem.vue +2 -7
  58. package/src/components/CmdSwitchLanguage.vue +1 -1
  59. package/src/components/CmdSystemMessage.vue +10 -6
  60. package/src/components/CmdTable.vue +72 -17
  61. package/src/components/CmdTabs.vue +2 -2
  62. package/src/components/CmdTextImageBlock.vue +1 -1
  63. package/src/components/CmdThumbnailScroller.vue +157 -152
  64. package/src/components/CmdToggleDarkMode.vue +1 -1
  65. package/src/components/CmdTooltip.vue +1 -1
  66. package/src/components/CmdUploadForm.vue +2 -2
  67. package/src/components/CmdWidthLimitationWrapper.vue +7 -3
  68. package/src/index.js +1 -0
  69. package/src/mixins/FieldValidation.js +0 -17
package/src/App.vue CHANGED
@@ -18,79 +18,80 @@
18
18
  :useGap="false"
19
19
  >
20
20
  <template v-slot="slotProps">
21
- <CmdBox
22
- :use-slots="['body']"
23
- :collapsible="true"
24
- :cmdHeadline="{headlineText: 'Template Settings', headlineLevel: 4, headlineIcon: {iconClass: 'icon-settings-template'}}"
25
- :openCollapsedBox="slotProps.boxIsOpen(0)"
26
- @toggleCollapse="slotProps.boxToggled(0, $event)"
27
- >
28
- <template v-slot:body>
29
- <label for="select-template">
30
- <span>Select template</span>
31
- <select id="select-template" v-model="selectedTemplate">
32
- <option value="blank">Blank</option>
33
- <option value="business">Business</option>
34
- <option value="casual">Casual</option>
35
- <option value="dating">Dating</option>
36
- <option value="influencer">Influencer</option>
37
- </select>
38
- </label>
39
- </template>
40
- </CmdBox>
41
- <CmdBox
42
- :use-slots="['body']"
43
- :collapsible="true"
44
- :cmdHeadline="{headlineText: 'Components', headlineLevel: 4, headlineIcon: {iconClass: 'icon-settings-component'}}"
45
- :openCollapsedBox="slotProps.boxIsOpen(1)"
46
- @toggleCollapse="slotProps.boxToggled(1, $event)"
47
- >
48
- <template v-slot:body>
49
- <ul>
50
- <li><a href="#section-address-data">Address Data</a></li>
51
- <li><a href="#section-advanced-form-elements">Advanced Form Elements</a></li>
52
- <li><a href="#section-bank-account-data">Bank Account Data</a></li>
53
- <li><a href="#section-boxes">Boxes</a></li>
54
- <li><a href="#section-breadcrumbs">Breadcrumbs</a></li>
55
- <li><a href="#section-cookie-disclaimer">Cookie-Disclaimer</a></li>
56
- <li><a href="#section-headlines">Headlines</a></li>
57
- <li><a href="#section-fancybox">Fancybox</a></li>
58
- </ul>
59
- <ul>
60
- <li><a href="#section-forms">Forms</a></li>
61
- <li><a href="#section-google-maps">Google-Maps&trade;</a></li>
62
- <li><a href="#section-headlines">Headlines</a></li>
63
- <li><a href="#section-icons">Icons</a></li>
64
- <li><a href="#section-image">Image</a></li>
65
- <li><a href="#section-image-gallery">Image Gallery</a></li>
66
- <li><a href="#section-image-zoom">Image-Zoom</a></li>
67
- <li><a href="#section-list-of-links">List Of Links</a></li>
68
- </ul>
69
- <ul>
70
- <li><a href="#section-login-form">Login Form</a></li>
71
- <li><a href="#section-main-navigation">Main-Navigation</a></li>
72
- <li><a href="#section-multistep-form-progress-bar">Multistepform-Progressbar</a></li>
73
- <li><a href="#section-opening-hours">Opening Hours</a></li>
74
- <li><a href="#section-pagination">Pagination</a></li>
75
- <li><a href="#section-site-footer">Site Footer</a></li>
76
- <li><a href="#section-site-header">Site Header</a></li>
77
- <li><a href="#section-site-search">Site Search</a></li>
78
- <li><a href="#section-slideshow">Slideshow</a></li>
79
- </ul>
80
- <ul>
81
- <li><a href="#section-social-networks">Social Networks</a></li>
82
- <li><a href="#section-switch-language">Switch Language</a></li>
83
- <li><a href="#section-system-message">System-Message</a></li>
84
- <li><a href="#section-tables">Tables</a></li>
85
- <li><a href="#section-tabs">Tabs</a></li>
86
- <li><a href="#section-text-image-block">Text Image Block</a></li>
87
- <li><a href="#section-thumbnail-scroller">Thumbnail-Scroller</a></li>
88
- <li><a href="#section-toggle-darkmode">ToggleDarkMode</a></li>
89
- <li><a href="#section-tooltip">Tooltip</a></li>
90
- <li><a href="#section-upload-form">Upload-Form</a></li>
91
- </ul>
92
- </template>
93
- </CmdBox>
21
+ <CmdBox
22
+ :use-slots="['body']"
23
+ :collapsible="true"
24
+ :cmdHeadline="{headlineText: 'Template Settings', headlineLevel: 4, headlineIcon: {iconClass: 'icon-settings-template'}}"
25
+ :openCollapsedBox="slotProps.boxIsOpen(0)"
26
+ @toggleCollapse="slotProps.boxToggled(0, $event)"
27
+ >
28
+ <template v-slot:body>
29
+ <label for="select-template">
30
+ <span>Select template</span>
31
+ <select id="select-template" v-model="selectedTemplate">
32
+ <option value="blank">Blank</option>
33
+ <option value="business">Business</option>
34
+ <option value="casual">Casual</option>
35
+ <option value="dating">Dating</option>
36
+ <option value="influencer">Influencer</option>
37
+ </select>
38
+ </label>
39
+ </template>
40
+ </CmdBox>
41
+ <CmdBox
42
+ :use-slots="['body']"
43
+ :collapsible="true"
44
+ :cmdHeadline="{headlineText: 'Components', headlineLevel: 4, headlineIcon: {iconClass: 'icon-settings-component'}}"
45
+ :openCollapsedBox="slotProps.boxIsOpen(1)"
46
+ @toggleCollapse="slotProps.boxToggled(1, $event)"
47
+ >
48
+ <template v-slot:body>
49
+ <ul>
50
+ <li><a href="#section-address-data">Address Data</a></li>
51
+ <li><a href="#section-advanced-form-elements">Advanced Form Elements</a></li>
52
+ <li><a href="#section-bank-account-data">Bank Account Data</a></li>
53
+ <li><a href="#section-boxes">Boxes</a></li>
54
+ <li><a href="#section-breadcrumbs">Breadcrumbs</a></li>
55
+ <li><a href="#section-cookie-disclaimer">Cookie-Disclaimer</a></li>
56
+ <li><a href="#section-headlines">Headlines</a></li>
57
+ <li><a href="#section-fancybox">Fancybox</a></li>
58
+ </ul>
59
+ <ul>
60
+ <li><a href="#section-forms">Forms</a></li>
61
+ <li><a href="#section-google-maps">Google-Maps&trade;</a></li>
62
+ <li><a href="#section-headlines">Headlines</a></li>
63
+ <li><a href="#section-icons">Icons</a></li>
64
+ <li><a href="#section-image">Image</a></li>
65
+ <li><a href="#section-image-gallery">Image Gallery</a></li>
66
+ <li><a href="#section-image-zoom">Image-Zoom</a></li>
67
+ <li><a href="#section-list-of-links">List Of Links</a></li>
68
+ </ul>
69
+ <ul>
70
+ <li><a href="#section-login-form">Login Form</a></li>
71
+ <li><a href="#section-main-navigation">Main-Navigation</a></li>
72
+ <li><a href="#section-multistep-form-progress-bar">Multistepform-Progressbar</a>
73
+ </li>
74
+ <li><a href="#section-opening-hours">Opening Hours</a></li>
75
+ <li><a href="#section-pagination">Pagination</a></li>
76
+ <li><a href="#section-site-footer">Site Footer</a></li>
77
+ <li><a href="#section-site-header">Site Header</a></li>
78
+ <li><a href="#section-site-search">Site Search</a></li>
79
+ <li><a href="#section-slideshow">Slideshow</a></li>
80
+ </ul>
81
+ <ul>
82
+ <li><a href="#section-social-networks">Social Networks</a></li>
83
+ <li><a href="#section-switch-language">Switch Language</a></li>
84
+ <li><a href="#section-system-message">System-Message</a></li>
85
+ <li><a href="#section-tables">Tables</a></li>
86
+ <li><a href="#section-tabs">Tabs</a></li>
87
+ <li><a href="#section-text-image-block">Text Image Block</a></li>
88
+ <li><a href="#section-thumbnail-scroller">Thumbnail-Scroller</a></li>
89
+ <li><a href="#section-toggle-darkmode">ToggleDarkMode</a></li>
90
+ <li><a href="#section-tooltip">Tooltip</a></li>
91
+ <li><a href="#section-upload-form">Upload-Form</a></li>
92
+ </ul>
93
+ </template>
94
+ </CmdBox>
94
95
  </template>
95
96
  </CmdBoxWrapper>
96
97
  <dl class="comand-versions">
@@ -135,27 +136,28 @@
135
136
  </template>
136
137
  </CmdSiteHeader>
137
138
  <!-- end site-header --------------------------------------------------------------------------------------------------------------------------------------------------->
138
- <main>
139
+ <main id="content">
139
140
  <!-- begin address-data ------------------------------------------------------------------------------------------------------------------------------------------------------->
140
- <a id="section-address-data"></a>
141
141
  <CmdWidthLimitationWrapper>
142
- <h2 class="headline-demopage">Address Data</h2>
142
+ <h2 class="headline-demopage" id="section-address-data">Address Data</h2>
143
143
  <div class="flex-container">
144
144
  <CmdAddressData
145
145
  :addressData="addressData"
146
146
  :linkGoogleMaps="false"
147
+ :showLabelTexts="true"
147
148
  :cmdHeadline="{headlineText: 'With label texts and icons', headlineLevel: 3}"
148
149
  />
149
150
  <CmdAddressData
150
151
  :addressData="addressData"
151
152
  :linkGoogleMaps="false"
152
- :show-label-texts="false"
153
+ :showLabelTexts="false"
153
154
  :cmdHeadline="{headlineText: 'With label icons only', headlineLevel: 3}"
154
155
  />
155
156
  <CmdAddressData
156
157
  :addressData="addressData"
157
158
  :linkGoogleMaps="false"
158
- :show-label-icons="false"
159
+ :showLabelIcons="false"
160
+ :showLabelTexts="true"
159
161
  :cmdHeadline="{headlineText: 'With label texts', headlineLevel: 3}"
160
162
  />
161
163
  <CmdAddressData
@@ -175,29 +177,48 @@
175
177
  <!-- end address-data ------------------------------------------------------------------------------------------------------------------------------------------------------->
176
178
 
177
179
  <!-- begin advanced form elements --------------------------------------------------------------------------------------------------------------------------------------------------->
178
- <a id="section-advanced-form-elements"></a>
179
180
  <CmdWidthLimitationWrapper>
180
- <a id="anchor-advanced-form-elements"></a>
181
- <h2 class="headline-demopage">Advanced Form Elements</h2>
181
+ <h2 class="headline-demopage" id="section-advanced-form-elements">Advanced Form Elements</h2>
182
182
  <h3>Form elements status:</h3>
183
183
  <div class="flex-container">
184
184
  <ul class="list-status">
185
- <li><a href="#" @click.prevent="setStatus('', false)"
185
+ <li>
186
+ <a href="#" @click.prevent="setStatus('', false)"
186
187
  :class="{'active' : validationStatus === '' && disabledStatus === false}"
187
- id="status-default">Default</a></li>
188
+ id="status-default">
189
+ Default
190
+ </a>
191
+ </li>
188
192
  <li class="error">
189
193
  <a href="#" @click.prevent="setStatus('error', false)"
190
- :class="{'active' : validationStatus === 'error'}" id="status-error">Error</a></li>
191
- <li><a href="#" @click.prevent="setStatus('warning', false)"
192
- :class="{'active' : validationStatus === 'warning'}" id="status-warning">Warning</a>
194
+ :class="{'active' : validationStatus === 'error'}" id="status-error">
195
+ Error
196
+ </a>
197
+ </li>
198
+ <li>
199
+ <a href="#" @click.prevent="setStatus('warning', false)"
200
+ :class="{'active' : validationStatus === 'warning'}" id="status-warning">
201
+ Warning
202
+ </a>
203
+ </li>
204
+ <li>
205
+ <a href="#" @click.prevent="setStatus('success', false)"
206
+ :class="{'active' : validationStatus === 'success'}" id="status-success">
207
+ Success
208
+ </a>
193
209
  </li>
194
- <li><a href="#" @click.prevent="setStatus('success', false)"
195
- :class="{'active' : validationStatus === 'success'}" id="status-success">Success</a>
210
+ <li>
211
+ <a href="#" @click.prevent="setStatus('info', false)"
212
+ :class="{'active' : validationStatus === 'info'}" id="status-info">
213
+ Info
214
+ </a>
215
+ </li>
216
+ <li>
217
+ <a href="#" @click.prevent="setStatus('', true)"
218
+ :class="{'active' : disabledStatus === true}" id="status-disabled">
219
+ Disabled
220
+ </a>
196
221
  </li>
197
- <li><a href="#" @click.prevent="setStatus('info', false)"
198
- :class="{'active' : validationStatus === 'info'}" id="status-info">Info</a></li>
199
- <li><a href="#" @click.prevent="setStatus('', true)"
200
- :class="{'active' : disabledStatus === true}" id="status-disabled">Disabled</a></li>
201
222
  </ul>
202
223
  </div>
203
224
 
@@ -210,249 +231,284 @@
210
231
  <legend>Legend</legend>
211
232
  <h2>Form Element-Component</h2>
212
233
  <div class="flex-container">
213
- <CmdFormElement labelText="Input (type text):"
214
- element="input"
215
- type="text"
216
- :status="validationStatus"
217
- :disabled="disabledStatus"
218
- placeholder="Type in text"
219
- tooltipText="This is a tooltip"
220
- v-bind="{useCustomTooltip: false}"
234
+ <CmdFormElement
235
+ labelText="Input (type text):"
236
+ element="input"
237
+ type="text"
238
+ :status="validationStatus"
239
+ :disabled="disabledStatus"
240
+ placeholder="Type in text"
241
+ tooltipText="This is a tooltip"
242
+ v-bind="{useCustomTooltip: false}"
221
243
  />
222
- <CmdFormElement labelText="Input for selectbox:"
223
- element="select"
224
- required="required"
225
- :status="validationStatus"
226
- :disabled="disabledStatus"
227
- v-model="selectedOption"
228
- :selectOptions="selectOptionsData"
244
+ <CmdFormElement
245
+ labelText="Input for selectbox:"
246
+ element="select"
247
+ required="required"
248
+ :status="validationStatus"
249
+ :disabled="disabledStatus"
250
+ v-model="selectedOption"
251
+ :selectOptions="selectOptionsData"
229
252
  />
230
- <CmdFormElement labelText="Input for datalist:"
231
- element="input"
232
- type="text"
233
- :status="validationStatus"
234
- :disabled="disabledStatus"
235
- placeholder="Type in option"
236
- :datalist="datalist"
237
- tooltipText="This is a tooltip"
253
+ <CmdFormElement
254
+ labelText="Input for datalist:"
255
+ element="input"
256
+ type="text"
257
+ :status="validationStatus"
258
+ :disabled="disabledStatus"
259
+ placeholder="Type in option"
260
+ :datalist="datalist"
261
+ tooltipText="This is a tooltip"
238
262
  />
239
263
  </div>
240
- <CmdFormElement labelText="Input (type search (without search-button)):"
241
- element="input"
242
- type="search"
243
- :status="validationStatus"
244
- :disabled="disabledStatus"
245
- :showSearchButton="false"
246
- placeholder="Search"
247
- tooltipText="This is a tooltip"
248
- v-bind="{useCustomTooltip: false}"
264
+ <CmdFormElement
265
+ labelText="Input (type search (without search-button)):"
266
+ element="input"
267
+ type="search"
268
+ :status="validationStatus"
269
+ :disabled="disabledStatus"
270
+ :showSearchButton="false"
271
+ placeholder="Search"
272
+ tooltipText="This is a tooltip"
273
+ v-bind="{useCustomTooltip: false}"
249
274
  />
250
- <CmdFormElement labelText="Input (type search (with search-button)):"
251
- element="input"
252
- type="search"
253
- :status="validationStatus"
254
- :disabled="disabledStatus"
255
- placeholder="Search"
256
- tooltipText="This is a tooltip"
257
- v-bind="{useCustomTooltip: false}"
275
+ <CmdFormElement
276
+ labelText="Input (type search (with search-button)):"
277
+ element="input"
278
+ type="search"
279
+ :status="validationStatus"
280
+ :disabled="disabledStatus"
281
+ placeholder="Search"
282
+ tooltipText="This is a tooltip"
283
+ v-bind="{useCustomTooltip: false}"
258
284
  />
259
285
  <h2>Inputfields in Columns</h2>
260
286
  <div class="flex-container">
261
- <CmdFormElement element="input"
262
- type="text"
263
- minlength="5"
264
- id="inputfield1"
265
- placeholder="This is placeholder text"
266
- v-model="inputField1"
267
- tooltipText="This is a tooltip!"
268
- :status="validationStatus"
269
- :disabled="disabledStatus">
287
+ <CmdFormElement
288
+ element="input"
289
+ type="text"
290
+ minlength="5"
291
+ id="inputfield1"
292
+ placeholder="This is placeholder text"
293
+ v-model="inputField1"
294
+ tooltipText="This is a tooltip!"
295
+ :status="validationStatus"
296
+ :disabled="disabledStatus">
270
297
  <template v-slot:labeltext>
271
298
  <span v-html="'Label with <a href=\'#\'>Link</a> given by slot'"></span>
272
299
  </template>
273
300
  </CmdFormElement>
274
- <CmdFormElement element="input"
275
- labelText="Label for inputfield (required, with tooltip):"
276
- type="text"
277
- required="required"
278
- minlength="5"
279
- id="inputfield-required"
280
- placeholder="This is placeholder text"
281
- v-model="inputFieldRequired"
282
- tooltipText="This is a tooltip!"
283
- :status="validationStatus"
284
- :disabled="disabledStatus"
301
+ <CmdFormElement
302
+ element="input"
303
+ labelText="Label for inputfield (required, with tooltip):"
304
+ type="text"
305
+ required="required"
306
+ minlength="5"
307
+ id="inputfield-required"
308
+ placeholder="This is placeholder text"
309
+ v-model="inputFieldRequired"
310
+ tooltipText="This is a tooltip!"
311
+ :status="validationStatus"
312
+ :disabled="disabledStatus"
285
313
  />
286
- <CmdFormElement element="input"
287
- labelText="Label for inputfield (with pattern):"
288
- type="text"
289
- id="inputfield-pattern"
290
- placeholder="This is placeholder text"
291
- pattern="/\d/"
292
- v-model="inputFieldPattern"
293
- tooltipText="This is a tooltip!"
294
- :status="validationStatus"
295
- :disabled="disabledStatus"
314
+ <CmdFormElement
315
+ element="input"
316
+ labelText="Label for inputfield (with pattern):"
317
+ type="text"
318
+ id="inputfield-pattern"
319
+ placeholder="This is placeholder text"
320
+ pattern="/\d/"
321
+ v-model="inputFieldPattern"
322
+ tooltipText="This is a tooltip!"
323
+ :status="validationStatus"
324
+ :disabled="disabledStatus"
296
325
  />
297
326
  </div>
298
327
  <!-- begin inputfield in two columns -->
299
328
  <div class="flex-container">
300
- <CmdFormElement labelText="Label for inputfield (with icon):"
301
- element="input"
302
- type="text"
303
- id="inputfield-username"
304
- fieldIconClass="icon-user-profile"
305
- placeholder="Type in username"
306
- tooltipText="This is a tooltip!"
307
- maxlength="100"
308
- v-model="inputUsername"
309
- :status="validationStatus"
310
- :disabled="disabledStatus"
329
+ <CmdFormElement
330
+ labelText="Label for emailfield (with icon):"
331
+ element="input"
332
+ type="email"
333
+ id="inputfield-email"
334
+ fieldIconClass="icon-mail"
335
+ placeholder="Type in email-address"
336
+ tooltipText="This is a tooltip!"
337
+ maxlength="100"
338
+ v-model="inputMail"
339
+ :status="validationStatus"
340
+ :disabled="disabledStatus"
341
+ :required="true"
311
342
  />
312
- <CmdFormElement element="input"
313
- labelText="Label for password-field:"
314
- type="password"
315
- minlength="8"
316
- maxlength="255"
317
- id="inputfield-password"
318
- fieldIconClass="icon-security-settings"
319
- placeholder="Type in password"
320
- tooltipText="This is a tooltip!"
321
- :customRequirements="customRequirements"
322
- v-model="inputPassword"
323
- :status="validationStatus"
324
- :disabled="disabledStatus"
343
+ <CmdFormElement
344
+ labelText="Label for inputfield (with icon):"
345
+ element="input"
346
+ type="text"
347
+ id="inputfield-username"
348
+ fieldIconClass="icon-user-profile"
349
+ placeholder="Type in username"
350
+ tooltipText="This is a tooltip!"
351
+ maxlength="100"
352
+ v-model="inputUsername"
353
+ :status="validationStatus"
354
+ :disabled="disabledStatus"
355
+ />
356
+ <CmdFormElement
357
+ element="input"
358
+ labelText="Label for password-field:"
359
+ type="password"
360
+ minlength="8"
361
+ maxlength="255"
362
+ id="inputfield-password"
363
+ fieldIconClass="icon-security-settings"
364
+ placeholder="Type in password"
365
+ tooltipText="This is a tooltip!"
366
+ :customRequirements="customRequirements"
367
+ v-model="inputPassword"
368
+ :status="validationStatus"
369
+ :disabled="disabledStatus"
325
370
  />
326
371
  </div>
327
372
  <!-- end inputfield in two columns -->
328
373
 
329
- <CmdFormElement element="input"
330
- labelText="Label (inline) for inputfield (number):"
331
- :displayLabelInline="true"
332
- type="number"
333
- id="inputfield-number"
334
- required="required"
335
- min="0"
336
- max="9"
337
- v-model="inputNumber"
338
- :customRequirements="[customRequirements[2]]"
339
- :status="validationStatus"
340
- :disabled="disabledStatus"
374
+ <CmdFormElement
375
+ element="input"
376
+ labelText="Label (inline) for inputfield (number):"
377
+ :displayLabelInline="true"
378
+ type="number"
379
+ id="inputfield-number"
380
+ required="required"
381
+ min="0"
382
+ max="9"
383
+ v-model="inputNumber"
384
+ :customRequirements="[customRequirements[2]]"
385
+ :status="validationStatus"
386
+ :disabled="disabledStatus"
341
387
  />
342
- <CmdFormElement element="input"
343
- labelText="Label (inline) for inputfield (date):"
344
- :displayLabelInline="true"
345
- type="date"
346
- id="inputfield-date"
347
- v-model="inputDate"
348
- :status="validationStatus"
349
- :disabled="disabledStatus"
388
+ <CmdFormElement
389
+ element="input"
390
+ labelText="Label (inline) for inputfield (date):"
391
+ :displayLabelInline="true"
392
+ type="date"
393
+ id="inputfield-date"
394
+ v-model="inputDate"
395
+ :status="validationStatus"
396
+ :disabled="disabledStatus"
350
397
  />
351
- <CmdFormElement element="input"
352
- labelText="Label (inline) for inputfield (search) without search-button:"
353
- :displayLabelInline="true"
354
- type="search"
355
- id="inputfield-search-without-searchbutton"
356
- placeholder="Keyword(s)"
357
- v-model="inputSearch"
358
- :showSearchButton="false"
359
- :status="validationStatus"
360
- :disabled="disabledStatus"
398
+ <CmdFormElement
399
+ element="input"
400
+ labelText="Label (inline) for inputfield (search) without search-button:"
401
+ :displayLabelInline="true"
402
+ type="search"
403
+ id="inputfield-search-without-searchbutton"
404
+ placeholder="Keyword(s)"
405
+ v-model="inputSearch"
406
+ :showSearchButton="false"
407
+ :status="validationStatus"
408
+ :disabled="disabledStatus"
361
409
  />
362
- <CmdFormElement element="input"
363
- labelText="Label (inline) for inputfield (search):"
364
- :displayLabelInline="true"
365
- type="search"
366
- id="inputfield-search-with-searchbutton"
367
- placeholder="Keyword(s)"
368
- v-model="inputSearch"
369
- :status="validationStatus"
370
- :disabled="disabledStatus"
410
+ <CmdFormElement
411
+ element="input"
412
+ labelText="Label (inline) for inputfield (search):"
413
+ :displayLabelInline="true"
414
+ type="search"
415
+ id="inputfield-search-with-searchbutton"
416
+ placeholder="Keyword(s)"
417
+ v-model="inputSearch"
418
+ :status="validationStatus"
419
+ :disabled="disabledStatus"
371
420
  />
372
- <CmdFormElement element="textarea"
373
- labelText="Label for textarea:"
374
- id="textarea"
375
- minlength="1"
376
- maxlength="100"
377
- placeholder="Type in your message"
378
- v-model="textarea"
379
- :status="validationStatus"
380
- :disabled="disabledStatus"
421
+ <CmdFormElement
422
+ element="textarea"
423
+ labelText="Label for textarea:"
424
+ id="textarea"
425
+ minlength="1"
426
+ maxlength="100"
427
+ placeholder="Type in your message"
428
+ :required="true"
429
+ v-model="textarea"
430
+ :status="validationStatus"
431
+ :disabled="disabledStatus"
381
432
  />
382
433
  <hr/>
383
434
  <h2>Fake Selects</h2>
384
435
  <div class="flex-container">
385
436
  <!-- type === default: normal selectbox (with optional icons) -->
386
- <CmdFakeSelect labelText="Default selectbox:"
387
- :status="validationStatus"
388
- :disabled="disabledStatus"
389
- :selectData="fakeSelectOptionsData"
390
- v-model="fakeSelectDefault"
391
- :required="true"
392
- defaultOptionName="Select an option:"
393
- title="Title for FakeSelect"
437
+ <CmdFakeSelect
438
+ labelText="Default selectbox:"
439
+ :status="validationStatus"
440
+ :disabled="disabledStatus"
441
+ :selectData="fakeSelectOptionsData"
442
+ v-model="fakeSelectDefault"
443
+ :required="true"
444
+ defaultOptionName="Select an option:"
445
+ title="Title for FakeSelect"
394
446
  />
395
- <CmdFakeSelect labelText="Default selectbox with icons:"
396
- :status="validationStatus"
397
- :disabled="disabledStatus"
398
- :selectData="fakeSelectOptionsWithIconsData"
399
- v-model="fakeSelectDefaultWithIcons"
400
- defaultOptionName="Select an option:"
447
+ <CmdFakeSelect
448
+ labelText="Default selectbox with icons:"
449
+ :status="validationStatus"
450
+ :disabled="disabledStatus"
451
+ :selectData="fakeSelectOptionsWithIconsData"
452
+ v-model="fakeSelectDefaultWithIcons"
453
+ defaultOptionName="Select an option:"
401
454
  />
402
455
  <!-- type === checkboxOptions: selectbox with checkboxes for each option -->
403
- <CmdFakeSelect labelText="Selectbox with checkboxes:"
404
- :status="validationStatus"
405
- :disabled="disabledStatus"
406
- :selectData="fakeSelectOptionsData"
407
- v-model="fakeSelectCheckbox"
408
- defaultOptionName="Options:"
409
- :required="true"
410
- id="selectbox-with-checkboxes"
411
- type="checkboxOptions"
412
- :useCustomTooltip="true"
456
+ <CmdFakeSelect
457
+ labelText="Selectbox with checkboxes:"
458
+ :status="validationStatus"
459
+ :disabled="disabledStatus"
460
+ :selectData="fakeSelectOptionsData"
461
+ v-model="fakeSelectCheckbox"
462
+ defaultOptionName="Options:"
463
+ :required="true"
464
+ id="selectbox-with-checkboxes"
465
+ type="checkboxOptions"
466
+ :useCustomTooltip="true"
413
467
  />
414
- <CmdFakeSelect labelText="Selectbox with filters:"
415
- :status="validationStatus"
416
- :disabled="disabledStatus"
417
- :selectData="fakeSelectFilterOptionsData"
418
- v-model="fakeSelectFilters"
419
- defaultOptionName="Filters:"
420
- id="selectbox-with-filters"
421
- type="checkboxOptions"
422
- :useCustomTooltip="true"
468
+ <CmdFakeSelect
469
+ labelText="Selectbox with filters:"
470
+ :status="validationStatus"
471
+ :disabled="disabledStatus"
472
+ :selectData="fakeSelectFilterOptionsData"
473
+ v-model="fakeSelectFilters"
474
+ defaultOptionName="Filters:"
475
+ id="selectbox-with-filters"
476
+ type="checkboxOptions"
477
+ :useCustomTooltip="true"
423
478
  />
424
- <CmdFakeSelect labelText="Selectbox with slot-content:"
425
- :status="validationStatus"
426
- :disabled="disabledStatus"
427
- type="content"
428
- defaultOptionName="HTML-Content:">
479
+ <CmdFakeSelect
480
+ labelText="Selectbox with slot-content:"
481
+ :status="validationStatus"
482
+ :disabled="disabledStatus"
483
+ type="content"
484
+ defaultOptionName="HTML-Content:">
429
485
  <ul class="custom-fake-select-content">
430
486
  <li>
431
487
  <div>
432
488
  <h3>Headline</h3>
433
489
  <p>Some content inside a paragraph</p>
434
490
  </div>
435
- <img
436
- src="media/images/thumbnail-scroller/thumbnail/logo-cmd-blue-landscape.jpg"
437
- alt="image"/>
491
+ <img src="media/images/thumbnail-scroller/thumbnail/logo-cmd-blue-landscape.jpg" alt="image"/>
438
492
  </li>
439
493
  </ul>
440
494
  </CmdFakeSelect>
441
- <CmdFakeSelect labelText="Selectbox with country flags:"
442
- :status="validationStatus"
443
- :disabled="disabledStatus"
444
- :selectData="fakeSelectCountriesData"
445
- v-model="selectedCountry"
446
- defaultOptionName="Select country:"
447
- type="country"
495
+ <CmdFakeSelect
496
+ labelText="Selectbox with country flags:"
497
+ :status="validationStatus"
498
+ :disabled="disabledStatus"
499
+ :selectData="fakeSelectCountriesData"
500
+ v-model="selectedCountry"
501
+ defaultOptionName="Select country:"
502
+ type="country"
448
503
  />
449
- <CmdFakeSelect labelText="Selectbox with colors:"
450
- :status="validationStatus"
451
- :disabled="disabledStatus"
452
- :selectData="fakeSelectColorsData"
453
- v-model="selectedColor"
454
- required="required"
455
- type="color"
504
+ <CmdFakeSelect
505
+ labelText="Selectbox with colors:"
506
+ :status="validationStatus"
507
+ :disabled="disabledStatus"
508
+ :selectData="fakeSelectColorsData"
509
+ v-model="selectedColor"
510
+ required="required"
511
+ type="color"
456
512
  />
457
513
  </div>
458
514
 
@@ -472,35 +528,35 @@
472
528
  <div class="label" :class="validationStatus">
473
529
  <span class="label-text">Single-Slider (with in- and output):</span>
474
530
  <span class="flex-container no-flex">
475
- <label for="range-value">
476
- <span class="label-text">
477
- <span>Range Value</span>
478
- </span>
479
- <input
480
- type="number"
481
- :class="validationStatus"
482
- v-model="rangeValue"
483
- :disabled="disabledStatus"
484
- min="0"
485
- max="100"
486
- id="range-value"
487
- />
488
- </label>
489
- <label for="range-slider">
490
- <span class="label-text hidden">
491
- <span>Range Value</span>
531
+ <label class="inline" for="range-value">
532
+ <span class="label-text">
533
+ <span>Range Value:</span>
534
+ </span>
535
+ <input
536
+ type="number"
537
+ :class="validationStatus"
538
+ v-model="rangeValue"
539
+ :disabled="disabledStatus"
540
+ min="0"
541
+ max="100"
542
+ id="range-value"
543
+ />
544
+ </label>
545
+ <label for="range-slider">
546
+ <span class="label-text hidden">
547
+ <span>Range Value</span>
548
+ </span>
549
+ <input
550
+ type="range"
551
+ class="range-slider"
552
+ id="range-slider"
553
+ v-model="rangeValue"
554
+ :disabled="disabledStatus"
555
+ min="0"
556
+ max="100"
557
+ />
558
+ </label>
492
559
  </span>
493
- <input
494
- type="range"
495
- class="range-slider"
496
- id="range-slider"
497
- v-model="rangeValue"
498
- :disabled="disabledStatus"
499
- min="0"
500
- max="100"
501
- />
502
- </label>
503
- </span>
504
560
  </div>
505
561
  <!-- end slider -->
506
562
 
@@ -531,70 +587,75 @@
531
587
  :disabled="disabledStatus"
532
588
  />
533
589
  <h3>Switches with switch-labels</h3>
534
- <CmdFormElement element="input"
535
- type="checkbox"
536
- id="toggle-switch-checkbox-switch-label"
537
- v-model="switchButtonCheckbox"
538
- labelText="Labeltext for Toggle-Switch with Switch-Label"
539
- inputValue="checkbox1"
540
- onLabel="Label on"
541
- offLabel="Label off"
542
- :toggleSwitch="true"
543
- :status="validationStatus"
544
- :disabled="disabledStatus"
590
+ <CmdFormElement
591
+ element="input"
592
+ type="checkbox"
593
+ id="toggle-switch-checkbox-switch-label"
594
+ v-model="switchButtonCheckbox"
595
+ labelText="Labeltext for Toggle-Switch with Switch-Label"
596
+ inputValue="checkbox1"
597
+ onLabel="Label on"
598
+ offLabel="Label off"
599
+ :toggleSwitch="true"
600
+ :status="validationStatus"
601
+ :disabled="disabledStatus"
545
602
  />
546
- <CmdFormElement element="input"
547
- type="checkbox"
548
- id="toggle-switch-checkbox-switch-label-colored"
549
- v-model="switchButtonCheckbox"
550
- inputValue="checkbox2"
551
- labelText="Labeltext for Toggle-Switch (Checkbox, colored)"
552
- onLabel="Label on"
553
- offLabel="Label off"
554
- :colored="true"
555
- :toggleSwitch="true"
556
- :status="validationStatus"
557
- :disabled="disabledStatus"
603
+ <CmdFormElement
604
+ element="input"
605
+ type="checkbox"
606
+ id="toggle-switch-checkbox-switch-label-colored"
607
+ v-model="switchButtonCheckbox"
608
+ inputValue="checkbox2"
609
+ labelText="Labeltext for Toggle-Switch (Checkbox, colored)"
610
+ onLabel="Label on"
611
+ offLabel="Label off"
612
+ :colored="true"
613
+ :toggleSwitch="true"
614
+ :status="validationStatus"
615
+ :disabled="disabledStatus"
558
616
  />
559
- <CmdFormElement element="input"
560
- type="radio"
561
- name="radiogroup"
562
- id="toggle-switch-radio1"
563
- v-model="switchButtonRadio"
564
- onLabel="Label on"
565
- offLabel="Label off"
566
- :colored="true"
567
- :toggleSwitch="true"
568
- :status="validationStatus"
569
- :disabled="disabledStatus"
570
- inputValue="radio1"
571
- labelText="Labeltext for Toggle-Switch (Radio, colored) #1"
617
+ <CmdFormElement
618
+ element="input"
619
+ type="radio"
620
+ name="radiogroup"
621
+ id="toggle-switch-radio1"
622
+ v-model="switchButtonRadio"
623
+ onLabel="Label on"
624
+ offLabel="Label off"
625
+ :colored="true"
626
+ :toggleSwitch="true"
627
+ :status="validationStatus"
628
+ :disabled="disabledStatus"
629
+ inputValue="radio1"
630
+ labelText="Labeltext for Toggle-Switch (Radio, colored) #1"
572
631
  />
573
- <CmdFormElement element="input"
574
- type="radio"
575
- name="radiogroup"
576
- id="toggle-switch-radio2"
577
- v-model="switchButtonRadio"
578
- onLabel="Label on"
579
- offLabel="Label off"
580
- :colored="true"
581
- :toggleSwitch="true"
582
- :status="validationStatus"
583
- :disabled="disabledStatus"
584
- inputValue="radio2"
585
- labelText="Labeltext for Toggle-Switch (Radio, colored) #2"
632
+ <CmdFormElement
633
+ element="input"
634
+ type="radio"
635
+ name="radiogroup"
636
+ id="toggle-switch-radio2"
637
+ v-model="switchButtonRadio"
638
+ onLabel="Label on"
639
+ offLabel="Label off"
640
+ :colored="true"
641
+ :toggleSwitch="true"
642
+ :status="validationStatus"
643
+ :disabled="disabledStatus"
644
+ inputValue="radio2"
645
+ labelText="Labeltext for Toggle-Switch (Radio, colored) #2"
586
646
  />
587
647
  <!-- end toggle-switch-radio with switch-label (colored) -->
588
648
 
589
649
  <!-- begin checkboxes and radiobuttons -->
590
- <CmdFormElement element="input"
591
- labelText="Label for (required) checkbox with boolean"
592
- type="checkbox"
593
- required="required"
594
- id="checkbox-required-with-boolean"
595
- v-model="checkboxRequiredValue"
596
- :status="validationStatus"
597
- :disabled="disabledStatus"
650
+ <CmdFormElement
651
+ element="input"
652
+ labelText="Label for (required) checkbox with boolean"
653
+ type="checkbox"
654
+ required="required"
655
+ id="checkbox-required-with-boolean"
656
+ v-model="checkboxRequiredValue"
657
+ :status="validationStatus"
658
+ :disabled="disabledStatus"
598
659
  />
599
660
  <p>
600
661
  checkbox (required) with boolean: {{ checkboxRequiredValue }}<br/>
@@ -602,8 +663,7 @@
602
663
  checkboxes with values: {{ checkboxValues }}
603
664
  </p>
604
665
 
605
- <h3>Toggle Dark-Mode</h3>
606
- <a id="section-toggle-darkmode"></a>
666
+ <h3 id="section-toggle-darkmode">Toggle Dark-Mode</h3>
607
667
  <h4>Toggle Dark-Mode (with label, not styled)</h4>
608
668
  <CmdToggleDarkMode :showLabel="true"/>
609
669
  <h4>Toggle Dark-Mode (without label, styled)</h4>
@@ -616,39 +676,43 @@
616
676
  <div class="label inline">
617
677
  <span class="label-text">Label for native checkboxes:</span>
618
678
  <div class="flex-container no-flex">
619
- <CmdFormElement element="input"
620
- labelText="Label for checkbox with boolean"
621
- type="checkbox"
622
- id="checkbox-with-boolean"
623
- v-model="checkboxValue"
624
- :status="validationStatus"
625
- :disabled="disabledStatus"
679
+ <CmdFormElement
680
+ element="input"
681
+ labelText="Label for checkbox with boolean"
682
+ type="checkbox"
683
+ id="checkbox-with-boolean"
684
+ v-model="checkboxValue"
685
+ :status="validationStatus"
686
+ :disabled="disabledStatus"
626
687
  />
627
- <CmdFormElement element="input"
628
- labelText="Label for checkbox with value"
629
- v-model="checkboxValues"
630
- inputValue="checkboxValue1"
631
- type="checkbox"
632
- id="checkbox-with-value-1"
633
- :status="validationStatus"
634
- :disabled="disabledStatus"
688
+ <CmdFormElement
689
+ element="input"
690
+ labelText="Label for checkbox with value"
691
+ v-model="checkboxValues"
692
+ inputValue="checkboxValue1"
693
+ type="checkbox"
694
+ id="checkbox-with-value-1"
695
+ :status="validationStatus"
696
+ :disabled="disabledStatus"
635
697
  />
636
- <CmdFormElement element="input"
637
- labelText="Label for checkbox with value"
638
- v-model="checkboxValues"
639
- inputValue="checkboxValue2"
640
- type="checkbox"
641
- id="checkbox-with-value-2"
642
- :status="validationStatus"
643
- :disabled="disabledStatus"
698
+ <CmdFormElement
699
+ element="input"
700
+ labelText="Label for checkbox with value"
701
+ v-model="checkboxValues"
702
+ inputValue="checkboxValue2"
703
+ type="checkbox"
704
+ id="checkbox-with-value-2"
705
+ :status="validationStatus"
706
+ :disabled="disabledStatus"
644
707
  />
645
- <CmdFormElement element="input"
646
- v-model="checkboxValues"
647
- inputValue="checkboxValue3"
648
- type="checkbox"
649
- id="checkbox-with-value-3"
650
- :status="validationStatus"
651
- :disabled="disabledStatus">
708
+ <CmdFormElement
709
+ element="input"
710
+ v-model="checkboxValues"
711
+ inputValue="checkboxValue3"
712
+ type="checkbox"
713
+ id="checkbox-with-value-3"
714
+ :status="validationStatus"
715
+ :disabled="disabledStatus">
652
716
  <template v-slot:labeltext>
653
717
  Labeltext with <a href="#">link</a> given by slot
654
718
  </template>
@@ -659,25 +723,27 @@
659
723
  <div class="label inline">
660
724
  <span class="label-text">Label for Replaced Input-Type-Checkbox:</span>
661
725
  <div class="flex-container no-flex">
662
- <CmdFormElement element="input"
663
- labelText="Label for replaced checkbox"
664
- type="checkbox"
665
- :replaceInputType="true"
666
- id="inputfield9"
667
- v-model="replacedCheckboxValue"
668
- inputValue="checkboxValue1"
669
- :status="validationStatus"
670
- :disabled="disabledStatus"
726
+ <CmdFormElement
727
+ element="input"
728
+ labelText="Label for replaced checkbox"
729
+ type="checkbox"
730
+ :replaceInputType="true"
731
+ id="inputfield9"
732
+ v-model="replacedCheckboxValue"
733
+ inputValue="checkboxValue1"
734
+ :status="validationStatus"
735
+ :disabled="disabledStatus"
671
736
  />
672
- <CmdFormElement element="input"
673
- labelText="Label for replaced checkbox"
674
- v-model="replacedCheckboxValue"
675
- inputValue="checkboxValue2"
676
- type="checkbox"
677
- :replaceInputType="true"
678
- id="inputfield10"
679
- :status="validationStatus"
680
- :disabled="disabledStatus"
737
+ <CmdFormElement
738
+ element="input"
739
+ labelText="Label for replaced checkbox"
740
+ v-model="replacedCheckboxValue"
741
+ inputValue="checkboxValue2"
742
+ type="checkbox"
743
+ :replaceInputType="true"
744
+ id="inputfield10"
745
+ :status="validationStatus"
746
+ :disabled="disabledStatus"
681
747
  />
682
748
  </div>
683
749
  </div>
@@ -685,25 +751,27 @@
685
751
  <div class="label inline">
686
752
  <span class="label-text">Label for native radiobuttons:</span>
687
753
  <div class="flex-container no-flex">
688
- <CmdFormElement element="input"
689
- labelText="Label for native radiobutton"
690
- type="radio"
691
- id="inputfield11"
692
- name="radiogroup"
693
- inputValue="radiobuttonValue1"
694
- v-model="radiobuttonValue"
695
- :status="validationStatus"
696
- :disabled="disabledStatus"
754
+ <CmdFormElement
755
+ element="input"
756
+ labelText="Label for native radiobutton"
757
+ type="radio"
758
+ id="inputfield11"
759
+ name="radiogroup"
760
+ inputValue="radiobuttonValue1"
761
+ v-model="radiobuttonValue"
762
+ :status="validationStatus"
763
+ :disabled="disabledStatus"
697
764
  />
698
- <CmdFormElement element="input"
699
- labelText="Label for native radiobutton"
700
- type="radio"
701
- id="inputfield12"
702
- name="radiogroup"
703
- inputValue="radiobuttonValue2"
704
- v-model="radiobuttonValue"
705
- :status="validationStatus"
706
- :disabled="disabledStatus"
765
+ <CmdFormElement
766
+ element="input"
767
+ labelText="Label for native radiobutton"
768
+ type="radio"
769
+ id="inputfield12"
770
+ name="radiogroup"
771
+ inputValue="radiobuttonValue2"
772
+ v-model="radiobuttonValue"
773
+ :status="validationStatus"
774
+ :disabled="disabledStatus"
707
775
  />
708
776
  </div>
709
777
  </div>
@@ -714,27 +782,29 @@
714
782
  <div class="label inline">
715
783
  <span class="label-text">Label for Replaced Input-Type-Radio:</span>
716
784
  <div class="flex-container no-flex">
717
- <CmdFormElement element="input"
718
- labelText="Label for replaced radiobutton"
719
- type="radio"
720
- :replaceInputType="true"
721
- id="inputfield13"
722
- name="replaced-radiogroup"
723
- inputValue="radiobuttonValue1"
724
- v-model="replacedRadiobuttonValue"
725
- :status="validationStatus"
726
- :disabled="disabledStatus"
785
+ <CmdFormElement
786
+ element="input"
787
+ labelText="Label for replaced radiobutton"
788
+ type="radio"
789
+ :replaceInputType="true"
790
+ id="inputfield13"
791
+ name="replaced-radiogroup"
792
+ inputValue="radiobuttonValue1"
793
+ v-model="replacedRadiobuttonValue"
794
+ :status="validationStatus"
795
+ :disabled="disabledStatus"
727
796
  />
728
- <CmdFormElement element="input"
729
- labelText="Label for replaced radiobutton"
730
- type="radio"
731
- :replaceInputType="true"
732
- id="inputfield14"
733
- name="replaced-radiogroup"
734
- inputValue="radiobuttonValue2"
735
- v-model="replacedRadiobuttonValue"
736
- :status="validationStatus"
737
- :disabled="disabledStatus"
797
+ <CmdFormElement
798
+ element="input"
799
+ labelText="Label for replaced radiobutton"
800
+ type="radio"
801
+ :replaceInputType="true"
802
+ id="inputfield14"
803
+ name="replaced-radiogroup"
804
+ inputValue="radiobuttonValue2"
805
+ v-model="replacedRadiobuttonValue"
806
+ :status="validationStatus"
807
+ :disabled="disabledStatus"
738
808
  />
739
809
  </div>
740
810
  </div>
@@ -749,25 +819,27 @@
749
819
  :status="validationStatus"
750
820
  :disabled="disabledStatus"
751
821
  >
752
- <CmdFormElement element="input"
753
- labelText="Label for radiobutton"
754
- type="radio"
755
- id="input-group-radiobutton"
756
- name="radiogroup2"
757
- inputValue="radiobuttonValue1"
758
- v-model="inputGroupRadio"
759
- :status="validationStatus"
760
- :disabled="disabledStatus"
822
+ <CmdFormElement
823
+ element="input"
824
+ labelText="Label for radiobutton"
825
+ type="radio"
826
+ id="input-group-radiobutton"
827
+ name="radiogroup2"
828
+ inputValue="radiobuttonValue1"
829
+ v-model="inputGroupRadio"
830
+ :status="validationStatus"
831
+ :disabled="disabledStatus"
761
832
  />
762
- <CmdFormElement element="input"
763
- labelText="Label for radiobutton"
764
- type="radio"
765
- id="input-group-radiobutton"
766
- name="radiogroup2"
767
- inputValue="radiobuttonValue2"
768
- v-model="inputGroupRadio"
769
- :status="validationStatus"
770
- :disabled="disabledStatus"
833
+ <CmdFormElement
834
+ element="input"
835
+ labelText="Label for radiobutton"
836
+ type="radio"
837
+ id="input-group-radiobutton"
838
+ name="radiogroup2"
839
+ inputValue="radiobuttonValue2"
840
+ v-model="inputGroupRadio"
841
+ :status="validationStatus"
842
+ :disabled="disabledStatus"
771
843
  />
772
844
  </CmdInputGroup>
773
845
  <dl>
@@ -823,8 +895,7 @@
823
895
  <output>{{ inputGroupValueReplaceInputTypeCheckbox }}</output>
824
896
  </dd>
825
897
  </dl>
826
- <h3>Input Groups with Checkboxes/
827
- Radiobuttons (toggle-switches)</h3>
898
+ <h3>Input Groups with Checkboxes/Radiobuttons (toggle-switches)</h3>
828
899
  <CmdInputGroup
829
900
  labelText="Grouplabel for checkbox-group styled as toggle-switches:"
830
901
  :inputElements="idForReplacedInputsInInputGroup('checkbox-group-toggle-switch')"
@@ -893,12 +964,13 @@
893
964
  <!-- end fieldset -->
894
965
  <div class="button-wrapper">
895
966
  <small><sup>*</sup>values will not be submitted with the form!</small>
896
- <CmdFormElement element="button"
897
- :nativeButton="{text: 'Submit-button from component'}"
898
- type="submit"
899
- id="submitbutton"
900
- name="submitbutton"
901
- :disabled="disabledStatus"
967
+ <CmdFormElement
968
+ element="button"
969
+ :nativeButton="{text: 'Submit-button from component'}"
970
+ type="submit"
971
+ id="submitbutton"
972
+ name="submitbutton"
973
+ :disabled="disabledStatus"
902
974
  />
903
975
  <button type="submit" :disabled="disabledStatus">
904
976
  <span class="icon-check"></span>
@@ -914,9 +986,8 @@
914
986
  <!-- end back to top button ----------------------------------------------------------------------------------------------------------------------------------------------------->
915
987
 
916
988
  <!-- begin bank account data ----------------------------------------------------------------------------------------------------------------------------------------------------->
917
- <a id="section-bank-account-data"></a>
918
989
  <CmdWidthLimitationWrapper>
919
- <h2 class="headline-demopage">Bank Account Data</h2>
990
+ <h2 class="headline-demopage" id="section-bank-account-data">Bank Account Data</h2>
920
991
  <CmdBankAccountData :account-data="bankAccountData"
921
992
  :cmd-headline="{ headlineText: 'Bank Account', headlineLevel: 3}"
922
993
  :allow-copy-by-click="true"/>
@@ -924,20 +995,25 @@
924
995
  <!-- end bank account data ------------------------------------------------------------------------------------------------------------------------------------------------------->
925
996
 
926
997
  <!-- begin boxes ------------------------------------------------------------------------------------------------------------------------------------------------------->
927
- <a id="section-boxes"></a>
928
998
  <CmdWidthLimitationWrapper>
929
- <h2 class="headline-demopage">Boxes</h2>
930
- <CmdBoxWrapper :useFlexbox="true"
931
- :cmdHeadline="{headlineText: 'Boxes in BoxWrapper with flexbox', headlineLevel: 3}"
932
- :use-gap="true">
933
- <CmdBox v-for="index in 14"
934
- :key="index"
935
- textBody="Content"
936
- :cmd-headline="{headlineText: 'Headline ' + index, headlineLevel: 4}"/>
999
+ <h2 class="headline-demopage" id="section-boxes">Boxes</h2>
1000
+ <CmdBoxWrapper
1001
+ :useFlexbox="true"
1002
+ :cmdHeadline="{headlineText: 'Boxes in BoxWrapper with flexbox', headlineLevel: 3}"
1003
+ :use-gap="true"
1004
+ >
1005
+ <CmdBox
1006
+ v-for="index in 14"
1007
+ :key="index"
1008
+ textBody="Content"
1009
+ :cmd-headline="{headlineText: 'Headline ' + index, headlineLevel: 4}"
1010
+ />
937
1011
  </CmdBoxWrapper>
938
- <CmdBoxWrapper :useFlexbox="true"
939
- :use-gap="true"
940
- :cmdHeadline="{headlineText: 'Different examples of content-boxes (in BoxWrapper)', headlineLevel: 3}">
1012
+ <CmdBoxWrapper
1013
+ :useFlexbox="true"
1014
+ :use-gap="true"
1015
+ :cmdHeadline="{headlineText: 'Different examples of content-boxes (in BoxWrapper)', headlineLevel: 3}"
1016
+ >
941
1017
  <CmdBox
942
1018
  :stretch-vertically="false"
943
1019
  :cmdHeadline="{headlineText: 'Box with cutoff text', headlineLevel: 4}"
@@ -946,8 +1022,7 @@
946
1022
  >
947
1023
  <template v-slot:body>
948
1024
  This is a long text that is cutoff after a specific number of lines that can be defined
949
- by
950
- the property 'cutoffTextLines' and be toggled by a link below.
1025
+ by the property 'cutoffTextLines' and be toggled by a link below.
951
1026
  </template>
952
1027
  </CmdBox>
953
1028
  <CmdBox :useSlots="['header', 'body', 'footer']">
@@ -992,7 +1067,7 @@
992
1067
  </template>
993
1068
  </CmdBox>
994
1069
  <CmdBox
995
- :use-default-padding="false"
1070
+ :use-default-padding="true"
996
1071
  :cmdHeadline="{headlineText: 'Collapsible box', headlineLevel: 4}"
997
1072
  :image="{src: 'media/images/content-images/landscape-medium.jpg', altText: 'ALternative text'}"
998
1073
  textBody="This is some text given by property."
@@ -1051,10 +1126,11 @@
1051
1126
  </template>
1052
1127
  </CmdBoxWrapper>
1053
1128
  <h3>Product boxes (collapsible)</h3>
1054
- <CmdBoxWrapper :boxesPerRow="[5, 2, 1]"
1055
- :useRowViewAsDefault="true"
1056
- :allowMultipleExpandedBoxes="false"
1057
- :useGap="true">
1129
+ <CmdBoxWrapper
1130
+ :boxesPerRow="[5, 2, 1]"
1131
+ :useRowViewAsDefault="true"
1132
+ :allowMultipleExpandedBoxes="false"
1133
+ :useGap="true">
1058
1134
  <template v-slot="slotProps">
1059
1135
  <CmdBox
1060
1136
  v-for="index in boxProductData.length"
@@ -1067,7 +1143,7 @@
1067
1143
  :openCollapsedBox="slotProps.boxIsOpen(index - 1)"
1068
1144
  @toggleCollapse="slotProps.boxToggled(index - 1, $event)"
1069
1145
  >
1070
- <template #body>{{slotProps.currentOpenBox}}<br />Content {{ index }}</template>
1146
+ <template #body>{{ slotProps.currentOpenBox }}Content {{ index }}</template>
1071
1147
  </CmdBox>
1072
1148
  </template>
1073
1149
  </CmdBoxWrapper>
@@ -1075,17 +1151,15 @@
1075
1151
  <!-- end boxes ------------------------------------------------------------------------------------------------------------------------------------------------------->
1076
1152
 
1077
1153
  <!-- begin breadcrumbs ------------------------------------------------------------------------------------------------------------------------------------------------------->
1078
- <a id="section-breadcrumbs"></a>
1079
1154
  <CmdWidthLimitationWrapper inner-component="div">
1080
- <h2 class="headline-demopage">Breadcrumbs</h2>
1155
+ <h2 class="headline-demopage" id="section-breadcrumbs">Breadcrumbs</h2>
1081
1156
  <CmdBreadcrumbs :breadcrumbLinks="breadcrumbData" breadcrumbLabel="You are here:"/>
1082
1157
  </CmdWidthLimitationWrapper>
1083
1158
  <!-- end breadcrumbs ------------------------------------------------------------------------------------------------------------------------------------------------------->
1084
1159
 
1085
1160
  <!-- begin cookie-disclaimer ------------------------------------------------------------------------------------------------------------------------------------------------------->
1086
- <a id="section-cookie-disclaimer"></a>
1087
1161
  <CmdWidthLimitationWrapper>
1088
- <h2 class="headline-demopage">Cookie Disclaimer</h2>
1162
+ <h2 class="headline-demopage" id="section-cookie-disclaimer">Cookie Disclaimer</h2>
1089
1163
  <a class="button" href="#" @click.prevent="fancyBoxCookieDisclaimer = true">
1090
1164
  <span>Open Cookie Disclaimer</span>
1091
1165
  </a>
@@ -1093,28 +1167,22 @@
1093
1167
  <!-- end cookie-disclaimer ------------------------------------------------------------------------------------------------------------------------------------------------------->
1094
1168
 
1095
1169
  <!-- begin headline ------------------------------------------------------------------------------------------------------------------------------------------------------->
1096
- <a id="section-headlines"></a>
1097
1170
  <CmdWidthLimitationWrapper>
1098
- <h2 class="headline-demopage">Headlines</h2>
1099
- <CmdHeadline :headlineIcon="{iconClass: 'icon-home'}" pre-headline-text="Pre-headline"
1100
- headlineText="Headline level 1" :headlineLevel="1"/>
1101
- <CmdHeadline pre-headline-text="Pre-headline" :headlineIcon="{iconClass: 'icon-home'}" headlineText="Headline level 2" :headlineLevel="2" />
1171
+ <h2 class="headline-demopage" id="section-headlines">Headlines</h2>
1172
+ <CmdHeadline :headlineIcon="{iconClass: 'icon-home'}" pre-headline-text="Pre-headline" headlineText="Headline level 1" :headlineLevel="1"/>
1173
+ <CmdHeadline pre-headline-text="Pre-headline" :headlineIcon="{iconClass: 'icon-home'}" headlineText="Headline level 2" :headlineLevel="2"/>
1102
1174
  <CmdHeadline pre-headline-text="Pre-headline" :headlineIcon="{iconClass: 'icon-home'}" headlineText="Headline level 3" :headlineLevel="3"/>
1103
1175
  <CmdHeadline pre-headline-text="Pre-headline" :headlineIcon="{iconClass: 'icon-home'}" headlineText="Headline level 4" :headlineLevel="4"/>
1104
1176
  <CmdHeadline pre-headline-text="Pre-headline" :headlineIcon="{iconClass: 'icon-home'}" headlineText="Headline level 5" :headlineLevel="5"/>
1105
1177
  <CmdHeadline pre-headline-text="Pre-headline" :headlineIcon="{iconClass: 'icon-home'}" headlineText="Headline level 6" :headlineLevel="6"/>
1106
- <CmdHeadline pre-headline-text="Pre-headline" headlineText="Headline level 1 (center)"
1107
- text-align="center" :headlineLevel="1"/>
1108
- <CmdHeadline pre-headline-text="Pre-headline" headlineText="Headline level 1 (right)"
1109
- text-align="right"
1110
- :headlineLevel="1"/>
1178
+ <CmdHeadline pre-headline-text="Pre-headline" headlineText="Headline level 1 (center)" text-align="center" :headlineLevel="1"/>
1179
+ <CmdHeadline pre-headline-text="Pre-headline" headlineText="Headline level 1 (right)" text-align="right" :headlineLevel="1"/>
1111
1180
  </CmdWidthLimitationWrapper>
1112
1181
  <!-- end headline ------------------------------------------------------------------------------------------------------------------------------------------------------->
1113
1182
 
1114
1183
  <!-- begin forms ------------------------------------------------------------------------------------------------------------------------------------------------------->
1115
- <a id="section-forms"></a>
1116
1184
  <CmdWidthLimitationWrapper>
1117
- <h2 class="headline-demopage">Forms</h2>
1185
+ <h2 class="headline-demopage" id="section-forms">Forms</h2>
1118
1186
  <h3>Form elements given by data</h3>
1119
1187
  <CmdForm
1120
1188
  :useFieldset="true"
@@ -1159,13 +1227,10 @@
1159
1227
  <!-- end forms ------------------------------------------------------------------------------------------------------------------------------------------------------->
1160
1228
 
1161
1229
  <!-- begin fancybox ------------------------------------------------------------------------------------------------------------------------------------------------------->
1162
- <a id="section-fancybox"></a>
1163
1230
  <CmdWidthLimitationWrapper>
1164
- <h2 class="headline-demopage">Fancybox</h2>
1231
+ <h2 class="headline-demopage" id="section-fancybox">Fancybox</h2>
1165
1232
  <h3>FancyBox with text</h3>
1166
- <a href="#" @click.prevent="showFancyBox('text','Some text', 'FancyBox with text')">Open FancyBox
1167
- with
1168
- text</a>
1233
+ <a href="#" @click.prevent="showFancyBox('text','Some text', 'FancyBox with text')">Open FancyBox with text</a>
1169
1234
  <h3>FancyBox with large image given by url</h3>
1170
1235
  <a href="#"
1171
1236
  @click.prevent="showFancyBox('url', 'media/images/demo-images/large/landscape-01.jpg', 'FancyBox with large image given by url')"
@@ -1199,31 +1264,34 @@
1199
1264
  <!-- end fancybox ------------------------------------------------------------------------------------------------------------------------------------------------------->
1200
1265
 
1201
1266
  <!-- begin google-maps ------------------------------------------------------------------------------------------------------------------------------------------------------->
1202
- <a id="section-google-maps"></a>
1203
1267
  <CmdWidthLimitationWrapper>
1204
- <h2 class="headline-demopage">Google Maps&trade;</h2>
1268
+ <h2 class="headline-demopage" id="section-google-maps">Google Maps&trade;</h2>
1205
1269
  <CmdGoogleMaps :address="addressData"/>
1206
1270
  </CmdWidthLimitationWrapper>
1207
1271
  <!-- end google-maps ------------------------------------------------------------------------------------------------------------------------------------------------------->
1208
1272
 
1209
1273
  <!-- begin icons ------------------------------------------------------------------------------------------------------------------------------------------------------->
1210
- <a id="section-icons"></a>
1211
1274
  <CmdWidthLimitationWrapper>
1212
- <h2 class="headline-demopage">Icons</h2>
1275
+ <h2 class="headline-demopage" id="section-icons">Icons</h2>
1213
1276
  <ul>
1214
- <li><span>Icon from local iconfont</span>
1277
+ <li>
1278
+ <span>Icon from local iconfont</span>
1215
1279
  <CmdIcon iconClass="icon-home"/>
1216
1280
  </li>
1217
- <li><span>Icon from iconify-api (icomoon-font)</span>
1281
+ <li>
1282
+ <span>Icon from iconify-api (icomoon-font)</span>
1218
1283
  <CmdIcon iconClass="icomoon-free:home"/>
1219
1284
  </li>
1220
- <li><span>Icon from iconify-api (bootstrap-font)</span>
1285
+ <li>
1286
+ <span>Icon from iconify-api (bootstrap-font)</span>
1221
1287
  <CmdIcon iconClass="bi:house-fill"/>
1222
1288
  </li>
1223
- <li><span>Icon from iconify-api (material-design-font)</span>
1289
+ <li>
1290
+ <span>Icon from iconify-api (material-design-font)</span>
1224
1291
  <CmdIcon iconClass="mdi:home"/>
1225
1292
  </li>
1226
- <li><span>Icon from iconify-api (font-awesome-solid-font)</span>
1293
+ <li>
1294
+ <span>Icon from iconify-api (font-awesome-solid-font)</span>
1227
1295
  <CmdIcon iconClass="fa6-solid:house-chimney"/>
1228
1296
  </li>
1229
1297
  </ul>
@@ -1231,9 +1299,8 @@
1231
1299
  <!-- end icons ------------------------------------------------------------------------------------------------------------------------------------------------------->
1232
1300
 
1233
1301
  <!-- begin images ------------------------------------------------------------------------------------------------------------------------------------------------------->
1234
- <a id="section-image"></a>
1235
1302
  <CmdWidthLimitationWrapper>
1236
- <h2 class="headline-demopage">Image</h2>
1303
+ <h2 class="headline-demopage" id="section-image">Image</h2>
1237
1304
  <div class="flex-container">
1238
1305
  <CmdImage :image="imageData[0].image" :figcaption="imageData[0].figcaption"/>
1239
1306
  <CmdImage :image="imageData[1].image" :figcaption="imageData[1].figcaption"/>
@@ -1242,17 +1309,15 @@
1242
1309
  <!-- end images ------------------------------------------------------------------------------------------------------------------------------------------------------->
1243
1310
 
1244
1311
  <!-- begin image-gallery------------------------------------------------------------------------------------------------------------------------------------------------------->
1245
- <a id="section-image-gallery"></a>
1246
1312
  <CmdWidthLimitationWrapper>
1247
- <h2 class="headline-demopage">Image-Gallery</h2>
1313
+ <h2 class="headline-demopage" id="section-image-gallery">Image-Gallery</h2>
1248
1314
  <CmdImageGallery :images="imageGalleryData"/>
1249
1315
  </CmdWidthLimitationWrapper>
1250
1316
  <!-- end image-gallery ------------------------------------------------------------------------------------------------------------------------------------------------------->
1251
1317
 
1252
1318
  <!-- begin image-zoom ------------------------------------------------------------------------------------------------------------------------------------------------------->
1253
- <a id="section-image-zoom"></a>
1254
1319
  <CmdWidthLimitationWrapper>
1255
- <h2 class="headline-demopage">Image-Zoom</h2>
1320
+ <h2 class="headline-demopage" id="section-image-zoom">Image-Zoom</h2>
1256
1321
  <CmdImageZoom
1257
1322
  :imageSmall="imageData[2].image"
1258
1323
  :imageLarge="imageData[3].image"
@@ -1261,9 +1326,8 @@
1261
1326
  <!-- end image-zoom ------------------------------------------------------------------------------------------------------------------------------------------------------->
1262
1327
 
1263
1328
  <!-- begin list-of-links ------------------------------------------------------------------------------------------------------------------------------------------------------->
1264
- <a id="section-list-of-links"></a>
1265
1329
  <CmdWidthLimitationWrapper>
1266
- <h2 class="headline-demopage">List Of Links</h2>
1330
+ <h2 class="headline-demopage" id="section-list-of-links">List Of Links</h2>
1267
1331
  <h3>Vertical</h3>
1268
1332
  <CmdListOfLinks :links="listOfLinksData"/>
1269
1333
  <h3>Horizontal (aligned left, with headline)</h3>
@@ -1272,24 +1336,22 @@
1272
1336
  align="left"
1273
1337
  :links="listOfLinksData"
1274
1338
  :cmdHeadline="{
1275
- headlineText: 'Headline',
1276
- headlineLevel: 5
1277
- }"
1339
+ headlineText: 'Headline',
1340
+ headlineLevel: 5
1341
+ }"
1278
1342
  />
1279
1343
  <h3>Horizontal (aligned center)</h3>
1280
1344
  <CmdListOfLinks orientation="horizontal" align="center" :links="listOfLinksData"/>
1281
1345
  <h3>Horizontal (aligned right)</h3>
1282
- <CmdListOfLinks orientation="horizontal" align="right" :links="listOfLinksData"
1283
- @click="clickOnListOfLinks"/>
1346
+ <CmdListOfLinks orientation="horizontal" align="right" :links="listOfLinksData" @click="clickOnListOfLinks"/>
1284
1347
  <h3>Large icons</h3>
1285
1348
  <CmdListOfLinks orientation="horizontal" :links="listOfLinksData" :largeIcons="true"/>
1286
1349
  </CmdWidthLimitationWrapper>
1287
1350
  <!-- end list-of-links ------------------------------------------------------------------------------------------------------------------------------------------------------->
1288
1351
 
1289
1352
  <!-- begin login-form ------------------------------------------------------------------------------------------------------------------------------------------------------->
1290
- <a id="section-login-form"></a>
1291
1353
  <CmdWidthLimitationWrapper>
1292
- <h2 class="headline-demopage">Login Form</h2>
1354
+ <h2 class="headline-demopage" id="section-login-form">Login Form</h2>
1293
1355
  <CmdForm :use-validation="true" :use-fieldset="false">
1294
1356
  <CmdLoginForm v-model="loginData" textLegendLoginForm="Please log in"/>
1295
1357
  </CmdForm>
@@ -1298,9 +1360,8 @@
1298
1360
  <!-- end login-form ------------------------------------------------------------------------------------------------------------------------------------------------------->
1299
1361
 
1300
1362
  <!-- begin main-navigation ------------------------------------------------------------------------------------------------------------------------------------------------------->
1301
- <a id="section-main-navigation"></a>
1302
1363
  <CmdWidthLimitationWrapper>
1303
- <h2 class="headline-demopage">Main Navigation</h2>
1364
+ <h2 class="headline-demopage" id="section-main-navigation">Main Navigation</h2>
1304
1365
  <CmdMainNavigation
1305
1366
  :stretchMainItems="false"
1306
1367
  :persistOnMobile="false"
@@ -1310,9 +1371,8 @@
1310
1371
  <!-- end main-navigation ------------------------------------------------------------------------------------------------------------------------------------------------------->
1311
1372
 
1312
1373
  <!-- begin multistep-form-progress-bar ------------------------------------------------------------------------------------------------------------------------------------------------------->
1313
- <a id="section-multistep-form-progress-bar"></a>
1314
1374
  <CmdWidthLimitationWrapper>
1315
- <h2 class="headline-demopage">Multistepform-Progressbar</h2>
1375
+ <h2 class="headline-demopage" id="section-multistep-form-progress-bar">Multistepform-Progressbar</h2>
1316
1376
  <h3>Steps with icons</h3>
1317
1377
  <CmdMultistepFormProgressBar
1318
1378
  :multisteps="multistepsData.withIcon"
@@ -1336,20 +1396,20 @@
1336
1396
  <!-- end multistep-form-progress-bar ------------------------------------------------------------------------------------------------------------------------------------------------------->
1337
1397
 
1338
1398
  <!-- begin newsletter-subscription ------------------------------------------------------------------------------------------------------------------------------------------------------->
1339
- <a id="section-newsletter-subscription"></a>
1340
1399
  <CmdWidthLimitationWrapper>
1341
- <h2 class="headline-demopage">Newsletter Subscription</h2>
1400
+ <h2 class="headline-demopage" id="section-newsletter-subscription">Newsletter Subscription</h2>
1342
1401
  <CmdForm textLegend="Stay-up-to-date" :use-fieldset="false">
1343
- <CmdNewsletterSubscription v-model="newsletter" buttonType="submit"
1344
- @buttonClick="submitNewsletterRegistration"/>
1402
+ <CmdNewsletterSubscription
1403
+ v-model="newsletter"
1404
+ buttonType="submit"
1405
+ @buttonClick="submitNewsletterRegistration"/>
1345
1406
  </CmdForm>
1346
1407
  </CmdWidthLimitationWrapper>
1347
1408
  <!-- end newsletter-subscription ------------------------------------------------------------------------------------------------------------------------------------------------------->
1348
1409
 
1349
1410
  <!-- begin opening-hours ------------------------------------------------------------------------------------------------------------------------------------------------------->
1350
- <a id="section-opening-hours"></a>
1351
1411
  <CmdWidthLimitationWrapper>
1352
- <h2 class="headline-demopage">Opening Hours</h2>
1412
+ <h2 class="headline-demopage" id="section-opening-hours">Opening Hours</h2>
1353
1413
  <CmdOpeningHours
1354
1414
  :openingHours="openingHoursData"
1355
1415
  :cmdHeadline="{headlineText: 'Opening hours', headlineLevel: 6}"
@@ -1361,9 +1421,8 @@
1361
1421
  <!-- end opening-hours ------------------------------------------------------------------------------------------------------------------------------------------------------->
1362
1422
 
1363
1423
  <!-- begin pagination ------------------------------------------------------------------------------------------------------------------------------------------------------->
1364
- <a id="section-pagination"></a>
1365
1424
  <CmdWidthLimitationWrapper>
1366
- <h2 class="headline-demopage">Pagination</h2>
1425
+ <h2 class="headline-demopage" id="section-pagination">Pagination</h2>
1367
1426
  <h3>Link-view</h3>
1368
1427
  <div>
1369
1428
  <p>Page {{ showPagePager }}</p>
@@ -1387,9 +1446,8 @@
1387
1446
  <!-- end pagination ------------------------------------------------------------------------------------------------------------------------------------------------------->
1388
1447
 
1389
1448
  <!-- begin site-footer ------------------------------------------------------------------------------------------------------------------------------------------------------->
1390
- <a id="section-site-footer"></a>
1391
1449
  <CmdWidthLimitationWrapper>
1392
- <h2 class="headline-demopage">Site Footer</h2>
1450
+ <h2 class="headline-demopage" id="section-site-footer">Site Footer</h2>
1393
1451
  <CmdSiteFooter>
1394
1452
  Slotcontent
1395
1453
  </CmdSiteFooter>
@@ -1397,9 +1455,8 @@
1397
1455
  <!-- end site-footer ------------------------------------------------------------------------------------------------------------------------------------------------------->
1398
1456
 
1399
1457
  <!-- begin site-header ------------------------------------------------------------------------------------------------------------------------------------------------------->
1400
- <a id="section-site-header"></a>
1401
1458
  <CmdWidthLimitationWrapper>
1402
- <h2 class="headline-demopage">Site Header</h2>
1459
+ <h2 class="headline-demopage" id="section-site-header">Site Header</h2>
1403
1460
  <h3>Header with navigation below logo</h3>
1404
1461
  <CmdSiteHeader
1405
1462
  :cmdMainNavigation="navigationData"
@@ -1442,9 +1499,8 @@
1442
1499
  <!-- end site-header ------------------------------------------------------------------------------------------------------------------------------------------------------->
1443
1500
 
1444
1501
  <!-- begin site-search ------------------------------------------------------------------------------------------------------------------------------------------------------->
1445
- <a id="section-site-search"></a>
1446
1502
  <CmdWidthLimitationWrapper>
1447
- <h2 class="headline-demopage">Site Search</h2>
1503
+ <h2 class="headline-demopage" id="section-site-search">Site Search</h2>
1448
1504
  <CmdSiteSearch
1449
1505
  v-model:modelValueInput1="siteSearchInput1"
1450
1506
  v-model:modelValueInput2="siteSearchInput2"
@@ -1458,9 +1514,8 @@
1458
1514
  <!-- end site-search ------------------------------------------------------------------------------------------------------------------------------------------------------->
1459
1515
 
1460
1516
  <!-- begin slideshow ------------------------------------------------------------------------------------------------------------------------------------------------------->
1461
- <a id="section-slideshow"></a>
1462
1517
  <CmdWidthLimitationWrapper>
1463
- <h2 class="headline-demopage">Slideshow</h2>
1518
+ <h2 class="headline-demopage" id="section-slideshow">Slideshow</h2>
1464
1519
  <CmdSlideshow
1465
1520
  :slideshow-items="slideshowData"
1466
1521
  :showCounter="true"
@@ -1470,9 +1525,8 @@
1470
1525
  <!-- end slideshow ------------------------------------------------------------------------------------------------------------------------------------------------------->
1471
1526
 
1472
1527
  <!-- begin social-networks ------------------------------------------------------------------------------------------------------------------------------------------------------->
1473
- <a id="section-social-networks"></a>
1474
1528
  <CmdWidthLimitationWrapper>
1475
- <h2 class="headline-demopage">Social Networks</h2>
1529
+ <h2 class="headline-demopage" id="section-social-networks">Social Networks</h2>
1476
1530
  <h3>With user confirmation (buttons without gap)</h3>
1477
1531
  <CmdSocialNetworks
1478
1532
  :networks="socialNetworksData"
@@ -1494,9 +1548,8 @@
1494
1548
  <!-- end social-networks ------------------------------------------------------------------------------------------------------------------------------------------------------->
1495
1549
 
1496
1550
  <!-- begin switch-language ------------------------------------------------------------------------------------------------------------------------------------------------------->
1497
- <a id="section-switch-language"></a>
1498
1551
  <CmdWidthLimitationWrapper>
1499
- <h2 class="headline-demopage">Switch Language</h2>
1552
+ <h2 class="headline-demopage" id="section-switch-language">Switch Language</h2>
1500
1553
  <CmdSwitchLanguage
1501
1554
  :languages="languagesData"
1502
1555
  @click="doSomething"
@@ -1505,64 +1558,61 @@
1505
1558
  <!-- end switch-language ------------------------------------------------------------------------------------------------------------------------------------------------------->
1506
1559
 
1507
1560
  <!-- begin system-message ------------------------------------------------------------------------------------------------------------------------------------------------------->
1508
- <a id="section-system-message"></a>
1509
1561
  <CmdWidthLimitationWrapper>
1510
- <h2 class="headline-demopage">System Message</h2>
1511
- <CmdSystemMessage validationStatus="error"
1512
- :fullWidth="true"
1513
- systemMessage="This is an error message!"
1514
- :iconMessage="{iconClass: 'icon-error-circle', show: true}">
1562
+ <h2 class="headline-demopage" id="section-system-message">System Message</h2>
1563
+ <CmdSystemMessage
1564
+ validationStatus="error"
1565
+ :fullWidth="true"
1566
+ systemMessage="This is an error message!"
1567
+ :iconMessage="{iconClass: 'icon-error-circle', show: true}">
1515
1568
  <ul>
1516
1569
  <li>Error #1</li>
1517
1570
  <li>Error #2</li>
1518
1571
  <li>Error #3</li>
1519
1572
  </ul>
1520
1573
  </CmdSystemMessage>
1521
- <CmdSystemMessage validationStatus="warning"
1522
- :fullWidth="true"
1523
- systemMessage="This is a warning message!">
1574
+ <CmdSystemMessage
1575
+ validationStatus="warning"
1576
+ :fullWidth="true"
1577
+ systemMessage="This is a warning message!">
1524
1578
  <p>This is additional text!</p>
1525
1579
  </CmdSystemMessage>
1526
- <CmdSystemMessage validationStatus="success"
1527
- :fullWidth="true"
1528
- systemMessage="This is a success message!"
1529
- :iconMessage="{iconClass: 'icon-check-circle', show: true}">
1580
+ <CmdSystemMessage
1581
+ validationStatus="success"
1582
+ :fullWidth="true"
1583
+ systemMessage="This is a success message!"
1584
+ :iconMessage="{iconClass: 'icon-check-circle', show: true}">
1530
1585
  <p>This is additional text!</p>
1531
1586
  </CmdSystemMessage>
1532
- <CmdSystemMessage validationStatus="info"
1533
- :fullWidth="true"
1534
- systemMessage="This is an info message!"
1535
- :iconMessage="{iconClass: 'icon-info-circle', show: true}">
1587
+ <CmdSystemMessage
1588
+ validationStatus="info"
1589
+ :fullWidth="true"
1590
+ systemMessage="This is an info message!"
1591
+ :iconMessage="{iconClass: 'icon-info-circle', show: true}">
1536
1592
  <p>This is additional text!</p>
1537
1593
  </CmdSystemMessage>
1538
1594
  </CmdWidthLimitationWrapper>
1539
1595
  <!-- end system-message ------------------------------------------------------------------------------------------------------------------------------------------------------->
1540
1596
 
1541
1597
  <!-- begin tables ------------------------------------------------------------------------------------------------------------------------------------------------------->
1542
- <a id="section-tables"></a>
1543
1598
  <CmdWidthLimitationWrapper>
1544
- <h2 class="headline-demopage">Tables</h2>
1599
+ <h2 class="headline-demopage" id="section-tables">Tables</h2>
1545
1600
  <h3>Table as wide as its content (with caption)</h3>
1546
- <CmdTable :collapsible="true" :fullWidthOnDefault="false" :userCanToggleWidth="true"
1547
- :table-data="tableDataSmall"/>
1601
+ <CmdTable :collapsible="true" :fullWidthOnDefault="false" :userCanToggleWidth="true" :table-data="tableDataSmall"/>
1548
1602
  <h3>Table as wide as its content (without caption)</h3>
1549
- <CmdTable :collapsible="true" :fullWidthOnDefault="false" :userCanToggleWidth="true"
1550
- :caption="{ text: 'Hidden caption', show: false}" :table-data="tableDataSmall"/>
1603
+ <CmdTable :collapsible="true" :fullWidthOnDefault="false" :userCanToggleWidth="true" :caption="{ text: 'Hidden caption', show: false}" :table-data="tableDataSmall"/>
1551
1604
  <h3>Table as wide as possible</h3>
1552
- <CmdTable :collapsible="true" :fullWidthOnDefault="false" :userCanToggleWidth="true"
1553
- :table-data="tableDataLarge"/>
1605
+ <CmdTable :collapsible="true" :fullWidthOnDefault="false" :userCanToggleWidth="true" :table-data="tableDataLarge"/>
1554
1606
  </CmdWidthLimitationWrapper>
1555
1607
  <!-- end tables ------------------------------------------------------------------------------------------------------------------------------------------------------->
1556
1608
 
1557
1609
  <!-- begin tabs ------------------------------------------------------------------------------------------------------------------------------------------------------->
1558
- <a id="section-tabs"></a>
1559
1610
  <CmdWidthLimitationWrapper>
1560
- <h2 class="headline-demopage">Tabs</h2>
1611
+ <h2 class="headline-demopage" id="section-tabs">Tabs</h2>
1561
1612
  <h3>Tabs with content from json-file</h3>
1562
1613
  <CmdTabs :stretchTabs="false" :tabs="tabsData"/>
1563
1614
  <h3>Tabs with HTML-content (given by slot))</h3>
1564
- <CmdTabs :stretchTabs="true" :tabs="[{name: 'Tab 1'}, {name: 'Tab 2'}, {name: 'Tab 3'}]"
1565
- :useSlot="true">
1615
+ <CmdTabs :stretchTabs="true" :tabs="[{name: 'Tab 1'}, {name: 'Tab 2'}, {name: 'Tab 3'}]" :useSlot="true">
1566
1616
  <template v-slot:tab-content-0>
1567
1617
  <h4>Tab 1 headline</h4>
1568
1618
  <p>Content</p>
@@ -1583,9 +1633,8 @@
1583
1633
  <!-- end tabs ------------------------------------------------------------------------------------------------------------------------------------------------------->
1584
1634
 
1585
1635
  <!-- begin text-image-block ------------------------------------------------------------------------------------------------------------------------------------------------------->
1586
- <a id="section-text-image-block"></a>
1587
1636
  <CmdWidthLimitationWrapper>
1588
- <h2 class="headline-demopage">Text-Image-Block</h2>
1637
+ <h2 class="headline-demopage" id="section-text-image-block">Text-Image-Block</h2>
1589
1638
  <div class="flex-container">
1590
1639
  <CmdTextImageBlock
1591
1640
  :cmdHeadline="{headlineText: 'Text-Image-Block with image', headlineLevel: 3}"
@@ -1613,12 +1662,10 @@
1613
1662
  <!-- end text-image-block ------------------------------------------------------------------------------------------------------------------------------------------------------->
1614
1663
 
1615
1664
  <!-- begin thumbnail-scroller ------------------------------------------------------------------------------------------------------------------------------------------------------->
1616
- <a id="section-thumbnail-scroller"></a>
1617
1665
  <CmdWidthLimitationWrapper>
1618
- <h2 class="headline-demopage">Thumbnail-Scroller</h2>
1666
+ <h2 class="headline-demopage" id="section-thumbnail-scroller">Thumbnail-Scroller</h2>
1619
1667
  <div class="inline-size">
1620
1668
  <h3>Thumbnail-Scroller with images (opens fancybox)</h3>
1621
-
1622
1669
  <CmdThumbnailScroller
1623
1670
  :thumbnail-scroller-items="thumbnailScrollerImagesData"
1624
1671
  />
@@ -1643,9 +1690,8 @@
1643
1690
  <!-- end thumbnail-scroller ------------------------------------------------------------------------------------------------------------------------------------------------------->
1644
1691
 
1645
1692
  <!-- begin tooltip ------------------------------------------------------------------------------------------------------------------------------------------------------->
1646
- <a id="section-tooltip"></a>
1647
1693
  <CmdWidthLimitationWrapper>
1648
- <h2 class="headline-demopage">Tooltip</h2>
1694
+ <h2 class="headline-demopage" id="section-tooltip">Tooltip</h2>
1649
1695
  <p>
1650
1696
  <a href="#" @click.prevent id="show-on-hover">Show tooltip on hover!</a><br/>
1651
1697
  <a href="#" @click.prevent id="show-with-delay">Show tooltip on hover with delay!</a><br/>
@@ -1664,25 +1710,26 @@
1664
1710
  <!-- end tooltip ------------------------------------------------------------------------------------------------------------------------------------------------------->
1665
1711
 
1666
1712
  <!-- begin upload-form ------------------------------------------------------------------------------------------------------------------------------------------------------->
1667
- <a id="section-upload-form"></a>
1668
1713
  <CmdWidthLimitationWrapper>
1669
- <h2 class="headline-demopage">Upload-Form</h2>
1714
+ <h2 class="headline-demopage" id="section-upload-form">Upload-Form</h2>
1670
1715
  <h3>Simple mode</h3>
1671
- <CmdUploadForm :enableDragAndDrop="true"
1672
- :allowedFileExtensions="['jpg', 'png']"
1673
- :allowMultipleFileUploads="true"
1674
- :advancedMode="false"
1675
- textLegend="Simple upload form"
1676
- @error="showError"
1677
- :uploadOptions="{url: 'http://localhost:8888'}"
1716
+ <CmdUploadForm
1717
+ :enableDragAndDrop="true"
1718
+ :allowedFileExtensions="['jpg', 'png']"
1719
+ :allowMultipleFileUploads="true"
1720
+ :advancedMode="false"
1721
+ textLegend="Simple upload form"
1722
+ @error="showError"
1723
+ :uploadOptions="{url: 'http://localhost:8888'}"
1678
1724
  />
1679
1725
  <h3>Advanced mode</h3>
1680
- <CmdUploadForm :cmdHeadlineFieldset="{headlineText: 'Select files to upload', headlineLevel: 3}"
1681
- :enableDragAndDrop="true"
1682
- :allowedFileExtensions="['jpg', 'png']"
1683
- :allowMultipleFileUploads="true"
1684
- textLegend="Advanced upload form"
1685
- :uploadOptions="{url: 'http://localhost:8888'}"
1726
+ <CmdUploadForm
1727
+ :cmdHeadlineFieldset="{headlineText: 'Select files to upload', headlineLevel: 3}"
1728
+ :enableDragAndDrop="true"
1729
+ :allowedFileExtensions="['jpg', 'png']"
1730
+ :allowMultipleFileUploads="true"
1731
+ textLegend="Advanced upload form"
1732
+ :uploadOptions="{url: 'http://localhost:8888'}"
1686
1733
  />
1687
1734
  </CmdWidthLimitationWrapper>
1688
1735
  <!-- end upload-form ------------------------------------------------------------------------------------------------------------------------------------------------------->
@@ -1844,6 +1891,7 @@ export default {
1844
1891
  switchButtonCheckboxToggleSwitchColored: false,
1845
1892
  switchButtonCheckbox: ["checkbox1"],
1846
1893
  switchButtonCheckboxColored: false,
1894
+ inputMail: "",
1847
1895
  inputUsername: "",
1848
1896
  inputPassword: "",
1849
1897
  inputField1: "",
@@ -2024,8 +2072,8 @@ export default {
2024
2072
  return Math.floor(Math.random() * 100)
2025
2073
  },
2026
2074
  doConsoleLog(event) {
2027
- event.originalEvent.preventDefault()
2028
- console.log("event: ", event)
2075
+ event.originalEvent.preventDefault()
2076
+ console.log("event: ", event)
2029
2077
  },
2030
2078
  toggleAllAccordions() {
2031
2079
  if (this.accordionGroupOpen) {