@levo-so/blocks 0.1.54 → 0.1.58

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (117) hide show
  1. package/package.json +2 -2
  2. package/src/blocks/about-us/about-us-1.schema.ts +14 -0
  3. package/src/blocks/about-us/about-us-1.tsx +4 -2
  4. package/src/blocks/about-us/about-us-2.schema.ts +48 -0
  5. package/src/blocks/about-us/about-us-2.tsx +6 -0
  6. package/src/blocks/blogs/blog-listing-1.schema.ts +10 -0
  7. package/src/blocks/blogs/blog-listing-2.schema.ts +42 -162
  8. package/src/blocks/blogs/blog-listing-2.tsx +7 -0
  9. package/src/blocks/blogs/blog-listing-3.schema.ts +9 -0
  10. package/src/blocks/blogs/blog-post-1.schema.ts +7 -1
  11. package/src/blocks/blogs/blog-post-1.tsx +1 -1
  12. package/src/blocks/blogs/blog-post-2.schema.ts +464 -28
  13. package/src/blocks/blogs/blog-post-2.tsx +6 -13
  14. package/src/blocks/blogs/blog-post-3.schema.ts +42 -0
  15. package/src/blocks/blogs/blog-post-3.tsx +4 -1
  16. package/src/blocks/calendar/calendar-1.schema.ts +537 -0
  17. package/src/blocks/calendar/calendar-1.tsx +145 -0
  18. package/src/blocks/cards/cards-10.schema.ts +52 -4
  19. package/src/blocks/cards/cards-10.tsx +13 -1
  20. package/src/blocks/cards/cards-14.schema.ts +532 -0
  21. package/src/blocks/cards/cards-14.tsx +54 -0
  22. package/src/blocks/cards/cards-15.schema.ts +277 -0
  23. package/src/blocks/cards/cards-15.tsx +40 -0
  24. package/src/blocks/cards/cards-6.schema.ts +46 -0
  25. package/src/blocks/cards/cards-6.tsx +27 -1
  26. package/src/blocks/cards/cards-7.tsx +2 -0
  27. package/src/blocks/carousel/carousel-2.schema.ts +1128 -0
  28. package/src/blocks/carousel/carousel-2.tsx +159 -0
  29. package/src/blocks/content/content-5.schema.ts +112 -6
  30. package/src/blocks/content/content-5.tsx +19 -3
  31. package/src/blocks/content/content-6.schema.ts +16 -3
  32. package/src/blocks/content/content-6.tsx +1 -0
  33. package/src/blocks/content/content-8.schema.ts +125 -0
  34. package/src/blocks/content/content-8.tsx +27 -0
  35. package/src/blocks/content/content-9.schema.ts +2729 -0
  36. package/src/blocks/content/content-9.tsx +91 -0
  37. package/src/blocks/cta/cta-2.schema.ts +46 -4
  38. package/src/blocks/cta/cta-2.tsx +9 -1
  39. package/src/blocks/embed/embed-1.schema.ts +100 -0
  40. package/src/blocks/event/ClientOnly.tsx +27 -0
  41. package/src/blocks/event/event-details.tsx +10 -3
  42. package/src/blocks/event/event-listing-3.tsx +9 -2
  43. package/src/blocks/event/event-listing-4.tsx +11 -2
  44. package/src/blocks/event/event-listing.tsx +11 -4
  45. package/src/blocks/faq/faq-1.schema.ts +58 -1
  46. package/src/blocks/faq/faq-1.tsx +18 -1
  47. package/src/blocks/faq/faq-2.tsx +2 -1
  48. package/src/blocks/faq/faq-3.schema.ts +6 -1
  49. package/src/blocks/faq/faq-3.tsx +1 -0
  50. package/src/blocks/features/features-1/features-1.schema.ts +2 -0
  51. package/src/blocks/features/features-1/variants/index.ts +2 -0
  52. package/src/blocks/features/features-1/variants/stylized-cards-v3.ts +451 -0
  53. package/src/blocks/features/features-4.schema.ts +358 -20
  54. package/src/blocks/features/features-4.tsx +3 -1
  55. package/src/blocks/features/features-6.tsx +2 -0
  56. package/src/blocks/filter-listing/filter-listing-1.schema.ts +614 -0
  57. package/src/blocks/filter-listing/filter-listing-1.tsx +128 -0
  58. package/src/blocks/footer/footer-6.schema.ts +2 -2
  59. package/src/blocks/hero/hero-11.schema.ts +849 -0
  60. package/src/blocks/hero/hero-11.tsx +59 -0
  61. package/src/blocks/hero/hero-12.schema.ts +712 -0
  62. package/src/blocks/hero/hero-12.tsx +76 -0
  63. package/src/blocks/hero/hero-13.schema.ts +238 -0
  64. package/src/blocks/hero/hero-13.tsx +31 -0
  65. package/src/blocks/hero/hero-4.tsx +2 -0
  66. package/src/blocks/hero/hero-5.tsx +2 -0
  67. package/src/blocks/hero/hero-7.tsx +2 -1
  68. package/src/blocks/hero/hero-8.tsx +2 -0
  69. package/src/blocks/hero/hero-9.schema.ts +5 -0
  70. package/src/blocks/hero/hero-9.tsx +2 -0
  71. package/src/blocks/index.ts +27 -0
  72. package/src/blocks/navbar/navbar-1.schema.ts +6 -6
  73. package/src/blocks/navbar/navbar-1.tsx +6 -7
  74. package/src/blocks/navbar/navbar-2.schema.ts +9 -9
  75. package/src/blocks/navbar/navbar-2.tsx +7 -8
  76. package/src/blocks/navbar/navbar-3.schema.ts +9 -9
  77. package/src/blocks/navbar/navbar-3.tsx +139 -114
  78. package/src/blocks/polling/polling-1.schema.ts +134 -0
  79. package/src/blocks/polling/polling-1.tsx +466 -0
  80. package/src/blocks/products/products-listing-2.schema.ts +596 -0
  81. package/src/blocks/products/products-listing-2.tsx +56 -0
  82. package/src/blocks/products/products-listing-3.schema.ts +818 -0
  83. package/src/blocks/products/products-listing-3.tsx +125 -0
  84. package/src/blocks/profile/profile-2.schema.ts +505 -0
  85. package/src/blocks/profile/profile-2.tsx +64 -0
  86. package/src/blocks/profile/profile-3.schema.ts +867 -0
  87. package/src/blocks/profile/profile-3.tsx +98 -0
  88. package/src/blocks/services/service-1.schema.ts +1743 -0
  89. package/src/blocks/services/service-1.tsx +139 -0
  90. package/src/blocks/services/service-2.schema.ts +433 -0
  91. package/src/blocks/services/service-2.tsx +98 -0
  92. package/src/blocks/services/service-3.schema.ts +631 -0
  93. package/src/blocks/services/service-3.tsx +135 -0
  94. package/src/blocks/tabs/tab-1.schema.ts +831 -0
  95. package/src/blocks/tabs/tab-1.tsx +126 -0
  96. package/src/blocks/tabs/tab-2.schema.ts +767 -0
  97. package/src/blocks/tabs/tab-2.tsx +60 -0
  98. package/src/blocks/team/team-3.schema.ts +5 -1
  99. package/src/blocks/team/team-3.tsx +7 -0
  100. package/src/blocks/team/team-4.schema.ts +17 -13
  101. package/src/blocks/team/team-4.tsx +4 -1
  102. package/src/blocks/team/team-5.schema.ts +369 -0
  103. package/src/blocks/team/team-5.tsx +38 -0
  104. package/src/blocks/testimonial/testimonial-1.tsx +0 -1
  105. package/src/blocks/testimonial/testimonial-2.tsx +2 -1
  106. package/src/blocks/testimonial/testimonial-3.tsx +2 -0
  107. package/src/blocks/testimonial/testimonial-4.tsx +2 -1
  108. package/src/blocks/testimonial/testimonial-5.tsx +2 -0
  109. package/src/blocks/testimonial/testimonial-6.tsx +2 -1
  110. package/src/blocks/testimonial/testimonial-7.schema.ts +438 -0
  111. package/src/blocks/testimonial/testimonial-7.tsx +125 -0
  112. package/src/blocks/timeline/timeline-1.schema.ts +741 -0
  113. package/src/blocks/timeline/timeline-1.tsx +52 -0
  114. package/src/blocks/users/edit-profile.schema.ts +294 -0
  115. package/src/blocks/users/edit-profile.tsx +184 -0
  116. package/src/schemas/blocks.ts +64 -12
  117. package/src/schemas/categories.ts +36 -0
@@ -106,6 +106,13 @@ export const BlogPost3: IBlock = {
106
106
  key: "name",
107
107
  label: "Name",
108
108
  field_interface: "TypographyWidget",
109
+ hint: {
110
+ prompt_description:
111
+ "Name or title displayed in the main text area. Could be a person's name, company name, or section title.",
112
+ usecase: "title",
113
+ min_characters: 5,
114
+ max_characters: 50,
115
+ },
109
116
  },
110
117
  {
111
118
  key: "experience_wrapper",
@@ -121,21 +128,49 @@ export const BlogPost3: IBlock = {
121
128
  key: "experience_title",
122
129
  label: "Experience Title",
123
130
  field_interface: "TypographyWidget",
131
+ hint: {
132
+ prompt_description:
133
+ "Title highlighting experience or achievement (e.g., '15 Years of Experience'). Should be bold and attention-grabbing.",
134
+ usecase: "title",
135
+ min_characters: 10,
136
+ max_characters: 50,
137
+ },
124
138
  },
125
139
  {
126
140
  key: "experience_description",
127
141
  label: "Experience Description",
128
142
  field_interface: "TypographyWidget",
143
+ hint: {
144
+ prompt_description:
145
+ "Description elaborating on the experience or achievement mentioned in the title. Should provide context and details.",
146
+ usecase: "description",
147
+ min_characters: 40,
148
+ max_characters: 150,
149
+ },
129
150
  },
130
151
  {
131
152
  key: "expertise_title",
132
153
  label: "Expertise Title",
133
154
  field_interface: "TypographyWidget",
155
+ hint: {
156
+ prompt_description:
157
+ "Title highlighting expertise or specialization (e.g., 'Technical Expertise'). Should be clear and professional.",
158
+ usecase: "title",
159
+ min_characters: 10,
160
+ max_characters: 50,
161
+ },
134
162
  },
135
163
  {
136
164
  key: "expertise_description",
137
165
  label: "Expertise Description",
138
166
  field_interface: "TypographyWidget",
167
+ hint: {
168
+ prompt_description:
169
+ "Description detailing areas of expertise or specialization. Should be informative and highlight key skills.",
170
+ usecase: "description",
171
+ min_characters: 40,
172
+ max_characters: 150,
173
+ },
139
174
  },
140
175
  {
141
176
  key: "content_container",
@@ -146,6 +181,13 @@ export const BlogPost3: IBlock = {
146
181
  key: "content_description",
147
182
  label: "Content Description",
148
183
  field_interface: "TypographyWidget",
184
+ hint: {
185
+ prompt_description:
186
+ "Main content paragraph providing comprehensive information about the team, services, or offerings. Should be engaging and informative.",
187
+ usecase: "description",
188
+ min_characters: 100,
189
+ max_characters: 500,
190
+ },
149
191
  },
150
192
  ],
151
193
  layouts: [
@@ -47,7 +47,10 @@ const BlogPost3: React.FC<ILevoBlockBaseProps<IBlogPost3Content>> = ({
47
47
  </Box>
48
48
  </Box>
49
49
  <Box elementKey="content_container">
50
- <Typography elementKey="content_description" />
50
+ <Typography
51
+ elementKey="content_description"
52
+ className="LevoProseMirror"
53
+ />
51
54
  </Box>
52
55
  </Box>
53
56
  </Box>
@@ -0,0 +1,537 @@
1
+ import type { IBlock } from "@levo-so/studio";
2
+
3
+ const ITEMS_COUNT = 6;
4
+
5
+ const SINGLE_DAY_EVENT = {
6
+ event: null,
7
+ event_timing: null,
8
+ event_starts: null,
9
+ event_starts_date: "2025-11-23T18:30:00.000Z",
10
+ event_starts_month: "2025-11-23T18:30:00.000Z",
11
+ event_to: "to",
12
+ event_ends: null,
13
+ event_ends_date: "",
14
+ event_ends_month: "",
15
+ divider: null,
16
+ event_content: null,
17
+ event_category: "Levo",
18
+ event_sub_content: null,
19
+ event_title: "#WeAreLevo",
20
+ event_description: "A collaborative event with industries top performers.",
21
+ };
22
+
23
+ const MULTI_DAY_EVENT = {
24
+ event: null,
25
+ event_timing: null,
26
+ event_starts: null,
27
+ event_starts_date: "2025-11-23T18:30:00.000Z",
28
+ event_starts_month: "2025-11-23T18:30:00.000Z",
29
+ event_to: "to",
30
+ event_ends: null,
31
+ event_ends_date: "2025-11-30T18:30:00.000Z",
32
+ event_ends_month: "2025-11-30T18:30:00.000Z",
33
+ divider: null,
34
+ event_content: null,
35
+ event_category: "Levo",
36
+ event_sub_content: null,
37
+ event_title: "#WeAreLevo",
38
+ event_description: "A collaborative event with industries top performers.",
39
+ };
40
+
41
+ const DEFAULT_CONTENT = {
42
+ layout: null,
43
+ container: null,
44
+ header: null,
45
+ title: "Upcoming Events",
46
+ description: "Showing 16 events out of Total 16 Events",
47
+ content: null,
48
+ listing_section_levoGroup: null,
49
+ listing_section: Array(ITEMS_COUNT)
50
+ .fill(0)
51
+ .map((v, index) => {
52
+ const basePayload = index % 2 !== 0 ? SINGLE_DAY_EVENT : MULTI_DAY_EVENT;
53
+ const randomStartDate = `2025-10-${Math.floor(Math.random() * 18) + 10}T18:30:00.000Z`;
54
+ const randomEndDate = `2025-10-${Math.floor(Math.random() * 18) + 10}T18:30:00.000Z`;
55
+
56
+ return {
57
+ ...basePayload,
58
+ ...(index % 2 !== 0
59
+ ? { event_starts_date: randomStartDate }
60
+ : {
61
+ event_starts_date: randomStartDate,
62
+ event_ends_date: randomEndDate,
63
+ }),
64
+ };
65
+ }),
66
+ calendar_section: null,
67
+ calendar_header: null,
68
+ calendar_title: "Events Calendar",
69
+ calendar_description:
70
+ "You can use the calendar to find the desired events and get the required information easily",
71
+ calendar: null,
72
+ calendar_cta: "View all events",
73
+ };
74
+
75
+ export type ICalendar1Content = typeof DEFAULT_CONTENT;
76
+
77
+ export const Calendar1: IBlock = {
78
+ category_id: "calendar",
79
+ title: "Calender 1",
80
+ key: "calendar-1",
81
+ version: "v1",
82
+ content_schema: [
83
+ {
84
+ key: "layout",
85
+ label: "Layout",
86
+ field_interface: "LayoutWidget",
87
+ },
88
+ {
89
+ key: "container",
90
+ label: "Container",
91
+ field_interface: "LayoutWidget",
92
+ },
93
+ {
94
+ key: "header",
95
+ label: "Header",
96
+ field_interface: "BoxWidget",
97
+ },
98
+ {
99
+ key: "title",
100
+ label: "Title",
101
+ field_interface: "HeadingWidget",
102
+ },
103
+ {
104
+ key: "description",
105
+ label: "Description",
106
+ field_interface: "TypographyWidget",
107
+ },
108
+ {
109
+ key: "content",
110
+ label: "Content",
111
+ field_interface: "BoxWidget",
112
+ },
113
+ {
114
+ key: "listing_section",
115
+ label: "Listing Section",
116
+ field_interface: "BoxWidget",
117
+ kind: "group",
118
+ fields: [
119
+ {
120
+ key: "event",
121
+ label: "Event",
122
+ field_interface: "BoxWidget",
123
+ },
124
+ {
125
+ key: "event_timing",
126
+ label: "Event Timing",
127
+ field_interface: "BoxWidget",
128
+ },
129
+ {
130
+ key: "event_starts",
131
+ label: "Event Starts",
132
+ field_interface: "BoxWidget",
133
+ },
134
+ {
135
+ key: "event_starts_date",
136
+ label: "Event Starts Date",
137
+ field_interface: "HeadingWidget",
138
+ },
139
+ {
140
+ key: "event_starts_month",
141
+ label: "Event Starts Month",
142
+ field_interface: "TypographyWidget",
143
+ },
144
+ {
145
+ key: "event_to",
146
+ label: "Event To",
147
+ field_interface: "TypographyWidget",
148
+ },
149
+ {
150
+ key: "event_ends",
151
+ label: "Event Ends",
152
+ field_interface: "BoxWidget",
153
+ },
154
+ {
155
+ key: "event_ends_date",
156
+ label: "Event Ends Date",
157
+ field_interface: "HeadingWidget",
158
+ },
159
+ {
160
+ key: "event_ends_month",
161
+ label: "Event Ends Month",
162
+ field_interface: "TypographyWidget",
163
+ },
164
+ {
165
+ key: "divider",
166
+ label: "Divider",
167
+ field_interface: "BoxWidget",
168
+ },
169
+ {
170
+ key: "event_content",
171
+ label: "Event Content",
172
+ field_interface: "BoxWidget",
173
+ },
174
+ {
175
+ key: "event_category",
176
+ label: "Event Category",
177
+ field_interface: "HeadingWidget",
178
+ },
179
+ {
180
+ key: "event_sub_content",
181
+ label: "Event Sub Content",
182
+ field_interface: "BoxWidget",
183
+ },
184
+ {
185
+ key: "event_title",
186
+ label: "Event Title",
187
+ field_interface: "HeadingWidget",
188
+ },
189
+ {
190
+ key: "event_description",
191
+ label: "Event Description",
192
+ field_interface: "TypographyWidget",
193
+ },
194
+ ],
195
+ },
196
+
197
+ {
198
+ key: "calendar_section",
199
+ label: "Calendar Section",
200
+ field_interface: "BoxWidget",
201
+ },
202
+ {
203
+ key: "calendar_header",
204
+ label: "Calendar Header",
205
+ field_interface: "BoxWidget",
206
+ },
207
+ {
208
+ key: "calendar_title",
209
+ label: "Calendar Title",
210
+ field_interface: "HeadingWidget",
211
+ },
212
+ {
213
+ key: "calendar_description",
214
+ label: "Calendar Description",
215
+ field_interface: "TypographyWidget",
216
+ },
217
+ {
218
+ key: "calendar",
219
+ label: "Calendar",
220
+ field_interface: "BoxWidget",
221
+ },
222
+ {
223
+ key: "calendar_cta",
224
+ label: "Calendar Cta",
225
+ field_interface: "ButtonWidget",
226
+ },
227
+ ],
228
+ layouts: [
229
+ {
230
+ key: "default",
231
+ title: "Default",
232
+ styles: {
233
+ layout: {
234
+ width: "100%",
235
+ "padding-top": "10xl",
236
+ "padding-bottom": "10xl",
237
+ "padding-right": "8xl",
238
+ "padding-left": "8xl",
239
+ tablet: {
240
+ "padding-top": "5xl",
241
+ "padding-bottom": "5xl",
242
+ "padding-right": "5xl",
243
+ "padding-left": "5xl",
244
+ },
245
+ mobile: {
246
+ "padding-top": "2xl",
247
+ "padding-bottom": "2xl",
248
+ "padding-right": "2xl",
249
+ "padding-left": "2xl",
250
+ },
251
+ },
252
+ container: {
253
+ width: "100%",
254
+ display: "flex",
255
+ "flex-direction": "column",
256
+ "row-gap": "xl",
257
+ tablet: {
258
+ "row-gap": "3xl",
259
+ },
260
+ mobile: {
261
+ "row-gap": "4xl",
262
+ },
263
+ },
264
+ header: {
265
+ display: "flex",
266
+ "flex-direction": "column",
267
+ width: "100%",
268
+ "row-gap": "none",
269
+ },
270
+ title: {},
271
+ description: {},
272
+ content: {
273
+ display: "flex",
274
+ "column-gap": "4xl",
275
+ width: "100%",
276
+ mobile: {
277
+ "flex-direction": "column-reverse",
278
+ "row-gap": "4xl",
279
+ },
280
+ },
281
+ listing_section_levoGroup: {
282
+ display: "flex",
283
+ "flex-direction": "column",
284
+ width: "100%",
285
+ flex: "1",
286
+ "max-height": "500px",
287
+ "overflow-y": "auto",
288
+ "padding-right": "sm",
289
+ "row-gap": "7xl",
290
+ "padding-bottom": "sm",
291
+ },
292
+ listing_section: Array(ITEMS_COUNT)
293
+ .fill(0)
294
+ .map((v) => {
295
+ return {
296
+ event: {
297
+ width: "100%",
298
+ display: "flex",
299
+ "padding-top": "3xl",
300
+ "padding-right": "3xl",
301
+ "padding-bottom": "3xl",
302
+ "padding-left": "xl",
303
+ "border-style": "solid",
304
+ "border-right-width": "0px",
305
+ "border-bottom-width": "0px",
306
+ "border-top-width": "0px",
307
+ "border-left-width": "8px",
308
+ "border-color": "brand",
309
+ "border-radius": "lg",
310
+ "box-shadow": {
311
+ x: 0,
312
+ y: 4,
313
+ blur: 84,
314
+ spread: 0,
315
+ color: "oklch(0.5193 0.0628 284.0011 / 0.13)",
316
+ opacity: 13,
317
+ },
318
+ mobile: {
319
+ "flex-direction": "column",
320
+ "row-gap": "md",
321
+ },
322
+ },
323
+ event_timing: {
324
+ display: "flex",
325
+ "flex-direction": "column",
326
+ "min-width": "95px",
327
+ "justify-content": "center",
328
+ "align-items": "center",
329
+ mobile: {
330
+ "flex-direction": "row",
331
+ "justify-content": "flex-start",
332
+ "column-gap": "xs",
333
+ },
334
+ },
335
+ event_to: {
336
+ "font-weight": 600,
337
+ "margin-top": "4xs",
338
+ "margin-bottom": "4xs",
339
+ mobile: {
340
+ "padding-right": "none",
341
+ "margin-right": "xs",
342
+ },
343
+ },
344
+ event_starts: {
345
+ display: "flex",
346
+ "flex-direction": "column",
347
+ "margin-bottom": "3xs",
348
+ mobile: {
349
+ "margin-bottom": "none",
350
+ "align-items": "flex-start",
351
+ },
352
+ },
353
+ event_starts_date: {
354
+ "text-align": "center",
355
+ },
356
+ event_starts_month: {
357
+ "text-align": "center",
358
+ "font-weight": 600,
359
+ },
360
+ event_ends_date: {
361
+ "text-align": "center",
362
+ },
363
+ event_ends_month: {
364
+ "text-align": "center",
365
+ "font-weight": 600,
366
+ },
367
+ divider: {
368
+ "margin-left": "2xs",
369
+ "margin-right": "3xl",
370
+ "border-style": "solid",
371
+ "border-top-width": "0px",
372
+ "border-right-width": "0px",
373
+ "border-bottom-width": "0px",
374
+ "border-left-width": "1px",
375
+ mobile: {
376
+ display: "none",
377
+ },
378
+ },
379
+ event_description: {
380
+ "font-weight": 500,
381
+ mobile: {
382
+ "font-size": "sm",
383
+ },
384
+ },
385
+ event_content: {
386
+ "align-self": "center",
387
+ width: "100%",
388
+ display: "flex",
389
+ "flex-direction": "column",
390
+ "row-gap": "md",
391
+ },
392
+ event_category: {
393
+ "font-weight": 800,
394
+ color: "brand",
395
+ },
396
+ event_sub_content: {
397
+ display: "flex",
398
+ "flex-direction": "column",
399
+ "row-gap": "2xs",
400
+ },
401
+ event_ends: {
402
+ display: "flex",
403
+ "flex-direction": "column",
404
+ "margin-bottom": "3xs",
405
+ mobile: {
406
+ "margin-bottom": "none",
407
+ "align-items": "flex-start",
408
+ },
409
+ },
410
+ };
411
+ }),
412
+ calendar_section: {
413
+ width: "100%",
414
+ display: "flex",
415
+ flex: "1",
416
+ "max-width": "320px",
417
+ "flex-direction": "column",
418
+ "row-gap": "lg",
419
+ },
420
+ calendar_header: {
421
+ display: "flex",
422
+ "flex-direction": "column",
423
+ "row-gap": "2xs",
424
+ mobile: {
425
+ "text-align": "center",
426
+ },
427
+ },
428
+ calendar_title: {},
429
+ calendar_description: {},
430
+ calendar: {
431
+ display: "flex",
432
+ "justify-content": "center",
433
+ "align-items": "center",
434
+ "box-shadow": {
435
+ x: 18.3127,
436
+ y: 20.7116,
437
+ blur: 83.2951,
438
+ spread: 0,
439
+ color: "oklch(0.928 0 0)",
440
+ opacity: 100,
441
+ },
442
+ "border-radius": "base",
443
+ "padding-top": "md",
444
+ "padding-right": "md",
445
+ "padding-bottom": "md",
446
+ "padding-left": "md",
447
+ "border-style": "solid",
448
+ "border-width": "1px",
449
+ "border-color": "oklch(0.9401 0 0)",
450
+ },
451
+ calendar_cta: {},
452
+ },
453
+ content: DEFAULT_CONTENT,
454
+ config: {
455
+ title: {
456
+ heading: {
457
+ level: "2",
458
+ },
459
+ selectedVariants: {
460
+ Heading_Level: "H2",
461
+ },
462
+ },
463
+ description: {
464
+ selectedVariants: {
465
+ Typography_Variants: "Body",
466
+ },
467
+ },
468
+ calendar_title: {
469
+ heading: {
470
+ level: "3",
471
+ },
472
+ selectedVariants: {
473
+ Heading_Level: "H5",
474
+ },
475
+ },
476
+ calendar_description: {
477
+ selectedVariants: {
478
+ Typography_Variants: "Small",
479
+ },
480
+ },
481
+ listing_section: Array(ITEMS_COUNT)
482
+ .fill(0)
483
+ .map(() => {
484
+ return {
485
+ event_to: {
486
+ selectedVariants: {
487
+ Typography_Variants: "Small",
488
+ },
489
+ },
490
+ event_ends_month: {
491
+ selectedVariants: {
492
+ Typography_Variants: "Body",
493
+ },
494
+ },
495
+ event_starts_month: {
496
+ selectedVariants: {
497
+ Typography_Variants: "Body",
498
+ },
499
+ },
500
+ event_starts_date: {
501
+ selectedVariants: {
502
+ Heading_Level: "H2",
503
+ },
504
+ heading: {
505
+ level: "4",
506
+ },
507
+ },
508
+ event_ends_date: {
509
+ selectedVariants: {
510
+ Heading_Level: "H2",
511
+ },
512
+ heading: {
513
+ level: "4",
514
+ },
515
+ },
516
+ event_category: {
517
+ heading: {
518
+ level: "4",
519
+ },
520
+ selectedVariants: {
521
+ Heading_Level: "H6",
522
+ },
523
+ },
524
+ event_title: {
525
+ heading: {
526
+ level: "3",
527
+ },
528
+ selectedVariants: {
529
+ Heading_Level: "H5",
530
+ },
531
+ },
532
+ };
533
+ }),
534
+ },
535
+ },
536
+ ],
537
+ };