comand-component-library 3.1.86 → 3.1.89

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/src/App.vue CHANGED
@@ -1,350 +1,351 @@
1
1
  <!--suppress HtmlUnknownTarget, NpmUsedModulesInstalled, JSUnresolvedVariable -->
2
2
  <template>
3
- <a id="anchor-back-to-top"></a>
4
- <CmdSiteHeader :cmdMainNavigation="navigationData" :sticky="true">
5
- <template v-slot:top-header>
6
- <CmdListOfLinks
7
- :links="listOfLinksData"
8
- orientation="horizontal"
9
- align="right"
10
- />
11
- </template>
12
- <template v-slot:logo>
13
- <CmdCompanyLogo
14
- :link="companyLogoData.link"
15
- altText="CoManD Logo"
16
- :pathDefaultLogo="require('@/assets/images/logo.svg')"
17
- :pathDarkmodeLogo="require('@/assets/images/logo-darkmode.svg')"
18
- />
19
- </template>
20
- </CmdSiteHeader>
21
- <main>
22
- <CmdWidthLimitationWrapper>
23
- <div class="flex-container">
24
- <ul>
25
- <li><a href="#section-accordion">Accordion</a></li>
26
- <li><a href="#section-advanced-form-elements">Advanced Form Elements</a></li>
27
- <li><a href="#section-bank-account-data">Bank Account Data</a></li>
28
- <li><a href="#section-boxes">Boxes</a></li>
29
- <li><a href="#section-breadcrumbs">Breadcrumbs</a></li>
30
- <li><a href="#section-cookie-disclaimer">Cookie-Disclaimer</a></li>
31
- </ul>
32
- <ul>
33
- <li><a href="#section-custom-headline">Custom Headline</a></li>
34
- <li><a href="#section-fancybox">Fancybox</a></li>
35
- <li><a href="#section-google-maps-integration">Google-Maps&trade;-Integration</a></li>
36
- <li><a href="#section-image-gallery">Image Gallery</a></li>
37
- <li><a href="#section-image-zoom">Image-Zoom</a></li>
38
- <li><a href="#section-login-form">Login Form</a></li>
39
- </ul>
40
- <ul>
41
- <li><a href="#section-main-navigation">Main-Navigation</a></li>
42
- <li><a href="#section-multistep-form-progress-bar">Multistepform-Progressbar</a></li>
43
- <li><a href="#section-pager">Pager</a></li>
44
- <li><a href="#section-share-buttons">Share Buttons</a></li>
45
- <li><a href="#section-slideshow">Slideshow</a></li>
46
- <li><a href="#section-system-message">System-Message</a></li>
47
- </ul>
48
- <ul>
49
- <li><a href="#section-tables">Tables</a></li>
50
- <li><a href="#section-tabs">Tabs</a></li>
51
- <li><a href="#section-thumbnail-scroller">Thumbnail-Scroller</a></li>
52
- <li><a href="#section-toggle-darkmode">ToggleDarkMode</a></li>
53
- <li><a href="#section-tooltip">Tooltip</a></li>
54
- <li><a href="#section-upload-form">Upload-Form</a></li>
55
- </ul>
56
- </div>
57
- <hr/>
58
- </CmdWidthLimitationWrapper>
59
- <!-- begin advanced form elements --------------------------------------------------------------------------------------------------------------------------------------------------->
60
- <a id="section-advanced-form-elements"></a>
61
- <CmdWidthLimitationWrapper>
62
- <a id="anchor-advanced-form-elements"></a>
63
- <h2 class="headline-demopage">Advanced Form Elements</h2>
64
- <h3>Form elements status:</h3>
65
- <div class="flex-container">
66
- <ul class="list-status">
67
- <li><a href="#" @click.prevent="setStatus('', false)" :class="{'active' : validationStatus === '' && disabledStatus === false}"
68
- id="status-default">Default</a></li>
69
- <li class="error">
70
- <a href="#" @click.prevent="setStatus('error', false)"
71
- :class="{'active' : validationStatus === 'error'}" id="status-error">Error</a></li>
72
- <li><a href="#" @click.prevent="setStatus('warning', false)"
73
- :class="{'active' : validationStatus === 'warning'}" id="status-warning">Warning</a></li>
74
- <li><a href="#" @click.prevent="setStatus('success', false)"
75
- :class="{'active' : validationStatus === 'success'}" id="status-success">Success</a></li>
76
- <li><a href="#" @click.prevent="setStatus('info', false)"
77
- :class="{'active' : validationStatus === 'info'}" id="status-info">Info</a></li>
78
- <li><a href="#" @click.prevent="setStatus('', true)"
79
- :class="{'active' : disabledStatus === true}" id="status-disabled">Disabled</a></li>
80
- </ul>
81
- </div>
3
+ <div id="page-wrapper">
4
+ <a id="anchor-back-to-top"></a>
5
+ <CmdSiteHeader :cmdMainNavigation="navigationData" :sticky="true">
6
+ <template v-slot:top-header>
7
+ <CmdListOfLinks
8
+ :links="listOfLinksData"
9
+ orientation="horizontal"
10
+ align="right"
11
+ />
12
+ </template>
13
+ <template v-slot:logo>
14
+ <CmdCompanyLogo
15
+ :link="companyLogoData.link"
16
+ altText="CoManD Logo"
17
+ :pathDefaultLogo="require('@/assets/images/logo.svg')"
18
+ :pathDarkmodeLogo="require('@/assets/images/logo-darkmode.svg')"
19
+ />
20
+ </template>
21
+ </CmdSiteHeader>
22
+ <main>
23
+ <CmdWidthLimitationWrapper>
24
+ <div class="flex-container">
25
+ <ul>
26
+ <li><a href="#section-accordion">Accordion</a></li>
27
+ <li><a href="#section-advanced-form-elements">Advanced Form Elements</a></li>
28
+ <li><a href="#section-bank-account-data">Bank Account Data</a></li>
29
+ <li><a href="#section-boxes">Boxes</a></li>
30
+ <li><a href="#section-breadcrumbs">Breadcrumbs</a></li>
31
+ <li><a href="#section-cookie-disclaimer">Cookie-Disclaimer</a></li>
32
+ </ul>
33
+ <ul>
34
+ <li><a href="#section-custom-headline">Custom Headline</a></li>
35
+ <li><a href="#section-fancybox">Fancybox</a></li>
36
+ <li><a href="#section-google-maps-integration">Google-Maps&trade;-Integration</a></li>
37
+ <li><a href="#section-image-gallery">Image Gallery</a></li>
38
+ <li><a href="#section-image-zoom">Image-Zoom</a></li>
39
+ <li><a href="#section-login-form">Login Form</a></li>
40
+ </ul>
41
+ <ul>
42
+ <li><a href="#section-main-navigation">Main-Navigation</a></li>
43
+ <li><a href="#section-multistep-form-progress-bar">Multistepform-Progressbar</a></li>
44
+ <li><a href="#section-pager">Pager</a></li>
45
+ <li><a href="#section-share-buttons">Share Buttons</a></li>
46
+ <li><a href="#section-slideshow">Slideshow</a></li>
47
+ <li><a href="#section-system-message">System-Message</a></li>
48
+ </ul>
49
+ <ul>
50
+ <li><a href="#section-tables">Tables</a></li>
51
+ <li><a href="#section-tabs">Tabs</a></li>
52
+ <li><a href="#section-thumbnail-scroller">Thumbnail-Scroller</a></li>
53
+ <li><a href="#section-toggle-darkmode">ToggleDarkMode</a></li>
54
+ <li><a href="#section-tooltip">Tooltip</a></li>
55
+ <li><a href="#section-upload-form">Upload-Form</a></li>
56
+ </ul>
57
+ </div>
58
+ <hr/>
59
+ </CmdWidthLimitationWrapper>
60
+ <!-- begin advanced form elements --------------------------------------------------------------------------------------------------------------------------------------------------->
61
+ <a id="section-advanced-form-elements"></a>
62
+ <CmdWidthLimitationWrapper>
63
+ <a id="anchor-advanced-form-elements"></a>
64
+ <h2 class="headline-demopage">Advanced Form Elements</h2>
65
+ <h3>Form elements status:</h3>
66
+ <div class="flex-container">
67
+ <ul class="list-status">
68
+ <li><a href="#" @click.prevent="setStatus('', false)" :class="{'active' : validationStatus === '' && disabledStatus === false}"
69
+ id="status-default">Default</a></li>
70
+ <li class="error">
71
+ <a href="#" @click.prevent="setStatus('error', false)"
72
+ :class="{'active' : validationStatus === 'error'}" id="status-error">Error</a></li>
73
+ <li><a href="#" @click.prevent="setStatus('warning', false)"
74
+ :class="{'active' : validationStatus === 'warning'}" id="status-warning">Warning</a></li>
75
+ <li><a href="#" @click.prevent="setStatus('success', false)"
76
+ :class="{'active' : validationStatus === 'success'}" id="status-success">Success</a></li>
77
+ <li><a href="#" @click.prevent="setStatus('info', false)"
78
+ :class="{'active' : validationStatus === 'info'}" id="status-info">Info</a></li>
79
+ <li><a href="#" @click.prevent="setStatus('', true)"
80
+ :class="{'active' : disabledStatus === true}" id="status-disabled">Disabled</a></li>
81
+ </ul>
82
+ </div>
82
83
 
83
- <!-- begin cmd-form-filters -->
84
- <CmdFormFilters v-model="fakeSelectFilters" :selectedOptionsName="getOptionName"/>
85
- <!-- end cmd-form-filters -->
84
+ <!-- begin cmd-form-filters -->
85
+ <CmdFormFilters v-model="fakeSelectFilters" :selectedOptionsName="getOptionName"/>
86
+ <!-- end cmd-form-filters -->
86
87
 
87
- <CmdForm :use-fieldset="false" id="advanced-form-elements" novalidate="novalidate">
88
- <fieldset class="grid-container-create-columns">
89
- <legend>Legend</legend>
90
- <h2>Form Element-Component</h2>
91
- <div class="flex-container">
92
- <CmdFormElement labelText="Input (type text):"
88
+ <CmdForm :use-fieldset="false" id="advanced-form-elements" novalidate="novalidate">
89
+ <fieldset class="grid-container-create-columns">
90
+ <legend>Legend</legend>
91
+ <h2>Form Element-Component</h2>
92
+ <div class="flex-container">
93
+ <CmdFormElement labelText="Input (type text):"
94
+ element="input"
95
+ type="text"
96
+ :status="validationStatus"
97
+ :disabled="disabledStatus"
98
+ placeholder="Type in text"
99
+ tooltipText="This is a tooltip"
100
+ v-bind="{useCustomTooltip: false}"
101
+ />
102
+ <CmdFormElement labelText="Input for selectbox:"
103
+ element="select"
104
+ required="required"
105
+ :status="validationStatus"
106
+ :disabled="disabledStatus"
107
+ v-model="selectedOption"
108
+ :selectOptions="selectOptionsData"
109
+ />
110
+ <CmdFormElement labelText="Input for datalist:"
111
+ element="input"
112
+ type="text"
113
+ :status="validationStatus"
114
+ :disabled="disabledStatus"
115
+ placeholder="Type in option"
116
+ :datalist="datalist"
117
+ tooltipText="This is a tooltip"
118
+ />
119
+ </div>
120
+ <CmdFormElement labelText="Input (type search (without search-button)):"
93
121
  element="input"
94
- type="text"
122
+ type="search"
95
123
  :status="validationStatus"
96
124
  :disabled="disabledStatus"
97
- placeholder="Type in text"
125
+ :showSearchButton="false"
126
+ placeholder="Search"
98
127
  tooltipText="This is a tooltip"
99
128
  v-bind="{useCustomTooltip: false}"
100
129
  />
101
- <CmdFormElement labelText="Input for selectbox:"
102
- element="select"
103
- required="required"
104
- :status="validationStatus"
105
- :disabled="disabledStatus"
106
- v-model="selectedOption"
107
- :selectOptions="selectOptionsData"
108
- />
109
- <CmdFormElement labelText="Input for datalist:"
130
+ <CmdFormElement labelText="Input (type search (with search-button)):"
110
131
  element="input"
111
- type="text"
132
+ type="search"
112
133
  :status="validationStatus"
113
134
  :disabled="disabledStatus"
114
- placeholder="Type in option"
115
- :datalist="datalist"
135
+ placeholder="Search"
116
136
  tooltipText="This is a tooltip"
137
+ v-bind="{useCustomTooltip: false}"
117
138
  />
118
- </div>
119
- <CmdFormElement labelText="Input (type search (without search-button)):"
120
- element="input"
121
- type="search"
122
- :status="validationStatus"
123
- :disabled="disabledStatus"
124
- :showSearchButton="false"
125
- placeholder="Search"
126
- tooltipText="This is a tooltip"
127
- v-bind="{useCustomTooltip: false}"
128
- />
129
- <CmdFormElement labelText="Input (type search (with search-button)):"
130
- element="input"
131
- type="search"
132
- :status="validationStatus"
133
- :disabled="disabledStatus"
134
- placeholder="Search"
135
- tooltipText="This is a tooltip"
136
- v-bind="{useCustomTooltip: false}"
137
- />
138
- <h2>Inputfields in Columns</h2>
139
- <div class="flex-container">
140
- <CmdFormElement element="input"
141
- type="text"
142
- minlength="5"
143
- id="inputfield1"
144
- placeholder="This is placeholder text"
145
- v-model="inputField1"
146
- tooltipText="This is a tooltip!"
147
- :status="validationStatus"
148
- :disabled="disabledStatus">
149
- <template v-slot:labeltext>
150
- <span v-html="'Label with <a href=\'#\'>Link</a> given by slot'"></span>
151
- </template>
152
- </CmdFormElement>
139
+ <h2>Inputfields in Columns</h2>
140
+ <div class="flex-container">
141
+ <CmdFormElement element="input"
142
+ type="text"
143
+ minlength="5"
144
+ id="inputfield1"
145
+ placeholder="This is placeholder text"
146
+ v-model="inputField1"
147
+ tooltipText="This is a tooltip!"
148
+ :status="validationStatus"
149
+ :disabled="disabledStatus">
150
+ <template v-slot:labeltext>
151
+ <span v-html="'Label with <a href=\'#\'>Link</a> given by slot'"></span>
152
+ </template>
153
+ </CmdFormElement>
154
+ <CmdFormElement element="input"
155
+ labelText="Label for inputfield (required, with tooltip):"
156
+ type="text"
157
+ required="required"
158
+ minlength="5"
159
+ id="inputfield-required"
160
+ placeholder="This is placeholder text"
161
+ v-model="inputFieldRequired"
162
+ tooltipText="This is a tooltip!"
163
+ :status="validationStatus"
164
+ :disabled="disabledStatus"
165
+ />
166
+ <CmdFormElement element="input"
167
+ labelText="Label for inputfield (with pattern):"
168
+ type="text"
169
+ id="inputfield-pattern"
170
+ placeholder="This is placeholder text"
171
+ pattern="/\d/"
172
+ v-model="inputFieldPattern"
173
+ tooltipText="This is a tooltip!"
174
+ :status="validationStatus"
175
+ :disabled="disabledStatus"
176
+ />
177
+ </div>
178
+ <!-- begin inputfield in two columns -->
179
+ <div class="flex-container">
180
+ <CmdFormElement labelText="Label for inputfield (with icon):"
181
+ element="input"
182
+ type="text"
183
+ id="inputfield-username"
184
+ fieldIconClass="icon-user-profile"
185
+ placeholder="Type in username"
186
+ tooltipText="This is a tooltip!"
187
+ maxlength="100"
188
+ v-model="inputUsername"
189
+ :status="validationStatus"
190
+ :disabled="disabledStatus"
191
+ />
192
+ <CmdFormElement element="input"
193
+ labelText="Label for passwordfield:"
194
+ type="password"
195
+ minlength="8"
196
+ maxlength="255"
197
+ id="inputfield-password"
198
+ fieldIconClass="icon-security-settings"
199
+ placeholder="Type in password"
200
+ tooltipText="This is a tooltip!"
201
+ :customRequirements="customRequirements"
202
+ v-model="inputPassword"
203
+ :status="validationStatus"
204
+ :disabled="disabledStatus"
205
+ />
206
+ </div>
207
+ <!-- end inputfield in two columns -->
208
+
153
209
  <CmdFormElement element="input"
154
- labelText="Label for inputfield (required, with tooltip):"
155
- type="text"
210
+ labelText="Label (inline) for inputfield (number):"
211
+ :displayLabelInline="true"
212
+ type="number"
213
+ id="inputfield-number"
156
214
  required="required"
157
- minlength="5"
158
- id="inputfield-required"
159
- placeholder="This is placeholder text"
160
- v-model="inputFieldRequired"
161
- tooltipText="This is a tooltip!"
215
+ min="0"
216
+ max="9"
217
+ v-model="inputNumber"
218
+ :customRequirements="[customRequirements[2]]"
162
219
  :status="validationStatus"
163
220
  :disabled="disabledStatus"
164
221
  />
165
222
  <CmdFormElement element="input"
166
- labelText="Label for inputfield (with pattern):"
167
- type="text"
168
- id="inputfield-pattern"
169
- placeholder="This is placeholder text"
170
- pattern="/\d/"
171
- v-model="inputFieldPattern"
172
- tooltipText="This is a tooltip!"
223
+ labelText="Label (inline) for inputfield (date):"
224
+ :displayLabelInline="true"
225
+ type="date"
226
+ id="inputfield-date"
227
+ v-model="inputDate"
173
228
  :status="validationStatus"
174
229
  :disabled="disabledStatus"
175
230
  />
176
- </div>
177
- <!-- begin inputfield in two columns -->
178
- <div class="flex-container">
179
- <CmdFormElement labelText="Label for inputfield (with icon):"
180
- element="input"
181
- type="text"
182
- id="inputfield-username"
183
- fieldIconClass="icon-user-profile"
184
- placeholder="Type in username"
185
- tooltipText="This is a tooltip!"
186
- maxlength="100"
187
- v-model="inputUsername"
231
+ <CmdFormElement element="input"
232
+ labelText="Label (inline) for inputfield (search) without search-button:"
233
+ :displayLabelInline="true"
234
+ type="search"
235
+ id="inputfield-search-without-searchbutton"
236
+ placeholder="Keyword(s)"
237
+ v-model="inputSearch"
238
+ :showSearchButton="false"
188
239
  :status="validationStatus"
189
240
  :disabled="disabledStatus"
190
241
  />
191
242
  <CmdFormElement element="input"
192
- labelText="Label for passwordfield:"
193
- type="password"
194
- minlength="8"
195
- maxlength="255"
196
- id="inputfield-password"
197
- fieldIconClass="icon-security-settings"
198
- placeholder="Type in password"
199
- tooltipText="This is a tooltip!"
200
- :customRequirements="customRequirements"
201
- v-model="inputPassword"
243
+ labelText="Label (inline) for inputfield (search):"
244
+ :displayLabelInline="true"
245
+ type="search"
246
+ id="inputfield-search-with-searchbutton"
247
+ placeholder="Keyword(s)"
248
+ v-model="inputSearch"
202
249
  :status="validationStatus"
203
250
  :disabled="disabledStatus"
204
251
  />
205
- </div>
206
- <!-- end inputfield in two columns -->
207
-
208
- <CmdFormElement element="input"
209
- labelText="Label (inline) for inputfield (number):"
210
- :displayLabelInline="true"
211
- type="number"
212
- id="inputfield-number"
213
- required="required"
214
- min="0"
215
- max="9"
216
- v-model="inputNumber"
217
- :customRequirements="[customRequirements[2]]"
218
- :status="validationStatus"
219
- :disabled="disabledStatus"
220
- />
221
- <CmdFormElement element="input"
222
- labelText="Label (inline) for inputfield (date):"
223
- :displayLabelInline="true"
224
- type="date"
225
- id="inputfield-date"
226
- v-model="inputDate"
227
- :status="validationStatus"
228
- :disabled="disabledStatus"
229
- />
230
- <CmdFormElement element="input"
231
- labelText="Label (inline) for inputfield (search) without search-button:"
232
- :displayLabelInline="true"
233
- type="search"
234
- id="inputfield-search-without-searchbutton"
235
- placeholder="Keyword(s)"
236
- v-model="inputSearch"
237
- :showSearchButton="false"
238
- :status="validationStatus"
239
- :disabled="disabledStatus"
240
- />
241
- <CmdFormElement element="input"
242
- labelText="Label (inline) for inputfield (search):"
243
- :displayLabelInline="true"
244
- type="search"
245
- id="inputfield-search-with-searchbutton"
246
- placeholder="Keyword(s)"
247
- v-model="inputSearch"
248
- :status="validationStatus"
249
- :disabled="disabledStatus"
250
- />
251
- <CmdFormElement element="textarea"
252
- labelText="Label for textarea:"
253
- id="textarea"
254
- minlength="1"
255
- maxlength="100"
256
- placeholder="Type in your message"
257
- v-model="textarea"
258
- :status="validationStatus"
259
- :disabled="disabledStatus"
260
- />
261
- <hr/>
262
- <h2>Fake Selects</h2>
263
- <div class="flex-container">
264
- <!-- type === default: normal selectbox (with optional icons) -->
265
- <CmdFakeSelect labelText="Default selectbox:"
266
- :status="validationStatus"
267
- :disabled="disabledStatus"
268
- :selectData="fakeSelectOptionsData"
269
- v-model="fakeSelectDefault"
270
- :required="true"
271
- defaultOptionName="Select an option:"
272
- title="Title for FakeSelect"
273
- />
274
- <CmdFakeSelect labelText="Default selectbox with icons:"
275
- :status="validationStatus"
276
- :disabled="disabledStatus"
277
- :selectData="fakeSelectOptionsWithIconsData"
278
- v-model="fakeSelectDefaultWithIcons"
279
- defaultOptionName="Select an option:"
280
- />
281
- <!-- type === checkboxOptions: selectbox with checkboxes for each option -->
282
- <CmdFakeSelect labelText="Selectbox with checkboxes:"
283
- :status="validationStatus"
284
- :disabled="disabledStatus"
285
- :selectData="fakeSelectOptionsData"
286
- v-model="fakeSelectCheckbox"
287
- defaultOptionName="Options:"
288
- :required="true"
289
- id="selectbox-with-checkboxes"
290
- type="checkboxOptions"
291
- :useCustomTooltip="true"
292
- />
293
- <CmdFakeSelect labelText="Selectbox with filters:"
294
- :status="validationStatus"
295
- :disabled="disabledStatus"
296
- :selectData="fakeSelectFilterOptionsData"
297
- v-model="fakeSelectFilters"
298
- defaultOptionName="Filters:"
299
- id="selectbox-with-filters"
300
- type="checkboxOptions"
301
- :useCustomTooltip="true"
302
- />
303
- <CmdFakeSelect labelText="Selectbox with slot-content:"
304
- :status="validationStatus"
305
- :disabled="disabledStatus"
306
- type="content"
307
- defaultOptionName="HTML-Content:">
308
- <ul class="custom-fake-select-content">
309
- <li>
310
- <div>
311
- <h3>Headline</h3>
312
- <p>Some content inside a paragraph</p>
313
- </div>
314
- <img src="media/images/thumbnail-scroller/thumbnail/logo-cmd-blue-landscape.jpg" alt="image"/>
315
- </li>
316
- </ul>
317
- </CmdFakeSelect>
318
- <CmdFakeSelect labelText="Selectbox with country flags:"
319
- :status="validationStatus"
320
- :disabled="disabledStatus"
321
- :selectData="fakeSelectCountriesData"
322
- v-model="selectedCountry"
323
- defaultOptionName="Select country:"
324
- type="country"
325
- />
326
- <CmdFakeSelect labelText="Selectbox with colors:"
327
- :status="validationStatus"
328
- :disabled="disabledStatus"
329
- :selectData="fakeSelectColorsData"
330
- v-model="selectedColor"
331
- required="required"
332
- type="color"
252
+ <CmdFormElement element="textarea"
253
+ labelText="Label for textarea:"
254
+ id="textarea"
255
+ minlength="1"
256
+ maxlength="100"
257
+ placeholder="Type in your message"
258
+ v-model="textarea"
259
+ :status="validationStatus"
260
+ :disabled="disabledStatus"
333
261
  />
334
- </div>
262
+ <hr/>
263
+ <h2>Fake Selects</h2>
264
+ <div class="flex-container">
265
+ <!-- type === default: normal selectbox (with optional icons) -->
266
+ <CmdFakeSelect labelText="Default selectbox:"
267
+ :status="validationStatus"
268
+ :disabled="disabledStatus"
269
+ :selectData="fakeSelectOptionsData"
270
+ v-model="fakeSelectDefault"
271
+ :required="true"
272
+ defaultOptionName="Select an option:"
273
+ title="Title for FakeSelect"
274
+ />
275
+ <CmdFakeSelect labelText="Default selectbox with icons:"
276
+ :status="validationStatus"
277
+ :disabled="disabledStatus"
278
+ :selectData="fakeSelectOptionsWithIconsData"
279
+ v-model="fakeSelectDefaultWithIcons"
280
+ defaultOptionName="Select an option:"
281
+ />
282
+ <!-- type === checkboxOptions: selectbox with checkboxes for each option -->
283
+ <CmdFakeSelect labelText="Selectbox with checkboxes:"
284
+ :status="validationStatus"
285
+ :disabled="disabledStatus"
286
+ :selectData="fakeSelectOptionsData"
287
+ v-model="fakeSelectCheckbox"
288
+ defaultOptionName="Options:"
289
+ :required="true"
290
+ id="selectbox-with-checkboxes"
291
+ type="checkboxOptions"
292
+ :useCustomTooltip="true"
293
+ />
294
+ <CmdFakeSelect labelText="Selectbox with filters:"
295
+ :status="validationStatus"
296
+ :disabled="disabledStatus"
297
+ :selectData="fakeSelectFilterOptionsData"
298
+ v-model="fakeSelectFilters"
299
+ defaultOptionName="Filters:"
300
+ id="selectbox-with-filters"
301
+ type="checkboxOptions"
302
+ :useCustomTooltip="true"
303
+ />
304
+ <CmdFakeSelect labelText="Selectbox with slot-content:"
305
+ :status="validationStatus"
306
+ :disabled="disabledStatus"
307
+ type="content"
308
+ defaultOptionName="HTML-Content:">
309
+ <ul class="custom-fake-select-content">
310
+ <li>
311
+ <div>
312
+ <h3>Headline</h3>
313
+ <p>Some content inside a paragraph</p>
314
+ </div>
315
+ <img src="media/images/thumbnail-scroller/thumbnail/logo-cmd-blue-landscape.jpg" alt="image"/>
316
+ </li>
317
+ </ul>
318
+ </CmdFakeSelect>
319
+ <CmdFakeSelect labelText="Selectbox with country flags:"
320
+ :status="validationStatus"
321
+ :disabled="disabledStatus"
322
+ :selectData="fakeSelectCountriesData"
323
+ v-model="selectedCountry"
324
+ defaultOptionName="Select country:"
325
+ type="country"
326
+ />
327
+ <CmdFakeSelect labelText="Selectbox with colors:"
328
+ :status="validationStatus"
329
+ :disabled="disabledStatus"
330
+ :selectData="fakeSelectColorsData"
331
+ v-model="selectedColor"
332
+ required="required"
333
+ type="color"
334
+ />
335
+ </div>
335
336
 
336
- <hr/>
337
+ <hr/>
337
338
 
338
- <!-- begin progress bar -->
339
- <h2>Progress Bar [native]</h2>
340
- <CmdProgressBar labelText="Progress Bar (with optional output):" id="progress-bar2" max="100"/>
341
- <!-- end progress bar -->
339
+ <!-- begin progress bar -->
340
+ <h2>Progress Bar [native]</h2>
341
+ <CmdProgressBar labelText="Progress Bar (with optional output):" id="progress-bar2" max="100"/>
342
+ <!-- end progress bar -->
342
343
 
343
- <!-- begin slider -->
344
- <h2>Slider [native]</h2>
345
- <div class="label" :class="validationStatus">
346
- <span class="label-text">Single-Slider (with in- and output):</span>
347
- <span class="flex-container no-flex">
344
+ <!-- begin slider -->
345
+ <h2>Slider [native]</h2>
346
+ <div class="label" :class="validationStatus">
347
+ <span class="label-text">Single-Slider (with in- and output):</span>
348
+ <span class="flex-container no-flex">
348
349
  <label for="range-value">
349
350
  <span class="label-text">
350
351
  <span>Range Value</span>
@@ -374,801 +375,811 @@
374
375
  />
375
376
  </label>
376
377
  </span>
377
- </div>
378
- <!-- end slider -->
378
+ </div>
379
+ <!-- end slider -->
379
380
 
380
- <hr/>
381
+ <hr/>
381
382
 
382
- <!-- begin toggle-switch-radio with switch-label (colored) -->
383
- <h2>Toggle-Switches</h2>
384
- <CmdFormElement element="input"
385
- type="checkbox"
386
- id="toggle-switch-checkbox"
387
- v-model="switchButtonCheckboxToggleSwitch"
388
- labelText="Labeltext for Toggle-Switch without Switch-Label"
389
- :toggleSwitch="true"
390
- :status="validationStatus"
391
- :disabled="disabledStatus"
392
- />
393
- <CmdFormElement element="input"
394
- type="checkbox"
395
- id="toggle-switch-checkbox"
396
- v-model="switchButtonCheckbox"
397
- labelText="Labeltext for Toggle-Switch with Switch-Label"
398
- inputValue="checkbox1"
399
- onLabel="Label on"
400
- offLabel="Label off"
401
- :toggleSwitch="true"
402
- :status="validationStatus"
403
- :disabled="disabledStatus"
404
- />
405
- <CmdFormElement element="input"
406
- type="checkbox"
407
- id="toggle-switch-checkbox-colored"
408
- v-model="switchButtonCheckbox"
409
- inputValue="checkbox2"
410
- labelText="Labeltext for Toggle-Switch (Checkbox, colored)"
411
- onLabel="Label on"
412
- offLabel="Label off"
413
- :colored="true"
414
- :toggleSwitch="true"
415
- :status="validationStatus"
416
- :disabled="disabledStatus"
417
- />
418
- <CmdFormElement element="input"
419
- type="radio"
420
- name="radiogroup"
421
- id="toggle-switch-radio1"
422
- v-model="switchButtonRadio"
423
- onLabel="Label on"
424
- offLabel="Label off"
425
- :colored="true"
426
- :toggleSwitch="true"
427
- :status="validationStatus"
428
- :disabled="disabledStatus"
429
- inputValue="radio1"
430
- labelText="Labeltext for Toggle-Switch (Radio, colored) #1"
431
- />
432
- <CmdFormElement element="input"
433
- type="radio"
434
- name="radiogroup"
435
- id="toggle-switch-radio2"
436
- v-model="switchButtonRadio"
437
- onLabel="Label on"
438
- offLabel="Label off"
439
- :colored="true"
440
- :toggleSwitch="true"
441
- :status="validationStatus"
442
- :disabled="disabledStatus"
443
- inputValue="radio2"
444
- labelText="Labeltext for Toggle-Switch (Radio, colored) #2"
445
- />
446
- <!-- end toggle-switch-radio with switch-label (colored) -->
383
+ <!-- begin toggle-switch-radio with switch-label (colored) -->
384
+ <h2>Toggle-Switches</h2>
385
+ <CmdFormElement element="input"
386
+ type="checkbox"
387
+ id="toggle-switch-checkbox"
388
+ v-model="switchButtonCheckboxToggleSwitch"
389
+ labelText="Labeltext for Toggle-Switch without Switch-Label"
390
+ :toggleSwitch="true"
391
+ :status="validationStatus"
392
+ :disabled="disabledStatus"
393
+ />
394
+ <CmdFormElement element="input"
395
+ type="checkbox"
396
+ id="toggle-switch-checkbox"
397
+ v-model="switchButtonCheckbox"
398
+ labelText="Labeltext for Toggle-Switch with Switch-Label"
399
+ inputValue="checkbox1"
400
+ onLabel="Label on"
401
+ offLabel="Label off"
402
+ :toggleSwitch="true"
403
+ :status="validationStatus"
404
+ :disabled="disabledStatus"
405
+ />
406
+ <CmdFormElement element="input"
407
+ type="checkbox"
408
+ id="toggle-switch-checkbox-colored"
409
+ v-model="switchButtonCheckbox"
410
+ inputValue="checkbox2"
411
+ labelText="Labeltext for Toggle-Switch (Checkbox, colored)"
412
+ onLabel="Label on"
413
+ offLabel="Label off"
414
+ :colored="true"
415
+ :toggleSwitch="true"
416
+ :status="validationStatus"
417
+ :disabled="disabledStatus"
418
+ />
419
+ <CmdFormElement element="input"
420
+ type="radio"
421
+ name="radiogroup"
422
+ id="toggle-switch-radio1"
423
+ v-model="switchButtonRadio"
424
+ onLabel="Label on"
425
+ offLabel="Label off"
426
+ :colored="true"
427
+ :toggleSwitch="true"
428
+ :status="validationStatus"
429
+ :disabled="disabledStatus"
430
+ inputValue="radio1"
431
+ labelText="Labeltext for Toggle-Switch (Radio, colored) #1"
432
+ />
433
+ <CmdFormElement element="input"
434
+ type="radio"
435
+ name="radiogroup"
436
+ id="toggle-switch-radio2"
437
+ v-model="switchButtonRadio"
438
+ onLabel="Label on"
439
+ offLabel="Label off"
440
+ :colored="true"
441
+ :toggleSwitch="true"
442
+ :status="validationStatus"
443
+ :disabled="disabledStatus"
444
+ inputValue="radio2"
445
+ labelText="Labeltext for Toggle-Switch (Radio, colored) #2"
446
+ />
447
+ <!-- end toggle-switch-radio with switch-label (colored) -->
447
448
 
448
- <!-- begin checkboxes and radiobuttons -->
449
- <CmdFormElement element="input"
450
- labelText="Label for (required) checkbox with boolean"
451
- type="checkbox"
452
- required="required"
453
- id="checkbox-required-with-boolean"
454
- v-model="checkboxRequiredValue"
455
- :status="validationStatus"
456
- :disabled="disabledStatus"
457
- />
458
- <p>
459
- checkbox (required) with boolean: {{ checkboxRequiredValue }}<br/>
460
- checkbox with boolean: {{ checkboxValue }}<br/>
461
- checkboxes with values: {{ checkboxValues }}
462
- </p>
449
+ <!-- begin checkboxes and radiobuttons -->
450
+ <CmdFormElement element="input"
451
+ labelText="Label for (required) checkbox with boolean"
452
+ type="checkbox"
453
+ required="required"
454
+ id="checkbox-required-with-boolean"
455
+ v-model="checkboxRequiredValue"
456
+ :status="validationStatus"
457
+ :disabled="disabledStatus"
458
+ />
459
+ <p>
460
+ checkbox (required) with boolean: {{ checkboxRequiredValue }}<br/>
461
+ checkbox with boolean: {{ checkboxValue }}<br/>
462
+ checkboxes with values: {{ checkboxValues }}
463
+ </p>
463
464
 
464
- <h3>Toggle Dark-Mode</h3>
465
- <a id="section-toggle-darkmode"></a>
466
- <h4>Toggle Dark-Mode (with label, not styled)</h4>
467
- <CmdToggleDarkMode :showLabel="true"/>
468
- <h4>Toggle Dark-Mode (without label, styled)</h4>
469
- <CmdToggleDarkMode :showLabel="false" :use-styled-layout="true" />
465
+ <h3>Toggle Dark-Mode</h3>
466
+ <a id="section-toggle-darkmode"></a>
467
+ <h4>Toggle Dark-Mode (with label, not styled)</h4>
468
+ <CmdToggleDarkMode :showLabel="true"/>
469
+ <h4>Toggle Dark-Mode (without label, styled)</h4>
470
+ <CmdToggleDarkMode :showLabel="false" :use-styled-layout="true"/>
470
471
 
471
- <h2>Checkboxes and Radiobuttons</h2>
472
- <h3>Checkboxes [native]</h3>
473
- <div class="label inline">
474
- <span class="label-text">Label for native checkboxes:</span>
475
- <div class="flex-container no-flex">
476
- <CmdFormElement element="input"
477
- labelText="Label for checkbox with boolean"
478
- type="checkbox"
479
- id="checkbox-with-boolean"
480
- v-model="checkboxValue"
481
- :status="validationStatus"
482
- :disabled="disabledStatus"
483
- />
484
- <CmdFormElement element="input"
485
- labelText="Label for checkbox with value"
486
- v-model="checkboxValues"
487
- inputValue="checkboxValue1"
488
- type="checkbox"
489
- id="checkbox-with-value-1"
490
- :status="validationStatus"
491
- :disabled="disabledStatus"
492
- />
493
- <CmdFormElement element="input"
494
- labelText="Label for checkbox with value"
495
- v-model="checkboxValues"
496
- inputValue="checkboxValue2"
497
- type="checkbox"
498
- id="checkbox-with-value-2"
499
- :status="validationStatus"
500
- :disabled="disabledStatus"
501
- />
472
+ <h2>Checkboxes and Radiobuttons</h2>
473
+ <h3>Checkboxes [native]</h3>
474
+ <div class="label inline">
475
+ <span class="label-text">Label for native checkboxes:</span>
476
+ <div class="flex-container no-flex">
477
+ <CmdFormElement element="input"
478
+ labelText="Label for checkbox with boolean"
479
+ type="checkbox"
480
+ id="checkbox-with-boolean"
481
+ v-model="checkboxValue"
482
+ :status="validationStatus"
483
+ :disabled="disabledStatus"
484
+ />
485
+ <CmdFormElement element="input"
486
+ labelText="Label for checkbox with value"
487
+ v-model="checkboxValues"
488
+ inputValue="checkboxValue1"
489
+ type="checkbox"
490
+ id="checkbox-with-value-1"
491
+ :status="validationStatus"
492
+ :disabled="disabledStatus"
493
+ />
494
+ <CmdFormElement element="input"
495
+ labelText="Label for checkbox with value"
496
+ v-model="checkboxValues"
497
+ inputValue="checkboxValue2"
498
+ type="checkbox"
499
+ id="checkbox-with-value-2"
500
+ :status="validationStatus"
501
+ :disabled="disabledStatus"
502
+ />
503
+ <CmdFormElement element="input"
504
+ v-model="checkboxValues"
505
+ inputValue="checkboxValue3"
506
+ type="checkbox"
507
+ id="checkbox-with-value-3"
508
+ :status="validationStatus"
509
+ :disabled="disabledStatus">
510
+ <template v-slot:labeltext>
511
+ Labeltext with <a href="#">link</a> given by slot
512
+ </template>
513
+ </CmdFormElement>
514
+ </div>
502
515
  </div>
503
- </div>
504
- <h3>Checkboxes (replaced)</h3>
505
- <div class="label inline">
506
- <span class="label-text">Label for Replaced Input-Type-Checkbox:</span>
507
- <div class="flex-container no-flex">
508
- <CmdFormElement element="input"
509
- labelText="Label for replaced checkbox"
510
- type="checkbox"
511
- :replaceInputType="true"
512
- id="inputfield9"
513
- v-model="replacedCheckboxValue"
514
- inputValue="checkboxValue1"
515
- :status="validationStatus"
516
- :disabled="disabledStatus"
517
- />
518
- <CmdFormElement element="input"
519
- labelText="Label for replaced checkbox"
520
- v-model="replacedCheckboxValue"
521
- inputValue="checkboxValue2"
522
- type="checkbox"
523
- :replaceInputType="true"
524
- id="inputfield10"
525
- :status="validationStatus"
526
- :disabled="disabledStatus"
527
- />
516
+ <h3>Checkboxes (replaced)</h3>
517
+ <div class="label inline">
518
+ <span class="label-text">Label for Replaced Input-Type-Checkbox:</span>
519
+ <div class="flex-container no-flex">
520
+ <CmdFormElement element="input"
521
+ labelText="Label for replaced checkbox"
522
+ type="checkbox"
523
+ :replaceInputType="true"
524
+ id="inputfield9"
525
+ v-model="replacedCheckboxValue"
526
+ inputValue="checkboxValue1"
527
+ :status="validationStatus"
528
+ :disabled="disabledStatus"
529
+ />
530
+ <CmdFormElement element="input"
531
+ labelText="Label for replaced checkbox"
532
+ v-model="replacedCheckboxValue"
533
+ inputValue="checkboxValue2"
534
+ type="checkbox"
535
+ :replaceInputType="true"
536
+ id="inputfield10"
537
+ :status="validationStatus"
538
+ :disabled="disabledStatus"
539
+ />
540
+ </div>
528
541
  </div>
529
- </div>
530
- <h3>Radiobuttons [native]</h3>
531
- <div class="label inline">
532
- <span class="label-text">Label for native radiobuttons:</span>
533
- <div class="flex-container no-flex">
534
- <CmdFormElement element="input"
535
- labelText="Label for native radiobutton"
536
- type="radio"
537
- id="inputfield11"
538
- name="radiogroup"
539
- inputValue="radiobuttonValue1"
540
- v-model="radiobuttonValue"
541
- :status="validationStatus"
542
- :disabled="disabledStatus"
543
- />
544
- <CmdFormElement element="input"
545
- labelText="Label for native radiobutton"
546
- type="radio"
547
- id="inputfield12"
548
- name="radiogroup"
549
- inputValue="radiobuttonValue2"
550
- v-model="radiobuttonValue"
551
- :status="validationStatus"
552
- :disabled="disabledStatus"
553
- />
542
+ <h3>Radiobuttons [native]</h3>
543
+ <div class="label inline">
544
+ <span class="label-text">Label for native radiobuttons:</span>
545
+ <div class="flex-container no-flex">
546
+ <CmdFormElement element="input"
547
+ labelText="Label for native radiobutton"
548
+ type="radio"
549
+ id="inputfield11"
550
+ name="radiogroup"
551
+ inputValue="radiobuttonValue1"
552
+ v-model="radiobuttonValue"
553
+ :status="validationStatus"
554
+ :disabled="disabledStatus"
555
+ />
556
+ <CmdFormElement element="input"
557
+ labelText="Label for native radiobutton"
558
+ type="radio"
559
+ id="inputfield12"
560
+ name="radiogroup"
561
+ inputValue="radiobuttonValue2"
562
+ v-model="radiobuttonValue"
563
+ :status="validationStatus"
564
+ :disabled="disabledStatus"
565
+ />
566
+ </div>
554
567
  </div>
555
- </div>
556
- <p>
557
- Radiobuttons with values: {{ radiobuttonValue }}
558
- </p>
559
- <h3>Radiobuttons (replaced)</h3>
560
- <div class="label inline">
561
- <span class="label-text">Label for Replaced Input-Type-Radio:</span>
562
- <div class="flex-container no-flex">
568
+ <p>
569
+ Radiobuttons with values: {{ radiobuttonValue }}
570
+ </p>
571
+ <h3>Radiobuttons (replaced)</h3>
572
+ <div class="label inline">
573
+ <span class="label-text">Label for Replaced Input-Type-Radio:</span>
574
+ <div class="flex-container no-flex">
575
+ <CmdFormElement element="input"
576
+ labelText="Label for replaced radiobutton"
577
+ type="radio"
578
+ :replaceInputType="true"
579
+ id="inputfield13"
580
+ name="replaced-radiogroup"
581
+ inputValue="radiobuttonValue1"
582
+ v-model="replacedRadiobuttonValue"
583
+ :status="validationStatus"
584
+ :disabled="disabledStatus"
585
+ />
586
+ <CmdFormElement element="input"
587
+ labelText="Label for replaced radiobutton"
588
+ type="radio"
589
+ :replaceInputType="true"
590
+ id="inputfield14"
591
+ name="replaced-radiogroup"
592
+ inputValue="radiobuttonValue2"
593
+ v-model="replacedRadiobuttonValue"
594
+ :status="validationStatus"
595
+ :disabled="disabledStatus"
596
+ />
597
+ </div>
598
+ </div>
599
+ <!-- end checkboxes and radiobuttons -->
600
+
601
+ <!-- begin input-groups -->
602
+ <h2>Input-Groups</h2>
603
+ <h3>Input Group with Radiobuttons [native]</h3>
604
+ <CmdInputGroup
605
+ labelText="Group label for radio-group given by slot:"
606
+ :useSlot="true"
607
+ :status="validationStatus"
608
+ :disabled="disabledStatus"
609
+ >
563
610
  <CmdFormElement element="input"
564
- labelText="Label for replaced radiobutton"
611
+ labelText="Label for radiobutton"
565
612
  type="radio"
566
- :replaceInputType="true"
567
- id="inputfield13"
568
- name="replaced-radiogroup"
613
+ id="input-group-radiobutton"
614
+ name="radiogroup2"
569
615
  inputValue="radiobuttonValue1"
570
- v-model="replacedRadiobuttonValue"
616
+ v-model="inputGroupRadio"
571
617
  :status="validationStatus"
572
618
  :disabled="disabledStatus"
573
619
  />
574
620
  <CmdFormElement element="input"
575
- labelText="Label for replaced radiobutton"
621
+ labelText="Label for radiobutton"
576
622
  type="radio"
577
- :replaceInputType="true"
578
- id="inputfield14"
579
- name="replaced-radiogroup"
623
+ id="input-group-radiobutton"
624
+ name="radiogroup2"
580
625
  inputValue="radiobuttonValue2"
581
- v-model="replacedRadiobuttonValue"
626
+ v-model="inputGroupRadio"
582
627
  :status="validationStatus"
583
628
  :disabled="disabledStatus"
584
629
  />
585
- </div>
586
- </div>
587
- <!-- end checkboxes and radiobuttons -->
588
-
589
- <!-- begin input-groups -->
590
- <h2>Input-Groups</h2>
591
- <h3>Input Group with Radiobuttons [native]</h3>
592
- <CmdInputGroup
593
- labelText="Group label for radio-group given by slot:"
594
- :useSlot="true"
595
- :status="validationStatus"
596
- :disabled="disabledStatus"
597
- >
598
- <CmdFormElement element="input"
599
- labelText="Label for radiobutton"
600
- type="radio"
601
- id="input-group-radiobutton"
602
- name="radiogroup2"
603
- inputValue="radiobuttonValue1"
604
- v-model="inputGroupRadio"
605
- :status="validationStatus"
606
- :disabled="disabledStatus"
630
+ </CmdInputGroup>
631
+ <dl>
632
+ <dt>Selected value(s):</dt>
633
+ <dd>
634
+ <output>{{ inputGroupValue1 }}</output>
635
+ </dd>
636
+ </dl>
637
+ <CmdInputGroup
638
+ labelText="Grouplabel for radio-group given by property:"
639
+ :required="true"
640
+ :inputElements="inputGroupRadiobuttonsData"
641
+ inputTypes="radio"
642
+ v-model="inputGroupCheckbox"
643
+ :status="validationStatus"
644
+ :disabled="disabledStatus"
607
645
  />
608
- <CmdFormElement element="input"
609
- labelText="Label for radiobutton"
610
- type="radio"
611
- id="input-group-radiobutton"
612
- name="radiogroup2"
613
- inputValue="radiobuttonValue2"
614
- v-model="inputGroupRadio"
615
- :status="validationStatus"
646
+ <dl>
647
+ <dt>Selected value:</dt>
648
+ <dd>
649
+ <output>{{ inputGroupValue2 }}</output>
650
+ </dd>
651
+ </dl>
652
+ <h3>Input Group with Checkboxes/Radiobuttons (replaced)</h3>
653
+ <CmdInputGroup
654
+ labelText="Grouplabel for radio-group styled as replaced-input-type:"
655
+ :inputElements="inputGroupReplacedRadiobuttonsData"
656
+ inputTypes="radio"
657
+ v-model="inputGroupValueReplaceInputTypeRadio"
658
+ :replaceInputType="true"
659
+ :status="validationStatus"
660
+ :disabled="disabledStatus"
661
+ />
662
+ <dl>
663
+ <dt>Selected value:</dt>
664
+ <dd>
665
+ <output>{{ inputGroupValueReplaceInputTypeRadio }}</output>
666
+ </dd>
667
+ </dl>
668
+ <CmdInputGroup
669
+ labelText="Grouplabel for checkbox-group styled as replaced-input-type:"
670
+ :inputElements="inputGroupReplacedRadiobuttonsData"
671
+ inputTypes="checkbox"
672
+ v-model="inputGroupValueReplaceInputTypeCheckbox"
673
+ :replaceInputType="true"
674
+ :required="true"
675
+ :status="validationStatus"
676
+ :disabled="disabledStatus"
677
+ />
678
+ <dl>
679
+ <dt>Selected value(s):</dt>
680
+ <dd>
681
+ <output>{{ inputGroupValueReplaceInputTypeCheckbox }}</output>
682
+ </dd>
683
+ </dl>
684
+ <h3>Input Groups with Checkboxes/
685
+ Radiobuttons (toggle-switches)</h3>
686
+ <CmdInputGroup
687
+ labelText="Grouplabel for checkbox-group styled as toggle-switches:"
688
+ :inputElements="inputGroupRadiobuttonsData"
689
+ inputTypes="checkbox"
690
+ v-model="inputGroupValueToggleSwitchCheckbox"
691
+ :toggleSwitch="true"
692
+ required="required"
693
+ :status="validationStatus"
694
+ :disabled="disabledStatus"
695
+ />
696
+ <dl>
697
+ <dt>Selected value(s):</dt>
698
+ <dd>
699
+ <output>{{ inputGroupValueToggleSwitchCheckbox }}</output>
700
+ </dd>
701
+ </dl>
702
+ <CmdInputGroup
703
+ labelText="Grouplabel for radio-group styled as toggle-switches:"
704
+ :inputElements="inputGroupToggleSwitchRadiobuttonsData"
705
+ inputTypes="radio"
706
+ v-model="inputGroupValueToggleSwitchRadio"
707
+ :toggleSwitch="true"
708
+ required="required"
709
+ :status="validationStatus"
710
+ :disabled="disabledStatus"
711
+ />
712
+ <dl>
713
+ <dt>Selected value(s):</dt>
714
+ <dd>
715
+ <output>{{ inputGroupValueToggleSwitchRadio }}</output>
716
+ </dd>
717
+ </dl>
718
+ <CmdInputGroup
719
+ labelText="Grouplabel for radio-group given by property styled as multiple-switch:"
720
+ :inputElements="inputGroupRadiobuttonsData.map(item => ({...item, id: item.id + '-multi', name: item.name + '-multi'}))"
721
+ inputTypes="radio"
722
+ :multipleSwitch="true"
723
+ v-model="inputGroupValue3"
724
+ :status="validationStatus"
725
+ :disabled="disabledStatus"
726
+ />
727
+ <dl>
728
+ <dt>Selected value(s):</dt>
729
+ <dd>
730
+ <output>{{ inputGroupValue3 }}</output>
731
+ </dd>
732
+ </dl>
733
+ <CmdInputGroup
734
+ labelText="Grouplabel for checkbox-group styled as multiple-switch (stretched horizontally):"
735
+ :inputElements="inputGroupCheckboxes"
736
+ inputTypes="checkbox"
737
+ :multipleSwitch="true"
738
+ :required="true"
739
+ v-model="inputGroupValue4"
740
+ :stretchHorizontally="true"
741
+ :status="validationStatus"
742
+ :disabled="disabledStatus"
743
+ />
744
+ <dl>
745
+ <dt>Selected value(s):</dt>
746
+ <dd>
747
+ <output>{{ inputGroupValue4 }}</output>
748
+ </dd>
749
+ </dl>
750
+ </fieldset><!-- end fieldset -->
751
+ <div class="button-wrapper">
752
+ <small><sup>*</sup>values will not be submitted with the form!</small>
753
+ <CmdFormElement element="button"
754
+ :nativeButton="{text: 'Submit-button from component'}"
755
+ type="submit"
756
+ id="submitbutton"
757
+ name="submitbutton"
616
758
  :disabled="disabledStatus"
617
759
  />
618
- </CmdInputGroup>
619
- <dl>
620
- <dt>Selected value(s):</dt>
621
- <dd>
622
- <output>{{ inputGroupValue1 }}</output>
623
- </dd>
624
- </dl>
625
- <CmdInputGroup
626
- labelText="Grouplabel for radio-group given by property:"
627
- :required="true"
628
- :inputElements="inputGroupRadiobuttonsData"
629
- inputTypes="radio"
630
- v-model="inputGroupCheckbox"
631
- :status="validationStatus"
632
- :disabled="disabledStatus"
633
- />
634
- <dl>
635
- <dt>Selected value:</dt>
636
- <dd>
637
- <output>{{ inputGroupValue2 }}</output>
638
- </dd>
639
- </dl>
640
- <h3>Input Group with Checkboxes/Radiobuttons (replaced)</h3>
641
- <CmdInputGroup
642
- labelText="Grouplabel for radio-group styled as replaced-input-type:"
643
- :inputElements="inputGroupReplacedRadiobuttonsData"
644
- inputTypes="radio"
645
- v-model="inputGroupValueReplaceInputTypeRadio"
646
- :replaceInputType="true"
647
- :status="validationStatus"
648
- :disabled="disabledStatus"
649
- />
650
- <dl>
651
- <dt>Selected value:</dt>
652
- <dd>
653
- <output>{{ inputGroupValueReplaceInputTypeRadio }}</output>
654
- </dd>
655
- </dl>
656
- <CmdInputGroup
657
- labelText="Grouplabel for checkbox-group styled as replaced-input-type:"
658
- :inputElements="inputGroupReplacedRadiobuttonsData"
659
- inputTypes="checkbox"
660
- v-model="inputGroupValueReplaceInputTypeCheckbox"
661
- :replaceInputType="true"
662
- :required="true"
663
- :status="validationStatus"
664
- :disabled="disabledStatus"
665
- />
666
- <dl>
667
- <dt>Selected value(s):</dt>
668
- <dd>
669
- <output>{{ inputGroupValueReplaceInputTypeCheckbox }}</output>
670
- </dd>
671
- </dl>
672
- <h3>Input Groups with Checkboxes/
673
- Radiobuttons (toggle-switches)</h3>
674
- <CmdInputGroup
675
- labelText="Grouplabel for checkbox-group styled as toggle-switches:"
676
- :inputElements="inputGroupRadiobuttonsData"
677
- inputTypes="checkbox"
678
- v-model="inputGroupValueToggleSwitchCheckbox"
679
- :toggleSwitch="true"
680
- required="required"
681
- :status="validationStatus"
682
- :disabled="disabledStatus"
683
- />
684
- <dl>
685
- <dt>Selected value(s):</dt>
686
- <dd>
687
- <output>{{ inputGroupValueToggleSwitchCheckbox }}</output>
688
- </dd>
689
- </dl>
690
- <CmdInputGroup
691
- labelText="Grouplabel for radio-group styled as toggle-switches:"
692
- :inputElements="inputGroupToggleSwitchRadiobuttonsData"
693
- inputTypes="radio"
694
- v-model="inputGroupValueToggleSwitchRadio"
695
- :toggleSwitch="true"
696
- required="required"
697
- :status="validationStatus"
698
- :disabled="disabledStatus"
699
- />
700
- <dl>
701
- <dt>Selected value(s):</dt>
702
- <dd>
703
- <output>{{ inputGroupValueToggleSwitchRadio }}</output>
704
- </dd>
705
- </dl>
706
- <CmdInputGroup
707
- labelText="Grouplabel for radio-group given by property styled as multiple-switch:"
708
- :inputElements="inputGroupRadiobuttonsData.map(item => ({...item, id: item.id + '-multi', name: item.name + '-multi'}))"
709
- inputTypes="radio"
710
- :multipleSwitch="true"
711
- v-model="inputGroupValue3"
712
- :status="validationStatus"
713
- :disabled="disabledStatus"
714
- />
715
- <dl>
716
- <dt>Selected value(s):</dt>
717
- <dd>
718
- <output>{{ inputGroupValue3 }}</output>
719
- </dd>
720
- </dl>
721
- <CmdInputGroup
722
- labelText="Grouplabel for checkbox-group styled as multiple-switch (stretched horizontally):"
723
- :inputElements="inputGroupCheckboxes"
724
- inputTypes="checkbox"
725
- :multipleSwitch="true"
726
- :required="true"
727
- v-model="inputGroupValue4"
728
- :stretchHorizontally="true"
729
- :status="validationStatus"
730
- :disabled="disabledStatus"
731
- />
732
- <dl>
733
- <dt>Selected value(s):</dt>
734
- <dd>
735
- <output>{{ inputGroupValue4 }}</output>
736
- </dd>
737
- </dl>
738
- </fieldset><!-- end fieldset -->
739
- <div class="button-wrapper">
740
- <small><sup>*</sup>values will not be submitted with the form!</small>
741
- <CmdFormElement element="button"
742
- :nativeButton="{text: 'Submit-button from component'}"
743
- type="submit"
744
- id="submitbutton"
745
- name="submitbutton"
746
- :disabled="disabledStatus"
747
- />
748
- <button type="submit" :disabled="disabledStatus">
749
- <span class="icon-check"></span>
750
- <span>Native submit-button</span>
751
- </button>
752
- </div>
753
- </CmdForm>
754
- </CmdWidthLimitationWrapper>
755
- <!-- end advanced form elements ----------------------------------------------------------------------------------------------------------------------------------------------------->
760
+ <button type="submit" :disabled="disabledStatus">
761
+ <span class="icon-check"></span>
762
+ <span>Native submit-button</span>
763
+ </button>
764
+ </div>
765
+ </CmdForm>
766
+ </CmdWidthLimitationWrapper>
767
+ <!-- end advanced form elements ----------------------------------------------------------------------------------------------------------------------------------------------------->
756
768
 
757
- <!-- begin back to top button ----------------------------------------------------------------------------------------------------------------------------------------------------->
758
- <CmdBackToTopButton/>
759
- <!-- end back to top button ----------------------------------------------------------------------------------------------------------------------------------------------------->
769
+ <!-- begin back to top button ----------------------------------------------------------------------------------------------------------------------------------------------------->
770
+ <CmdBackToTopButton/>
771
+ <!-- end back to top button ----------------------------------------------------------------------------------------------------------------------------------------------------->
760
772
 
761
- <!-- begin bank account data ----------------------------------------------------------------------------------------------------------------------------------------------------->
762
- <a id="section-bank-account-data"></a>
763
- <CmdWidthLimitationWrapper>
764
- <h2 class="headline-demopage">Bank Account Data</h2>
765
- <CmdBankAccountData :account-data="bankAccountData" :cmd-custom-headline="{ headlineText: 'Bank Account', headlineLevel: 3}" :allow-copy-by-click="true"/>
766
- </CmdWidthLimitationWrapper>
767
- <!-- end bank account data ------------------------------------------------------------------------------------------------------------------------------------------------------->
773
+ <!-- begin bank account data ----------------------------------------------------------------------------------------------------------------------------------------------------->
774
+ <a id="section-bank-account-data"></a>
775
+ <CmdWidthLimitationWrapper>
776
+ <h2 class="headline-demopage">Bank Account Data</h2>
777
+ <CmdBankAccountData :account-data="bankAccountData" :cmd-custom-headline="{ headlineText: 'Bank Account', headlineLevel: 3}" :allow-copy-by-click="true"/>
778
+ </CmdWidthLimitationWrapper>
779
+ <!-- end bank account data ------------------------------------------------------------------------------------------------------------------------------------------------------->
768
780
 
769
- <!-- begin boxes ------------------------------------------------------------------------------------------------------------------------------------------------------->
770
- <a id="section-boxes"></a>
771
- <CmdWidthLimitationWrapper>
772
- <h2 class="headline-demopage">Boxes</h2>
773
- <h3>Content boxes</h3>
774
- <div class="grid-container-create-columns">
775
- <div class="grid-small-item">
776
- <CmdBox :useSlots="['header', 'body', 'footer']">
777
- <template v-slot:header>
778
- <h3>
779
- Headline for box
780
- </h3>
781
- </template>
782
- <template v-slot:body>
783
- <div class="padding">
781
+ <!-- begin boxes ------------------------------------------------------------------------------------------------------------------------------------------------------->
782
+ <a id="section-boxes"></a>
783
+ <CmdWidthLimitationWrapper>
784
+ <h2 class="headline-demopage">Boxes</h2>
785
+ <h3>Content boxes</h3>
786
+ <div class="grid-container-create-columns">
787
+ <div class="grid-small-item">
788
+ <CmdBox :useSlots="['header', 'body', 'footer']">
789
+ <template v-slot:header>
790
+ <h3>
791
+ Headline for box
792
+ </h3>
793
+ </template>
794
+ <template v-slot:body>
795
+ <div class="padding">
796
+ <p>
797
+ This content with paragraphs inside is placed inside the box-body.
798
+ </p>
799
+ <p>
800
+ <strong>Header, Content and Footer of this box are given by slots.</strong>
801
+ </p>
802
+ </div>
803
+ </template>
804
+ <template v-slot:footer>
784
805
  <p>
785
- This content with paragraphs inside is placed inside the box-body.
806
+ Footer content
786
807
  </p>
808
+ </template>
809
+ </CmdBox>
810
+ </div>
811
+ <div class="grid-small-item">
812
+ <CmdBox>
813
+ <template v-slot:header>
814
+ <h3>
815
+ Box with links
816
+ </h3>
817
+ </template>
818
+ <template v-slot:body>
819
+ <ul class="navigation">
820
+ <li><a href="#" @click.prevent="">Link name 1</a></li>
821
+ <li><a href="#" @click.prevent="">Link name 2</a></li>
822
+ <li><a href="#" @click.prevent="">Link name 3</a></li>
823
+ <li><a href="#" @click.prevent="">Link name 4</a></li>
824
+ </ul>
825
+ </template>
826
+ <template v-slot:footer>
787
827
  <p>
788
- <strong>Header, Content and Footer of this box are given by slots.</strong>
828
+ footer content
789
829
  </p>
790
- </div>
791
- </template>
792
- <template v-slot:footer>
793
- <p>
794
- Footer content
795
- </p>
796
- </template>
797
- </CmdBox>
798
- </div>
799
- <div class="grid-small-item">
800
- <CmdBox>
801
- <template v-slot:header>
802
- <h3>
803
- Box with links
804
- </h3>
805
- </template>
806
- <template v-slot:body>
807
- <ul class="navigation">
808
- <li><a href="#" @click.prevent="">Link name 1</a></li>
809
- <li><a href="#" @click.prevent="">Link name 2</a></li>
810
- <li><a href="#" @click.prevent="">Link name 3</a></li>
811
- <li><a href="#" @click.prevent="">Link name 4</a></li>
812
- </ul>
813
- </template>
814
- <template v-slot:footer>
815
- <p>
816
- footer content
817
- </p>
818
- </template>
819
- </CmdBox>
820
- </div>
821
- <div class="grid-small-item">
822
- <CmdBox :useSlots="['header', 'body']" :collapsible="true" :stretchVertically="false">
823
- <template v-slot:header>
824
- <h3>
825
- Collapsible box with image
826
- </h3>
827
- </template>
828
- <template v-slot:body>
829
- <img src="media/images/content-images/logo-business-edition-landscape.jpg" alt="Alternative text"/>
830
- </template>
831
- </CmdBox>
832
- </div>
833
- <div class="grid-small-item">
834
- <CmdBox>
835
- <template v-slot:header>
836
- <h3>
837
- Box with image and content
838
- </h3>
839
- </template>
840
- <template v-slot:body>
841
- <img src="media/images/content-images/logo-business-edition-landscape.jpg" alt="Alternative text"/>
842
- <div class="default-padding">
843
- <h4>Headline</h4>
844
- <p>This is some text information i.e a short-text for a news teaser.</p>
845
- </div>
846
- </template>
847
- <template v-slot:footer>
848
- <p>
849
- <a href="#">Read more&hellip;</a>
850
- </p>
851
- </template>
852
- </CmdBox>
830
+ </template>
831
+ </CmdBox>
832
+ </div>
833
+ <div class="grid-small-item">
834
+ <CmdBox :useSlots="['header', 'body']" :collapsible="true" :stretchVertically="false">
835
+ <template v-slot:header>
836
+ <h3>
837
+ Collapsible box with image
838
+ </h3>
839
+ </template>
840
+ <template v-slot:body>
841
+ <img src="media/images/content-images/logo-business-edition-landscape.jpg" alt="Alternative text"/>
842
+ </template>
843
+ </CmdBox>
844
+ </div>
845
+ <div class="grid-small-item">
846
+ <CmdBox>
847
+ <template v-slot:header>
848
+ <h3>
849
+ Box with image and content
850
+ </h3>
851
+ </template>
852
+ <template v-slot:body>
853
+ <img src="media/images/content-images/logo-business-edition-landscape.jpg" alt="Alternative text"/>
854
+ <div class="default-padding">
855
+ <h4>Headline</h4>
856
+ <p>This is some text information i.e a short-text for a news teaser.</p>
857
+ </div>
858
+ </template>
859
+ <template v-slot:footer>
860
+ <p>
861
+ <a href="#">Read more&hellip;</a>
862
+ </p>
863
+ </template>
864
+ </CmdBox>
865
+ </div>
853
866
  </div>
854
- </div>
855
- <h3>Product boxes</h3>
856
- <div class="grid-container-create-columns">
857
- <div class="grid-small-item" v-for="(product, index) in boxProductData" :key="index">
858
- <CmdBox boxType="product" :product="product" :cmdHeadline="{headlineLevel: 4}"/>
867
+ <h3>Product boxes</h3>
868
+ <div class="grid-container-create-columns">
869
+ <div class="grid-small-item" v-for="(product, index) in boxProductData" :key="index">
870
+ <CmdBox boxType="product" :product="product" :cmdHeadline="{headlineLevel: 4}"/>
871
+ </div>
859
872
  </div>
860
- </div>
861
- <h3>User boxes</h3>
862
- <div class="grid-container-create-columns">
863
- <div class="grid-small-item" v-for="(user, index) in boxUserData" :key="index">
864
- <CmdBox boxType="user" :user="user" :cmdHeadline="{headlineLevel: 4}"/>
873
+ <h3>User boxes</h3>
874
+ <div class="grid-container-create-columns">
875
+ <div class="grid-small-item" v-for="(user, index) in boxUserData" :key="index">
876
+ <CmdBox boxType="user" :user="user" :cmdHeadline="{headlineLevel: 4}"/>
877
+ </div>
865
878
  </div>
866
- </div>
867
- <h3>Box Site Search</h3>
868
- <CmdBoxSiteSearch
869
- v-model:modelValueInput1="siteSearchInput1"
870
- v-model:modelValueInput2="siteSearchInput2"
871
- v-model:modelValueRadius="radius"
872
- v-model:modelValueSearchFilters="filters"
873
- @search="siteSearchOutput"
874
- textLegend="Search"
875
- :cmdFakeSelect="siteSearchFilters"/>
876
- <dl>
877
- <dt>siteSearchInput1:</dt>
878
- <dd>{{ siteSearchInput1 }}</dd>
879
- <dt>siteSearchInput2:</dt>
880
- <dd>{{ siteSearchInput2 }}</dd>
881
- <dt>Radius:</dt>
882
- <dd>{{ radius }}</dd>
883
- <dt>Filters:</dt>
884
- <dd>{{ filters }}</dd>
885
- </dl>
886
- </CmdWidthLimitationWrapper>
887
- <!-- end boxes ------------------------------------------------------------------------------------------------------------------------------------------------------->
879
+ <h3>Box Site Search</h3>
880
+ <CmdBoxSiteSearch
881
+ v-model:modelValueInput1="siteSearchInput1"
882
+ v-model:modelValueInput2="siteSearchInput2"
883
+ v-model:modelValueRadius="radius"
884
+ v-model:modelValueSearchFilters="filters"
885
+ @search="siteSearchOutput"
886
+ textLegend="Search"
887
+ :cmdFakeSelect="siteSearchFilters"/>
888
+ <dl>
889
+ <dt>siteSearchInput1:</dt>
890
+ <dd>{{ siteSearchInput1 }}</dd>
891
+ <dt>siteSearchInput2:</dt>
892
+ <dd>{{ siteSearchInput2 }}</dd>
893
+ <dt>Radius:</dt>
894
+ <dd>{{ radius }}</dd>
895
+ <dt>Filters:</dt>
896
+ <dd>{{ filters }}</dd>
897
+ </dl>
898
+ </CmdWidthLimitationWrapper>
899
+ <!-- end boxes ------------------------------------------------------------------------------------------------------------------------------------------------------->
888
900
 
889
- <!-- begin breadcrumbs ------------------------------------------------------------------------------------------------------------------------------------------------------->
890
- <a id="section-breadcrumbs"></a>
891
- <CmdWidthLimitationWrapper inner-component="div">
892
- <h2 class="headline-demopage">Breadcrumbs</h2>
893
- <CmdBreadcrumbs :breadcrumbLinks="breadcrumbData" breadcrumbLabel="You are here:"/>
894
- </CmdWidthLimitationWrapper>
895
- <!-- end breadcrumbs ------------------------------------------------------------------------------------------------------------------------------------------------------->
901
+ <!-- begin breadcrumbs ------------------------------------------------------------------------------------------------------------------------------------------------------->
902
+ <a id="section-breadcrumbs"></a>
903
+ <CmdWidthLimitationWrapper inner-component="div">
904
+ <h2 class="headline-demopage">Breadcrumbs</h2>
905
+ <CmdBreadcrumbs :breadcrumbLinks="breadcrumbData" breadcrumbLabel="You are here:"/>
906
+ </CmdWidthLimitationWrapper>
907
+ <!-- end breadcrumbs ------------------------------------------------------------------------------------------------------------------------------------------------------->
896
908
 
897
- <!-- begin cookie-disclaimer ------------------------------------------------------------------------------------------------------------------------------------------------------->
898
- <a id="section-cookie-disclaimer"></a>
899
- <CmdWidthLimitationWrapper>
900
- <h2 class="headline-demopage">Cookie Disclaimer</h2>
901
- <a class="button" href="#" @click.prevent="fancyBoxCookieDisclaimer = true">
902
- <span>Open Cookie Disclaimer</span>
903
- </a>
904
- </CmdWidthLimitationWrapper>
905
- <!-- end cookie-disclaimer ------------------------------------------------------------------------------------------------------------------------------------------------------->
909
+ <!-- begin cookie-disclaimer ------------------------------------------------------------------------------------------------------------------------------------------------------->
910
+ <a id="section-cookie-disclaimer"></a>
911
+ <CmdWidthLimitationWrapper>
912
+ <h2 class="headline-demopage">Cookie Disclaimer</h2>
913
+ <a class="button" href="#" @click.prevent="fancyBoxCookieDisclaimer = true">
914
+ <span>Open Cookie Disclaimer</span>
915
+ </a>
916
+ </CmdWidthLimitationWrapper>
917
+ <!-- end cookie-disclaimer ------------------------------------------------------------------------------------------------------------------------------------------------------->
906
918
 
907
- <!-- begin custom-headline ------------------------------------------------------------------------------------------------------------------------------------------------------->
908
- <a id="section-custom-headline"></a>
909
- <CmdWidthLimitationWrapper>
910
- <h2 class="headline-demopage">Headline</h2>
911
- <CmdHeadline icon-class="icon-home" pre-headline-text="Pre-headline" headlineText="Headline level 1" :headlineLevel="1"/>
912
- <CmdHeadline headlineText="Headline level 2" :headlineLevel="2"/>
913
- <CmdHeadline headlineText="Headline level 3" :headlineLevel="3"/>
914
- <CmdHeadline headlineText="Headline level 4" :headlineLevel="4"/>
915
- <CmdHeadline headlineText="Headline level 5" :headlineLevel="5"/>
916
- <CmdHeadline headlineText="Headline level 6" :headlineLevel="6"/>
917
- </CmdWidthLimitationWrapper>
918
- <!-- end custom-headline ------------------------------------------------------------------------------------------------------------------------------------------------------->
919
+ <!-- begin custom-headline ------------------------------------------------------------------------------------------------------------------------------------------------------->
920
+ <a id="section-custom-headline"></a>
921
+ <CmdWidthLimitationWrapper>
922
+ <h2 class="headline-demopage">Headline</h2>
923
+ <CmdHeadline icon-class="icon-home" pre-headline-text="Pre-headline" headlineText="Headline level 1" :headlineLevel="1"/>
924
+ <CmdHeadline headlineText="Headline level 2" :headlineLevel="2"/>
925
+ <CmdHeadline headlineText="Headline level 3" :headlineLevel="3"/>
926
+ <CmdHeadline headlineText="Headline level 4" :headlineLevel="4"/>
927
+ <CmdHeadline headlineText="Headline level 5" :headlineLevel="5"/>
928
+ <CmdHeadline headlineText="Headline level 6" :headlineLevel="6"/>
929
+ </CmdWidthLimitationWrapper>
930
+ <!-- end custom-headline ------------------------------------------------------------------------------------------------------------------------------------------------------->
919
931
 
920
- <!-- begin fancybox ------------------------------------------------------------------------------------------------------------------------------------------------------->
921
- <a id="section-fancybox"></a>
922
- <CmdWidthLimitationWrapper>
923
- <h2 class="headline-demopage">Fancybox</h2>
924
- <a href="#" @click.prevent="showFancyBox('text','Some text')">Open FancyBox with text</a>
925
- <a href="#"
926
- @click.prevent="showFancyBox('image', 'media/images/content-images/logo-business-edition-landscape.jpg', 'Alternative text')"
927
- title="Open FancyBox with large image">
928
- <img src="media/images/content-images/logo-business-edition-landscape.jpg" alt="Alternative text"/>
929
- </a>
930
- </CmdWidthLimitationWrapper>
931
- <!-- end fancybox ------------------------------------------------------------------------------------------------------------------------------------------------------->
932
+ <!-- begin fancybox ------------------------------------------------------------------------------------------------------------------------------------------------------->
933
+ <a id="section-fancybox"></a>
934
+ <CmdWidthLimitationWrapper>
935
+ <h2 class="headline-demopage">Fancybox</h2>
936
+ <a href="#" @click.prevent="showFancyBox('text','Some text')">Open FancyBox with text</a>
937
+ <a href="#"
938
+ @click.prevent="showFancyBox('image', 'media/images/content-images/logo-business-edition-landscape.jpg', 'Alternative text')"
939
+ title="Open FancyBox with large image">
940
+ <img src="media/images/content-images/logo-business-edition-landscape.jpg" alt="Alternative text"/>
941
+ </a>
942
+ </CmdWidthLimitationWrapper>
943
+ <!-- end fancybox ------------------------------------------------------------------------------------------------------------------------------------------------------->
932
944
 
933
- <a id="section-google-maps-integration"></a>
934
- <CmdWidthLimitationWrapper>
935
- <h2 class="headline-demopage">Google Maps&trade;-Integration</h2>
936
- <CmdGoogleMaps :address="addressData"/>
937
- </CmdWidthLimitationWrapper>
945
+ <a id="section-google-maps-integration"></a>
946
+ <CmdWidthLimitationWrapper>
947
+ <h2 class="headline-demopage">Google Maps&trade;-Integration</h2>
948
+ <CmdGoogleMaps :address="addressData"/>
949
+ </CmdWidthLimitationWrapper>
938
950
 
939
- <a id="section-image-gallery"></a>
940
- <CmdWidthLimitationWrapper>
941
- <h2 class="headline-demopage">Image-Gallery</h2>
942
- <CmdImageGallery :images="imageGalleryData"/>
943
- </CmdWidthLimitationWrapper>
951
+ <a id="section-image-gallery"></a>
952
+ <CmdWidthLimitationWrapper>
953
+ <h2 class="headline-demopage">Image-Gallery</h2>
954
+ <CmdImageGallery :images="imageGalleryData"/>
955
+ </CmdWidthLimitationWrapper>
944
956
 
945
- <a id="section-image-zoom"></a>
946
- <CmdWidthLimitationWrapper>
947
- <h2 class="headline-demopage">Image-Zoom</h2>
948
- <CmdImageZoom small-image-url="media/images/content-images/logo-business-edition-landscape.jpg"
949
- large-image-url="media/images/content-images/logo-business-edition-landscape-large.jpg"/>
950
- </CmdWidthLimitationWrapper>
957
+ <a id="section-image-zoom"></a>
958
+ <CmdWidthLimitationWrapper>
959
+ <h2 class="headline-demopage">Image-Zoom</h2>
960
+ <CmdImageZoom small-image-url="media/images/content-images/logo-business-edition-landscape.jpg"
961
+ large-image-url="media/images/content-images/logo-business-edition-landscape-large.jpg"/>
962
+ </CmdWidthLimitationWrapper>
951
963
 
952
- <a id="section-login-form"></a>
953
- <CmdWidthLimitationWrapper>
954
- <h2 class="headline-demopage">Login Form</h2>
955
- <CmdLoginForm v-model="loginData" v-focus/>
956
- <p>LoginData: {{ loginData }}</p>
957
- </CmdWidthLimitationWrapper>
964
+ <a id="section-login-form"></a>
965
+ <CmdWidthLimitationWrapper>
966
+ <h2 class="headline-demopage">Login Form</h2>
967
+ <CmdLoginForm v-model="loginData" v-focus/>
968
+ <p>LoginData: {{ loginData }}</p>
969
+ </CmdWidthLimitationWrapper>
958
970
 
959
- <!-- begin list-of-links ------------------------------------------------------------------------------------------------------------------------------------------------------->
960
- <a id="section-list-of-links"></a>
961
- <CmdWidthLimitationWrapper>
962
- <h2 class="headline-demopage">List Of Links</h2>
963
- <h3>Vertical</h3>
964
- <CmdListOfLinks :links="listOfLinksData"/>
965
- <h3>Horizontal (aligned left)</h3>
966
- <CmdListOfLinks orientation="horizontal" align="left" :links="listOfLinksData"/>
967
- <h3>Horizontal (aligned center)</h3>
968
- <CmdListOfLinks orientation="horizontal" align="center" :links="listOfLinksData"/>
969
- <h3>Horizontal (aligned right)</h3>
970
- <CmdListOfLinks orientation="horizontal" align="right" :links="listOfLinksData"/>
971
- </CmdWidthLimitationWrapper>
972
- <!-- end list-of-links ------------------------------------------------------------------------------------------------------------------------------------------------------->
971
+ <!-- begin list-of-links ------------------------------------------------------------------------------------------------------------------------------------------------------->
972
+ <a id="section-list-of-links"></a>
973
+ <CmdWidthLimitationWrapper>
974
+ <h2 class="headline-demopage">List Of Links</h2>
975
+ <h3>Vertical</h3>
976
+ <CmdListOfLinks :links="listOfLinksData"/>
977
+ <h3>Horizontal (aligned left)</h3>
978
+ <CmdListOfLinks orientation="horizontal" align="left" :links="listOfLinksData"/>
979
+ <h3>Horizontal (aligned center)</h3>
980
+ <CmdListOfLinks orientation="horizontal" align="center" :links="listOfLinksData"/>
981
+ <h3>Horizontal (aligned right)</h3>
982
+ <CmdListOfLinks orientation="horizontal" align="right" :links="listOfLinksData"/>
983
+ </CmdWidthLimitationWrapper>
984
+ <!-- end list-of-links ------------------------------------------------------------------------------------------------------------------------------------------------------->
973
985
 
974
- <a id="section-main-navigation"></a>
975
- <CmdWidthLimitationWrapper>
976
- <h2 class="headline-demopage">Main Navigation</h2>
977
- <CmdMainNavigation :stretchMainItems="false"
978
- :persistOnMobile="false"
979
- :navigationEntries="navigationData"
980
- />
981
- </CmdWidthLimitationWrapper>
986
+ <a id="section-main-navigation"></a>
987
+ <CmdWidthLimitationWrapper>
988
+ <h2 class="headline-demopage">Main Navigation</h2>
989
+ <CmdMainNavigation :stretchMainItems="false"
990
+ :persistOnMobile="false"
991
+ :navigationEntries="navigationData"
992
+ />
993
+ </CmdWidthLimitationWrapper>
982
994
 
983
- <a id="section-multistep-form-progress-bar"></a>
984
- <CmdWidthLimitationWrapper>
985
- <h2 class="headline-demopage">Multistepform-Progressbar</h2>
986
- <CmdMultistepFormProgressBar :multisteps="multistepsData" separatorIconClass="icon-single-arrow-right"
987
- @click="showPageMultistep = $event.index + 1"/>
988
- <div>
989
- <p>Page {{ showPageMultistep }}</p>
990
- </div>
991
- </CmdWidthLimitationWrapper>
995
+ <a id="section-multistep-form-progress-bar"></a>
996
+ <CmdWidthLimitationWrapper>
997
+ <h2 class="headline-demopage">Multistepform-Progressbar</h2>
998
+ <CmdMultistepFormProgressBar :multisteps="multistepsData" separatorIconClass="icon-single-arrow-right"
999
+ @click="showPageMultistep = $event.index + 1"/>
1000
+ <div>
1001
+ <p>Page {{ showPageMultistep }}</p>
1002
+ </div>
1003
+ </CmdWidthLimitationWrapper>
992
1004
 
993
- <a id="section-pager"></a>
994
- <CmdWidthLimitationWrapper>
995
- <h2 class="headline-demopage">Pager</h2>
996
- <div>
997
- <p>Page {{ showPagePager }}</p>
998
- </div>
999
- <CmdPager
1000
- :items="4"
1001
- :itemsPerPage="1"
1002
- @click="showPagePager = $event"
1003
- />
1004
- </CmdWidthLimitationWrapper>
1005
+ <a id="section-pager"></a>
1006
+ <CmdWidthLimitationWrapper>
1007
+ <h2 class="headline-demopage">Pager</h2>
1008
+ <div>
1009
+ <p>Page {{ showPagePager }}</p>
1010
+ </div>
1011
+ <CmdPager
1012
+ :items="4"
1013
+ :itemsPerPage="1"
1014
+ @click="showPagePager = $event"
1015
+ />
1016
+ </CmdWidthLimitationWrapper>
1005
1017
 
1006
- <a id="section-share-buttons"></a>
1007
- <CmdWidthLimitationWrapper>
1008
- <h2 class="headline-demopage">Share buttons</h2>
1009
- <CmdShareButtons :share-buttons="shareButtonsData"/>
1010
- </CmdWidthLimitationWrapper>
1018
+ <a id="section-share-buttons"></a>
1019
+ <CmdWidthLimitationWrapper>
1020
+ <h2 class="headline-demopage">Share buttons</h2>
1021
+ <CmdShareButtons :share-buttons="shareButtonsData"/>
1022
+ </CmdWidthLimitationWrapper>
1011
1023
 
1012
- <a id="section-slideshow"></a>
1013
- <CmdWidthLimitationWrapper>
1014
- <h2 class="headline-demopage">Slideshow</h2>
1015
- <CmdSlideshow :slideshow-items="slideshowData" :showCounter="true" :autoplay="true"/>
1016
- </CmdWidthLimitationWrapper>
1024
+ <a id="section-slideshow"></a>
1025
+ <CmdWidthLimitationWrapper>
1026
+ <h2 class="headline-demopage">Slideshow</h2>
1027
+ <CmdSlideshow :slideshow-items="slideshowData" :showCounter="true" :autoplay="true"/>
1028
+ </CmdWidthLimitationWrapper>
1017
1029
 
1018
- <a id="section-system-message"></a>
1019
- <CmdWidthLimitationWrapper>
1020
- <h2 class="headline-demopage">System Message</h2>
1021
- <CmdSystemMessage validationStatus="error"
1022
- :fullWidth="true"
1023
- systemMessage="This is an error message!"
1024
- :iconMessage="{iconClass: 'icon-error-circle'}">
1025
- <ul>
1026
- <li>Error #1</li>
1027
- <li>Error #2</li>
1028
- <li>Error #3</li>
1029
- </ul>
1030
- </CmdSystemMessage>
1031
- <CmdSystemMessage validationStatus="warning"
1032
- :fullWidth="true"
1033
- systemMessage="This is a warning message!">
1034
- <p>This is additional text!</p>
1035
- </CmdSystemMessage>
1036
- <CmdSystemMessage validationStatus="success"
1037
- :fullWidth="true"
1038
- systemMessage="This is a success message!"
1039
- :iconMessage="{iconClass: 'icon-check-circle'}">
1040
- <p>This is additional text!</p>
1041
- </CmdSystemMessage>
1042
- <CmdSystemMessage validationStatus="info"
1043
- :fullWidth="true"
1044
- systemMessage="This is an info message!"
1045
- :iconMessage="{iconClass: 'icon-info-circle'}">
1046
- <p>This is additional text!</p>
1047
- </CmdSystemMessage>
1048
- </CmdWidthLimitationWrapper>
1030
+ <a id="section-system-message"></a>
1031
+ <CmdWidthLimitationWrapper>
1032
+ <h2 class="headline-demopage">System Message</h2>
1033
+ <CmdSystemMessage validationStatus="error"
1034
+ :fullWidth="true"
1035
+ systemMessage="This is an error message!"
1036
+ :iconMessage="{iconClass: 'icon-error-circle'}">
1037
+ <ul>
1038
+ <li>Error #1</li>
1039
+ <li>Error #2</li>
1040
+ <li>Error #3</li>
1041
+ </ul>
1042
+ </CmdSystemMessage>
1043
+ <CmdSystemMessage validationStatus="warning"
1044
+ :fullWidth="true"
1045
+ systemMessage="This is a warning message!">
1046
+ <p>This is additional text!</p>
1047
+ </CmdSystemMessage>
1048
+ <CmdSystemMessage validationStatus="success"
1049
+ :fullWidth="true"
1050
+ systemMessage="This is a success message!"
1051
+ :iconMessage="{iconClass: 'icon-check-circle'}">
1052
+ <p>This is additional text!</p>
1053
+ </CmdSystemMessage>
1054
+ <CmdSystemMessage validationStatus="info"
1055
+ :fullWidth="true"
1056
+ systemMessage="This is an info message!"
1057
+ :iconMessage="{iconClass: 'icon-info-circle'}">
1058
+ <p>This is additional text!</p>
1059
+ </CmdSystemMessage>
1060
+ </CmdWidthLimitationWrapper>
1049
1061
 
1050
- <a id="section-tables"></a>
1051
- <CmdWidthLimitationWrapper>
1052
- <h2 class="headline-demopage">Tables</h2>
1053
- <h3>Table as wide as its content (with caption)</h3>
1054
- <CmdTable :collapsible="true" :fullWidthOnDefault="false" :userCanToggleWidth="true" :table-data="tableDataSmall"/>
1055
- <h3>Table as wide as its content (without caption)</h3>
1056
- <CmdTable :collapsible="true" :fullWidthOnDefault="false" :userCanToggleWidth="true" :caption="{ text: 'Hidden caption', show: false}" :table-data="tableDataSmall"/>
1057
- <h3>Table as wide as possible</h3>
1058
- <CmdTable :collapsible="true" :fullWidthOnDefault="false" :userCanToggleWidth="true" :table-data="tableDataLarge"/>
1059
- </CmdWidthLimitationWrapper>
1062
+ <a id="section-tables"></a>
1063
+ <CmdWidthLimitationWrapper>
1064
+ <h2 class="headline-demopage">Tables</h2>
1065
+ <h3>Table as wide as its content (with caption)</h3>
1066
+ <CmdTable :collapsible="true" :fullWidthOnDefault="false" :userCanToggleWidth="true" :table-data="tableDataSmall"/>
1067
+ <h3>Table as wide as its content (without caption)</h3>
1068
+ <CmdTable :collapsible="true" :fullWidthOnDefault="false" :userCanToggleWidth="true" :caption="{ text: 'Hidden caption', show: false}" :table-data="tableDataSmall"/>
1069
+ <h3>Table as wide as possible</h3>
1070
+ <CmdTable :collapsible="true" :fullWidthOnDefault="false" :userCanToggleWidth="true" :table-data="tableDataLarge"/>
1071
+ </CmdWidthLimitationWrapper>
1060
1072
 
1061
- <a id="section-tabs"></a>
1062
- <CmdWidthLimitationWrapper>
1063
- <h2 class="headline-demopage">Tabs</h2>
1064
- <h3>Tabs with content from json-file</h3>
1065
- <CmdTabs :stretchTabs="false" :tabs="tabsData"/>
1066
- <h3>Tabs with HTML-content (given by slot))</h3>
1067
- <CmdTabs :stretchTabs="true" :tabs="[{name: 'Tab 1'}, {name: 'Tab 2'}, {name: 'Tab 3'}]" :useSlot="true">
1068
- <template v-slot:tab-content-0>
1069
- <h4>Tab 1 headline</h4>
1070
- <p>Content</p>
1071
- </template>
1072
- <template v-slot:tab-content-1>
1073
- <h4>Tab 2</h4>
1074
- <p>Content</p>
1075
- <p>Content</p>
1076
- </template>
1077
- <template v-slot:tab-content-2>
1078
- <h4>Tab 3</h4>
1079
- <p>Content</p>
1080
- <p>Content</p>
1081
- <p>Content</p>
1082
- </template>
1083
- </CmdTabs>
1084
- </CmdWidthLimitationWrapper>
1073
+ <a id="section-tabs"></a>
1074
+ <CmdWidthLimitationWrapper>
1075
+ <h2 class="headline-demopage">Tabs</h2>
1076
+ <h3>Tabs with content from json-file</h3>
1077
+ <CmdTabs :stretchTabs="false" :tabs="tabsData"/>
1078
+ <h3>Tabs with HTML-content (given by slot))</h3>
1079
+ <CmdTabs :stretchTabs="true" :tabs="[{name: 'Tab 1'}, {name: 'Tab 2'}, {name: 'Tab 3'}]" :useSlot="true">
1080
+ <template v-slot:tab-content-0>
1081
+ <h4>Tab 1 headline</h4>
1082
+ <p>Content</p>
1083
+ </template>
1084
+ <template v-slot:tab-content-1>
1085
+ <h4>Tab 2</h4>
1086
+ <p>Content</p>
1087
+ <p>Content</p>
1088
+ </template>
1089
+ <template v-slot:tab-content-2>
1090
+ <h4>Tab 3</h4>
1091
+ <p>Content</p>
1092
+ <p>Content</p>
1093
+ <p>Content</p>
1094
+ </template>
1095
+ </CmdTabs>
1096
+ </CmdWidthLimitationWrapper>
1085
1097
 
1086
- <a id="section-thumbnail-scroller"></a>
1087
- <CmdWidthLimitationWrapper>
1088
- <h2 class="headline-demopage">Thumbnail-Scroller</h2>
1089
- <h3>Thumbnail-Scroller as wide as content</h3>
1090
- <CmdThumbnailScroller :thumbnail-scroller-items="thumbnailScrollerData"/>
1091
- <h3>Thumbnail-Scroller stretched to full width</h3>
1092
- <CmdThumbnailScroller :thumbnail-scroller-items="thumbnailScrollerData" :fullWidth="true" />
1093
- </CmdWidthLimitationWrapper>
1098
+ <a id="section-thumbnail-scroller"></a>
1099
+ <CmdWidthLimitationWrapper>
1100
+ <h2 class="headline-demopage">Thumbnail-Scroller</h2>
1101
+ <h3>Thumbnail-Scroller as wide as content</h3>
1102
+ <CmdThumbnailScroller :thumbnail-scroller-items="thumbnailScrollerData"/>
1103
+ <h3>Thumbnail-Scroller stretched to full width</h3>
1104
+ <CmdThumbnailScroller :thumbnail-scroller-items="thumbnailScrollerData" :fullWidth="true"/>
1105
+ </CmdWidthLimitationWrapper>
1094
1106
 
1095
- <a id="section-tooltip"></a>
1096
- <CmdWidthLimitationWrapper>
1097
- <h2 class="headline-demopage">Tooltip</h2>
1098
- <p>
1099
- <a href="#" @click.prevent id="hoverme">Hover me!</a><br/>
1100
- <a href="#" @click.prevent id="clickme" title="Native tooltip">Click me!</a>
1101
- </p>
1102
- <CmdTooltip related-id="hoverme">
1103
- Tooltip for hover
1104
- </CmdTooltip>
1105
- <CmdTooltip related-id="clickme" :toggle-visibility-by-click="true">
1106
- Tooltip for click
1107
- </CmdTooltip>
1108
- </CmdWidthLimitationWrapper>
1107
+ <a id="section-tooltip"></a>
1108
+ <CmdWidthLimitationWrapper>
1109
+ <h2 class="headline-demopage">Tooltip</h2>
1110
+ <p>
1111
+ <a href="#" @click.prevent id="hoverme">Hover me!</a><br/>
1112
+ <a href="#" @click.prevent id="clickme" title="Native tooltip">Click me!</a>
1113
+ </p>
1114
+ <CmdTooltip related-id="hoverme">
1115
+ Tooltip for hover
1116
+ </CmdTooltip>
1117
+ <CmdTooltip related-id="clickme" :toggle-visibility-by-click="true">
1118
+ Tooltip for click
1119
+ </CmdTooltip>
1120
+ </CmdWidthLimitationWrapper>
1109
1121
 
1110
- <a id="section-upload-form"></a>
1111
- <CmdWidthLimitationWrapper>
1112
- <h2 class="headline-demopage">Upload-Form</h2>
1113
- <h3>Simple mode</h3>
1114
- <CmdUploadForm :enableDragAndDrop="true"
1115
- :allowedFileExtensions="['jpg', 'png']"
1116
- :allowMultipleFileUploads="true"
1117
- :advancedMode="false"
1118
- textLegend="Simple upload form"
1119
- @error="showError"
1120
- :uploadOptions="{url: 'http://localhost:8888'}"
1121
- />
1122
- <h3>Advanced mode</h3>
1123
- <CmdUploadForm :cmdHeadlineFieldset="{headlineText: 'Select files to upload', headlineLevel: 3}"
1124
- :enableDragAndDrop="true"
1125
- :allowedFileExtensions="['jpg', 'png']"
1126
- :allowMultipleFileUploads="true"
1127
- textLegend="Advanced upload form"
1128
- :uploadOptions="{url: 'http://localhost:8888'}"
1129
- />
1130
- </CmdWidthLimitationWrapper>
1131
- </main>
1122
+ <a id="section-upload-form"></a>
1123
+ <CmdWidthLimitationWrapper>
1124
+ <h2 class="headline-demopage">Upload-Form</h2>
1125
+ <h3>Simple mode</h3>
1126
+ <CmdUploadForm :enableDragAndDrop="true"
1127
+ :allowedFileExtensions="['jpg', 'png']"
1128
+ :allowMultipleFileUploads="true"
1129
+ :advancedMode="false"
1130
+ textLegend="Simple upload form"
1131
+ @error="showError"
1132
+ :uploadOptions="{url: 'http://localhost:8888'}"
1133
+ />
1134
+ <h3>Advanced mode</h3>
1135
+ <CmdUploadForm :cmdHeadlineFieldset="{headlineText: 'Select files to upload', headlineLevel: 3}"
1136
+ :enableDragAndDrop="true"
1137
+ :allowedFileExtensions="['jpg', 'png']"
1138
+ :allowMultipleFileUploads="true"
1139
+ textLegend="Advanced upload form"
1140
+ :uploadOptions="{url: 'http://localhost:8888'}"
1141
+ />
1142
+ </CmdWidthLimitationWrapper>
1143
+ </main>
1132
1144
 
1133
- <CmdSiteFooter>
1134
- <CmdSwitchLanguage :languages="languagesData" @click="doSomething"/>
1135
- <div class="flex-container">
1136
- <CmdListOfLinks :links="listOfLinksData"
1137
- :cmdHeadline="{headlineText: 'List of links', headlineLevel: 6}"
1138
- />
1139
- <CmdOpeningHours :openingHours="openingHoursData"
1140
- :closed="true"
1141
- :cmdHeadline="{headlineText: 'Opening hours', headlineLevel: 6}"
1142
- textOpenClosed="Closed right now!"
1143
- textHolidaysClosed="Closed on holidays"
1144
- textMiscInfo="Miscellaneous information"
1145
- />
1146
- <CmdAddressData :addressData="addressData"
1147
- :linkGoogleMaps="false"
1148
- :cmdHeadline="{headlineText: 'Address data', headlineLevel: 6}"
1149
- />
1150
- </div>
1151
- </CmdSiteFooter>
1145
+ <CmdSiteFooter>
1146
+ <CmdSwitchLanguage :languages="languagesData" @click="doSomething"/>
1147
+ <div class="flex-container">
1148
+ <CmdListOfLinks :links="listOfLinksData"
1149
+ :cmdHeadline="{headlineText: 'List of links', headlineLevel: 6}"
1150
+ />
1151
+ <CmdOpeningHours :openingHours="openingHoursData"
1152
+ :cmdHeadline="{headlineText: 'Opening hours', headlineLevel: 6}"
1153
+ textHolidaysClosed="Closed on holidays"
1154
+ textMiscInfo="Miscellaneous information"
1155
+ />
1156
+ <CmdAddressData :addressData="addressData"
1157
+ :linkGoogleMaps="false"
1158
+ :cmdHeadline="{headlineText: 'Address data', headlineLevel: 6}"
1159
+ />
1160
+ </div>
1161
+ </CmdSiteFooter>
1152
1162
 
1153
- <CmdCopyrightInformation/>
1163
+ <CmdCopyrightInformation/>
1154
1164
 
1155
- <CmdFancyBox :show="fancyBoxCookieDisclaimer" :fancyboxOptions="{}" :allowEscapeKey="false">
1156
- <CmdCookieDisclaimer :cookieOptions="cookieDisclaimerData"
1157
- buttonLabelAcceptAllCookies="Accept all cookies"
1158
- buttonLabelAcceptCurrentSettings="Accept current settings"
1159
- @closeCookieDisclaimer="closeCookieDisclaimer"
1160
- v-model="acceptedCookies"
1165
+ <CmdFancyBox :show="fancyBoxCookieDisclaimer" :fancyboxOptions="{}" :allowEscapeKey="false">
1166
+ <CmdCookieDisclaimer :cookieOptions="cookieDisclaimerData"
1167
+ buttonLabelAcceptAllCookies="Accept all cookies"
1168
+ buttonLabelAcceptCurrentSettings="Accept current settings"
1169
+ @closeCookieDisclaimer="closeCookieDisclaimer"
1170
+ v-model="acceptedCookies"
1161
1171
 
1162
- >
1163
- <template #privacy-text>
1164
- <p>
1165
- <strong>
1166
- By browsing this web site to accept the usage and saving of anonymous data!
1167
- </strong>
1168
- </p>
1169
- </template>
1170
- </CmdCookieDisclaimer>
1171
- </CmdFancyBox>
1172
+ >
1173
+ <template #privacy-text>
1174
+ <p>
1175
+ <strong>
1176
+ By browsing this web site to accept the usage and saving of anonymous data!
1177
+ </strong>
1178
+ </p>
1179
+ </template>
1180
+ </CmdCookieDisclaimer>
1181
+ </CmdFancyBox>
1182
+ </div>
1172
1183
  </template>
1173
1184
 
1174
1185
  <script>
@@ -1248,6 +1259,8 @@ import {openFancyBox} from "@/components/CmdFancyBox"
1248
1259
  // import external functions
1249
1260
  import * as functions from "@/mixins/FieldValidation.js"
1250
1261
 
1262
+ import {localizedTime} from "./components/CmdOpeningHours"
1263
+
1251
1264
  export default {
1252
1265
  name: "App",
1253
1266
  components: {
@@ -1422,6 +1435,9 @@ export default {
1422
1435
  }
1423
1436
  },
1424
1437
  methods: {
1438
+ localizedTime(language) {
1439
+ return (h, m) => (localizedTime(language))(h, m).toLowerCase()
1440
+ },
1425
1441
  closeCookieDisclaimer(event) {
1426
1442
  this.fancyBoxCookieDisclaimer = false
1427
1443
  alert(event.join(", "))
@@ -1475,6 +1491,8 @@ export default {
1475
1491
  </script>
1476
1492
 
1477
1493
  <style lang="scss">
1494
+
1495
+
1478
1496
  .list-status {
1479
1497
  .active {
1480
1498
  color: var(--text-color);