@kickstartds/ds-agency-premium 1.6.68--canary.45.1675.0 → 1.6.68--canary.45.1680.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{BlogOverviewProps-9f207f1c.d.ts → BlogOverviewProps-7caa223c.d.ts} +1 -1
- package/dist/{BlogPostProps-6b3cff22.d.ts → BlogPostProps-d9decb7c.d.ts} +1 -1
- package/dist/EventDetailProps-63f63768.d.ts +387 -0
- package/dist/{EventListAppointmentProps-d438cdc6.d.ts → EventListAppointmentProps-da54c3b9.d.ts} +16 -1
- package/dist/{PageProps-aa29c554.d.ts → PageProps-7caa223c.d.ts} +1 -1
- package/dist/{SectionProps-7caa223c.d.ts → SectionProps-03ff6d21.d.ts} +1 -1
- package/dist/components/blog-overview/blog-overview.schema.dereffed.json +4 -2
- package/dist/components/blog-overview/index.d.ts +1 -1
- package/dist/components/blog-post/blog-post.schema.dereffed.json +4 -2
- package/dist/components/blog-post/index.d.ts +1 -1
- package/dist/components/event-detail/event-detail.schema.dereffed.json +111 -8
- package/dist/components/event-detail/event-detail.schema.json +22 -19
- package/dist/components/event-detail/index.d.ts +1 -1
- package/dist/components/event-detail/index.js +23 -11
- package/dist/components/event-header/event-header.css +6 -0
- package/dist/components/event-header/event-header.schema.dereffed.json +38 -0
- package/dist/components/event-header/event-header.schema.json +34 -0
- package/dist/components/event-header/index.d.ts +35 -0
- package/dist/components/event-header/index.js +20 -0
- package/dist/components/event-list-appointment/event-list-appointment.css +52 -0
- package/dist/components/event-list-appointment/event-list-appointment.schema.dereffed.json +19 -0
- package/dist/components/event-list-appointment/event-list-appointment.schema.json +19 -0
- package/dist/components/event-list-appointment/index.d.ts +4 -4
- package/dist/components/event-list-appointment/index.js +2 -5
- package/dist/components/event-list-entry/event-list-entry.css +42 -0
- package/dist/components/event-list-entry/event-list-entry.schema.dereffed.json +19 -0
- package/dist/components/event-list-entry/index.d.ts +1 -1
- package/dist/components/event-list-entry/index.js +3 -5
- package/dist/components/gallery/gallery.schema.dereffed.json +2 -1
- package/dist/components/gallery/gallery.schema.json +2 -1
- package/dist/components/gallery/index.js +1 -1
- package/dist/components/image-story/index.d.ts +1 -1
- package/dist/components/index/index.d.ts +4 -4
- package/dist/components/page/index.d.ts +1 -1
- package/dist/components/page/page.schema.dereffed.json +4 -2
- package/dist/components/page-wrapper/tokens.css +1 -1
- package/dist/components/presets.json +124 -32
- package/dist/components/section/index.d.ts +1 -1
- package/dist/components/section/section.schema.dereffed.json +4 -2
- package/dist/components/slider/slider.schema.dereffed.json +2 -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/EventDetailProps-ba701353.d.ts +0 -56
- package/dist/components/event-detail/event-detail.css +0 -19
- /package/dist/{ImageStoryProps-e853e1e7.d.ts → ImageStoryProps-03ff6d21.d.ts} +0 -0
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
|
|
4
4
|
* and run json-schema-to-typescript to regenerate this file.
|
|
5
5
|
*/
|
|
6
|
-
import { SectionProps } from "./SectionProps-
|
|
6
|
+
import { SectionProps } from "./SectionProps-03ff6d21.js";
|
|
7
7
|
import { BlogTeaserProps } from "./BlogTeaserProps-f5855e93.js";
|
|
8
8
|
import { CtaProps } from "./CtaProps-8a0dba0d.js";
|
|
9
9
|
import { SeoProps } from "./SeoProps-f2d6dcaa.js";
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*/
|
|
6
6
|
import { BlogHeadProps } from "./BlogHeadProps-c04a5ed8.js";
|
|
7
7
|
import { BlogAsideProps } from "./BlogAsideProps-d9decb7c.js";
|
|
8
|
-
import { SectionProps } from "./SectionProps-
|
|
8
|
+
import { SectionProps } from "./SectionProps-03ff6d21.js";
|
|
9
9
|
import { CtaProps } from "./CtaProps-8a0dba0d.js";
|
|
10
10
|
import { SeoProps } from "./SeoProps-f2d6dcaa.js";
|
|
11
11
|
/**
|
|
@@ -0,0 +1,387 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was automatically generated by json-schema-to-typescript.
|
|
3
|
+
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
|
|
4
|
+
* and run json-schema-to-typescript to regenerate this file.
|
|
5
|
+
*/
|
|
6
|
+
import { EventListAppointmentProps } from "./EventListAppointmentProps-da54c3b9.js";
|
|
7
|
+
/**
|
|
8
|
+
* Title of the event
|
|
9
|
+
*/
|
|
10
|
+
type EventTitle = string;
|
|
11
|
+
/**
|
|
12
|
+
* Label of the category
|
|
13
|
+
*/
|
|
14
|
+
type Label = string;
|
|
15
|
+
/**
|
|
16
|
+
* Categories to which the event belongs
|
|
17
|
+
*/
|
|
18
|
+
type Categories = {
|
|
19
|
+
label?: Label;
|
|
20
|
+
}[];
|
|
21
|
+
/**
|
|
22
|
+
* Short intro text for the event
|
|
23
|
+
*/
|
|
24
|
+
type Intro = string;
|
|
25
|
+
/**
|
|
26
|
+
* List of attendable appointments
|
|
27
|
+
*/
|
|
28
|
+
type Appointments = EventListAppointmentProps[];
|
|
29
|
+
/**
|
|
30
|
+
* Description of the event
|
|
31
|
+
*/
|
|
32
|
+
type Description = string;
|
|
33
|
+
/**
|
|
34
|
+
* The images to display in the gallery
|
|
35
|
+
*
|
|
36
|
+
* @minItems 1
|
|
37
|
+
* @maxItems 10
|
|
38
|
+
*/
|
|
39
|
+
type Images = [
|
|
40
|
+
{
|
|
41
|
+
src: Src;
|
|
42
|
+
alt?: AltText;
|
|
43
|
+
caption?: Caption;
|
|
44
|
+
}
|
|
45
|
+
] | [
|
|
46
|
+
{
|
|
47
|
+
src: Src;
|
|
48
|
+
alt?: AltText;
|
|
49
|
+
caption?: Caption;
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
src: Src;
|
|
53
|
+
alt?: AltText;
|
|
54
|
+
caption?: Caption;
|
|
55
|
+
}
|
|
56
|
+
] | [
|
|
57
|
+
{
|
|
58
|
+
src: Src;
|
|
59
|
+
alt?: AltText;
|
|
60
|
+
caption?: Caption;
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
src: Src;
|
|
64
|
+
alt?: AltText;
|
|
65
|
+
caption?: Caption;
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
src: Src;
|
|
69
|
+
alt?: AltText;
|
|
70
|
+
caption?: Caption;
|
|
71
|
+
}
|
|
72
|
+
] | [
|
|
73
|
+
{
|
|
74
|
+
src: Src;
|
|
75
|
+
alt?: AltText;
|
|
76
|
+
caption?: Caption;
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
src: Src;
|
|
80
|
+
alt?: AltText;
|
|
81
|
+
caption?: Caption;
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
src: Src;
|
|
85
|
+
alt?: AltText;
|
|
86
|
+
caption?: Caption;
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
src: Src;
|
|
90
|
+
alt?: AltText;
|
|
91
|
+
caption?: Caption;
|
|
92
|
+
}
|
|
93
|
+
] | [
|
|
94
|
+
{
|
|
95
|
+
src: Src;
|
|
96
|
+
alt?: AltText;
|
|
97
|
+
caption?: Caption;
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
src: Src;
|
|
101
|
+
alt?: AltText;
|
|
102
|
+
caption?: Caption;
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
src: Src;
|
|
106
|
+
alt?: AltText;
|
|
107
|
+
caption?: Caption;
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
src: Src;
|
|
111
|
+
alt?: AltText;
|
|
112
|
+
caption?: Caption;
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
src: Src;
|
|
116
|
+
alt?: AltText;
|
|
117
|
+
caption?: Caption;
|
|
118
|
+
}
|
|
119
|
+
] | [
|
|
120
|
+
{
|
|
121
|
+
src: Src;
|
|
122
|
+
alt?: AltText;
|
|
123
|
+
caption?: Caption;
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
src: Src;
|
|
127
|
+
alt?: AltText;
|
|
128
|
+
caption?: Caption;
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
src: Src;
|
|
132
|
+
alt?: AltText;
|
|
133
|
+
caption?: Caption;
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
src: Src;
|
|
137
|
+
alt?: AltText;
|
|
138
|
+
caption?: Caption;
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
src: Src;
|
|
142
|
+
alt?: AltText;
|
|
143
|
+
caption?: Caption;
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
src: Src;
|
|
147
|
+
alt?: AltText;
|
|
148
|
+
caption?: Caption;
|
|
149
|
+
}
|
|
150
|
+
] | [
|
|
151
|
+
{
|
|
152
|
+
src: Src;
|
|
153
|
+
alt?: AltText;
|
|
154
|
+
caption?: Caption;
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
src: Src;
|
|
158
|
+
alt?: AltText;
|
|
159
|
+
caption?: Caption;
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
src: Src;
|
|
163
|
+
alt?: AltText;
|
|
164
|
+
caption?: Caption;
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
src: Src;
|
|
168
|
+
alt?: AltText;
|
|
169
|
+
caption?: Caption;
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
src: Src;
|
|
173
|
+
alt?: AltText;
|
|
174
|
+
caption?: Caption;
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
src: Src;
|
|
178
|
+
alt?: AltText;
|
|
179
|
+
caption?: Caption;
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
src: Src;
|
|
183
|
+
alt?: AltText;
|
|
184
|
+
caption?: Caption;
|
|
185
|
+
}
|
|
186
|
+
] | [
|
|
187
|
+
{
|
|
188
|
+
src: Src;
|
|
189
|
+
alt?: AltText;
|
|
190
|
+
caption?: Caption;
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
src: Src;
|
|
194
|
+
alt?: AltText;
|
|
195
|
+
caption?: Caption;
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
src: Src;
|
|
199
|
+
alt?: AltText;
|
|
200
|
+
caption?: Caption;
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
src: Src;
|
|
204
|
+
alt?: AltText;
|
|
205
|
+
caption?: Caption;
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
src: Src;
|
|
209
|
+
alt?: AltText;
|
|
210
|
+
caption?: Caption;
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
src: Src;
|
|
214
|
+
alt?: AltText;
|
|
215
|
+
caption?: Caption;
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
src: Src;
|
|
219
|
+
alt?: AltText;
|
|
220
|
+
caption?: Caption;
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
src: Src;
|
|
224
|
+
alt?: AltText;
|
|
225
|
+
caption?: Caption;
|
|
226
|
+
}
|
|
227
|
+
] | [
|
|
228
|
+
{
|
|
229
|
+
src: Src;
|
|
230
|
+
alt?: AltText;
|
|
231
|
+
caption?: Caption;
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
src: Src;
|
|
235
|
+
alt?: AltText;
|
|
236
|
+
caption?: Caption;
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
src: Src;
|
|
240
|
+
alt?: AltText;
|
|
241
|
+
caption?: Caption;
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
src: Src;
|
|
245
|
+
alt?: AltText;
|
|
246
|
+
caption?: Caption;
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
src: Src;
|
|
250
|
+
alt?: AltText;
|
|
251
|
+
caption?: Caption;
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
src: Src;
|
|
255
|
+
alt?: AltText;
|
|
256
|
+
caption?: Caption;
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
src: Src;
|
|
260
|
+
alt?: AltText;
|
|
261
|
+
caption?: Caption;
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
src: Src;
|
|
265
|
+
alt?: AltText;
|
|
266
|
+
caption?: Caption;
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
src: Src;
|
|
270
|
+
alt?: AltText;
|
|
271
|
+
caption?: Caption;
|
|
272
|
+
}
|
|
273
|
+
] | [
|
|
274
|
+
{
|
|
275
|
+
src: Src;
|
|
276
|
+
alt?: AltText;
|
|
277
|
+
caption?: Caption;
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
src: Src;
|
|
281
|
+
alt?: AltText;
|
|
282
|
+
caption?: Caption;
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
src: Src;
|
|
286
|
+
alt?: AltText;
|
|
287
|
+
caption?: Caption;
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
src: Src;
|
|
291
|
+
alt?: AltText;
|
|
292
|
+
caption?: Caption;
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
src: Src;
|
|
296
|
+
alt?: AltText;
|
|
297
|
+
caption?: Caption;
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
src: Src;
|
|
301
|
+
alt?: AltText;
|
|
302
|
+
caption?: Caption;
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
src: Src;
|
|
306
|
+
alt?: AltText;
|
|
307
|
+
caption?: Caption;
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
src: Src;
|
|
311
|
+
alt?: AltText;
|
|
312
|
+
caption?: Caption;
|
|
313
|
+
},
|
|
314
|
+
{
|
|
315
|
+
src: Src;
|
|
316
|
+
alt?: AltText;
|
|
317
|
+
caption?: Caption;
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
src: Src;
|
|
321
|
+
alt?: AltText;
|
|
322
|
+
caption?: Caption;
|
|
323
|
+
}
|
|
324
|
+
];
|
|
325
|
+
/**
|
|
326
|
+
* The source of the image
|
|
327
|
+
*/
|
|
328
|
+
type Src = string;
|
|
329
|
+
/**
|
|
330
|
+
* Alt text of the image
|
|
331
|
+
*/
|
|
332
|
+
type AltText = string;
|
|
333
|
+
/**
|
|
334
|
+
* The caption of the image
|
|
335
|
+
*/
|
|
336
|
+
type Caption = string;
|
|
337
|
+
/**
|
|
338
|
+
* Label of the button
|
|
339
|
+
*/
|
|
340
|
+
type Label1 = string;
|
|
341
|
+
/**
|
|
342
|
+
* URL the button links to
|
|
343
|
+
*/
|
|
344
|
+
type Target = string;
|
|
345
|
+
interface EventDetailProps {
|
|
346
|
+
title?: EventTitle;
|
|
347
|
+
categories?: Categories;
|
|
348
|
+
intro?: Intro;
|
|
349
|
+
appointments?: Appointments;
|
|
350
|
+
downloads?: {
|
|
351
|
+
/**
|
|
352
|
+
* The name of the file
|
|
353
|
+
*/
|
|
354
|
+
name: string;
|
|
355
|
+
/**
|
|
356
|
+
* A brief description of the file
|
|
357
|
+
*/
|
|
358
|
+
description?: string;
|
|
359
|
+
/**
|
|
360
|
+
* A URL to an image that previews the file.
|
|
361
|
+
*/
|
|
362
|
+
previewImage?: string;
|
|
363
|
+
/**
|
|
364
|
+
* The URL to download the file from.
|
|
365
|
+
*/
|
|
366
|
+
url: string;
|
|
367
|
+
/**
|
|
368
|
+
* The size of the download file
|
|
369
|
+
*/
|
|
370
|
+
size?: string;
|
|
371
|
+
/**
|
|
372
|
+
* The format of the download file
|
|
373
|
+
*/
|
|
374
|
+
format?: string;
|
|
375
|
+
}[];
|
|
376
|
+
description?: Description;
|
|
377
|
+
images?: Images;
|
|
378
|
+
button?: Button;
|
|
379
|
+
}
|
|
380
|
+
/**
|
|
381
|
+
* Button at the bottom of the event detail
|
|
382
|
+
*/
|
|
383
|
+
interface Button {
|
|
384
|
+
label?: Label1;
|
|
385
|
+
target?: Target;
|
|
386
|
+
}
|
|
387
|
+
export { EventTitle, Label, Categories, Intro, Appointments, Description, Images, Src, AltText, Caption, Label1, Target, EventDetailProps, Button };
|
package/dist/{EventListAppointmentProps-d438cdc6.d.ts → EventListAppointmentProps-da54c3b9.d.ts}
RENAMED
|
@@ -15,9 +15,24 @@ type Time = string;
|
|
|
15
15
|
* Label for the call to action button
|
|
16
16
|
*/
|
|
17
17
|
type CTALabel = string;
|
|
18
|
+
/**
|
|
19
|
+
* URL for the call to action button
|
|
20
|
+
*/
|
|
21
|
+
type Href = string;
|
|
22
|
+
/**
|
|
23
|
+
* Whether the link should open in a new tab
|
|
24
|
+
*/
|
|
25
|
+
type OpenInNewTab = boolean;
|
|
26
|
+
/**
|
|
27
|
+
* Aria label for the link
|
|
28
|
+
*/
|
|
29
|
+
type AriaLabel = string;
|
|
18
30
|
interface EventListAppointmentProps {
|
|
19
31
|
date?: Date;
|
|
20
32
|
time?: Time;
|
|
21
33
|
label?: CTALabel;
|
|
34
|
+
href?: Href;
|
|
35
|
+
newTab?: OpenInNewTab;
|
|
36
|
+
ariaLabel?: AriaLabel;
|
|
22
37
|
}
|
|
23
|
-
export { Date, Time, CTALabel, EventListAppointmentProps };
|
|
38
|
+
export { Date, Time, CTALabel, Href, OpenInNewTab, AriaLabel, EventListAppointmentProps };
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
|
|
4
4
|
* and run json-schema-to-typescript to regenerate this file.
|
|
5
5
|
*/
|
|
6
|
-
import { SectionProps } from "./SectionProps-
|
|
6
|
+
import { SectionProps } from "./SectionProps-03ff6d21.js";
|
|
7
7
|
import { SeoProps } from "./SeoProps-f2d6dcaa.js";
|
|
8
8
|
/**
|
|
9
9
|
* Collection of sections (with their contents) to render on the page
|
|
@@ -10,7 +10,7 @@ import { FeaturesProps } from "./FeaturesProps-7ef528ec.js";
|
|
|
10
10
|
import { GalleryProps } from "./GalleryProps-76e7de44.js";
|
|
11
11
|
import { HeroProps } from "./HeroProps-aa4e6431.js";
|
|
12
12
|
import { HtmlProps } from "./HtmlProps-9d091769.js";
|
|
13
|
-
import { ImageStoryProps } from "./ImageStoryProps-
|
|
13
|
+
import { ImageStoryProps } from "./ImageStoryProps-03ff6d21.js";
|
|
14
14
|
import { ImageTextProps } from "./ImageTextProps-9286cca4.js";
|
|
15
15
|
import { LogosProps } from "./LogosProps-f9474fe2.js";
|
|
16
16
|
import { MosaicProps } from "./MosaicProps-d52c7151.js";
|
|
@@ -695,7 +695,8 @@
|
|
|
695
695
|
"stack",
|
|
696
696
|
"smallTiles",
|
|
697
697
|
"largeTiles"
|
|
698
|
-
]
|
|
698
|
+
],
|
|
699
|
+
"default": "smallTiles"
|
|
699
700
|
},
|
|
700
701
|
"aspectRatio": {
|
|
701
702
|
"type": "string",
|
|
@@ -1907,7 +1908,8 @@
|
|
|
1907
1908
|
"stack",
|
|
1908
1909
|
"smallTiles",
|
|
1909
1910
|
"largeTiles"
|
|
1910
|
-
]
|
|
1911
|
+
],
|
|
1912
|
+
"default": "smallTiles"
|
|
1911
1913
|
},
|
|
1912
1914
|
"aspectRatio": {
|
|
1913
1915
|
"type": "string",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BlogOverviewProps } from "../../BlogOverviewProps-
|
|
1
|
+
import { BlogOverviewProps } from "../../BlogOverviewProps-7caa223c.js";
|
|
2
2
|
import { FC, PropsWithChildren } from "react";
|
|
3
3
|
declare const BlogOverview: FC<PropsWithChildren<BlogOverviewProps>>;
|
|
4
4
|
export type { BlogOverviewProps };
|
|
@@ -979,7 +979,8 @@
|
|
|
979
979
|
"stack",
|
|
980
980
|
"smallTiles",
|
|
981
981
|
"largeTiles"
|
|
982
|
-
]
|
|
982
|
+
],
|
|
983
|
+
"default": "smallTiles"
|
|
983
984
|
},
|
|
984
985
|
"aspectRatio": {
|
|
985
986
|
"type": "string",
|
|
@@ -2191,7 +2192,8 @@
|
|
|
2191
2192
|
"stack",
|
|
2192
2193
|
"smallTiles",
|
|
2193
2194
|
"largeTiles"
|
|
2194
|
-
]
|
|
2195
|
+
],
|
|
2196
|
+
"default": "smallTiles"
|
|
2195
2197
|
},
|
|
2196
2198
|
"aspectRatio": {
|
|
2197
2199
|
"type": "string",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BlogPostProps } from "../../BlogPostProps-
|
|
1
|
+
import { BlogPostProps } from "../../BlogPostProps-d9decb7c.js";
|
|
2
2
|
import { FC, PropsWithChildren } from "react";
|
|
3
3
|
declare const BlogPost: FC<PropsWithChildren<BlogPostProps>>;
|
|
4
4
|
export type { BlogPostProps };
|
|
@@ -56,6 +56,25 @@
|
|
|
56
56
|
"description": "Label for the call to action button",
|
|
57
57
|
"type": "string"
|
|
58
58
|
},
|
|
59
|
+
"href": {
|
|
60
|
+
"title": "Href",
|
|
61
|
+
"description": "URL for the call to action button",
|
|
62
|
+
"type": "string",
|
|
63
|
+
"format": "uri",
|
|
64
|
+
"default": "#"
|
|
65
|
+
},
|
|
66
|
+
"newTab": {
|
|
67
|
+
"title": "Open in New Tab",
|
|
68
|
+
"description": "Whether the link should open in a new tab",
|
|
69
|
+
"type": "boolean",
|
|
70
|
+
"default": true
|
|
71
|
+
},
|
|
72
|
+
"ariaLabel": {
|
|
73
|
+
"title": "Aria Label",
|
|
74
|
+
"description": "Aria label for the link",
|
|
75
|
+
"type": "string",
|
|
76
|
+
"default": "Event Appointment"
|
|
77
|
+
},
|
|
59
78
|
"type": {
|
|
60
79
|
"const": "event-list-appointment"
|
|
61
80
|
}
|
|
@@ -63,6 +82,49 @@
|
|
|
63
82
|
"additionalProperties": false
|
|
64
83
|
}
|
|
65
84
|
},
|
|
85
|
+
"downloads": {
|
|
86
|
+
"type": "array",
|
|
87
|
+
"items": {
|
|
88
|
+
"type": "object",
|
|
89
|
+
"properties": {
|
|
90
|
+
"name": {
|
|
91
|
+
"type": "string",
|
|
92
|
+
"description": "The name of the file"
|
|
93
|
+
},
|
|
94
|
+
"description": {
|
|
95
|
+
"type": "string",
|
|
96
|
+
"description": "A brief description of the file"
|
|
97
|
+
},
|
|
98
|
+
"previewImage": {
|
|
99
|
+
"type": "string",
|
|
100
|
+
"format": "uri",
|
|
101
|
+
"description": "A URL to an image that previews the file."
|
|
102
|
+
},
|
|
103
|
+
"url": {
|
|
104
|
+
"type": "string",
|
|
105
|
+
"format": "uri",
|
|
106
|
+
"description": "The URL to download the file from."
|
|
107
|
+
},
|
|
108
|
+
"size": {
|
|
109
|
+
"type": [
|
|
110
|
+
"string"
|
|
111
|
+
],
|
|
112
|
+
"description": "The size of the download file"
|
|
113
|
+
},
|
|
114
|
+
"format": {
|
|
115
|
+
"type": [
|
|
116
|
+
"string"
|
|
117
|
+
],
|
|
118
|
+
"description": "The format of the download file"
|
|
119
|
+
}
|
|
120
|
+
},
|
|
121
|
+
"required": [
|
|
122
|
+
"name",
|
|
123
|
+
"url"
|
|
124
|
+
],
|
|
125
|
+
"additionalProperties": false
|
|
126
|
+
}
|
|
127
|
+
},
|
|
66
128
|
"description": {
|
|
67
129
|
"title": "Description",
|
|
68
130
|
"description": "Description of the event",
|
|
@@ -70,25 +132,66 @@
|
|
|
70
132
|
"format": "markdown"
|
|
71
133
|
},
|
|
72
134
|
"images": {
|
|
73
|
-
"title": "Images",
|
|
74
|
-
"description": "Images displayed below the text content",
|
|
75
135
|
"type": "array",
|
|
136
|
+
"title": "Images",
|
|
137
|
+
"description": "The images to display in the gallery",
|
|
76
138
|
"items": {
|
|
77
139
|
"type": "object",
|
|
78
140
|
"properties": {
|
|
79
141
|
"src": {
|
|
80
|
-
"title": "Image source",
|
|
81
|
-
"description": "Image source to use",
|
|
82
142
|
"type": "string",
|
|
83
|
-
"
|
|
143
|
+
"title": "src",
|
|
144
|
+
"format": "image",
|
|
145
|
+
"description": "The source of the image",
|
|
146
|
+
"examples": [
|
|
147
|
+
"https://example.com/image1.jpg"
|
|
148
|
+
]
|
|
84
149
|
},
|
|
85
150
|
"alt": {
|
|
151
|
+
"type": "string",
|
|
86
152
|
"title": "Alt text",
|
|
87
|
-
"description": "
|
|
88
|
-
"
|
|
153
|
+
"description": "Alt text of the image",
|
|
154
|
+
"examples": [
|
|
155
|
+
"https://example.com/image1.jpg"
|
|
156
|
+
]
|
|
157
|
+
},
|
|
158
|
+
"caption": {
|
|
159
|
+
"type": "string",
|
|
160
|
+
"format": "markdown",
|
|
161
|
+
"title": "Caption",
|
|
162
|
+
"description": "The caption of the image",
|
|
163
|
+
"examples": [
|
|
164
|
+
"Caption Image"
|
|
165
|
+
]
|
|
89
166
|
}
|
|
90
167
|
},
|
|
91
|
-
"additionalProperties": false
|
|
168
|
+
"additionalProperties": false,
|
|
169
|
+
"required": [
|
|
170
|
+
"src"
|
|
171
|
+
]
|
|
172
|
+
},
|
|
173
|
+
"minItems": 1,
|
|
174
|
+
"maxItems": 10
|
|
175
|
+
},
|
|
176
|
+
"button": {
|
|
177
|
+
"title": "Button",
|
|
178
|
+
"description": "Button at the bottom of the event detail",
|
|
179
|
+
"type": "object",
|
|
180
|
+
"properties": {
|
|
181
|
+
"label": {
|
|
182
|
+
"type": "string",
|
|
183
|
+
"title": "Label",
|
|
184
|
+
"description": "Label of the button",
|
|
185
|
+
"examples": [
|
|
186
|
+
"See all Events"
|
|
187
|
+
]
|
|
188
|
+
},
|
|
189
|
+
"target": {
|
|
190
|
+
"type": "string",
|
|
191
|
+
"title": "Target",
|
|
192
|
+
"description": "URL the button links to",
|
|
193
|
+
"format": "uri"
|
|
194
|
+
}
|
|
92
195
|
},
|
|
93
196
|
"additionalProperties": false
|
|
94
197
|
},
|