comand-component-library 4.2.67 → 4.2.69
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/comand-component-library.js +2176 -2139
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/src/ComponentLibrary.vue +6 -6
- package/src/componentSettingsDataAndControls.vue +1004 -988
- package/src/components/CmdAddressData.vue +18 -1
- package/src/components/CmdBasicForm.vue +1 -1
- package/src/components/CmdCompanyLogo.vue +1 -0
- package/src/components/CmdContainer.vue +13 -1
- package/src/components/CmdFancyBox.vue +1 -1
- package/src/components/CmdMainNavigation.vue +2 -1
- package/src/components/CmdOpeningHoursItem.vue +39 -39
- package/src/components/CmdSiteHeader.vue +0 -1
- package/src/components/CmdUploadForm.vue +2 -2
- package/src/components/EditComponentWrapper.vue +2 -2
|
@@ -2,1008 +2,1024 @@
|
|
|
2
2
|
import navigationData from "@/assets/data/main-navigation.json"
|
|
3
3
|
|
|
4
4
|
export default {
|
|
5
|
-
data() {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
5
|
+
data() {
|
|
6
|
+
return {
|
|
7
|
+
cmdAddressDataSettingsData: {
|
|
8
|
+
cmdHeadline: {
|
|
9
|
+
headlineText: "Address Data",
|
|
10
|
+
headlineLevel: 3
|
|
11
|
+
},
|
|
12
|
+
useSlot: false,
|
|
13
|
+
showLabelIcons: true,
|
|
14
|
+
showLabelTexts: false,
|
|
15
|
+
showIconsOnly: false,
|
|
16
|
+
showLabels: true,
|
|
17
|
+
showCityBeforeZip: false
|
|
11
18
|
},
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
},
|
|
19
|
-
cmdBankAccountDataSettingsData: {
|
|
20
|
-
cmdHeadline: {
|
|
21
|
-
headlineText: "Bank Account Data",
|
|
22
|
-
headlineLevel: 3
|
|
23
|
-
},
|
|
24
|
-
allowCopyByClick: false,
|
|
25
|
-
additionalInformation: ""
|
|
26
|
-
},
|
|
27
|
-
cmdBreadcrumbsSettingsData: {
|
|
28
|
-
breadcrumbLabel: "You are here:",
|
|
29
|
-
breadcrumbSeparator: ">"
|
|
30
|
-
},
|
|
31
|
-
cmdBoxSettingsData: {
|
|
32
|
-
openCollapsedBox: false,
|
|
33
|
-
rowView: false,
|
|
34
|
-
boxType: "content",
|
|
35
|
-
collapsible: false,
|
|
36
|
-
cutoffTextLines: 0,
|
|
37
|
-
useDefaultPadding: true,
|
|
38
|
-
repeatHeadlineInBoxBody: false,
|
|
39
|
-
fadeLastLine: true,
|
|
40
|
-
useTransition: false,
|
|
41
|
-
boxBodyClass: "",
|
|
42
|
-
profileType: "business",
|
|
43
|
-
textBody: "",
|
|
44
|
-
stretchHorizontally: true,
|
|
45
|
-
stretchVertically: true,
|
|
46
|
-
product: {
|
|
47
|
-
"name": "Product name 1",
|
|
48
|
-
"image": {
|
|
49
|
-
"src": "media/images/demo-images/medium/landscape-01.jpg",
|
|
50
|
-
"alt": "Alternative text"
|
|
51
|
-
},
|
|
52
|
-
"articleNumber": "AB12345",
|
|
53
|
-
"price": 123.45,
|
|
54
|
-
"description": "This is a short description text for the product",
|
|
55
|
-
"new": false,
|
|
56
|
-
"discount": ""
|
|
57
|
-
},
|
|
58
|
-
user: {
|
|
59
|
-
"name": "User name 1",
|
|
60
|
-
"age": 35,
|
|
61
|
-
"gender": "m",
|
|
62
|
-
"imageSrc": "/media/images/user-images/fake-user-1.jpg",
|
|
63
|
-
"profession": "User profession",
|
|
64
|
-
"position": "User position",
|
|
65
|
-
"description": "User profile with image",
|
|
66
|
-
"tag": [
|
|
67
|
-
"Tagname",
|
|
68
|
-
"Long tag",
|
|
69
|
-
"One more tag"
|
|
70
|
-
],
|
|
71
|
-
"links": [
|
|
19
|
+
cmdAddressDataSettingsControls: {
|
|
20
|
+
contentOrientation: [
|
|
21
|
+
{
|
|
22
|
+
text: "Horizontal",
|
|
23
|
+
value: "horizontal"
|
|
24
|
+
},
|
|
72
25
|
{
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
"tooltip": "Send mail"
|
|
26
|
+
text: "Vertical",
|
|
27
|
+
value: "vertical"
|
|
76
28
|
}
|
|
77
29
|
]
|
|
78
|
-
}
|
|
79
|
-
},
|
|
80
|
-
cmdBoxSettingsControls: {
|
|
81
|
-
boxType: [
|
|
82
|
-
{
|
|
83
|
-
text: "Content (default)",
|
|
84
|
-
value: "content"
|
|
85
|
-
},
|
|
86
|
-
{
|
|
87
|
-
text: "Product",
|
|
88
|
-
value: "product"
|
|
89
|
-
},
|
|
90
|
-
{
|
|
91
|
-
text: "User",
|
|
92
|
-
value: "user"
|
|
93
|
-
}
|
|
94
|
-
]
|
|
95
|
-
},
|
|
96
|
-
cmdCodeOutputSettingsData: {
|
|
97
|
-
preformatted: true,
|
|
98
|
-
styleAsBox: true,
|
|
99
|
-
allowCopyByClick: true,
|
|
100
|
-
maxHeight: "20rem"
|
|
101
|
-
},
|
|
102
|
-
cmdContainerSettingsData: {
|
|
103
|
-
cmdHeadline: {
|
|
104
|
-
headlineText: "Container Headline",
|
|
105
|
-
headlineLevel: 3
|
|
106
30
|
},
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
title: "Title for FakeSelect",
|
|
147
|
-
defaultOptionName: "Select an option:",
|
|
148
|
-
showStatusIcon: true,
|
|
149
|
-
id: "cmd-fake-select-configurable",
|
|
150
|
-
useCustomTooltip: true,
|
|
151
|
-
type: "default",
|
|
152
|
-
required: true
|
|
153
|
-
},
|
|
154
|
-
cmdFakeSelectSettingsControls: {
|
|
155
|
-
type: [
|
|
156
|
-
{
|
|
157
|
-
text: "Default (default)",
|
|
158
|
-
value: "default"
|
|
159
|
-
},
|
|
160
|
-
{
|
|
161
|
-
text: "Color",
|
|
162
|
-
value: "color"
|
|
163
|
-
},
|
|
164
|
-
{
|
|
165
|
-
text: "Country",
|
|
166
|
-
value: "country"
|
|
167
|
-
},
|
|
168
|
-
{
|
|
169
|
-
text: "Content",
|
|
170
|
-
value: "content"
|
|
171
|
-
},
|
|
172
|
-
{
|
|
173
|
-
text: "Checkbox options",
|
|
174
|
-
value: "checkboxOptions"
|
|
175
|
-
}
|
|
176
|
-
],
|
|
177
|
-
optionLinkType: [
|
|
178
|
-
{
|
|
179
|
-
text: "Href (default)",
|
|
180
|
-
value: "href"
|
|
181
|
-
},
|
|
182
|
-
{
|
|
183
|
-
text: "Router",
|
|
184
|
-
value: "router"
|
|
185
|
-
}
|
|
186
|
-
],
|
|
187
|
-
status: [
|
|
188
|
-
{
|
|
189
|
-
text: "None (default)",
|
|
190
|
-
value: ""
|
|
191
|
-
},
|
|
192
|
-
{
|
|
193
|
-
text: "Error",
|
|
194
|
-
value: "error"
|
|
195
|
-
},
|
|
196
|
-
{
|
|
197
|
-
text: "Warning",
|
|
198
|
-
value: "warning"
|
|
199
|
-
},
|
|
200
|
-
{
|
|
201
|
-
text: "Success",
|
|
202
|
-
value: "success"
|
|
203
|
-
},
|
|
204
|
-
{
|
|
205
|
-
text: "Info",
|
|
206
|
-
value: "info"
|
|
207
|
-
}
|
|
208
|
-
]
|
|
209
|
-
},
|
|
210
|
-
cmdFormElementSettingsData: {
|
|
211
|
-
element: "input",
|
|
212
|
-
type: "text",
|
|
213
|
-
labelText: "Inputfield:",
|
|
214
|
-
placeholder: "Placeholder text",
|
|
215
|
-
required: true,
|
|
216
|
-
showRequirements: true,
|
|
217
|
-
tooltipText: "This is a tooltip",
|
|
218
|
-
status: "",
|
|
219
|
-
showSearchButton: true,
|
|
220
|
-
selectOptions: [
|
|
221
|
-
{
|
|
222
|
-
text: "Please select...",
|
|
223
|
-
value: ""
|
|
224
|
-
},
|
|
225
|
-
{
|
|
226
|
-
text: "Option 1",
|
|
227
|
-
value: "option1"
|
|
228
|
-
},
|
|
229
|
-
{
|
|
230
|
-
text: "Option 2",
|
|
231
|
-
value: "option2"
|
|
232
|
-
},
|
|
233
|
-
{
|
|
234
|
-
text: "Option 3",
|
|
235
|
-
value: "option3"
|
|
236
|
-
}
|
|
237
|
-
]
|
|
238
|
-
},
|
|
239
|
-
cmdFormElementSettingsControls: {
|
|
240
|
-
element: [
|
|
241
|
-
{
|
|
242
|
-
text: "Input (default)",
|
|
243
|
-
value: "input"
|
|
244
|
-
},
|
|
245
|
-
{
|
|
246
|
-
text: "Select",
|
|
247
|
-
value: "select"
|
|
248
|
-
},
|
|
249
|
-
{
|
|
250
|
-
text: "Textarea",
|
|
251
|
-
value: "textarea"
|
|
252
|
-
}
|
|
253
|
-
],
|
|
254
|
-
type: [
|
|
255
|
-
{
|
|
256
|
-
text: "Text (default)",
|
|
257
|
-
value: "text"
|
|
258
|
-
},
|
|
259
|
-
{
|
|
260
|
-
text: "Number",
|
|
261
|
-
value: "number"
|
|
262
|
-
},
|
|
263
|
-
{
|
|
264
|
-
text: "Email",
|
|
265
|
-
value: "email"
|
|
266
|
-
},
|
|
267
|
-
{
|
|
268
|
-
text: "Telephone",
|
|
269
|
-
value: "tel"
|
|
270
|
-
},
|
|
271
|
-
{
|
|
272
|
-
text: "Date",
|
|
273
|
-
value: "date"
|
|
274
|
-
},
|
|
275
|
-
{
|
|
276
|
-
text: "Search",
|
|
277
|
-
value: "search"
|
|
278
|
-
},
|
|
279
|
-
{
|
|
280
|
-
text: "Password",
|
|
281
|
-
value: "password"
|
|
282
|
-
},
|
|
283
|
-
{
|
|
284
|
-
text: "Checkbox",
|
|
285
|
-
value: "checkbox"
|
|
286
|
-
},
|
|
287
|
-
{
|
|
288
|
-
text: "Radio(button)",
|
|
289
|
-
value: "radio"
|
|
290
|
-
}
|
|
291
|
-
],
|
|
292
|
-
status: [
|
|
293
|
-
{
|
|
294
|
-
text: "None (default)",
|
|
295
|
-
value: ""
|
|
296
|
-
},
|
|
297
|
-
{
|
|
298
|
-
text: "Error",
|
|
299
|
-
value: "error"
|
|
300
|
-
},
|
|
301
|
-
{
|
|
302
|
-
text: "Warning",
|
|
303
|
-
value: "warning"
|
|
304
|
-
},
|
|
305
|
-
{
|
|
306
|
-
text: "Success",
|
|
307
|
-
value: "success"
|
|
308
|
-
},
|
|
309
|
-
{
|
|
310
|
-
text: "Info",
|
|
311
|
-
value: "info"
|
|
312
|
-
}
|
|
313
|
-
]
|
|
314
|
-
},
|
|
315
|
-
cmdHeadlineSettingsData: {
|
|
316
|
-
preHeadlineText: "Pre-headline text",
|
|
317
|
-
headlineText: "Headline text",
|
|
318
|
-
headlineLevel: 3,
|
|
319
|
-
textAlign: "left"
|
|
320
|
-
},
|
|
321
|
-
cmdHeadlineSettingsControls: {
|
|
322
|
-
"textAlign": [
|
|
323
|
-
{
|
|
324
|
-
text: "Left (default)",
|
|
325
|
-
value: "left"
|
|
326
|
-
},
|
|
327
|
-
{
|
|
328
|
-
text: "Center",
|
|
329
|
-
value: "center"
|
|
330
|
-
},
|
|
331
|
-
{
|
|
332
|
-
text: "Right",
|
|
333
|
-
value: "right"
|
|
334
|
-
}
|
|
335
|
-
],
|
|
336
|
-
highlightLevel: [
|
|
337
|
-
{
|
|
338
|
-
text: "none (default)",
|
|
339
|
-
value: "none"
|
|
340
|
-
},
|
|
341
|
-
{
|
|
342
|
-
text: "primary",
|
|
343
|
-
value: "primary"
|
|
344
|
-
},
|
|
345
|
-
{
|
|
346
|
-
text: "secondary",
|
|
347
|
-
value: "secondary"
|
|
348
|
-
},
|
|
349
|
-
{
|
|
350
|
-
text: "tertiary",
|
|
351
|
-
value: "tertiary"
|
|
352
|
-
}
|
|
353
|
-
]
|
|
354
|
-
},
|
|
355
|
-
cmdInputGroupSettingsData: {
|
|
356
|
-
required: false,
|
|
357
|
-
inputTypes: "radio",
|
|
358
|
-
status: "",
|
|
359
|
-
showStatusIcon: true,
|
|
360
|
-
replaceInputType: false,
|
|
361
|
-
toggleSwitch: false,
|
|
362
|
-
useSlot: false,
|
|
363
|
-
multipleSwitch: false,
|
|
364
|
-
showLabel: true,
|
|
365
|
-
labelText: "Group label for input-group:",
|
|
366
|
-
labelInline: false,
|
|
367
|
-
stretchHorizontally: false,
|
|
368
|
-
disabled: false
|
|
369
|
-
},
|
|
370
|
-
cmdInputGroupSettingsControls: {
|
|
371
|
-
"inputTypes": [
|
|
372
|
-
{
|
|
373
|
-
text: "Checkbox (default)",
|
|
374
|
-
value: "checkbox"
|
|
375
|
-
},
|
|
376
|
-
{
|
|
377
|
-
text: "Radio",
|
|
378
|
-
value: "radio"
|
|
379
|
-
}
|
|
380
|
-
]
|
|
381
|
-
},
|
|
382
|
-
cmdImageSettingsData: {},
|
|
383
|
-
cmdImageGallerySettingsData: {
|
|
384
|
-
useFancyboxForLargeImages: true,
|
|
385
|
-
figcaptionPosition: "top"
|
|
386
|
-
},
|
|
387
|
-
cmdImageGallerySettingsControls: {
|
|
388
|
-
figcaptionPosition: [
|
|
389
|
-
{
|
|
390
|
-
text: "Top",
|
|
391
|
-
value: "top"
|
|
392
|
-
},
|
|
393
|
-
{
|
|
394
|
-
text: "Bottom (default)",
|
|
395
|
-
value: "bottom"
|
|
396
|
-
}
|
|
397
|
-
]
|
|
398
|
-
},
|
|
399
|
-
cmdLinkSettingsData: {
|
|
400
|
-
path: "#",
|
|
401
|
-
target: "",
|
|
402
|
-
text: "Linktext",
|
|
403
|
-
styleAsButton: false,
|
|
404
|
-
primaryButton: false
|
|
405
|
-
},
|
|
406
|
-
cmdLinkSettingsControls: {
|
|
407
|
-
linkType: [
|
|
408
|
-
{
|
|
409
|
-
text: "href (default)",
|
|
410
|
-
value: "href"
|
|
411
|
-
},
|
|
412
|
-
{
|
|
413
|
-
text: "router",
|
|
414
|
-
value: "router"
|
|
415
|
-
},
|
|
416
|
-
{
|
|
417
|
-
text: "button",
|
|
418
|
-
value: "button"
|
|
419
|
-
}
|
|
420
|
-
],
|
|
421
|
-
highlightLevel: [
|
|
422
|
-
{
|
|
423
|
-
text: "none",
|
|
424
|
-
value: "none"
|
|
425
|
-
},
|
|
426
|
-
{
|
|
427
|
-
text: "primary (default)",
|
|
428
|
-
value: "primary"
|
|
429
|
-
},
|
|
430
|
-
{
|
|
431
|
-
text: "secondary",
|
|
432
|
-
value: "secondary"
|
|
433
|
-
},
|
|
434
|
-
{
|
|
435
|
-
text: "tertiary",
|
|
436
|
-
value: "tertiary"
|
|
437
|
-
}
|
|
438
|
-
]
|
|
439
|
-
},
|
|
440
|
-
cmdListSettingsData: {
|
|
441
|
-
useGap: true,
|
|
442
|
-
styleAsBox: false,
|
|
443
|
-
largeIcons: false,
|
|
444
|
-
sectionAnchors: false,
|
|
445
|
-
orientation: "vertical",
|
|
446
|
-
align: "left",
|
|
447
|
-
showListStyleItems: false
|
|
448
|
-
},
|
|
449
|
-
cmdListSettingsControls: {
|
|
450
|
-
listType: [
|
|
451
|
-
{
|
|
452
|
-
text: "Links",
|
|
453
|
-
value: "links"
|
|
454
|
-
},
|
|
455
|
-
{
|
|
456
|
-
text: "Images",
|
|
457
|
-
value: "images"
|
|
458
|
-
},
|
|
459
|
-
{
|
|
460
|
-
text: "Tags",
|
|
461
|
-
value: "tags"
|
|
462
|
-
}
|
|
463
|
-
],
|
|
464
|
-
align: [
|
|
465
|
-
{
|
|
466
|
-
text: "Left (default)",
|
|
467
|
-
value: "left"
|
|
468
|
-
},
|
|
469
|
-
{
|
|
470
|
-
text: "Center",
|
|
471
|
-
value: "center"
|
|
472
|
-
},
|
|
473
|
-
{
|
|
474
|
-
text: "Right",
|
|
475
|
-
value: "right"
|
|
476
|
-
}
|
|
477
|
-
],
|
|
478
|
-
orientation: [
|
|
479
|
-
{
|
|
480
|
-
text: "Vertical (default)",
|
|
481
|
-
value: "vertical"
|
|
482
|
-
},
|
|
483
|
-
{
|
|
484
|
-
text: "Horizontal",
|
|
485
|
-
value: "horizontal"
|
|
486
|
-
}
|
|
487
|
-
]
|
|
488
|
-
},
|
|
489
|
-
cmdLoginFormSettingsData: {
|
|
490
|
-
cmdHeadlineLoginForm: {
|
|
491
|
-
headlineText: "Login",
|
|
492
|
-
headlineLevel: 4
|
|
493
|
-
},
|
|
494
|
-
cmdHeadlineSendLoginForm: {
|
|
495
|
-
headlineText: "Send Login",
|
|
496
|
-
headlineLevel: 4
|
|
497
|
-
},
|
|
498
|
-
orientation: "horizontal"
|
|
499
|
-
},
|
|
500
|
-
cmdLoginFormSettingsControls: {
|
|
501
|
-
orientation: [
|
|
502
|
-
{
|
|
503
|
-
text: "Vertical",
|
|
504
|
-
value: "vertical"
|
|
505
|
-
},
|
|
506
|
-
{
|
|
507
|
-
text: "Horizontal (default)",
|
|
508
|
-
value: "horizontal"
|
|
509
|
-
}
|
|
510
|
-
]
|
|
511
|
-
},
|
|
512
|
-
cmdMainNavigationSettingsData: {
|
|
513
|
-
offcanvasPosition: "right",
|
|
514
|
-
stretchMainItems: false,
|
|
515
|
-
persistOnMobile: false,
|
|
516
|
-
subentriesIconClass: "icon-chevron-one-stripe-down",
|
|
517
|
-
subSubentriesIconClass: "icon-chevron-one-stripe-right"
|
|
518
|
-
},
|
|
519
|
-
cmdMainNavigationSettingsControls: {
|
|
520
|
-
offcanvasPosition: [
|
|
521
|
-
{
|
|
522
|
-
text: "Right (default)",
|
|
523
|
-
value: "right"
|
|
524
|
-
},
|
|
525
|
-
{
|
|
526
|
-
text: "Left",
|
|
527
|
-
value: "left"
|
|
528
|
-
}
|
|
529
|
-
]
|
|
530
|
-
},
|
|
531
|
-
cmdMultistepFormProgressBarSettingsData: {
|
|
532
|
-
showStepNumber: false,
|
|
533
|
-
separatorIconClass: "icon-chevron-one-stripe-right"
|
|
534
|
-
},
|
|
535
|
-
cmdMultistepFormProgressBarSettingsControls: {
|
|
536
|
-
separatorIconClass: [
|
|
537
|
-
{
|
|
538
|
-
text: "icon-chevron-one-stripe-right (default)",
|
|
539
|
-
value: "icon-chevron-one-stripe-right"
|
|
540
|
-
},
|
|
541
|
-
{
|
|
542
|
-
text: "icon-chevron-two-stripes-right",
|
|
543
|
-
value: "icon-chevron-two-stripes-right"
|
|
544
|
-
}
|
|
545
|
-
],
|
|
546
|
-
highlightLevel: [
|
|
547
|
-
{
|
|
548
|
-
text: "none",
|
|
549
|
-
value: "none"
|
|
550
|
-
},
|
|
551
|
-
{
|
|
552
|
-
text: "primary (default)",
|
|
553
|
-
value: "primary"
|
|
554
|
-
},
|
|
555
|
-
{
|
|
556
|
-
text: "secondary",
|
|
557
|
-
value: "secondary"
|
|
558
|
-
},
|
|
559
|
-
{
|
|
560
|
-
text: "tertiary",
|
|
561
|
-
value: "tertiary"
|
|
562
|
-
}
|
|
563
|
-
]
|
|
564
|
-
},
|
|
565
|
-
cmdNewsletterSubscriptionSettingsData: {
|
|
566
|
-
buttonType: "submit",
|
|
567
|
-
legend: {
|
|
568
|
-
show: true,
|
|
569
|
-
text: "Stay up-to-date"
|
|
570
|
-
},
|
|
571
|
-
cmdInputGroup: {
|
|
572
|
-
inputElements: [
|
|
573
|
-
{
|
|
574
|
-
labelText: "Subscribe",
|
|
575
|
-
id: "radio-subscribe",
|
|
576
|
-
name: "cmd-subscribe-group",
|
|
577
|
-
value: "subscribe"
|
|
31
|
+
cmdBankAccountDataSettingsData: {
|
|
32
|
+
cmdHeadline: {
|
|
33
|
+
headlineText: "Bank Account Data",
|
|
34
|
+
headlineLevel: 3
|
|
35
|
+
},
|
|
36
|
+
allowCopyByClick: false,
|
|
37
|
+
additionalInformation: "",
|
|
38
|
+
cmdBoxSettingsControls: {
|
|
39
|
+
},
|
|
40
|
+
cmdBreadcrumbsSettingsData: {
|
|
41
|
+
breadcrumbLabel: "You are here:",
|
|
42
|
+
breadcrumbSeparator: ">"
|
|
43
|
+
},
|
|
44
|
+
cmdBoxSettingsData: {
|
|
45
|
+
openCollapsedBox: false,
|
|
46
|
+
rowView: false,
|
|
47
|
+
boxType: "content",
|
|
48
|
+
collapsible: false,
|
|
49
|
+
cutoffTextLines: 0,
|
|
50
|
+
useDefaultPadding: true,
|
|
51
|
+
repeatHeadlineInBoxBody: false,
|
|
52
|
+
fadeLastLine: true,
|
|
53
|
+
useTransition: false,
|
|
54
|
+
boxBodyClass: "",
|
|
55
|
+
profileType: "business",
|
|
56
|
+
textBody: "",
|
|
57
|
+
stretchHorizontally: true,
|
|
58
|
+
stretchVertically: true,
|
|
59
|
+
product: {
|
|
60
|
+
"name": "Product name 1",
|
|
61
|
+
"image": {
|
|
62
|
+
"src": "media/images/demo-images/medium/landscape-01.jpg",
|
|
63
|
+
"alt": "Alternative text"
|
|
64
|
+
},
|
|
65
|
+
"articleNumber": "AB12345",
|
|
66
|
+
"price": 123.45,
|
|
67
|
+
"description": "This is a short description text for the product",
|
|
68
|
+
"new": false,
|
|
69
|
+
"discount": ""
|
|
578
70
|
},
|
|
579
|
-
{
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
71
|
+
user: {
|
|
72
|
+
"name": "User name 1",
|
|
73
|
+
"age": 35,
|
|
74
|
+
"gender": "m",
|
|
75
|
+
"imageSrc": "/media/images/user-images/fake-user-1.jpg",
|
|
76
|
+
"profession": "User profession",
|
|
77
|
+
"position": "User position",
|
|
78
|
+
"description": "User profile with image",
|
|
79
|
+
"tag": [
|
|
80
|
+
"Tagname",
|
|
81
|
+
"Long tag",
|
|
82
|
+
"One more tag"
|
|
83
|
+
],
|
|
84
|
+
"links": [
|
|
85
|
+
{
|
|
86
|
+
"path": "mailto:",
|
|
87
|
+
"iconClass": "icon-mail",
|
|
88
|
+
"tooltip": "Send mail"
|
|
89
|
+
}
|
|
90
|
+
]
|
|
584
91
|
}
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
92
|
+
},
|
|
93
|
+
cmdBoxSettingsControls: {
|
|
94
|
+
boxType: [
|
|
95
|
+
{
|
|
96
|
+
text: "Content (default)",
|
|
97
|
+
value: "content"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
text: "Product",
|
|
101
|
+
value: "product"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
text: "User",
|
|
105
|
+
value: "user"
|
|
106
|
+
}
|
|
107
|
+
]
|
|
108
|
+
},
|
|
109
|
+
cmdCodeOutputSettingsData: {
|
|
110
|
+
preformatted: true,
|
|
111
|
+
styleAsBox: true,
|
|
112
|
+
allowCopyByClick: true,
|
|
113
|
+
maxHeight: "20rem"
|
|
114
|
+
},
|
|
115
|
+
cmdContainerSettingsData: {
|
|
116
|
+
cmdHeadline: {
|
|
117
|
+
headlineText: "Container Headline",
|
|
118
|
+
headlineLevel: 3
|
|
119
|
+
},
|
|
120
|
+
containerType: "default"
|
|
121
|
+
},
|
|
122
|
+
cmdContainerSettingsControls: {
|
|
123
|
+
containerType: [
|
|
124
|
+
{
|
|
125
|
+
text: "default (default)",
|
|
126
|
+
text: "default",
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
text: "flex",
|
|
130
|
+
value: "flex"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
text: "grid",
|
|
134
|
+
value: "grid"
|
|
135
|
+
}
|
|
136
|
+
],
|
|
137
|
+
contentOrientation: [
|
|
138
|
+
{
|
|
139
|
+
text: "vertical (default)",
|
|
140
|
+
value: "vertical"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
text: "horizontal",
|
|
144
|
+
value: "horizontal"
|
|
145
|
+
}
|
|
146
|
+
]
|
|
147
|
+
},
|
|
148
|
+
cmdCompanyLogoSettingsData: {
|
|
149
|
+
pathDefaultLogo: "/media/images/logos/logo.svg",
|
|
150
|
+
pathDarkmodeLogo: "/media/images/logos/logo-darkmode.svg",
|
|
151
|
+
altText: "Company Logo"
|
|
152
|
+
},
|
|
153
|
+
cmdFakeSelectSettingsData: {
|
|
154
|
+
showSelectAllOptions: true,
|
|
155
|
+
status: "",
|
|
156
|
+
labelText: "Fake selectbox:",
|
|
157
|
+
showLabel: true,
|
|
158
|
+
textPleaseSelect: "Please select\u2026",
|
|
159
|
+
title: "Title for FakeSelect",
|
|
160
|
+
defaultOptionName: "Select an option:",
|
|
161
|
+
showStatusIcon: true,
|
|
162
|
+
id: "cmd-fake-select-configurable",
|
|
163
|
+
useCustomTooltip: true,
|
|
164
|
+
type: "default",
|
|
165
|
+
required: true
|
|
166
|
+
},
|
|
167
|
+
cmdFakeSelectSettingsControls: {
|
|
168
|
+
type: [
|
|
169
|
+
{
|
|
170
|
+
text: "Default (default)",
|
|
171
|
+
value: "default"
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
text: "Color",
|
|
175
|
+
value: "color"
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
text: "Country",
|
|
179
|
+
value: "country"
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
text: "Content",
|
|
183
|
+
value: "content"
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
text: "Checkbox options",
|
|
187
|
+
value: "checkboxOptions"
|
|
188
|
+
}
|
|
189
|
+
],
|
|
190
|
+
optionLinkType: [
|
|
191
|
+
{
|
|
192
|
+
text: "Href (default)",
|
|
193
|
+
value: "href"
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
text: "Router",
|
|
197
|
+
value: "router"
|
|
198
|
+
}
|
|
199
|
+
],
|
|
200
|
+
status: [
|
|
201
|
+
{
|
|
202
|
+
text: "None (default)",
|
|
203
|
+
value: ""
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
text: "Error",
|
|
207
|
+
value: "error"
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
text: "Warning",
|
|
211
|
+
value: "warning"
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
text: "Success",
|
|
215
|
+
value: "success"
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
text: "Info",
|
|
219
|
+
value: "info"
|
|
220
|
+
}
|
|
221
|
+
]
|
|
222
|
+
},
|
|
223
|
+
cmdFormElementSettingsData: {
|
|
224
|
+
element: "input",
|
|
225
|
+
type: "text",
|
|
226
|
+
labelText: "Inputfield:",
|
|
227
|
+
placeholder: "Placeholder text",
|
|
228
|
+
required: true,
|
|
229
|
+
showRequirements: true,
|
|
230
|
+
tooltipText: "This is a tooltip",
|
|
231
|
+
status: "",
|
|
232
|
+
showSearchButton: true,
|
|
233
|
+
selectOptions: [
|
|
234
|
+
{
|
|
235
|
+
text: "Please select...",
|
|
236
|
+
value: ""
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
text: "Option 1",
|
|
240
|
+
value: "option1"
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
text: "Option 2",
|
|
244
|
+
value: "option2"
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
text: "Option 3",
|
|
248
|
+
value: "option3"
|
|
249
|
+
}
|
|
250
|
+
]
|
|
251
|
+
},
|
|
252
|
+
cmdFormElementSettingsControls: {
|
|
253
|
+
element: [
|
|
254
|
+
{
|
|
255
|
+
text: "Input (default)",
|
|
256
|
+
value: "input"
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
text: "Select",
|
|
260
|
+
value: "select"
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
text: "Textarea",
|
|
264
|
+
value: "textarea"
|
|
265
|
+
}
|
|
266
|
+
],
|
|
267
|
+
type: [
|
|
268
|
+
{
|
|
269
|
+
text: "Text (default)",
|
|
270
|
+
value: "text"
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
text: "Number",
|
|
274
|
+
value: "number"
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
text: "Email",
|
|
278
|
+
value: "email"
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
text: "Telephone",
|
|
282
|
+
value: "tel"
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
text: "Date",
|
|
286
|
+
value: "date"
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
text: "Search",
|
|
290
|
+
value: "search"
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
text: "Password",
|
|
294
|
+
value: "password"
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
text: "Checkbox",
|
|
298
|
+
value: "checkbox"
|
|
299
|
+
},
|
|
300
|
+
{
|
|
301
|
+
text: "Radio(button)",
|
|
302
|
+
value: "radio"
|
|
303
|
+
}
|
|
304
|
+
],
|
|
305
|
+
status: [
|
|
306
|
+
{
|
|
307
|
+
text: "None (default)",
|
|
308
|
+
value: ""
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
text: "Error",
|
|
312
|
+
value: "error"
|
|
313
|
+
},
|
|
314
|
+
{
|
|
315
|
+
text: "Warning",
|
|
316
|
+
value: "warning"
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
text: "Success",
|
|
320
|
+
value: "success"
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
text: "Info",
|
|
324
|
+
value: "info"
|
|
325
|
+
}
|
|
326
|
+
]
|
|
327
|
+
},
|
|
328
|
+
cmdHeadlineSettingsData: {
|
|
329
|
+
preHeadlineText: "Pre-headline text",
|
|
330
|
+
headlineText: "Headline text",
|
|
331
|
+
headlineLevel: 3,
|
|
332
|
+
textAlign: "left"
|
|
333
|
+
},
|
|
334
|
+
cmdHeadlineSettingsControls: {
|
|
335
|
+
"textAlign": [
|
|
336
|
+
{
|
|
337
|
+
text: "Left (default)",
|
|
338
|
+
value: "left"
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
text: "Center",
|
|
342
|
+
value: "center"
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
text: "Right",
|
|
346
|
+
value: "right"
|
|
347
|
+
}
|
|
348
|
+
],
|
|
349
|
+
highlightLevel: [
|
|
350
|
+
{
|
|
351
|
+
text: "none (default)",
|
|
352
|
+
value: "none"
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
text: "primary",
|
|
356
|
+
value: "primary"
|
|
357
|
+
},
|
|
358
|
+
{
|
|
359
|
+
text: "secondary",
|
|
360
|
+
value: "secondary"
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
text: "tertiary",
|
|
364
|
+
value: "tertiary"
|
|
365
|
+
}
|
|
366
|
+
]
|
|
367
|
+
},
|
|
368
|
+
cmdInputGroupSettingsData: {
|
|
369
|
+
required: false,
|
|
370
|
+
inputTypes: "radio",
|
|
371
|
+
status: "",
|
|
372
|
+
showStatusIcon: true,
|
|
373
|
+
replaceInputType: false,
|
|
374
|
+
toggleSwitch: false,
|
|
375
|
+
useSlot: false,
|
|
376
|
+
multipleSwitch: false,
|
|
377
|
+
showLabel: true,
|
|
378
|
+
labelText: "Group label for input-group:",
|
|
379
|
+
labelInline: false,
|
|
380
|
+
stretchHorizontally: false,
|
|
381
|
+
disabled: false
|
|
382
|
+
},
|
|
383
|
+
cmdInputGroupSettingsControls: {
|
|
384
|
+
"inputTypes": [
|
|
385
|
+
{
|
|
386
|
+
text: "Checkbox (default)",
|
|
387
|
+
value: "checkbox"
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
text: "Radio",
|
|
391
|
+
value: "radio"
|
|
392
|
+
}
|
|
393
|
+
]
|
|
394
|
+
},
|
|
395
|
+
cmdImageSettingsData: {},
|
|
396
|
+
cmdImageGallerySettingsData: {
|
|
397
|
+
useFancyboxForLargeImages: true,
|
|
398
|
+
figcaptionPosition: "top"
|
|
399
|
+
},
|
|
400
|
+
cmdImageGallerySettingsControls: {
|
|
401
|
+
figcaptionPosition: [
|
|
402
|
+
{
|
|
403
|
+
text: "Top",
|
|
404
|
+
value: "top"
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
text: "Bottom (default)",
|
|
408
|
+
value: "bottom"
|
|
409
|
+
}
|
|
410
|
+
]
|
|
411
|
+
},
|
|
412
|
+
cmdLinkSettingsData: {
|
|
413
|
+
path: "#",
|
|
414
|
+
target: "",
|
|
415
|
+
text: "Linktext",
|
|
416
|
+
styleAsButton: false,
|
|
417
|
+
primaryButton: false
|
|
418
|
+
},
|
|
419
|
+
cmdLinkSettingsControls: {
|
|
420
|
+
linkType: [
|
|
421
|
+
{
|
|
422
|
+
text: "href (default)",
|
|
423
|
+
value: "href"
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
text: "router",
|
|
427
|
+
value: "router"
|
|
428
|
+
},
|
|
429
|
+
{
|
|
430
|
+
text: "button",
|
|
431
|
+
value: "button"
|
|
432
|
+
}
|
|
433
|
+
],
|
|
434
|
+
highlightLevel: [
|
|
435
|
+
{
|
|
436
|
+
text: "none",
|
|
437
|
+
value: "none"
|
|
438
|
+
},
|
|
439
|
+
{
|
|
440
|
+
text: "primary (default)",
|
|
441
|
+
value: "primary"
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
text: "secondary",
|
|
445
|
+
value: "secondary"
|
|
446
|
+
},
|
|
447
|
+
{
|
|
448
|
+
text: "tertiary",
|
|
449
|
+
value: "tertiary"
|
|
450
|
+
}
|
|
451
|
+
]
|
|
452
|
+
},
|
|
453
|
+
cmdListSettingsData: {
|
|
454
|
+
useGap: true,
|
|
455
|
+
styleAsBox: false,
|
|
456
|
+
largeIcons: false,
|
|
457
|
+
sectionAnchors: false,
|
|
458
|
+
orientation: "vertical",
|
|
459
|
+
align: "left",
|
|
460
|
+
showListStyleItems: false
|
|
461
|
+
},
|
|
462
|
+
cmdListSettingsControls: {
|
|
463
|
+
listType: [
|
|
464
|
+
{
|
|
465
|
+
text: "Links",
|
|
466
|
+
value: "links"
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
text: "Images",
|
|
470
|
+
value: "images"
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
text: "Tags",
|
|
474
|
+
value: "tags"
|
|
475
|
+
}
|
|
476
|
+
],
|
|
477
|
+
align: [
|
|
478
|
+
{
|
|
479
|
+
text: "Left (default)",
|
|
480
|
+
value: "left"
|
|
481
|
+
},
|
|
482
|
+
{
|
|
483
|
+
text: "Center",
|
|
484
|
+
value: "center"
|
|
485
|
+
},
|
|
486
|
+
{
|
|
487
|
+
text: "Right",
|
|
488
|
+
value: "right"
|
|
489
|
+
}
|
|
490
|
+
],
|
|
491
|
+
orientation: [
|
|
492
|
+
{
|
|
493
|
+
text: "Vertical (default)",
|
|
494
|
+
value: "vertical"
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
text: "Horizontal",
|
|
498
|
+
value: "horizontal"
|
|
499
|
+
}
|
|
500
|
+
]
|
|
501
|
+
},
|
|
502
|
+
cmdLoginFormSettingsData: {
|
|
503
|
+
cmdHeadlineLoginForm: {
|
|
504
|
+
headlineText: "Login",
|
|
505
|
+
headlineLevel: 4
|
|
624
506
|
},
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
507
|
+
cmdHeadlineSendLoginForm: {
|
|
508
|
+
headlineText: "Send Login",
|
|
509
|
+
headlineLevel: 4
|
|
510
|
+
},
|
|
511
|
+
orientation: "horizontal"
|
|
512
|
+
},
|
|
513
|
+
cmdLoginFormSettingsControls: {
|
|
514
|
+
orientation: [
|
|
515
|
+
{
|
|
516
|
+
text: "Vertical",
|
|
517
|
+
value: "vertical"
|
|
518
|
+
},
|
|
519
|
+
{
|
|
520
|
+
text: "Horizontal (default)",
|
|
521
|
+
value: "horizontal"
|
|
522
|
+
}
|
|
523
|
+
]
|
|
524
|
+
},
|
|
525
|
+
cmdMainNavigationSettingsData: {
|
|
526
|
+
offcanvasPosition: "right",
|
|
527
|
+
stretchMainItems: false,
|
|
528
|
+
persistOnMobile: false,
|
|
529
|
+
subentriesIconClass: "icon-chevron-one-stripe-down",
|
|
530
|
+
subSubentriesIconClass: "icon-chevron-one-stripe-right"
|
|
531
|
+
},
|
|
532
|
+
cmdMainNavigationSettingsControls: {
|
|
533
|
+
offcanvasPosition: [
|
|
534
|
+
{
|
|
535
|
+
text: "Right (default)",
|
|
536
|
+
value: "right"
|
|
628
537
|
},
|
|
629
|
-
|
|
630
|
-
|
|
538
|
+
{
|
|
539
|
+
text: "Left",
|
|
540
|
+
value: "left"
|
|
631
541
|
}
|
|
542
|
+
]
|
|
543
|
+
},
|
|
544
|
+
cmdMultistepFormProgressBarSettingsData: {
|
|
545
|
+
showStepNumber: false,
|
|
546
|
+
separatorIconClass: "icon-chevron-one-stripe-right"
|
|
547
|
+
},
|
|
548
|
+
cmdMultistepFormProgressBarSettingsControls: {
|
|
549
|
+
separatorIconClass: [
|
|
550
|
+
{
|
|
551
|
+
text: "icon-chevron-one-stripe-right (default)",
|
|
552
|
+
value: "icon-chevron-one-stripe-right"
|
|
553
|
+
},
|
|
554
|
+
{
|
|
555
|
+
text: "icon-chevron-two-stripes-right",
|
|
556
|
+
value: "icon-chevron-two-stripes-right"
|
|
557
|
+
}
|
|
558
|
+
],
|
|
559
|
+
highlightLevel: [
|
|
560
|
+
{
|
|
561
|
+
text: "none",
|
|
562
|
+
value: "none"
|
|
563
|
+
},
|
|
564
|
+
{
|
|
565
|
+
text: "primary (default)",
|
|
566
|
+
value: "primary"
|
|
567
|
+
},
|
|
568
|
+
{
|
|
569
|
+
text: "secondary",
|
|
570
|
+
value: "secondary"
|
|
571
|
+
},
|
|
572
|
+
{
|
|
573
|
+
text: "tertiary",
|
|
574
|
+
value: "tertiary"
|
|
575
|
+
}
|
|
576
|
+
]
|
|
577
|
+
},
|
|
578
|
+
cmdNewsletterSubscriptionSettingsData: {
|
|
579
|
+
buttonType: "submit",
|
|
580
|
+
legend: {
|
|
581
|
+
show: true,
|
|
582
|
+
text: "Stay up-to-date"
|
|
583
|
+
},
|
|
584
|
+
cmdInputGroup: {
|
|
585
|
+
inputElements: [
|
|
586
|
+
{
|
|
587
|
+
labelText: "Subscribe",
|
|
588
|
+
id: "radio-subscribe",
|
|
589
|
+
name: "cmd-subscribe-group",
|
|
590
|
+
value: "subscribe"
|
|
591
|
+
},
|
|
592
|
+
{
|
|
593
|
+
labelText: "Unsubscribe",
|
|
594
|
+
id: "radio-unsubscribe",
|
|
595
|
+
name: "cmd-subscribe-group",
|
|
596
|
+
value: "unsubscribe"
|
|
597
|
+
}
|
|
598
|
+
],
|
|
599
|
+
labelText: "Choose options:",
|
|
600
|
+
showLabel: false
|
|
632
601
|
}
|
|
602
|
+
},
|
|
603
|
+
cmdNewsletterSubscriptionSettingsControls: {
|
|
604
|
+
buttonType: [
|
|
605
|
+
{
|
|
606
|
+
text: "Button (default)",
|
|
607
|
+
value: "button"
|
|
608
|
+
},
|
|
609
|
+
{
|
|
610
|
+
text: "Submit",
|
|
611
|
+
value: "submit"
|
|
612
|
+
}
|
|
613
|
+
]
|
|
614
|
+
},
|
|
615
|
+
cmdOpeningHoursSettingsData: {
|
|
616
|
+
closed: true,
|
|
617
|
+
separator: "-",
|
|
618
|
+
textOpen: "Open right now!",
|
|
619
|
+
textClosed: "Closed right now!",
|
|
620
|
+
textHolidays: "",
|
|
621
|
+
textMiscInfo: "",
|
|
622
|
+
abbreviationTextAm: "am",
|
|
623
|
+
abbreviationTextPm: "pm",
|
|
624
|
+
componentHandlesClosedStatus: false,
|
|
625
|
+
cmdHeadline: {
|
|
626
|
+
headlineText: "Opening Hours",
|
|
627
|
+
headlineLevel: 3
|
|
628
|
+
}
|
|
629
|
+
},
|
|
630
|
+
cmdPageFooterSettingsData: {
|
|
631
|
+
useSmallButtons: false,
|
|
632
|
+
cmdFancyBox: {
|
|
633
|
+
showPrintButtons: true,
|
|
634
|
+
fancyBoxOptions: {
|
|
635
|
+
closeIcon: {
|
|
636
|
+
tooltip: "Schließen"
|
|
637
|
+
},
|
|
638
|
+
printButtons: {
|
|
639
|
+
color: {
|
|
640
|
+
tooltip: "In Farbe drucken"
|
|
641
|
+
},
|
|
642
|
+
grayscale: {
|
|
643
|
+
tooltip: "In Graustufen drucken"
|
|
644
|
+
}
|
|
645
|
+
}
|
|
646
|
+
}
|
|
647
|
+
}
|
|
648
|
+
},
|
|
649
|
+
cmdPaginationSettingsData: {
|
|
650
|
+
numberOfPages: 3,
|
|
651
|
+
showPageNumbers: true,
|
|
652
|
+
linkType: "button"
|
|
653
|
+
},
|
|
654
|
+
cmdPaginationSettingsControls: {
|
|
655
|
+
linkType: [
|
|
656
|
+
{
|
|
657
|
+
text: "Href (default)",
|
|
658
|
+
value: "href"
|
|
659
|
+
},
|
|
660
|
+
{
|
|
661
|
+
text: "Button",
|
|
662
|
+
value: "button"
|
|
663
|
+
}
|
|
664
|
+
]
|
|
665
|
+
},
|
|
666
|
+
cmdParagraphSettingsData: {
|
|
667
|
+
content: "This is a paragraph with content provided per property with <dfn title='HyperText Markup Language'>HTML</dfn> inside. Its alignment can be adjusted with the <em>textAlign</em>-property. Additionally the number of columns (1-4) can be defined by <em>numberOfColumns</em>-property.",
|
|
668
|
+
numberOfColumns: 1,
|
|
669
|
+
textAlign: "left",
|
|
670
|
+
},
|
|
671
|
+
cmdParagraphSettingsControls: {
|
|
672
|
+
textAlign: [
|
|
673
|
+
{
|
|
674
|
+
text: "left",
|
|
675
|
+
value: "left"
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
text: "center",
|
|
679
|
+
value: "center"
|
|
680
|
+
},
|
|
681
|
+
{
|
|
682
|
+
text: "right",
|
|
683
|
+
value: "right"
|
|
684
|
+
},
|
|
685
|
+
{
|
|
686
|
+
text: "justify",
|
|
687
|
+
value: "justify"
|
|
688
|
+
}
|
|
689
|
+
]
|
|
690
|
+
},
|
|
691
|
+
cmdSiteHeaderSettingsData: {
|
|
692
|
+
sticky: false,
|
|
693
|
+
navigationInline: false,
|
|
694
|
+
useGrid: true,
|
|
695
|
+
cmdMainNavigation: { ...navigationData }
|
|
696
|
+
},
|
|
697
|
+
cmdSiteHeaderSettingsControls: {
|
|
698
|
+
"cmdMainNavigation.offcanvasPosition": [
|
|
699
|
+
{
|
|
700
|
+
text: "Right (default)",
|
|
701
|
+
value: "right"
|
|
702
|
+
},
|
|
703
|
+
{
|
|
704
|
+
text: "Left",
|
|
705
|
+
value: "left"
|
|
706
|
+
}
|
|
707
|
+
],
|
|
708
|
+
},
|
|
709
|
+
cmdSiteSearchSettingsData: {
|
|
710
|
+
useFilters: true,
|
|
711
|
+
legend: {
|
|
712
|
+
show: true,
|
|
713
|
+
text: "Search"
|
|
714
|
+
}
|
|
715
|
+
},
|
|
716
|
+
cmdSlideshowSettingsData: {
|
|
717
|
+
useSlot: false,
|
|
718
|
+
autoplay: true,
|
|
719
|
+
autoplayInterval: 5000,
|
|
720
|
+
showQuickLinkIcons: true,
|
|
721
|
+
showCounter: true,
|
|
722
|
+
showSlideButtons: true
|
|
723
|
+
},
|
|
724
|
+
cmdSocialNetworksSettingsData: {
|
|
725
|
+
align: "left",
|
|
726
|
+
useGap: true,
|
|
727
|
+
stretchButtons: false,
|
|
728
|
+
userMustAcceptDataPrivacy: true,
|
|
729
|
+
tooltipAcceptDataPrivacy: "You must accept data privacy conditions!",
|
|
730
|
+
buttonTextAlign: "left"
|
|
731
|
+
},
|
|
732
|
+
cmdSocialNetworksSettingsControls: {
|
|
733
|
+
align: [
|
|
734
|
+
{
|
|
735
|
+
text: "Left (default)",
|
|
736
|
+
value: "left"
|
|
737
|
+
},
|
|
738
|
+
{
|
|
739
|
+
text: "Center",
|
|
740
|
+
value: "center"
|
|
741
|
+
},
|
|
742
|
+
{
|
|
743
|
+
text: "Right",
|
|
744
|
+
value: "right"
|
|
745
|
+
}
|
|
746
|
+
],
|
|
747
|
+
buttonTextAlign: [
|
|
748
|
+
{
|
|
749
|
+
text: "Right (default)",
|
|
750
|
+
value: "right"
|
|
751
|
+
},
|
|
752
|
+
{
|
|
753
|
+
text: "Left",
|
|
754
|
+
value: "left"
|
|
755
|
+
}
|
|
756
|
+
]
|
|
757
|
+
},
|
|
758
|
+
cmdSystemMessageSettingsData: {
|
|
759
|
+
validationStatus: "error",
|
|
760
|
+
fullWidth: true,
|
|
761
|
+
systemMessage: "This is an system message!",
|
|
762
|
+
messageHeadlineLevel: 4
|
|
763
|
+
},
|
|
764
|
+
cmdSystemMessageSettingsControls: {
|
|
765
|
+
validationStatus: [
|
|
766
|
+
{
|
|
767
|
+
text: "Error",
|
|
768
|
+
value: "error"
|
|
769
|
+
},
|
|
770
|
+
{
|
|
771
|
+
text: "Warning",
|
|
772
|
+
value: "warning"
|
|
773
|
+
},
|
|
774
|
+
{
|
|
775
|
+
text: "Success",
|
|
776
|
+
value: "success"
|
|
777
|
+
},
|
|
778
|
+
{
|
|
779
|
+
text: "Info",
|
|
780
|
+
value: "info"
|
|
781
|
+
}
|
|
782
|
+
]
|
|
783
|
+
},
|
|
784
|
+
cmdTableSettingsData: {
|
|
785
|
+
collapsible: false,
|
|
786
|
+
fullWidthOnDefault: false,
|
|
787
|
+
userCanToggleWidth: true,
|
|
788
|
+
showSlideButtons: true
|
|
789
|
+
},
|
|
790
|
+
cmdTabsSettingsData: {
|
|
791
|
+
stretchTabs: false,
|
|
792
|
+
useSlot: false,
|
|
793
|
+
activeTab: 0
|
|
794
|
+
},
|
|
795
|
+
cmdTabsSettingsControls: {
|
|
796
|
+
highlightLevel: [
|
|
797
|
+
{
|
|
798
|
+
text: "none",
|
|
799
|
+
value: "none"
|
|
800
|
+
},
|
|
801
|
+
{
|
|
802
|
+
text: "primary (default)",
|
|
803
|
+
value: "primary"
|
|
804
|
+
},
|
|
805
|
+
{
|
|
806
|
+
text: "secondary",
|
|
807
|
+
value: "secondary"
|
|
808
|
+
},
|
|
809
|
+
{
|
|
810
|
+
text: "tertiary",
|
|
811
|
+
value: "tertiary"
|
|
812
|
+
}
|
|
813
|
+
]
|
|
814
|
+
},
|
|
815
|
+
cmdTagSettingsData: {
|
|
816
|
+
tagText: "Text for Tag",
|
|
817
|
+
removeByClick: false
|
|
818
|
+
},
|
|
819
|
+
cmdTagSettingsControls: {
|
|
820
|
+
highlightLevel: [
|
|
821
|
+
{
|
|
822
|
+
text: "none (default)",
|
|
823
|
+
value: "none"
|
|
824
|
+
},
|
|
825
|
+
{
|
|
826
|
+
text: "primary",
|
|
827
|
+
value: "primary"
|
|
828
|
+
},
|
|
829
|
+
{
|
|
830
|
+
text: "secondary",
|
|
831
|
+
value: "secondary"
|
|
832
|
+
},
|
|
833
|
+
{
|
|
834
|
+
text: "tertiary",
|
|
835
|
+
value: "tertiary"
|
|
836
|
+
}
|
|
837
|
+
]
|
|
838
|
+
},
|
|
839
|
+
cmdTextImageBlockSettingsData: {
|
|
840
|
+
htmlContent: "Text given as html-content",
|
|
841
|
+
paragraphTextAlign: "left",
|
|
842
|
+
headlinePosition: "aboveImage",
|
|
843
|
+
orientation: "vertical"
|
|
844
|
+
},
|
|
845
|
+
cmdTextImageBlockSettingsControls: {
|
|
846
|
+
paragraphTextAlign: [
|
|
847
|
+
{
|
|
848
|
+
text: "Left (default)",
|
|
849
|
+
value: "left"
|
|
850
|
+
},
|
|
851
|
+
{
|
|
852
|
+
text: "Center",
|
|
853
|
+
value: "center"
|
|
854
|
+
},
|
|
855
|
+
{
|
|
856
|
+
text: "Right",
|
|
857
|
+
value: "right"
|
|
858
|
+
}
|
|
859
|
+
],
|
|
860
|
+
headlinePosition: [
|
|
861
|
+
{
|
|
862
|
+
text: "Above Image (default)",
|
|
863
|
+
value: "aboveImage"
|
|
864
|
+
},
|
|
865
|
+
{
|
|
866
|
+
text: "Below Image",
|
|
867
|
+
value: "belowImage"
|
|
868
|
+
}
|
|
869
|
+
],
|
|
870
|
+
orientation: [
|
|
871
|
+
{
|
|
872
|
+
text: "Vertical (default)",
|
|
873
|
+
value: "vertical"
|
|
874
|
+
},
|
|
875
|
+
{
|
|
876
|
+
text: "Horizontal",
|
|
877
|
+
value: "horizontal"
|
|
878
|
+
}
|
|
879
|
+
]
|
|
880
|
+
},
|
|
881
|
+
cmdThumbnailScrollerSettingsData: {
|
|
882
|
+
orientation: "horizontal",
|
|
883
|
+
fullWidth: false,
|
|
884
|
+
largeIcons: false,
|
|
885
|
+
contentType: "image",
|
|
886
|
+
executeOnClick: "fancybox",
|
|
887
|
+
allowOpenFancyBox: true,
|
|
888
|
+
activeItemIndex: 0,
|
|
889
|
+
useGalleryScroller: false,
|
|
890
|
+
contentType: "image"
|
|
891
|
+
},
|
|
892
|
+
cmdThumbnailScrollerSettingsControls: {
|
|
893
|
+
orientation: [
|
|
894
|
+
{
|
|
895
|
+
text: "Horizontal (default)",
|
|
896
|
+
value: "horizontal"
|
|
897
|
+
},
|
|
898
|
+
{
|
|
899
|
+
text: "Vertical",
|
|
900
|
+
value: "vertical"
|
|
901
|
+
}
|
|
902
|
+
],
|
|
903
|
+
contentType: [
|
|
904
|
+
{
|
|
905
|
+
text: "Image (default)",
|
|
906
|
+
value: "image"
|
|
907
|
+
},
|
|
908
|
+
{
|
|
909
|
+
text: "Text",
|
|
910
|
+
value: "text"
|
|
911
|
+
}
|
|
912
|
+
],
|
|
913
|
+
executeOnClick: [
|
|
914
|
+
{
|
|
915
|
+
text: "Fancybox (default)",
|
|
916
|
+
value: "fancybox"
|
|
917
|
+
},
|
|
918
|
+
{
|
|
919
|
+
text: "URL",
|
|
920
|
+
value: "url"
|
|
921
|
+
},
|
|
922
|
+
{
|
|
923
|
+
text: "Emit",
|
|
924
|
+
value: "emit"
|
|
925
|
+
}
|
|
926
|
+
]
|
|
927
|
+
},
|
|
928
|
+
cmdToggleDarkModeSettingsData: {
|
|
929
|
+
styledAsButton: false,
|
|
930
|
+
showLabel: true,
|
|
931
|
+
useStyledLayout: false,
|
|
932
|
+
labelTextDarkMode: "Dark-mode enabled",
|
|
933
|
+
labelTextLightMode: "Light-mode enabled"
|
|
934
|
+
},
|
|
935
|
+
cmdTooltipSettingsData: {
|
|
936
|
+
tooltipText: "This is a tooltip!",
|
|
937
|
+
delayToShowTooltip: 0,
|
|
938
|
+
status: "",
|
|
939
|
+
toggleVisibilityByClick: false
|
|
940
|
+
},
|
|
941
|
+
cmdTooltipSettingsControls: {
|
|
942
|
+
status: [
|
|
943
|
+
{
|
|
944
|
+
text: "None (default)",
|
|
945
|
+
value: ""
|
|
946
|
+
},
|
|
947
|
+
{
|
|
948
|
+
text: "Error",
|
|
949
|
+
value: "error"
|
|
950
|
+
},
|
|
951
|
+
{
|
|
952
|
+
text: "Warning",
|
|
953
|
+
value: "warning"
|
|
954
|
+
},
|
|
955
|
+
{
|
|
956
|
+
text: "Success",
|
|
957
|
+
value: "success"
|
|
958
|
+
},
|
|
959
|
+
{
|
|
960
|
+
text: "Info",
|
|
961
|
+
value: "info"
|
|
962
|
+
}
|
|
963
|
+
]
|
|
964
|
+
},
|
|
965
|
+
cmdUploadFormSettingsData: {
|
|
966
|
+
showTotalUpload: true,
|
|
967
|
+
componentHandlesUpload: true,
|
|
968
|
+
commentRequired: true,
|
|
969
|
+
commentStatusMessage: "",
|
|
970
|
+
enableDragAndDrop: false,
|
|
971
|
+
enableComment: true,
|
|
972
|
+
presetComment: "",
|
|
973
|
+
maxTotalUploadSize: 5242880,
|
|
974
|
+
maxFileUploadSize: 10485760,
|
|
975
|
+
allowMultipleFileUploads: false,
|
|
976
|
+
advancedMode: true,
|
|
977
|
+
legend: {
|
|
978
|
+
text: "Advanced upload form"
|
|
979
|
+
},
|
|
980
|
+
allowedFileExtensions: ["jpg", "eps"]
|
|
981
|
+
},
|
|
982
|
+
cmdWidthLimitationWrapperSettingsData: {
|
|
983
|
+
contentType: "flex",
|
|
984
|
+
innerComponent: "section",
|
|
985
|
+
useInnerSection: true,
|
|
986
|
+
sticky: false,
|
|
987
|
+
sectionClass: "section-class",
|
|
988
|
+
anchorId: "",
|
|
989
|
+
cmdHeadline: {
|
|
990
|
+
headlineText: "Headline for WidthLimitationWrapper",
|
|
991
|
+
headlineLevel: 4
|
|
992
|
+
}
|
|
993
|
+
},
|
|
994
|
+
cmdWidthLimitationWrapperSettingsControls: {
|
|
995
|
+
containerType: [
|
|
996
|
+
{
|
|
997
|
+
text: "flex (default)",
|
|
998
|
+
value: "flex"
|
|
999
|
+
},
|
|
1000
|
+
{
|
|
1001
|
+
text: "grid",
|
|
1002
|
+
value: "grid"
|
|
1003
|
+
},
|
|
1004
|
+
{
|
|
1005
|
+
text: "none",
|
|
1006
|
+
value: ""
|
|
1007
|
+
},
|
|
1008
|
+
],
|
|
1009
|
+
contentOrientation: [
|
|
1010
|
+
{
|
|
1011
|
+
text: "horizontal (default)",
|
|
1012
|
+
value: "horizontal"
|
|
1013
|
+
},
|
|
1014
|
+
{
|
|
1015
|
+
text: "vertical",
|
|
1016
|
+
value: "vertical"
|
|
1017
|
+
}
|
|
1018
|
+
]
|
|
633
1019
|
}
|
|
634
1020
|
}
|
|
635
|
-
|
|
636
|
-
cmdPaginationSettingsData: {
|
|
637
|
-
numberOfPages: 3,
|
|
638
|
-
showPageNumbers: true,
|
|
639
|
-
linkType: "button"
|
|
640
|
-
},
|
|
641
|
-
cmdPaginationSettingsControls: {
|
|
642
|
-
linkType: [
|
|
643
|
-
{
|
|
644
|
-
text: "Href (default)",
|
|
645
|
-
value: "href"
|
|
646
|
-
},
|
|
647
|
-
{
|
|
648
|
-
text: "Button",
|
|
649
|
-
value: "button"
|
|
650
|
-
}
|
|
651
|
-
]
|
|
652
|
-
},
|
|
653
|
-
cmdParagraphSettingsData: {
|
|
654
|
-
content: "This is a paragraph with content provided per property with <dfn title='HyperText Markup Language'>HTML</dfn> inside. Its alignment can be adjusted with the <em>textAlign</em>-property. Additionally the number of columns (1-4) can be defined by <em>numberOfColumns</em>-property.",
|
|
655
|
-
numberOfColumns: 1,
|
|
656
|
-
textAlign: "left",
|
|
657
|
-
},
|
|
658
|
-
cmdParagraphSettingsControls: {
|
|
659
|
-
textAlign: [
|
|
660
|
-
{
|
|
661
|
-
text: "left",
|
|
662
|
-
value: "left"
|
|
663
|
-
},
|
|
664
|
-
{
|
|
665
|
-
text: "center",
|
|
666
|
-
value: "center"
|
|
667
|
-
},
|
|
668
|
-
{
|
|
669
|
-
text: "right",
|
|
670
|
-
value: "right"
|
|
671
|
-
},
|
|
672
|
-
{
|
|
673
|
-
text: "justify",
|
|
674
|
-
value: "justify"
|
|
675
|
-
}
|
|
676
|
-
]
|
|
677
|
-
},
|
|
678
|
-
cmdSiteHeaderSettingsData: {
|
|
679
|
-
sticky: false,
|
|
680
|
-
navigationInline: false,
|
|
681
|
-
useGrid: true,
|
|
682
|
-
cmdMainNavigation: {...navigationData}
|
|
683
|
-
},
|
|
684
|
-
cmdSiteHeaderSettingsControls: {
|
|
685
|
-
"cmdMainNavigation.offcanvasPosition": [
|
|
686
|
-
{
|
|
687
|
-
text: "Right (default)",
|
|
688
|
-
value: "right"
|
|
689
|
-
},
|
|
690
|
-
{
|
|
691
|
-
text: "Left",
|
|
692
|
-
value: "left"
|
|
693
|
-
}
|
|
694
|
-
],
|
|
695
|
-
},
|
|
696
|
-
cmdSiteSearchSettingsData: {
|
|
697
|
-
useFilters: true,
|
|
698
|
-
legend: {
|
|
699
|
-
show: true,
|
|
700
|
-
text: "Search"
|
|
701
|
-
}
|
|
702
|
-
},
|
|
703
|
-
cmdSlideshowSettingsData: {
|
|
704
|
-
useSlot: false,
|
|
705
|
-
autoplay: true,
|
|
706
|
-
autoplayInterval: 5000,
|
|
707
|
-
showQuickLinkIcons: true,
|
|
708
|
-
showCounter: true,
|
|
709
|
-
showSlideButtons: true
|
|
710
|
-
},
|
|
711
|
-
cmdSocialNetworksSettingsData: {
|
|
712
|
-
align: "left",
|
|
713
|
-
useGap: true,
|
|
714
|
-
stretchButtons: false,
|
|
715
|
-
userMustAcceptDataPrivacy: true,
|
|
716
|
-
tooltipAcceptDataPrivacy: "You must accept data privacy conditions!",
|
|
717
|
-
buttonTextAlign: "left"
|
|
718
|
-
},
|
|
719
|
-
cmdSocialNetworksSettingsControls: {
|
|
720
|
-
align: [
|
|
721
|
-
{
|
|
722
|
-
text: "Left (default)",
|
|
723
|
-
value: "left"
|
|
724
|
-
},
|
|
725
|
-
{
|
|
726
|
-
text: "Center",
|
|
727
|
-
value: "center"
|
|
728
|
-
},
|
|
729
|
-
{
|
|
730
|
-
text: "Right",
|
|
731
|
-
value: "right"
|
|
732
|
-
}
|
|
733
|
-
],
|
|
734
|
-
buttonTextAlign: [
|
|
735
|
-
{
|
|
736
|
-
text: "Right (default)",
|
|
737
|
-
value: "right"
|
|
738
|
-
},
|
|
739
|
-
{
|
|
740
|
-
text: "Left",
|
|
741
|
-
value: "left"
|
|
742
|
-
}
|
|
743
|
-
]
|
|
744
|
-
},
|
|
745
|
-
cmdSystemMessageSettingsData: {
|
|
746
|
-
validationStatus: "error",
|
|
747
|
-
fullWidth: true,
|
|
748
|
-
systemMessage: "This is an system message!",
|
|
749
|
-
messageHeadlineLevel: 4
|
|
750
|
-
},
|
|
751
|
-
cmdSystemMessageSettingsControls: {
|
|
752
|
-
validationStatus: [
|
|
753
|
-
{
|
|
754
|
-
text: "Error",
|
|
755
|
-
value: "error"
|
|
756
|
-
},
|
|
757
|
-
{
|
|
758
|
-
text: "Warning",
|
|
759
|
-
value: "warning"
|
|
760
|
-
},
|
|
761
|
-
{
|
|
762
|
-
text: "Success",
|
|
763
|
-
value: "success"
|
|
764
|
-
},
|
|
765
|
-
{
|
|
766
|
-
text: "Info",
|
|
767
|
-
value: "info"
|
|
768
|
-
}
|
|
769
|
-
]
|
|
770
|
-
},
|
|
771
|
-
cmdTableSettingsData: {
|
|
772
|
-
collapsible: false,
|
|
773
|
-
fullWidthOnDefault: false,
|
|
774
|
-
userCanToggleWidth: true,
|
|
775
|
-
showSlideButtons: true
|
|
776
|
-
},
|
|
777
|
-
cmdTabsSettingsData: {
|
|
778
|
-
stretchTabs: false,
|
|
779
|
-
useSlot: false,
|
|
780
|
-
activeTab: 0
|
|
781
|
-
},
|
|
782
|
-
cmdTabsSettingsControls: {
|
|
783
|
-
highlightLevel: [
|
|
784
|
-
{
|
|
785
|
-
text: "none",
|
|
786
|
-
value: "none"
|
|
787
|
-
},
|
|
788
|
-
{
|
|
789
|
-
text: "primary (default)",
|
|
790
|
-
value: "primary"
|
|
791
|
-
},
|
|
792
|
-
{
|
|
793
|
-
text: "secondary",
|
|
794
|
-
value: "secondary"
|
|
795
|
-
},
|
|
796
|
-
{
|
|
797
|
-
text: "tertiary",
|
|
798
|
-
value: "tertiary"
|
|
799
|
-
}
|
|
800
|
-
]
|
|
801
|
-
},
|
|
802
|
-
cmdTagSettingsData: {
|
|
803
|
-
tagText: "Text for Tag",
|
|
804
|
-
removeByClick: false
|
|
805
|
-
},
|
|
806
|
-
cmdTagSettingsControls: {
|
|
807
|
-
highlightLevel: [
|
|
808
|
-
{
|
|
809
|
-
text: "none (default)",
|
|
810
|
-
value: "none"
|
|
811
|
-
},
|
|
812
|
-
{
|
|
813
|
-
text: "primary",
|
|
814
|
-
value: "primary"
|
|
815
|
-
},
|
|
816
|
-
{
|
|
817
|
-
text: "secondary",
|
|
818
|
-
value: "secondary"
|
|
819
|
-
},
|
|
820
|
-
{
|
|
821
|
-
text: "tertiary",
|
|
822
|
-
value: "tertiary"
|
|
823
|
-
}
|
|
824
|
-
]
|
|
825
|
-
},
|
|
826
|
-
cmdTextImageBlockSettingsData: {
|
|
827
|
-
htmlContent: "Text given as html-content",
|
|
828
|
-
paragraphTextAlign: "left",
|
|
829
|
-
headlinePosition: "aboveImage",
|
|
830
|
-
orientation: "vertical"
|
|
831
|
-
},
|
|
832
|
-
cmdTextImageBlockSettingsControls: {
|
|
833
|
-
paragraphTextAlign: [
|
|
834
|
-
{
|
|
835
|
-
text: "Left (default)",
|
|
836
|
-
value: "left"
|
|
837
|
-
},
|
|
838
|
-
{
|
|
839
|
-
text: "Center",
|
|
840
|
-
value: "center"
|
|
841
|
-
},
|
|
842
|
-
{
|
|
843
|
-
text: "Right",
|
|
844
|
-
value: "right"
|
|
845
|
-
}
|
|
846
|
-
],
|
|
847
|
-
headlinePosition: [
|
|
848
|
-
{
|
|
849
|
-
text: "Above Image (default)",
|
|
850
|
-
value: "aboveImage"
|
|
851
|
-
},
|
|
852
|
-
{
|
|
853
|
-
text: "Below Image",
|
|
854
|
-
value: "belowImage"
|
|
855
|
-
}
|
|
856
|
-
],
|
|
857
|
-
orientation: [
|
|
858
|
-
{
|
|
859
|
-
text: "Vertical (default)",
|
|
860
|
-
value: "vertical"
|
|
861
|
-
},
|
|
862
|
-
{
|
|
863
|
-
text: "Horizontal",
|
|
864
|
-
value: "horizontal"
|
|
865
|
-
}
|
|
866
|
-
]
|
|
867
|
-
},
|
|
868
|
-
cmdThumbnailScrollerSettingsData: {
|
|
869
|
-
orientation: "horizontal",
|
|
870
|
-
fullWidth: false,
|
|
871
|
-
largeIcons: false,
|
|
872
|
-
contentType: "image",
|
|
873
|
-
executeOnClick: "fancybox",
|
|
874
|
-
allowOpenFancyBox: true,
|
|
875
|
-
activeItemIndex: 0,
|
|
876
|
-
useGalleryScroller: false
|
|
877
|
-
},
|
|
878
|
-
cmdThumbnailScrollerSettingsControls: {
|
|
879
|
-
orientation: [
|
|
880
|
-
{
|
|
881
|
-
text: "Horizontal (default)",
|
|
882
|
-
value: "horizontal"
|
|
883
|
-
},
|
|
884
|
-
{
|
|
885
|
-
text: "Vertical",
|
|
886
|
-
value: "vertical"
|
|
887
|
-
}
|
|
888
|
-
],
|
|
889
|
-
contentType: [
|
|
890
|
-
{
|
|
891
|
-
text: "Image (default)",
|
|
892
|
-
value: "image"
|
|
893
|
-
},
|
|
894
|
-
{
|
|
895
|
-
text: "Text",
|
|
896
|
-
value: "text"
|
|
897
|
-
}
|
|
898
|
-
],
|
|
899
|
-
executeOnClick: [
|
|
900
|
-
{
|
|
901
|
-
text: "Fancybox (default)",
|
|
902
|
-
value: "fancybox"
|
|
903
|
-
},
|
|
904
|
-
{
|
|
905
|
-
text: "URL",
|
|
906
|
-
value: "url"
|
|
907
|
-
},
|
|
908
|
-
{
|
|
909
|
-
text: "Emit",
|
|
910
|
-
value: "emit"
|
|
911
|
-
}
|
|
912
|
-
]
|
|
913
|
-
},
|
|
914
|
-
cmdToggleDarkModeSettingsData: {
|
|
915
|
-
styledAsButton: false,
|
|
916
|
-
showLabel: true,
|
|
917
|
-
useStyledLayout: false,
|
|
918
|
-
labelTextDarkMode: "Dark-mode enabled",
|
|
919
|
-
labelTextLightMode: "Light-mode enabled"
|
|
920
|
-
},
|
|
921
|
-
cmdTooltipSettingsData: {
|
|
922
|
-
tooltipText: "This is a tooltip!",
|
|
923
|
-
delayToShowTooltip: 0,
|
|
924
|
-
status: "",
|
|
925
|
-
toggleVisibilityByClick: false
|
|
926
|
-
},
|
|
927
|
-
cmdTooltipSettingsControls: {
|
|
928
|
-
status: [
|
|
929
|
-
{
|
|
930
|
-
text: "None (default)",
|
|
931
|
-
value: ""
|
|
932
|
-
},
|
|
933
|
-
{
|
|
934
|
-
text: "Error",
|
|
935
|
-
value: "error"
|
|
936
|
-
},
|
|
937
|
-
{
|
|
938
|
-
text: "Warning",
|
|
939
|
-
value: "warning"
|
|
940
|
-
},
|
|
941
|
-
{
|
|
942
|
-
text: "Success",
|
|
943
|
-
value: "success"
|
|
944
|
-
},
|
|
945
|
-
{
|
|
946
|
-
text: "Info",
|
|
947
|
-
value: "info"
|
|
948
|
-
}
|
|
949
|
-
]
|
|
950
|
-
},
|
|
951
|
-
cmdUploadFormSettingsData: {
|
|
952
|
-
showTotalUpload: true,
|
|
953
|
-
componentHandlesUpload: true,
|
|
954
|
-
commentRequired: true,
|
|
955
|
-
commentStatusMessage: "",
|
|
956
|
-
enableDragAndDrop: false,
|
|
957
|
-
enableComment: true,
|
|
958
|
-
presetComment: "",
|
|
959
|
-
maxTotalUploadSize: 5242880,
|
|
960
|
-
maxFileUploadSize: 10485760,
|
|
961
|
-
allowMultipleFileUploads: false,
|
|
962
|
-
advancedMode: true,
|
|
963
|
-
legend: {
|
|
964
|
-
text: "Advanced upload form"
|
|
965
|
-
},
|
|
966
|
-
allowedFileExtensions: ["jpg", "eps"]
|
|
967
|
-
},
|
|
968
|
-
cmdWidthLimitationWrapperSettingsData: {
|
|
969
|
-
contentType: "flex",
|
|
970
|
-
innerComponent: "section",
|
|
971
|
-
useInnerSection: true,
|
|
972
|
-
sticky: false,
|
|
973
|
-
sectionClass: "section-class",
|
|
974
|
-
anchorId: "",
|
|
975
|
-
cmdHeadline: {
|
|
976
|
-
headlineText: "Headline for WidthLimitationWrapper",
|
|
977
|
-
headlineLevel: 4
|
|
978
|
-
}
|
|
979
|
-
},
|
|
980
|
-
cmdWidthLimitationWrapperSettingsControls: {
|
|
981
|
-
containerType: [
|
|
982
|
-
{
|
|
983
|
-
text: "flex (default)",
|
|
984
|
-
value: "flex"
|
|
985
|
-
},
|
|
986
|
-
{
|
|
987
|
-
text: "grid",
|
|
988
|
-
value: "grid"
|
|
989
|
-
},
|
|
990
|
-
{
|
|
991
|
-
text: "none",
|
|
992
|
-
value: ""
|
|
993
|
-
},
|
|
994
|
-
],
|
|
995
|
-
contentOrientation: [
|
|
996
|
-
{
|
|
997
|
-
text: "horizontal (default)",
|
|
998
|
-
value: "horizontal"
|
|
999
|
-
},
|
|
1000
|
-
{
|
|
1001
|
-
text: "vertical",
|
|
1002
|
-
value: "vertical"
|
|
1003
|
-
}
|
|
1004
|
-
]
|
|
1021
|
+
|
|
1005
1022
|
}
|
|
1006
1023
|
}
|
|
1007
1024
|
}
|
|
1008
|
-
}
|
|
1009
1025
|
</script>
|