@kickstartds/ds-agency-premium 1.3.5 → 1.3.6
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/{FooterProps-55aaf559.d.ts → FooterProps-d28ccfb6.d.ts} +6 -1
- package/dist/{HeaderProps-ae331ab2.d.ts → HeaderProps-34d278ee.d.ts} +6 -1
- package/dist/SectionProps-93230a76.d.ts +1 -1
- package/dist/{SliderProps-8cae490d.d.ts → SliderProps-93230a76.d.ts} +16 -1
- package/dist/components/blog-post/index.d.ts +1 -1
- package/dist/components/button/index.d.ts +1 -1
- package/dist/components/footer/footer.schema.dereffed.json +6 -0
- package/dist/components/footer/footer.schema.json +6 -0
- package/dist/components/footer/index.d.ts +1 -1
- package/dist/components/footer/index.js +1 -1
- package/dist/components/header/header.schema.dereffed.json +6 -0
- package/dist/components/header/header.schema.json +6 -0
- package/dist/components/header/index.d.ts +1 -1
- package/dist/components/header/index.js +1 -1
- package/dist/components/index/index.d.ts +31 -4
- package/dist/components/page/page.schema.dereffed.json +1152 -0
- package/dist/components/page/page.schema.json +32 -0
- package/dist/components/page-wrapper/tokens.css +1 -1
- package/dist/components/presets.json +2 -0
- package/dist/components/section/section.schema.dereffed.json +1118 -0
- package/dist/components/settings/settings.schema.dereffed.json +12 -0
- package/dist/components/slider/index.d.ts +1 -1
- package/dist/components/slider/slider.schema.dereffed.json +1118 -0
- package/dist/components/slider/slider.schema.json +39 -0
- package/dist/components/testimonials/index.d.ts +1 -1
- package/dist/tokens/themes.css +4 -4
- package/dist/tokens/tokens.css +1 -1
- package/dist/tokens/tokens.js +1 -1
- package/package.json +1 -1
- /package/dist/{BlogPostProps-f9a49428.d.ts → BlogPostProps-0910f130.d.ts} +0 -0
|
@@ -50,6 +50,1124 @@
|
|
|
50
50
|
"description": "Additional css classes attached to the wrapping element",
|
|
51
51
|
"type": "string"
|
|
52
52
|
},
|
|
53
|
+
"components": {
|
|
54
|
+
"type": "array",
|
|
55
|
+
"title": "Content",
|
|
56
|
+
"description": "Allowed components for content",
|
|
57
|
+
"items": {
|
|
58
|
+
"anyOf": [
|
|
59
|
+
{
|
|
60
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
61
|
+
"$id": "http://schema.mydesignsystem.com/cta.schema.json",
|
|
62
|
+
"title": "Cta",
|
|
63
|
+
"type": "object",
|
|
64
|
+
"properties": {
|
|
65
|
+
"headline": {
|
|
66
|
+
"title": "Component Headline",
|
|
67
|
+
"description": "Headline for the Component element",
|
|
68
|
+
"type": "string",
|
|
69
|
+
"examples": [
|
|
70
|
+
"Headline"
|
|
71
|
+
]
|
|
72
|
+
},
|
|
73
|
+
"sub": {
|
|
74
|
+
"title": "Component Subheadline",
|
|
75
|
+
"description": "Subheadline below the component headline",
|
|
76
|
+
"type": "string",
|
|
77
|
+
"examples": [
|
|
78
|
+
"Subheadline"
|
|
79
|
+
]
|
|
80
|
+
},
|
|
81
|
+
"text": {
|
|
82
|
+
"title": "Component Text",
|
|
83
|
+
"description": "Info text for the component element",
|
|
84
|
+
"type": "string"
|
|
85
|
+
},
|
|
86
|
+
"highlightText": {
|
|
87
|
+
"type": "boolean",
|
|
88
|
+
"title": "Highlight Text",
|
|
89
|
+
"description": "Visually highlight the text",
|
|
90
|
+
"default": false
|
|
91
|
+
},
|
|
92
|
+
"colorNeutral": {
|
|
93
|
+
"title": "Color Neutral",
|
|
94
|
+
"description": "Make the text and buttons color neutral",
|
|
95
|
+
"default": false,
|
|
96
|
+
"type": "boolean"
|
|
97
|
+
},
|
|
98
|
+
"fullWidth": {
|
|
99
|
+
"title": "Width",
|
|
100
|
+
"description": "Set the width of the content to the full width of the element",
|
|
101
|
+
"type": "boolean",
|
|
102
|
+
"default": false
|
|
103
|
+
},
|
|
104
|
+
"buttons": {
|
|
105
|
+
"type": "array",
|
|
106
|
+
"items": {
|
|
107
|
+
"title": "Button",
|
|
108
|
+
"type": "object",
|
|
109
|
+
"properties": {
|
|
110
|
+
"label": {
|
|
111
|
+
"type": "string",
|
|
112
|
+
"title": "Label",
|
|
113
|
+
"description": "Text content to display inside the button",
|
|
114
|
+
"examples": [
|
|
115
|
+
"Book a meeting"
|
|
116
|
+
]
|
|
117
|
+
},
|
|
118
|
+
"icon": {
|
|
119
|
+
"type": "string",
|
|
120
|
+
"title": "Icon",
|
|
121
|
+
"description": "Choose an icon"
|
|
122
|
+
},
|
|
123
|
+
"target": {
|
|
124
|
+
"type": "string",
|
|
125
|
+
"title": "Target",
|
|
126
|
+
"description": "Target that should be linked, makes the button behave like a link semantically",
|
|
127
|
+
"format": "uri"
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
"additionalProperties": false
|
|
131
|
+
}
|
|
132
|
+
},
|
|
133
|
+
"backgroundColor": {
|
|
134
|
+
"title": "Background color",
|
|
135
|
+
"description": "Background color for the whole element",
|
|
136
|
+
"type": "string",
|
|
137
|
+
"format": "color"
|
|
138
|
+
},
|
|
139
|
+
"backgroundImage": {
|
|
140
|
+
"title": "Background image",
|
|
141
|
+
"description": "Background image for the whole element",
|
|
142
|
+
"type": "string",
|
|
143
|
+
"format": "image"
|
|
144
|
+
},
|
|
145
|
+
"image": {
|
|
146
|
+
"title": "Image",
|
|
147
|
+
"description": "Image displayed alongside the text content",
|
|
148
|
+
"type": "object",
|
|
149
|
+
"properties": {
|
|
150
|
+
"src": {
|
|
151
|
+
"title": "Image source",
|
|
152
|
+
"description": "Image source to use",
|
|
153
|
+
"type": "string",
|
|
154
|
+
"format": "image"
|
|
155
|
+
},
|
|
156
|
+
"padding": {
|
|
157
|
+
"title": "Padding",
|
|
158
|
+
"description": "Toggle padding of the image",
|
|
159
|
+
"type": "boolean",
|
|
160
|
+
"default": true
|
|
161
|
+
},
|
|
162
|
+
"alt": {
|
|
163
|
+
"title": "Alt text",
|
|
164
|
+
"description": "Image description",
|
|
165
|
+
"type": "string"
|
|
166
|
+
}
|
|
167
|
+
},
|
|
168
|
+
"additionalProperties": false
|
|
169
|
+
},
|
|
170
|
+
"order": {
|
|
171
|
+
"title": "Order",
|
|
172
|
+
"description": "Choose what comes first on mobile and desktop: image or text",
|
|
173
|
+
"type": "object",
|
|
174
|
+
"properties": {
|
|
175
|
+
"mobileImageLast": {
|
|
176
|
+
"title": "Mobile image after text",
|
|
177
|
+
"description": "Switch to displaying the image after the text on mobile",
|
|
178
|
+
"type": "boolean",
|
|
179
|
+
"default": false
|
|
180
|
+
},
|
|
181
|
+
"desktopImageLast": {
|
|
182
|
+
"title": "Desktop image after text",
|
|
183
|
+
"description": "Switch to displaying the image after the text on desktop",
|
|
184
|
+
"type": "boolean",
|
|
185
|
+
"default": true
|
|
186
|
+
}
|
|
187
|
+
},
|
|
188
|
+
"additionalProperties": false
|
|
189
|
+
},
|
|
190
|
+
"textAlign": {
|
|
191
|
+
"title": "Text Alignment",
|
|
192
|
+
"description": "Choose the alginment of the text",
|
|
193
|
+
"enum": [
|
|
194
|
+
"left",
|
|
195
|
+
"center"
|
|
196
|
+
],
|
|
197
|
+
"type": "string",
|
|
198
|
+
"default": "left"
|
|
199
|
+
},
|
|
200
|
+
"contentAlign": {
|
|
201
|
+
"title": "Vertical alignment of the content",
|
|
202
|
+
"description": "Select a vertical alignment for the image",
|
|
203
|
+
"type": "string",
|
|
204
|
+
"enum": [
|
|
205
|
+
"center",
|
|
206
|
+
"top",
|
|
207
|
+
"bottom"
|
|
208
|
+
],
|
|
209
|
+
"default": "center"
|
|
210
|
+
},
|
|
211
|
+
"type": {
|
|
212
|
+
"const": "cta"
|
|
213
|
+
}
|
|
214
|
+
},
|
|
215
|
+
"additionalProperties": false
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
219
|
+
"$id": "http://schema.mydesignsystem.com/features.schema.json",
|
|
220
|
+
"title": "Features",
|
|
221
|
+
"description": "Component used to display a set of features",
|
|
222
|
+
"type": "object",
|
|
223
|
+
"properties": {
|
|
224
|
+
"layout": {
|
|
225
|
+
"type": "string",
|
|
226
|
+
"title": "Layout",
|
|
227
|
+
"description": "The layout variant to use for the features",
|
|
228
|
+
"enum": [
|
|
229
|
+
"largeTiles",
|
|
230
|
+
"smallTiles",
|
|
231
|
+
"list"
|
|
232
|
+
],
|
|
233
|
+
"default": "largeTiles"
|
|
234
|
+
},
|
|
235
|
+
"style": {
|
|
236
|
+
"type": "string",
|
|
237
|
+
"enum": [
|
|
238
|
+
"intext",
|
|
239
|
+
"stack",
|
|
240
|
+
"centered",
|
|
241
|
+
"besideLarge",
|
|
242
|
+
"besideSmall"
|
|
243
|
+
],
|
|
244
|
+
"default": "stack"
|
|
245
|
+
},
|
|
246
|
+
"ctas": {
|
|
247
|
+
"type": "object",
|
|
248
|
+
"properties": {
|
|
249
|
+
"toggle": {
|
|
250
|
+
"type": "boolean",
|
|
251
|
+
"default": true,
|
|
252
|
+
"title": "CTA Toggle",
|
|
253
|
+
"description": "Activate/disable the CTAs"
|
|
254
|
+
},
|
|
255
|
+
"style": {
|
|
256
|
+
"type": "string",
|
|
257
|
+
"enum": [
|
|
258
|
+
"button",
|
|
259
|
+
"link",
|
|
260
|
+
"intext"
|
|
261
|
+
],
|
|
262
|
+
"default": "link"
|
|
263
|
+
}
|
|
264
|
+
},
|
|
265
|
+
"additionalProperties": false
|
|
266
|
+
},
|
|
267
|
+
"feature": {
|
|
268
|
+
"type": "array",
|
|
269
|
+
"title": "Features",
|
|
270
|
+
"description": "The features to display",
|
|
271
|
+
"items": {
|
|
272
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
273
|
+
"$id": "http://schema.mydesignsystem.com/feature.schema.json",
|
|
274
|
+
"title": "Feature",
|
|
275
|
+
"description": "Partial Component used to display a feature",
|
|
276
|
+
"type": "object",
|
|
277
|
+
"properties": {
|
|
278
|
+
"icon": {
|
|
279
|
+
"type": "string",
|
|
280
|
+
"title": "Icon",
|
|
281
|
+
"description": "The icon for the feature",
|
|
282
|
+
"examples": [
|
|
283
|
+
"person"
|
|
284
|
+
]
|
|
285
|
+
},
|
|
286
|
+
"title": {
|
|
287
|
+
"type": "string",
|
|
288
|
+
"title": "Title",
|
|
289
|
+
"description": "The title of the feature",
|
|
290
|
+
"examples": [
|
|
291
|
+
"Feature 1"
|
|
292
|
+
]
|
|
293
|
+
},
|
|
294
|
+
"text": {
|
|
295
|
+
"type": "string",
|
|
296
|
+
"title": "Text",
|
|
297
|
+
"description": "The description of the feature",
|
|
298
|
+
"examples": [
|
|
299
|
+
"This is a feature"
|
|
300
|
+
]
|
|
301
|
+
},
|
|
302
|
+
"style": {
|
|
303
|
+
"type": "string",
|
|
304
|
+
"enum": [
|
|
305
|
+
"intext",
|
|
306
|
+
"stack",
|
|
307
|
+
"centered",
|
|
308
|
+
"besideLarge",
|
|
309
|
+
"besideSmall"
|
|
310
|
+
],
|
|
311
|
+
"default": "stack"
|
|
312
|
+
},
|
|
313
|
+
"cta": {
|
|
314
|
+
"type": "object",
|
|
315
|
+
"title": "Call to Action",
|
|
316
|
+
"description": "The call to action",
|
|
317
|
+
"properties": {
|
|
318
|
+
"target": {
|
|
319
|
+
"type": "string",
|
|
320
|
+
"title": "Call to Action target",
|
|
321
|
+
"description": "The CTA target",
|
|
322
|
+
"default": "#",
|
|
323
|
+
"format": "uri"
|
|
324
|
+
},
|
|
325
|
+
"label": {
|
|
326
|
+
"type": "string",
|
|
327
|
+
"title": "Link Label",
|
|
328
|
+
"description": "The text label displayed on the link",
|
|
329
|
+
"default": "See more",
|
|
330
|
+
"examples": [
|
|
331
|
+
"See all our partners"
|
|
332
|
+
]
|
|
333
|
+
},
|
|
334
|
+
"toggle": {
|
|
335
|
+
"type": "boolean",
|
|
336
|
+
"title": "Call to Action Toggle",
|
|
337
|
+
"description": "Activate/disable the CTAs",
|
|
338
|
+
"default": true
|
|
339
|
+
},
|
|
340
|
+
"style": {
|
|
341
|
+
"type": "string",
|
|
342
|
+
"description": "Choose the style of the CTA",
|
|
343
|
+
"enum": [
|
|
344
|
+
"button",
|
|
345
|
+
"link",
|
|
346
|
+
"intext"
|
|
347
|
+
],
|
|
348
|
+
"default": "link"
|
|
349
|
+
}
|
|
350
|
+
},
|
|
351
|
+
"additionalProperties": false
|
|
352
|
+
},
|
|
353
|
+
"type": {
|
|
354
|
+
"const": "feature"
|
|
355
|
+
}
|
|
356
|
+
},
|
|
357
|
+
"additionalProperties": false,
|
|
358
|
+
"required": [
|
|
359
|
+
"title"
|
|
360
|
+
]
|
|
361
|
+
},
|
|
362
|
+
"minItems": 1,
|
|
363
|
+
"maxItems": 8
|
|
364
|
+
},
|
|
365
|
+
"type": {
|
|
366
|
+
"const": "features"
|
|
367
|
+
}
|
|
368
|
+
},
|
|
369
|
+
"additionalProperties": false
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
373
|
+
"$id": "http://schema.mydesignsystem.com/gallery.schema.json",
|
|
374
|
+
"title": "Gallery",
|
|
375
|
+
"description": "Component used to display a gallery of images",
|
|
376
|
+
"type": "object",
|
|
377
|
+
"properties": {
|
|
378
|
+
"images": {
|
|
379
|
+
"type": "array",
|
|
380
|
+
"title": "Images",
|
|
381
|
+
"description": "The images to display in the gallery",
|
|
382
|
+
"items": {
|
|
383
|
+
"type": "object",
|
|
384
|
+
"properties": {
|
|
385
|
+
"src": {
|
|
386
|
+
"type": "string",
|
|
387
|
+
"title": "src",
|
|
388
|
+
"format": "image",
|
|
389
|
+
"description": "The source of the image",
|
|
390
|
+
"examples": [
|
|
391
|
+
"https://example.com/image1.jpg"
|
|
392
|
+
]
|
|
393
|
+
},
|
|
394
|
+
"alt": {
|
|
395
|
+
"type": "string",
|
|
396
|
+
"title": "Alt text",
|
|
397
|
+
"description": "Alt text of the image",
|
|
398
|
+
"examples": [
|
|
399
|
+
"https://example.com/image1.jpg"
|
|
400
|
+
]
|
|
401
|
+
},
|
|
402
|
+
"caption": {
|
|
403
|
+
"type": "string",
|
|
404
|
+
"format": "markdown",
|
|
405
|
+
"title": "Caption",
|
|
406
|
+
"description": "The caption of the image",
|
|
407
|
+
"examples": [
|
|
408
|
+
"Caption Image"
|
|
409
|
+
]
|
|
410
|
+
}
|
|
411
|
+
},
|
|
412
|
+
"additionalProperties": false,
|
|
413
|
+
"required": [
|
|
414
|
+
"src"
|
|
415
|
+
]
|
|
416
|
+
},
|
|
417
|
+
"minItems": 1,
|
|
418
|
+
"maxItems": 10
|
|
419
|
+
},
|
|
420
|
+
"layout": {
|
|
421
|
+
"type": "string",
|
|
422
|
+
"title": "Layout",
|
|
423
|
+
"description": "The layout of the gallery images",
|
|
424
|
+
"enum": [
|
|
425
|
+
"stack",
|
|
426
|
+
"smallTiles",
|
|
427
|
+
"largeTiles"
|
|
428
|
+
]
|
|
429
|
+
},
|
|
430
|
+
"aspectRatio": {
|
|
431
|
+
"type": "string",
|
|
432
|
+
"title": "Aspect Ratio",
|
|
433
|
+
"description": "The aspect ratio of the gallery images",
|
|
434
|
+
"enum": [
|
|
435
|
+
"unset",
|
|
436
|
+
"square",
|
|
437
|
+
"wide",
|
|
438
|
+
"landscape"
|
|
439
|
+
],
|
|
440
|
+
"default": "unset"
|
|
441
|
+
},
|
|
442
|
+
"lightbox": {
|
|
443
|
+
"type": "boolean",
|
|
444
|
+
"title": "Lightbox",
|
|
445
|
+
"description": "Display images in a lightbox gallery",
|
|
446
|
+
"default": false
|
|
447
|
+
},
|
|
448
|
+
"type": {
|
|
449
|
+
"const": "gallery"
|
|
450
|
+
}
|
|
451
|
+
},
|
|
452
|
+
"additionalProperties": false,
|
|
453
|
+
"required": [
|
|
454
|
+
"images"
|
|
455
|
+
]
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
459
|
+
"$id": "http://schema.mydesignsystem.com/hero.schema.json",
|
|
460
|
+
"title": "Hero",
|
|
461
|
+
"type": "object",
|
|
462
|
+
"properties": {
|
|
463
|
+
"headline": {
|
|
464
|
+
"title": "Headline",
|
|
465
|
+
"description": "Headline for the visual",
|
|
466
|
+
"type": "string"
|
|
467
|
+
},
|
|
468
|
+
"sub": {
|
|
469
|
+
"title": "Module Subheadline",
|
|
470
|
+
"description": "Subheadline below the module headline",
|
|
471
|
+
"type": "string"
|
|
472
|
+
},
|
|
473
|
+
"text": {
|
|
474
|
+
"title": "Module Text",
|
|
475
|
+
"description": "Info text for the module element",
|
|
476
|
+
"type": "string"
|
|
477
|
+
},
|
|
478
|
+
"highlightText": {
|
|
479
|
+
"type": "boolean",
|
|
480
|
+
"title": "Highlight Text",
|
|
481
|
+
"description": "Visually highlight the text",
|
|
482
|
+
"default": false
|
|
483
|
+
},
|
|
484
|
+
"colorNeutral": {
|
|
485
|
+
"title": "Color Neutral",
|
|
486
|
+
"description": "Make the text and buttons color neutral",
|
|
487
|
+
"default": false,
|
|
488
|
+
"type": "boolean"
|
|
489
|
+
},
|
|
490
|
+
"height": {
|
|
491
|
+
"title": "Height",
|
|
492
|
+
"type": "string",
|
|
493
|
+
"enum": [
|
|
494
|
+
"small",
|
|
495
|
+
"default",
|
|
496
|
+
"fullImage",
|
|
497
|
+
"fullScreen"
|
|
498
|
+
],
|
|
499
|
+
"default": "default"
|
|
500
|
+
},
|
|
501
|
+
"textbox": {
|
|
502
|
+
"type": "boolean",
|
|
503
|
+
"title": "Textbox",
|
|
504
|
+
"default": true,
|
|
505
|
+
"description": "Toggle wether you want your text to be displayed within in box"
|
|
506
|
+
},
|
|
507
|
+
"buttons": {
|
|
508
|
+
"type": "array",
|
|
509
|
+
"items": {
|
|
510
|
+
"title": "Button",
|
|
511
|
+
"type": "object",
|
|
512
|
+
"properties": {
|
|
513
|
+
"label": {
|
|
514
|
+
"type": "string",
|
|
515
|
+
"title": "Label",
|
|
516
|
+
"description": "Text content to display inside the button",
|
|
517
|
+
"examples": [
|
|
518
|
+
"Book a meeting"
|
|
519
|
+
]
|
|
520
|
+
},
|
|
521
|
+
"icon": {
|
|
522
|
+
"type": "string",
|
|
523
|
+
"title": "Icon",
|
|
524
|
+
"description": "Choose an icon"
|
|
525
|
+
},
|
|
526
|
+
"target": {
|
|
527
|
+
"type": "string",
|
|
528
|
+
"title": "Target",
|
|
529
|
+
"description": "Target that should be linked, makes the button behave like a link semantically",
|
|
530
|
+
"format": "uri"
|
|
531
|
+
}
|
|
532
|
+
},
|
|
533
|
+
"additionalProperties": false
|
|
534
|
+
}
|
|
535
|
+
},
|
|
536
|
+
"overlay": {
|
|
537
|
+
"title": "Grid layer",
|
|
538
|
+
"description": "Enable grid layer",
|
|
539
|
+
"type": "boolean",
|
|
540
|
+
"default": false
|
|
541
|
+
},
|
|
542
|
+
"image": {
|
|
543
|
+
"title": "Background image",
|
|
544
|
+
"description": "Sources of background images for different screen sizes",
|
|
545
|
+
"type": "object",
|
|
546
|
+
"required": [
|
|
547
|
+
"srcMobile"
|
|
548
|
+
],
|
|
549
|
+
"properties": {
|
|
550
|
+
"srcMobile": {
|
|
551
|
+
"title": "Mobile image source",
|
|
552
|
+
"description": "Background image source for small screens",
|
|
553
|
+
"type": "string",
|
|
554
|
+
"format": "image",
|
|
555
|
+
"examples": [
|
|
556
|
+
"https://picsum.photos/seed/kdsvisual/640/270"
|
|
557
|
+
]
|
|
558
|
+
},
|
|
559
|
+
"srcTablet": {
|
|
560
|
+
"title": "Tablet image source",
|
|
561
|
+
"description": "Background image source for medium screens",
|
|
562
|
+
"type": "string",
|
|
563
|
+
"format": "image",
|
|
564
|
+
"examples": [
|
|
565
|
+
"https://picsum.photos/seed/kdsvisual/1280/540"
|
|
566
|
+
]
|
|
567
|
+
},
|
|
568
|
+
"srcDesktop": {
|
|
569
|
+
"title": "Desktop image source",
|
|
570
|
+
"description": "Background image source for large screens",
|
|
571
|
+
"type": "string",
|
|
572
|
+
"format": "image",
|
|
573
|
+
"examples": [
|
|
574
|
+
"https://picsum.photos/seed/kdsvisual/1920/810"
|
|
575
|
+
]
|
|
576
|
+
},
|
|
577
|
+
"src": {
|
|
578
|
+
"title": "Optional source",
|
|
579
|
+
"description": "Override for img tag of picture element, if needed",
|
|
580
|
+
"type": "string",
|
|
581
|
+
"format": "image",
|
|
582
|
+
"examples": [
|
|
583
|
+
"https://picsum.photos/seed/kdsvisual/640/270"
|
|
584
|
+
]
|
|
585
|
+
},
|
|
586
|
+
"indent": {
|
|
587
|
+
"title": "Image indent",
|
|
588
|
+
"description": "Choose to indent the image horizontally on small screens",
|
|
589
|
+
"type": "string",
|
|
590
|
+
"enum": [
|
|
591
|
+
"none",
|
|
592
|
+
"left",
|
|
593
|
+
"right"
|
|
594
|
+
],
|
|
595
|
+
"default": "none"
|
|
596
|
+
},
|
|
597
|
+
"alt": {
|
|
598
|
+
"title": "Alt text",
|
|
599
|
+
"description": "Alt text to display for picture",
|
|
600
|
+
"type": "string"
|
|
601
|
+
}
|
|
602
|
+
},
|
|
603
|
+
"additionalProperties": false
|
|
604
|
+
},
|
|
605
|
+
"textPosition": {
|
|
606
|
+
"title": "Module aligment",
|
|
607
|
+
"description": "Choose the alginment of the module content",
|
|
608
|
+
"enum": [
|
|
609
|
+
"center",
|
|
610
|
+
"below",
|
|
611
|
+
"left",
|
|
612
|
+
"right"
|
|
613
|
+
],
|
|
614
|
+
"type": "string",
|
|
615
|
+
"default": "bottom"
|
|
616
|
+
},
|
|
617
|
+
"type": {
|
|
618
|
+
"const": "hero"
|
|
619
|
+
}
|
|
620
|
+
},
|
|
621
|
+
"additionalProperties": false
|
|
622
|
+
},
|
|
623
|
+
{
|
|
624
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
625
|
+
"$id": "http://schema.mydesignsystem.com/image-text.schema.json",
|
|
626
|
+
"title": "Image Text",
|
|
627
|
+
"description": "Component used to display an image beside or above/below a text block",
|
|
628
|
+
"type": "object",
|
|
629
|
+
"properties": {
|
|
630
|
+
"text": {
|
|
631
|
+
"type": "string",
|
|
632
|
+
"format": "markdown",
|
|
633
|
+
"title": "Text",
|
|
634
|
+
"description": "Text content to display beside the image",
|
|
635
|
+
"examples": [
|
|
636
|
+
"This is a sample text"
|
|
637
|
+
]
|
|
638
|
+
},
|
|
639
|
+
"highlightText": {
|
|
640
|
+
"type": "boolean",
|
|
641
|
+
"title": "Highlight Text",
|
|
642
|
+
"description": "Visually highlight the text",
|
|
643
|
+
"default": false
|
|
644
|
+
},
|
|
645
|
+
"image": {
|
|
646
|
+
"type": "object",
|
|
647
|
+
"properties": {
|
|
648
|
+
"src": {
|
|
649
|
+
"type": "string",
|
|
650
|
+
"format": "image",
|
|
651
|
+
"title": "Image Source",
|
|
652
|
+
"description": "URL of the image to display",
|
|
653
|
+
"examples": [
|
|
654
|
+
"http://example.com/image.jpg"
|
|
655
|
+
]
|
|
656
|
+
},
|
|
657
|
+
"alt": {
|
|
658
|
+
"type": "string",
|
|
659
|
+
"title": "Alt Text",
|
|
660
|
+
"description": "Alt text of the image",
|
|
661
|
+
"examples": [
|
|
662
|
+
"http://example.com/image.jpg"
|
|
663
|
+
]
|
|
664
|
+
}
|
|
665
|
+
},
|
|
666
|
+
"additionalProperties": false
|
|
667
|
+
},
|
|
668
|
+
"layout": {
|
|
669
|
+
"type": "string",
|
|
670
|
+
"enum": [
|
|
671
|
+
"above",
|
|
672
|
+
"below",
|
|
673
|
+
"beside-right",
|
|
674
|
+
"beside-left"
|
|
675
|
+
],
|
|
676
|
+
"title": "Layout",
|
|
677
|
+
"description": "Position of the image relative to the text",
|
|
678
|
+
"examples": [
|
|
679
|
+
"above"
|
|
680
|
+
]
|
|
681
|
+
},
|
|
682
|
+
"type": {
|
|
683
|
+
"const": "image-text"
|
|
684
|
+
}
|
|
685
|
+
},
|
|
686
|
+
"required": [
|
|
687
|
+
"text",
|
|
688
|
+
"image",
|
|
689
|
+
"layout"
|
|
690
|
+
],
|
|
691
|
+
"additionalProperties": false
|
|
692
|
+
},
|
|
693
|
+
{
|
|
694
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
695
|
+
"$id": "http://schema.mydesignsystem.com/logos.schema.json",
|
|
696
|
+
"title": "Logos",
|
|
697
|
+
"description": "Component used to display a set of logos",
|
|
698
|
+
"type": "object",
|
|
699
|
+
"properties": {
|
|
700
|
+
"tagline": {
|
|
701
|
+
"type": "string",
|
|
702
|
+
"title": "Logo Tagline",
|
|
703
|
+
"description": "A short tagline atop the logos",
|
|
704
|
+
"examples": [
|
|
705
|
+
"Your Success, Our Commitment"
|
|
706
|
+
]
|
|
707
|
+
},
|
|
708
|
+
"logo": {
|
|
709
|
+
"type": "array",
|
|
710
|
+
"title": "Logos",
|
|
711
|
+
"description": "The logos to display",
|
|
712
|
+
"items": {
|
|
713
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
714
|
+
"$id": "http://schema.mydesignsystem.com/logo.schema.json",
|
|
715
|
+
"title": "Logo",
|
|
716
|
+
"description": "Logo entry for Logos component",
|
|
717
|
+
"type": "object",
|
|
718
|
+
"properties": {
|
|
719
|
+
"src": {
|
|
720
|
+
"type": "string",
|
|
721
|
+
"format": "image",
|
|
722
|
+
"title": "URL",
|
|
723
|
+
"description": "The URL of the logo image",
|
|
724
|
+
"examples": [
|
|
725
|
+
"img/logos/logoipsum-212.svg",
|
|
726
|
+
"img/logos/logoipsum-217.svg",
|
|
727
|
+
"img/logos/logoipsum-239.svg",
|
|
728
|
+
"img/logos/logoipsum-244.svg",
|
|
729
|
+
"img/logos/logoipsum-250.svg",
|
|
730
|
+
"img/logos/logoipsum-286.svg"
|
|
731
|
+
]
|
|
732
|
+
},
|
|
733
|
+
"alt": {
|
|
734
|
+
"type": "string",
|
|
735
|
+
"title": "Caption",
|
|
736
|
+
"description": "The alt text of the logo",
|
|
737
|
+
"examples": [
|
|
738
|
+
"Logo 1"
|
|
739
|
+
]
|
|
740
|
+
},
|
|
741
|
+
"type": {
|
|
742
|
+
"const": "logo"
|
|
743
|
+
}
|
|
744
|
+
},
|
|
745
|
+
"additionalProperties": false,
|
|
746
|
+
"required": [
|
|
747
|
+
"src"
|
|
748
|
+
]
|
|
749
|
+
},
|
|
750
|
+
"minItems": 1,
|
|
751
|
+
"maxItems": 20
|
|
752
|
+
},
|
|
753
|
+
"align": {
|
|
754
|
+
"type": "string",
|
|
755
|
+
"title": "Alignment",
|
|
756
|
+
"description": "The alignment of the logo layout",
|
|
757
|
+
"enum": [
|
|
758
|
+
"left",
|
|
759
|
+
"center"
|
|
760
|
+
],
|
|
761
|
+
"default": "center"
|
|
762
|
+
},
|
|
763
|
+
"logosPerRow": {
|
|
764
|
+
"type": "integer",
|
|
765
|
+
"title": "Logos Per Row",
|
|
766
|
+
"description": "The amount of logos to display per row",
|
|
767
|
+
"minimum": 2,
|
|
768
|
+
"maximum": 8,
|
|
769
|
+
"examples": [
|
|
770
|
+
5
|
|
771
|
+
]
|
|
772
|
+
},
|
|
773
|
+
"cta": {
|
|
774
|
+
"type": "object",
|
|
775
|
+
"title": "Call to Action",
|
|
776
|
+
"description": "The call to action",
|
|
777
|
+
"properties": {
|
|
778
|
+
"toggle": {
|
|
779
|
+
"type": "boolean",
|
|
780
|
+
"default": false,
|
|
781
|
+
"title": "CTA Toggle",
|
|
782
|
+
"description": "Activate/disable the CTA"
|
|
783
|
+
},
|
|
784
|
+
"text": {
|
|
785
|
+
"type": "string",
|
|
786
|
+
"title": "Call to Action Text",
|
|
787
|
+
"description": "A short CTA text",
|
|
788
|
+
"examples": [
|
|
789
|
+
"Explore the success stories of our valued customers and discover more about their journey."
|
|
790
|
+
]
|
|
791
|
+
},
|
|
792
|
+
"link": {
|
|
793
|
+
"type": "string",
|
|
794
|
+
"title": "Call to Action Link",
|
|
795
|
+
"description": "The CTA link",
|
|
796
|
+
"default": "#",
|
|
797
|
+
"format": "uri"
|
|
798
|
+
},
|
|
799
|
+
"label": {
|
|
800
|
+
"type": "string",
|
|
801
|
+
"title": "Link Label",
|
|
802
|
+
"description": "The text label displayed on the link",
|
|
803
|
+
"examples": [
|
|
804
|
+
"See all our partners"
|
|
805
|
+
]
|
|
806
|
+
},
|
|
807
|
+
"style": {
|
|
808
|
+
"type": "string",
|
|
809
|
+
"enum": [
|
|
810
|
+
"button",
|
|
811
|
+
"text"
|
|
812
|
+
],
|
|
813
|
+
"default": "text"
|
|
814
|
+
}
|
|
815
|
+
},
|
|
816
|
+
"additionalProperties": false,
|
|
817
|
+
"required": [
|
|
818
|
+
"style",
|
|
819
|
+
"link",
|
|
820
|
+
"label"
|
|
821
|
+
]
|
|
822
|
+
},
|
|
823
|
+
"type": {
|
|
824
|
+
"const": "logos"
|
|
825
|
+
}
|
|
826
|
+
},
|
|
827
|
+
"additionalProperties": false,
|
|
828
|
+
"required": [
|
|
829
|
+
"logos"
|
|
830
|
+
]
|
|
831
|
+
},
|
|
832
|
+
{
|
|
833
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
834
|
+
"$id": "http://schema.mydesignsystem.com/stats.schema.json",
|
|
835
|
+
"title": "Stats",
|
|
836
|
+
"description": "Component used to display stats with a number upcounter",
|
|
837
|
+
"type": "object",
|
|
838
|
+
"properties": {
|
|
839
|
+
"stat": {
|
|
840
|
+
"title": "Stats",
|
|
841
|
+
"type": "array",
|
|
842
|
+
"description": "The stats to display with a number upcounter",
|
|
843
|
+
"items": {
|
|
844
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
845
|
+
"$id": "http://schema.mydesignsystem.com/stat.schema.json",
|
|
846
|
+
"title": "Stat",
|
|
847
|
+
"description": "Stat entry of Stats component",
|
|
848
|
+
"type": "object",
|
|
849
|
+
"properties": {
|
|
850
|
+
"number": {
|
|
851
|
+
"title": "Number",
|
|
852
|
+
"description": "The number of the stat",
|
|
853
|
+
"type": "integer",
|
|
854
|
+
"examples": [
|
|
855
|
+
1,
|
|
856
|
+
2,
|
|
857
|
+
3,
|
|
858
|
+
4
|
|
859
|
+
]
|
|
860
|
+
},
|
|
861
|
+
"description": {
|
|
862
|
+
"title": "Description",
|
|
863
|
+
"description": "Optional description of the stat",
|
|
864
|
+
"type": "string",
|
|
865
|
+
"format": "markdown"
|
|
866
|
+
},
|
|
867
|
+
"title": {
|
|
868
|
+
"title": "Title",
|
|
869
|
+
"description": "Title of the stat",
|
|
870
|
+
"type": "string",
|
|
871
|
+
"format": "markdown",
|
|
872
|
+
"examples": [
|
|
873
|
+
"Stat 1",
|
|
874
|
+
"Stat 2",
|
|
875
|
+
"Stat 3",
|
|
876
|
+
"Stat 4"
|
|
877
|
+
]
|
|
878
|
+
},
|
|
879
|
+
"icon": {
|
|
880
|
+
"title": "Icon",
|
|
881
|
+
"description": "Optional icon of the stat",
|
|
882
|
+
"type": "string",
|
|
883
|
+
"examples": [
|
|
884
|
+
"person",
|
|
885
|
+
"home",
|
|
886
|
+
"map"
|
|
887
|
+
]
|
|
888
|
+
},
|
|
889
|
+
"type": {
|
|
890
|
+
"const": "stat"
|
|
891
|
+
}
|
|
892
|
+
},
|
|
893
|
+
"additionalProperties": false,
|
|
894
|
+
"required": [
|
|
895
|
+
"number",
|
|
896
|
+
"label"
|
|
897
|
+
],
|
|
898
|
+
"examples": [
|
|
899
|
+
{
|
|
900
|
+
"number": 1,
|
|
901
|
+
"label": "Stat 1"
|
|
902
|
+
},
|
|
903
|
+
{
|
|
904
|
+
"number": 2,
|
|
905
|
+
"label": "Stat 2"
|
|
906
|
+
},
|
|
907
|
+
{
|
|
908
|
+
"number": 3,
|
|
909
|
+
"label": "Stat 3"
|
|
910
|
+
},
|
|
911
|
+
{
|
|
912
|
+
"value": 4,
|
|
913
|
+
"label": "Stat 4"
|
|
914
|
+
}
|
|
915
|
+
]
|
|
916
|
+
},
|
|
917
|
+
"minItems": 1,
|
|
918
|
+
"maxItems": 4
|
|
919
|
+
},
|
|
920
|
+
"type": {
|
|
921
|
+
"const": "stats"
|
|
922
|
+
}
|
|
923
|
+
},
|
|
924
|
+
"additionalProperties": false,
|
|
925
|
+
"required": [
|
|
926
|
+
"stats"
|
|
927
|
+
]
|
|
928
|
+
},
|
|
929
|
+
{
|
|
930
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
931
|
+
"$id": "http://schema.mydesignsystem.com/teaser-card.schema.json",
|
|
932
|
+
"title": "Teaser Card",
|
|
933
|
+
"description": "Component used to tease content",
|
|
934
|
+
"type": "object",
|
|
935
|
+
"properties": {
|
|
936
|
+
"headline": {
|
|
937
|
+
"type": "string",
|
|
938
|
+
"title": "Headline",
|
|
939
|
+
"description": "Headline for the teaser card",
|
|
940
|
+
"format": "markdown"
|
|
941
|
+
},
|
|
942
|
+
"text": {
|
|
943
|
+
"type": "string",
|
|
944
|
+
"title": "Text",
|
|
945
|
+
"description": "Body text for the teaser card",
|
|
946
|
+
"format": "markdown"
|
|
947
|
+
},
|
|
948
|
+
"label": {
|
|
949
|
+
"type": "string",
|
|
950
|
+
"title": "Label",
|
|
951
|
+
"description": "Label for the Teaser Card"
|
|
952
|
+
},
|
|
953
|
+
"layout": {
|
|
954
|
+
"type": "string",
|
|
955
|
+
"enum": [
|
|
956
|
+
"stack",
|
|
957
|
+
"row"
|
|
958
|
+
],
|
|
959
|
+
"description": "Layout for the Teaser Card",
|
|
960
|
+
"default": "stack"
|
|
961
|
+
},
|
|
962
|
+
"target": {
|
|
963
|
+
"type": "string",
|
|
964
|
+
"title": "Target",
|
|
965
|
+
"description": "Target that should be linked",
|
|
966
|
+
"format": "uri"
|
|
967
|
+
},
|
|
968
|
+
"button": {
|
|
969
|
+
"type": "object",
|
|
970
|
+
"properties": {
|
|
971
|
+
"label": {
|
|
972
|
+
"title": "Label",
|
|
973
|
+
"type": "string",
|
|
974
|
+
"description": "Label of the button. Still A11Y relevant when the button is hidden."
|
|
975
|
+
},
|
|
976
|
+
"chevron": {
|
|
977
|
+
"title": "Icon",
|
|
978
|
+
"description": "Toggle arrow icon",
|
|
979
|
+
"type": "boolean",
|
|
980
|
+
"default": false
|
|
981
|
+
},
|
|
982
|
+
"hidden": {
|
|
983
|
+
"type": "boolean",
|
|
984
|
+
"title": "Display Button",
|
|
985
|
+
"description": "Toggle wether you want the card to have a visible button or not",
|
|
986
|
+
"default": false
|
|
987
|
+
}
|
|
988
|
+
},
|
|
989
|
+
"required": [
|
|
990
|
+
"label"
|
|
991
|
+
],
|
|
992
|
+
"additionalProperties": false
|
|
993
|
+
},
|
|
994
|
+
"image": {
|
|
995
|
+
"type": "string",
|
|
996
|
+
"title": "Image",
|
|
997
|
+
"description": "Image to display as cover",
|
|
998
|
+
"format": "image"
|
|
999
|
+
},
|
|
1000
|
+
"imageRatio": {
|
|
1001
|
+
"type": "string",
|
|
1002
|
+
"enum": [
|
|
1003
|
+
"wide",
|
|
1004
|
+
"landscape",
|
|
1005
|
+
"square",
|
|
1006
|
+
"unset"
|
|
1007
|
+
],
|
|
1008
|
+
"description": "Aspect ratio of the image",
|
|
1009
|
+
"default": "wide"
|
|
1010
|
+
},
|
|
1011
|
+
"type": {
|
|
1012
|
+
"const": "teaser-card"
|
|
1013
|
+
}
|
|
1014
|
+
},
|
|
1015
|
+
"additionalProperties": false,
|
|
1016
|
+
"required": [
|
|
1017
|
+
"topic",
|
|
1018
|
+
"target"
|
|
1019
|
+
]
|
|
1020
|
+
},
|
|
1021
|
+
{
|
|
1022
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
1023
|
+
"$id": "http://schema.mydesignsystem.com/testimonials.schema.json",
|
|
1024
|
+
"title": "Testimonials",
|
|
1025
|
+
"description": "Display testimonials with an optional image and rating",
|
|
1026
|
+
"type": "object",
|
|
1027
|
+
"properties": {
|
|
1028
|
+
"layout": {
|
|
1029
|
+
"title": "Layout",
|
|
1030
|
+
"description": "The testimonial layout",
|
|
1031
|
+
"type": "string",
|
|
1032
|
+
"enum": [
|
|
1033
|
+
"slider",
|
|
1034
|
+
"list",
|
|
1035
|
+
"alternating"
|
|
1036
|
+
],
|
|
1037
|
+
"default": "slider"
|
|
1038
|
+
},
|
|
1039
|
+
"testimonial": {
|
|
1040
|
+
"type": "array",
|
|
1041
|
+
"title": "Testimonials",
|
|
1042
|
+
"description": "Add testimonials featuring an image, a quote, a source and a rating",
|
|
1043
|
+
"items": {
|
|
1044
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
1045
|
+
"$id": "http://schema.mydesignsystem.com/testimonial.schema.json",
|
|
1046
|
+
"title": "Testimonial",
|
|
1047
|
+
"description": "Testimonial entry of Testimonials component",
|
|
1048
|
+
"type": "object",
|
|
1049
|
+
"properties": {
|
|
1050
|
+
"quote": {
|
|
1051
|
+
"title": "Quote",
|
|
1052
|
+
"description": "The testimonial quote",
|
|
1053
|
+
"type": "string",
|
|
1054
|
+
"format": "markdown",
|
|
1055
|
+
"examples": [
|
|
1056
|
+
"This product is amazing!"
|
|
1057
|
+
]
|
|
1058
|
+
},
|
|
1059
|
+
"name": {
|
|
1060
|
+
"title": "Name",
|
|
1061
|
+
"description": "The name of the quote author",
|
|
1062
|
+
"type": "string",
|
|
1063
|
+
"examples": [
|
|
1064
|
+
"John Doe"
|
|
1065
|
+
]
|
|
1066
|
+
},
|
|
1067
|
+
"title": {
|
|
1068
|
+
"title": "Title",
|
|
1069
|
+
"description": "The title of the quote author",
|
|
1070
|
+
"type": "string"
|
|
1071
|
+
},
|
|
1072
|
+
"image": {
|
|
1073
|
+
"type": "object",
|
|
1074
|
+
"properties": {
|
|
1075
|
+
"src": {
|
|
1076
|
+
"title": "Source",
|
|
1077
|
+
"description": "The image to display with the testimonial",
|
|
1078
|
+
"type": "string",
|
|
1079
|
+
"format": "image",
|
|
1080
|
+
"examples": [
|
|
1081
|
+
"https://example.com/image.jpg"
|
|
1082
|
+
]
|
|
1083
|
+
},
|
|
1084
|
+
"alt": {
|
|
1085
|
+
"title": "Alt Text",
|
|
1086
|
+
"description": "The alt text of the image file",
|
|
1087
|
+
"type": "string"
|
|
1088
|
+
}
|
|
1089
|
+
},
|
|
1090
|
+
"additionalProperties": false
|
|
1091
|
+
},
|
|
1092
|
+
"rating": {
|
|
1093
|
+
"title": "Rating",
|
|
1094
|
+
"description": "The rating of the testimonial, from 1 to 5",
|
|
1095
|
+
"type": "integer",
|
|
1096
|
+
"minimum": 1,
|
|
1097
|
+
"maximum": 5
|
|
1098
|
+
},
|
|
1099
|
+
"type": {
|
|
1100
|
+
"const": "testimonial"
|
|
1101
|
+
}
|
|
1102
|
+
},
|
|
1103
|
+
"additionalProperties": false,
|
|
1104
|
+
"required": [
|
|
1105
|
+
"quote",
|
|
1106
|
+
"name",
|
|
1107
|
+
"image"
|
|
1108
|
+
]
|
|
1109
|
+
}
|
|
1110
|
+
},
|
|
1111
|
+
"type": {
|
|
1112
|
+
"const": "testimonials"
|
|
1113
|
+
}
|
|
1114
|
+
},
|
|
1115
|
+
"additionalProperties": false
|
|
1116
|
+
},
|
|
1117
|
+
{
|
|
1118
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
1119
|
+
"$id": "http://schema.mydesignsystem.com/text.schema.json",
|
|
1120
|
+
"title": "Text",
|
|
1121
|
+
"description": "Component used for displaying text in chapters",
|
|
1122
|
+
"type": "object",
|
|
1123
|
+
"properties": {
|
|
1124
|
+
"text": {
|
|
1125
|
+
"type": "string",
|
|
1126
|
+
"format": "markdown",
|
|
1127
|
+
"title": "Text",
|
|
1128
|
+
"description": "Text",
|
|
1129
|
+
"examples": [
|
|
1130
|
+
"Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet."
|
|
1131
|
+
]
|
|
1132
|
+
},
|
|
1133
|
+
"layout": {
|
|
1134
|
+
"type": "string",
|
|
1135
|
+
"title": "Layout",
|
|
1136
|
+
"description": "Variant of layout to be used",
|
|
1137
|
+
"enum": [
|
|
1138
|
+
"singleColumn",
|
|
1139
|
+
"multiColumn"
|
|
1140
|
+
],
|
|
1141
|
+
"default": "singleColumn"
|
|
1142
|
+
},
|
|
1143
|
+
"align": {
|
|
1144
|
+
"type": "string",
|
|
1145
|
+
"title": "Alignment",
|
|
1146
|
+
"description": "Alignment of text",
|
|
1147
|
+
"enum": [
|
|
1148
|
+
"left",
|
|
1149
|
+
"center"
|
|
1150
|
+
],
|
|
1151
|
+
"default": "left"
|
|
1152
|
+
},
|
|
1153
|
+
"highlightText": {
|
|
1154
|
+
"type": "boolean",
|
|
1155
|
+
"title": "Highlight Text",
|
|
1156
|
+
"description": "Visually highlight the text",
|
|
1157
|
+
"default": false
|
|
1158
|
+
},
|
|
1159
|
+
"type": {
|
|
1160
|
+
"const": "text"
|
|
1161
|
+
}
|
|
1162
|
+
},
|
|
1163
|
+
"additionalProperties": false,
|
|
1164
|
+
"required": [
|
|
1165
|
+
"text"
|
|
1166
|
+
]
|
|
1167
|
+
}
|
|
1168
|
+
]
|
|
1169
|
+
}
|
|
1170
|
+
},
|
|
53
1171
|
"typeProp": {
|
|
54
1172
|
"title": "Type",
|
|
55
1173
|
"description": "Type of the movement",
|