@revenuecat/purchases-ui-js 2.0.2 → 2.0.3

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 (127) hide show
  1. package/dist/components/button/ButtonNode.stories.svelte +66 -102
  2. package/dist/components/button/ButtonNode.svelte +2 -27
  3. package/dist/components/footer/Footer.stories.svelte +112 -102
  4. package/dist/components/footer/Footer.svelte +8 -4
  5. package/dist/components/icon/Icon.stories.svelte +100 -0
  6. package/dist/components/icon/Icon.stories.svelte.d.ts +19 -0
  7. package/dist/components/icon/Icon.svelte +73 -0
  8. package/dist/components/icon/Icon.svelte.d.ts +4 -0
  9. package/dist/components/image/ClipPath.svelte +49 -0
  10. package/dist/components/image/ClipPath.svelte.d.ts +9 -0
  11. package/dist/components/image/Image.stories.svelte +83 -188
  12. package/dist/components/image/Image.svelte +152 -136
  13. package/dist/components/image/Image.svelte.d.ts +1 -1
  14. package/dist/components/image/Overlay.svelte +36 -0
  15. package/dist/components/image/Overlay.svelte.d.ts +8 -0
  16. package/dist/components/package/Package.stories.svelte +10 -21
  17. package/dist/components/package/Package.svelte +8 -35
  18. package/dist/components/paywall/Node.svelte +27 -28
  19. package/dist/components/paywall/Node.svelte.d.ts +3 -6
  20. package/dist/components/paywall/Paywall.stories.svelte +36 -140
  21. package/dist/components/paywall/Paywall.svelte +22 -6
  22. package/dist/components/paywall/Paywall.svelte.d.ts +3 -2
  23. package/dist/components/paywall/fixtures/override-paywall.d.ts +2 -0
  24. package/dist/components/paywall/fixtures/override-paywall.js +1310 -0
  25. package/dist/components/paywall/fixtures/stack-paywall.d.ts +2 -0
  26. package/dist/components/paywall/fixtures/stack-paywall.js +5223 -0
  27. package/dist/components/paywall/fixtures/variables.d.ts +261 -0
  28. package/dist/components/paywall/fixtures/variables.js +262 -0
  29. package/dist/components/purchase-button/PurchaseButton.stories.svelte +10 -21
  30. package/dist/components/purchase-button/PurchaseButton.svelte +2 -27
  31. package/dist/components/stack/Stack.stories.svelte +2354 -978
  32. package/dist/components/stack/Stack.svelte +111 -134
  33. package/dist/components/stack/Stack.svelte.d.ts +6 -2
  34. package/dist/components/stack/stack-utils.d.ts +10 -30
  35. package/dist/components/stack/stack-utils.js +77 -255
  36. package/dist/components/text/Text.svelte +3 -37
  37. package/dist/components/text/Text.svelte.d.ts +1 -2
  38. package/dist/components/text/TextNode.stories.svelte +10 -36
  39. package/dist/components/text/TextNode.svelte +25 -28
  40. package/dist/components/text/TextNode.svelte.d.ts +1 -1
  41. package/dist/components/text/text-utils.d.ts +4 -9
  42. package/dist/components/text/text-utils.js +32 -117
  43. package/dist/components/timeline/Timeline.stories.svelte +640 -251
  44. package/dist/components/timeline/Timeline.svelte +42 -28
  45. package/dist/components/timeline/Timeline.svelte.d.ts +1 -1
  46. package/dist/components/timeline/TimelineItem.svelte +80 -112
  47. package/dist/components/timeline/TimelineItem.svelte.d.ts +6 -2
  48. package/dist/components/timeline/timeline-utils.d.ts +24 -6
  49. package/dist/components/timeline/timeline-utils.js +21 -113
  50. package/dist/data/entities.d.ts +19 -135
  51. package/dist/index.d.ts +2 -1
  52. package/dist/index.js +2 -1
  53. package/dist/stores/color-mode.d.ts +1 -1
  54. package/dist/stores/paywall.d.ts +5 -2
  55. package/dist/stores/selected.d.ts +5 -0
  56. package/dist/stores/selected.js +12 -0
  57. package/dist/stores/variables.d.ts +1 -1
  58. package/dist/stores/variables.js +0 -1
  59. package/dist/stories/component-decorator.d.ts +2 -0
  60. package/dist/stories/component-decorator.js +12 -0
  61. package/dist/stories/fixtures.d.ts +5 -3
  62. package/dist/stories/fixtures.js +5214 -4422
  63. package/dist/stories/paywall-decorator.js +6 -0
  64. package/dist/stories/variables-decorator.d.ts +1 -1
  65. package/dist/stories/viewport-decorator.d.ts +2 -0
  66. package/dist/stories/viewport-decorator.js +8 -0
  67. package/dist/stories/viewport-wrapper.svelte +53 -0
  68. package/dist/stories/viewport-wrapper.svelte.d.ts +10 -0
  69. package/dist/stories/with-layout.d.ts +2 -10
  70. package/dist/stories/with-layout.js +3 -5
  71. package/dist/types/alignment.d.ts +5 -3
  72. package/dist/types/background.d.ts +6 -5
  73. package/dist/types/base.d.ts +7 -0
  74. package/dist/types/base.js +1 -0
  75. package/dist/types/colors.d.ts +4 -4
  76. package/dist/types/component.d.ts +6 -2
  77. package/dist/types/components/button.d.ts +4 -1
  78. package/dist/types/components/footer.d.ts +2 -1
  79. package/dist/types/components/icon.d.ts +28 -0
  80. package/dist/types/components/icon.js +1 -0
  81. package/dist/types/components/image.d.ts +20 -0
  82. package/dist/types/components/image.js +1 -0
  83. package/dist/types/components/package.d.ts +2 -1
  84. package/dist/types/components/purchase-button.d.ts +2 -1
  85. package/dist/types/components/stack.d.ts +32 -0
  86. package/dist/types/components/stack.js +1 -0
  87. package/dist/types/components/text.d.ts +20 -0
  88. package/dist/types/components/text.js +1 -0
  89. package/dist/types/components/timeline.d.ts +35 -0
  90. package/dist/types/components/timeline.js +1 -0
  91. package/dist/types/localization.d.ts +2 -1
  92. package/dist/types/media.d.ts +4 -3
  93. package/dist/types/overrides.d.ts +48 -0
  94. package/dist/types/overrides.js +1 -0
  95. package/dist/types/variables.d.ts +13 -0
  96. package/dist/types/variables.js +10 -0
  97. package/dist/types.d.ts +17 -9
  98. package/dist/ui/atoms/typography.stories.svelte +1 -27
  99. package/dist/ui/molecules/button.stories.svelte +3 -8
  100. package/dist/ui/theme/colors.d.ts +0 -6
  101. package/dist/ui/theme/colors.js +1 -1
  102. package/dist/ui/theme/text.d.ts +3 -4
  103. package/dist/ui/theme/utils.d.ts +0 -10
  104. package/dist/ui/theme/utils.js +5 -5
  105. package/dist/utils/background-utils.d.ts +4 -0
  106. package/dist/utils/background-utils.js +39 -0
  107. package/dist/utils/base-utils.d.ts +18 -0
  108. package/dist/utils/base-utils.js +124 -0
  109. package/dist/utils/constants.d.ts +2 -2
  110. package/dist/utils/constants.js +6 -1
  111. package/dist/utils/font-utils.d.ts +4 -0
  112. package/dist/utils/font-utils.js +47 -0
  113. package/dist/utils/style-utils.d.ts +7 -120
  114. package/dist/utils/style-utils.js +22 -302
  115. package/dist/utils/variable-utils.d.ts +1 -22
  116. package/dist/utils/variable-utils.js +28 -24
  117. package/dist/web-components/index.css +1 -1
  118. package/dist/web-components/index.js +1323 -895
  119. package/package.json +34 -24
  120. package/dist/components/button/button-utils.d.ts +0 -2
  121. package/dist/components/button/button-utils.js +0 -19
  122. package/dist/components/image/image-utils.d.ts +0 -19
  123. package/dist/components/image/image-utils.js +0 -33
  124. package/dist/components/purchase-button/purchase-button-utils.d.ts +0 -2
  125. package/dist/components/purchase-button/purchase-button-utils.js +0 -20
  126. package/dist/stories/meta-templates.d.ts +0 -12
  127. package/dist/stories/meta-templates.js +0 -155
@@ -0,0 +1,1310 @@
1
+ export const OVERRIDE_PAYWALL = {
2
+ default_locale: "en_US",
3
+ components_localizations: {
4
+ en_US: {
5
+ "4Eth3BaYlR": "Override",
6
+ GnVIFNZ7SH: "Override",
7
+ L9SBKPm8In: "Title",
8
+ Oh9hnJ4Wxd: "Override",
9
+ YnPCArCDRU: "Title",
10
+ acLl72hstT: "Override",
11
+ cGjf4z3hg9: "Description",
12
+ jiq4zcSVfC: "Override",
13
+ lFLh8f_wh9: "Description",
14
+ rojZT54A5y: "Text",
15
+ sGuwfcoB4A: "Override",
16
+ xzLtixuCEk: "Text",
17
+ },
18
+ },
19
+ components_config: {
20
+ base: {
21
+ background: {
22
+ type: "color",
23
+ value: {
24
+ light: {
25
+ type: "hex",
26
+ value: "#ffffffff",
27
+ },
28
+ },
29
+ },
30
+ stack: {
31
+ background: {
32
+ type: "color",
33
+ value: {
34
+ light: {
35
+ type: "hex",
36
+ value: "#ffffff",
37
+ },
38
+ },
39
+ },
40
+ background_color: null,
41
+ badge: null,
42
+ border: null,
43
+ components: [
44
+ {
45
+ apple_promo_offer_product_code: null,
46
+ id: "OUhgGvl6AM",
47
+ is_selected_by_default: false,
48
+ name: "",
49
+ package_id: "$rc_monthly",
50
+ stack: {
51
+ background: null,
52
+ background_color: null,
53
+ badge: null,
54
+ border: null,
55
+ components: [
56
+ {
57
+ background: null,
58
+ background_color: null,
59
+ badge: null,
60
+ border: null,
61
+ components: [
62
+ {
63
+ background_color: null,
64
+ color: {
65
+ light: {
66
+ type: "hex",
67
+ value: "#000000ff",
68
+ },
69
+ },
70
+ font_name: null,
71
+ font_size: 14,
72
+ font_weight: "regular",
73
+ font_weight_int: 400,
74
+ horizontal_alignment: "leading",
75
+ id: "2l4cpkhPVv",
76
+ margin: {
77
+ bottom: 0,
78
+ leading: 0,
79
+ top: 0,
80
+ trailing: 0,
81
+ },
82
+ name: "",
83
+ overrides: [
84
+ {
85
+ conditions: [
86
+ {
87
+ type: "selected",
88
+ },
89
+ ],
90
+ properties: {
91
+ color: {
92
+ light: {
93
+ type: "hex",
94
+ value: "#00ff00ff",
95
+ },
96
+ },
97
+ text_lid: "4Eth3BaYlR",
98
+ },
99
+ },
100
+ ],
101
+ padding: {
102
+ bottom: 0,
103
+ leading: 0,
104
+ top: 0,
105
+ trailing: 0,
106
+ },
107
+ size: {
108
+ height: {
109
+ type: "fit",
110
+ value: null,
111
+ },
112
+ width: {
113
+ type: "fit",
114
+ value: null,
115
+ },
116
+ },
117
+ text_lid: "rojZT54A5y",
118
+ type: "text",
119
+ },
120
+ {
121
+ base_url: "https://icons.pawwalls.com/icons",
122
+ color: {
123
+ light: {
124
+ type: "hex",
125
+ value: "#000000ff",
126
+ },
127
+ },
128
+ formats: {
129
+ heic: "icons.heic",
130
+ png: "icons.png",
131
+ svg: "icons.svg",
132
+ webp: "icons.webp",
133
+ },
134
+ icon_background: null,
135
+ icon_name: "icons",
136
+ id: "TifzTDeaOv",
137
+ margin: {
138
+ bottom: 0,
139
+ leading: 0,
140
+ top: 0,
141
+ trailing: 0,
142
+ },
143
+ name: "",
144
+ overrides: [
145
+ {
146
+ conditions: [
147
+ {
148
+ type: "selected",
149
+ },
150
+ ],
151
+ properties: {
152
+ color: {
153
+ light: {
154
+ type: "hex",
155
+ value: "#00ff00ff",
156
+ },
157
+ },
158
+ },
159
+ },
160
+ ],
161
+ padding: {
162
+ bottom: 0,
163
+ leading: 0,
164
+ top: 0,
165
+ trailing: 0,
166
+ },
167
+ size: {
168
+ height: {
169
+ type: "fixed",
170
+ value: 26,
171
+ },
172
+ width: {
173
+ type: "fixed",
174
+ value: 26,
175
+ },
176
+ },
177
+ type: "icon",
178
+ },
179
+ {
180
+ border: null,
181
+ color_overlay: null,
182
+ fit_mode: "fit",
183
+ id: "h3u-5EErFt",
184
+ margin: {
185
+ bottom: 0,
186
+ leading: 0,
187
+ top: 0,
188
+ trailing: 0,
189
+ },
190
+ mask_shape: {
191
+ corners: {
192
+ bottom_leading: 0,
193
+ bottom_trailing: 0,
194
+ top_leading: 0,
195
+ top_trailing: 0,
196
+ },
197
+ type: "rectangle",
198
+ },
199
+ name: "",
200
+ overrides: [
201
+ {
202
+ conditions: [
203
+ {
204
+ type: "selected",
205
+ },
206
+ ],
207
+ properties: {
208
+ color_overlay: {
209
+ light: {
210
+ type: "hex",
211
+ value: "#00ff0040",
212
+ },
213
+ },
214
+ },
215
+ },
216
+ ],
217
+ padding: {
218
+ bottom: 0,
219
+ leading: 0,
220
+ top: 0,
221
+ trailing: 0,
222
+ },
223
+ shadow: null,
224
+ size: {
225
+ height: {
226
+ type: "fit",
227
+ value: null,
228
+ },
229
+ width: {
230
+ type: "fill",
231
+ value: null,
232
+ },
233
+ },
234
+ source: {
235
+ light: {
236
+ heic: "https://assets.pawwalls.com/1151049_1757927852.heic",
237
+ heic_low_res: "https://assets.pawwalls.com/1151049_low_res_1757927852.heic",
238
+ height: 400,
239
+ original: "https://assets.pawwalls.com/1151049_1757927852.png",
240
+ webp: "https://assets.pawwalls.com/1151049_1757927852.webp",
241
+ webp_low_res: "https://assets.pawwalls.com/1151049_low_res_1757927852.webp",
242
+ width: 600,
243
+ },
244
+ },
245
+ type: "image",
246
+ },
247
+ ],
248
+ dimension: {
249
+ alignment: "center",
250
+ distribution: "start",
251
+ type: "vertical",
252
+ },
253
+ id: "rbOB_R2tjQ",
254
+ margin: {
255
+ bottom: 0,
256
+ leading: 0,
257
+ top: 0,
258
+ trailing: 0,
259
+ },
260
+ name: "",
261
+ overrides: [
262
+ {
263
+ conditions: [
264
+ {
265
+ type: "selected",
266
+ },
267
+ ],
268
+ properties: {
269
+ border: {
270
+ color: {
271
+ light: {
272
+ type: "hex",
273
+ value: "#00ff00ff",
274
+ },
275
+ },
276
+ width: 1,
277
+ },
278
+ },
279
+ },
280
+ ],
281
+ padding: {
282
+ bottom: 0,
283
+ leading: 0,
284
+ top: 0,
285
+ trailing: 0,
286
+ },
287
+ shadow: null,
288
+ shape: {
289
+ corners: {
290
+ bottom_leading: 0,
291
+ bottom_trailing: 0,
292
+ top_leading: 0,
293
+ top_trailing: 0,
294
+ },
295
+ type: "rectangle",
296
+ },
297
+ size: {
298
+ height: {
299
+ type: "fit",
300
+ value: null,
301
+ },
302
+ width: {
303
+ type: "fill",
304
+ value: null,
305
+ },
306
+ },
307
+ spacing: 8,
308
+ type: "stack",
309
+ },
310
+ {
311
+ column_gutter: 0,
312
+ icon_alignment: "title",
313
+ id: "tPAbDGhnCV",
314
+ item_spacing: 0,
315
+ items: [
316
+ {
317
+ connector: {
318
+ color: {
319
+ light: {
320
+ type: "hex",
321
+ value: "#000000ff",
322
+ },
323
+ },
324
+ margin: {
325
+ bottom: 0,
326
+ top: 0,
327
+ },
328
+ width: 8,
329
+ },
330
+ description: {
331
+ background_color: null,
332
+ color: {
333
+ light: {
334
+ type: "hex",
335
+ value: "#000000ff",
336
+ },
337
+ },
338
+ font_name: null,
339
+ font_size: 14,
340
+ font_weight: "regular",
341
+ font_weight_int: 400,
342
+ horizontal_alignment: "leading",
343
+ id: "pXdEpBBb78",
344
+ margin: {
345
+ bottom: 0,
346
+ leading: 0,
347
+ top: 0,
348
+ trailing: 0,
349
+ },
350
+ name: "Description",
351
+ overrides: [
352
+ {
353
+ conditions: [
354
+ {
355
+ type: "selected",
356
+ },
357
+ ],
358
+ properties: {
359
+ color: {
360
+ light: {
361
+ type: "hex",
362
+ value: "#00ff00ff",
363
+ },
364
+ },
365
+ text_lid: "jiq4zcSVfC",
366
+ },
367
+ },
368
+ ],
369
+ padding: {
370
+ bottom: 0,
371
+ leading: 0,
372
+ top: 0,
373
+ trailing: 0,
374
+ },
375
+ size: {
376
+ height: {
377
+ type: "fit",
378
+ value: null,
379
+ },
380
+ width: {
381
+ type: "fit",
382
+ value: null,
383
+ },
384
+ },
385
+ text_lid: "cGjf4z3hg9",
386
+ type: "text",
387
+ },
388
+ icon: {
389
+ base_url: "https://icons.pawwalls.com/icons",
390
+ color: {
391
+ light: {
392
+ type: "hex",
393
+ value: "#ffffffff",
394
+ },
395
+ },
396
+ formats: {
397
+ heic: "filled-lock.heic",
398
+ png: "filled-lock.png",
399
+ svg: "filled-lock.svg",
400
+ webp: "filled-lock.webp",
401
+ },
402
+ icon_background: {
403
+ color: {
404
+ light: {
405
+ type: "hex",
406
+ value: "#000000ff",
407
+ },
408
+ },
409
+ shape: {
410
+ type: "circle",
411
+ },
412
+ },
413
+ icon_name: "filled-lock",
414
+ id: "NQ8HrGFark",
415
+ margin: {
416
+ bottom: 0,
417
+ leading: 0,
418
+ top: 0,
419
+ trailing: 0,
420
+ },
421
+ name: "Icon",
422
+ overrides: [
423
+ {
424
+ conditions: [
425
+ {
426
+ type: "selected",
427
+ },
428
+ ],
429
+ properties: {
430
+ icon_background: {
431
+ color: {
432
+ light: {
433
+ type: "hex",
434
+ value: "#00ff00ff",
435
+ },
436
+ },
437
+ shape: {
438
+ type: "circle",
439
+ },
440
+ },
441
+ },
442
+ },
443
+ ],
444
+ padding: {
445
+ bottom: 8,
446
+ leading: 8,
447
+ top: 8,
448
+ trailing: 8,
449
+ },
450
+ size: {
451
+ height: {
452
+ type: "fixed",
453
+ value: 32,
454
+ },
455
+ width: {
456
+ type: "fixed",
457
+ value: 32,
458
+ },
459
+ },
460
+ type: "icon",
461
+ },
462
+ id: "roU0TyJnam",
463
+ name: "First item",
464
+ overrides: [
465
+ {
466
+ conditions: [
467
+ {
468
+ type: "selected",
469
+ },
470
+ ],
471
+ properties: {
472
+ connector: {
473
+ color: {
474
+ light: {
475
+ type: "hex",
476
+ value: "#00ff00ff",
477
+ },
478
+ },
479
+ margin: {
480
+ bottom: 0,
481
+ top: 0,
482
+ },
483
+ width: 8,
484
+ },
485
+ },
486
+ },
487
+ ],
488
+ title: {
489
+ background_color: null,
490
+ color: {
491
+ light: {
492
+ type: "hex",
493
+ value: "#000000ff",
494
+ },
495
+ },
496
+ font_name: null,
497
+ font_size: 14,
498
+ font_weight: "regular",
499
+ font_weight_int: 400,
500
+ horizontal_alignment: "leading",
501
+ id: "mQnl5fQTg2",
502
+ margin: {
503
+ bottom: 0,
504
+ leading: 0,
505
+ top: 0,
506
+ trailing: 0,
507
+ },
508
+ name: "Title",
509
+ overrides: [
510
+ {
511
+ conditions: [
512
+ {
513
+ type: "selected",
514
+ },
515
+ ],
516
+ properties: {
517
+ color: {
518
+ light: {
519
+ type: "hex",
520
+ value: "#00ff00ff",
521
+ },
522
+ },
523
+ text_lid: "sGuwfcoB4A",
524
+ },
525
+ },
526
+ ],
527
+ padding: {
528
+ bottom: 0,
529
+ leading: 0,
530
+ top: 0,
531
+ trailing: 0,
532
+ },
533
+ size: {
534
+ height: {
535
+ type: "fit",
536
+ value: null,
537
+ },
538
+ width: {
539
+ type: "fit",
540
+ value: null,
541
+ },
542
+ },
543
+ text_lid: "YnPCArCDRU",
544
+ type: "text",
545
+ },
546
+ type: "timeline_item",
547
+ },
548
+ ],
549
+ margin: {
550
+ bottom: 0,
551
+ leading: 0,
552
+ top: 0,
553
+ trailing: 0,
554
+ },
555
+ name: "",
556
+ overrides: [
557
+ {
558
+ conditions: [
559
+ {
560
+ type: "selected",
561
+ },
562
+ ],
563
+ properties: {
564
+ column_gutter: 16,
565
+ item_spacing: 16,
566
+ text_spacing: 16,
567
+ },
568
+ },
569
+ ],
570
+ padding: {
571
+ bottom: 0,
572
+ leading: 0,
573
+ top: 0,
574
+ trailing: 0,
575
+ },
576
+ size: {
577
+ height: {
578
+ type: "fit",
579
+ value: null,
580
+ },
581
+ width: {
582
+ type: "fit",
583
+ value: null,
584
+ },
585
+ },
586
+ text_spacing: 0,
587
+ type: "timeline",
588
+ },
589
+ ],
590
+ dimension: {
591
+ alignment: "center",
592
+ distribution: "start",
593
+ type: "vertical",
594
+ },
595
+ id: "om5cNcm8Kr",
596
+ margin: {
597
+ bottom: 8,
598
+ leading: 8,
599
+ top: 8,
600
+ trailing: 8,
601
+ },
602
+ name: "",
603
+ overrides: [
604
+ {
605
+ conditions: [
606
+ {
607
+ type: "selected",
608
+ },
609
+ ],
610
+ properties: {
611
+ border: {
612
+ color: {
613
+ light: {
614
+ type: "hex",
615
+ value: "#00ff00ff",
616
+ },
617
+ },
618
+ width: 1,
619
+ },
620
+ },
621
+ },
622
+ ],
623
+ padding: {
624
+ bottom: 8,
625
+ leading: 8,
626
+ top: 8,
627
+ trailing: 8,
628
+ },
629
+ shadow: null,
630
+ shape: {
631
+ corners: {
632
+ bottom_leading: 8,
633
+ bottom_trailing: 8,
634
+ top_leading: 8,
635
+ top_trailing: 8,
636
+ },
637
+ type: "rectangle",
638
+ },
639
+ size: {
640
+ height: {
641
+ type: "fit",
642
+ value: null,
643
+ },
644
+ width: {
645
+ type: "fill",
646
+ value: null,
647
+ },
648
+ },
649
+ spacing: 8,
650
+ type: "stack",
651
+ },
652
+ type: "package",
653
+ },
654
+ {
655
+ apple_promo_offer_product_code: null,
656
+ id: "oZhcAWiZAF",
657
+ is_selected_by_default: true,
658
+ name: "",
659
+ package_id: "$rc_annual",
660
+ stack: {
661
+ background: null,
662
+ background_color: null,
663
+ badge: null,
664
+ border: null,
665
+ components: [
666
+ {
667
+ background: null,
668
+ background_color: null,
669
+ badge: null,
670
+ border: null,
671
+ components: [
672
+ {
673
+ background_color: null,
674
+ color: {
675
+ light: {
676
+ type: "hex",
677
+ value: "#000000ff",
678
+ },
679
+ },
680
+ font_name: null,
681
+ font_size: 14,
682
+ font_weight: "regular",
683
+ font_weight_int: 400,
684
+ horizontal_alignment: "leading",
685
+ id: "DIOU5R9PGh",
686
+ margin: {
687
+ bottom: 0,
688
+ leading: 0,
689
+ top: 0,
690
+ trailing: 0,
691
+ },
692
+ name: "",
693
+ overrides: [
694
+ {
695
+ conditions: [
696
+ {
697
+ type: "selected",
698
+ },
699
+ ],
700
+ properties: {
701
+ color: {
702
+ light: {
703
+ type: "hex",
704
+ value: "#00ff00ff",
705
+ },
706
+ },
707
+ text_lid: "GnVIFNZ7SH",
708
+ },
709
+ },
710
+ ],
711
+ padding: {
712
+ bottom: 0,
713
+ leading: 0,
714
+ top: 0,
715
+ trailing: 0,
716
+ },
717
+ size: {
718
+ height: {
719
+ type: "fit",
720
+ value: null,
721
+ },
722
+ width: {
723
+ type: "fit",
724
+ value: null,
725
+ },
726
+ },
727
+ text_lid: "xzLtixuCEk",
728
+ type: "text",
729
+ },
730
+ {
731
+ base_url: "https://icons.pawwalls.com/icons",
732
+ color: {
733
+ light: {
734
+ type: "hex",
735
+ value: "#000000ff",
736
+ },
737
+ },
738
+ formats: {
739
+ heic: "icons.heic",
740
+ png: "icons.png",
741
+ svg: "icons.svg",
742
+ webp: "icons.webp",
743
+ },
744
+ icon_background: null,
745
+ icon_name: "icons",
746
+ id: "UTkTOKneOy",
747
+ margin: {
748
+ bottom: 0,
749
+ leading: 0,
750
+ top: 0,
751
+ trailing: 0,
752
+ },
753
+ name: "",
754
+ overrides: [
755
+ {
756
+ conditions: [
757
+ {
758
+ type: "selected",
759
+ },
760
+ ],
761
+ properties: {
762
+ color: {
763
+ light: {
764
+ type: "hex",
765
+ value: "#00ff00ff",
766
+ },
767
+ },
768
+ },
769
+ },
770
+ ],
771
+ padding: {
772
+ bottom: 0,
773
+ leading: 0,
774
+ top: 0,
775
+ trailing: 0,
776
+ },
777
+ size: {
778
+ height: {
779
+ type: "fixed",
780
+ value: 26,
781
+ },
782
+ width: {
783
+ type: "fixed",
784
+ value: 26,
785
+ },
786
+ },
787
+ type: "icon",
788
+ },
789
+ {
790
+ border: null,
791
+ color_overlay: null,
792
+ fit_mode: "fit",
793
+ id: "CcS4IbZZ4X",
794
+ margin: {
795
+ bottom: 0,
796
+ leading: 0,
797
+ top: 0,
798
+ trailing: 0,
799
+ },
800
+ mask_shape: {
801
+ corners: {
802
+ bottom_leading: 0,
803
+ bottom_trailing: 0,
804
+ top_leading: 0,
805
+ top_trailing: 0,
806
+ },
807
+ type: "rectangle",
808
+ },
809
+ name: "",
810
+ overrides: [
811
+ {
812
+ conditions: [
813
+ {
814
+ type: "selected",
815
+ },
816
+ ],
817
+ properties: {
818
+ color_overlay: {
819
+ light: {
820
+ type: "hex",
821
+ value: "#00ff0040",
822
+ },
823
+ },
824
+ },
825
+ },
826
+ ],
827
+ padding: {
828
+ bottom: 0,
829
+ leading: 0,
830
+ top: 0,
831
+ trailing: 0,
832
+ },
833
+ shadow: null,
834
+ size: {
835
+ height: {
836
+ type: "fit",
837
+ value: null,
838
+ },
839
+ width: {
840
+ type: "fill",
841
+ value: null,
842
+ },
843
+ },
844
+ source: {
845
+ light: {
846
+ heic: "https://assets.pawwalls.com/1151049_1757927852.heic",
847
+ heic_low_res: "https://assets.pawwalls.com/1151049_low_res_1757927852.heic",
848
+ height: 400,
849
+ original: "https://assets.pawwalls.com/1151049_1757927852.png",
850
+ webp: "https://assets.pawwalls.com/1151049_1757927852.webp",
851
+ webp_low_res: "https://assets.pawwalls.com/1151049_low_res_1757927852.webp",
852
+ width: 600,
853
+ },
854
+ },
855
+ type: "image",
856
+ },
857
+ ],
858
+ dimension: {
859
+ alignment: "center",
860
+ distribution: "start",
861
+ type: "vertical",
862
+ },
863
+ id: "Dt8Xq13R5h",
864
+ margin: {
865
+ bottom: 0,
866
+ leading: 0,
867
+ top: 0,
868
+ trailing: 0,
869
+ },
870
+ name: "",
871
+ overrides: [
872
+ {
873
+ conditions: [
874
+ {
875
+ type: "selected",
876
+ },
877
+ ],
878
+ properties: {
879
+ border: {
880
+ color: {
881
+ light: {
882
+ type: "hex",
883
+ value: "#00ff00ff",
884
+ },
885
+ },
886
+ width: 1,
887
+ },
888
+ },
889
+ },
890
+ ],
891
+ padding: {
892
+ bottom: 0,
893
+ leading: 0,
894
+ top: 0,
895
+ trailing: 0,
896
+ },
897
+ shadow: null,
898
+ shape: {
899
+ corners: {
900
+ bottom_leading: 0,
901
+ bottom_trailing: 0,
902
+ top_leading: 0,
903
+ top_trailing: 0,
904
+ },
905
+ type: "rectangle",
906
+ },
907
+ size: {
908
+ height: {
909
+ type: "fit",
910
+ value: null,
911
+ },
912
+ width: {
913
+ type: "fill",
914
+ value: null,
915
+ },
916
+ },
917
+ spacing: 8,
918
+ type: "stack",
919
+ },
920
+ {
921
+ column_gutter: 0,
922
+ icon_alignment: "title",
923
+ id: "M9pP3b0PlQ",
924
+ item_spacing: 0,
925
+ items: [
926
+ {
927
+ connector: {
928
+ color: {
929
+ light: {
930
+ type: "hex",
931
+ value: "#000000ff",
932
+ },
933
+ },
934
+ margin: {
935
+ bottom: 0,
936
+ top: 0,
937
+ },
938
+ width: 8,
939
+ },
940
+ description: {
941
+ background_color: null,
942
+ color: {
943
+ light: {
944
+ type: "hex",
945
+ value: "#000000ff",
946
+ },
947
+ },
948
+ font_name: null,
949
+ font_size: 14,
950
+ font_weight: "regular",
951
+ font_weight_int: 400,
952
+ horizontal_alignment: "leading",
953
+ id: "pOpkoznjj5",
954
+ margin: {
955
+ bottom: 0,
956
+ leading: 0,
957
+ top: 0,
958
+ trailing: 0,
959
+ },
960
+ name: "Description",
961
+ overrides: [
962
+ {
963
+ conditions: [
964
+ {
965
+ type: "selected",
966
+ },
967
+ ],
968
+ properties: {
969
+ color: {
970
+ light: {
971
+ type: "hex",
972
+ value: "#00ff00ff",
973
+ },
974
+ },
975
+ text_lid: "Oh9hnJ4Wxd",
976
+ },
977
+ },
978
+ ],
979
+ padding: {
980
+ bottom: 0,
981
+ leading: 0,
982
+ top: 0,
983
+ trailing: 0,
984
+ },
985
+ size: {
986
+ height: {
987
+ type: "fit",
988
+ value: null,
989
+ },
990
+ width: {
991
+ type: "fit",
992
+ value: null,
993
+ },
994
+ },
995
+ text_lid: "lFLh8f_wh9",
996
+ type: "text",
997
+ },
998
+ icon: {
999
+ base_url: "https://icons.pawwalls.com/icons",
1000
+ color: {
1001
+ light: {
1002
+ type: "hex",
1003
+ value: "#ffffffff",
1004
+ },
1005
+ },
1006
+ formats: {
1007
+ heic: "filled-lock.heic",
1008
+ png: "filled-lock.png",
1009
+ svg: "filled-lock.svg",
1010
+ webp: "filled-lock.webp",
1011
+ },
1012
+ icon_background: {
1013
+ color: {
1014
+ light: {
1015
+ type: "hex",
1016
+ value: "#000000ff",
1017
+ },
1018
+ },
1019
+ shape: {
1020
+ type: "circle",
1021
+ },
1022
+ },
1023
+ icon_name: "filled-lock",
1024
+ id: "Oy1HFOj47h",
1025
+ margin: {
1026
+ bottom: 0,
1027
+ leading: 0,
1028
+ top: 0,
1029
+ trailing: 0,
1030
+ },
1031
+ name: "Icon",
1032
+ overrides: [
1033
+ {
1034
+ conditions: [
1035
+ {
1036
+ type: "selected",
1037
+ },
1038
+ ],
1039
+ properties: {
1040
+ icon_background: {
1041
+ color: {
1042
+ light: {
1043
+ type: "hex",
1044
+ value: "#00ff00ff",
1045
+ },
1046
+ },
1047
+ shape: {
1048
+ type: "circle",
1049
+ },
1050
+ },
1051
+ },
1052
+ },
1053
+ ],
1054
+ padding: {
1055
+ bottom: 8,
1056
+ leading: 8,
1057
+ top: 8,
1058
+ trailing: 8,
1059
+ },
1060
+ size: {
1061
+ height: {
1062
+ type: "fixed",
1063
+ value: 32,
1064
+ },
1065
+ width: {
1066
+ type: "fixed",
1067
+ value: 32,
1068
+ },
1069
+ },
1070
+ type: "icon",
1071
+ },
1072
+ id: "E34pwddCjw",
1073
+ name: "First item",
1074
+ overrides: [
1075
+ {
1076
+ conditions: [
1077
+ {
1078
+ type: "selected",
1079
+ },
1080
+ ],
1081
+ properties: {
1082
+ connector: {
1083
+ color: {
1084
+ light: {
1085
+ type: "hex",
1086
+ value: "#00ff00ff",
1087
+ },
1088
+ },
1089
+ margin: {
1090
+ bottom: 0,
1091
+ top: 0,
1092
+ },
1093
+ width: 8,
1094
+ },
1095
+ },
1096
+ },
1097
+ ],
1098
+ title: {
1099
+ background_color: null,
1100
+ color: {
1101
+ light: {
1102
+ type: "hex",
1103
+ value: "#000000ff",
1104
+ },
1105
+ },
1106
+ font_name: null,
1107
+ font_size: 14,
1108
+ font_weight: "regular",
1109
+ font_weight_int: 400,
1110
+ horizontal_alignment: "leading",
1111
+ id: "0zhkrO2iPg",
1112
+ margin: {
1113
+ bottom: 0,
1114
+ leading: 0,
1115
+ top: 0,
1116
+ trailing: 0,
1117
+ },
1118
+ name: "Title",
1119
+ overrides: [
1120
+ {
1121
+ conditions: [
1122
+ {
1123
+ type: "selected",
1124
+ },
1125
+ ],
1126
+ properties: {
1127
+ color: {
1128
+ light: {
1129
+ type: "hex",
1130
+ value: "#00ff00ff",
1131
+ },
1132
+ },
1133
+ text_lid: "acLl72hstT",
1134
+ },
1135
+ },
1136
+ ],
1137
+ padding: {
1138
+ bottom: 0,
1139
+ leading: 0,
1140
+ top: 0,
1141
+ trailing: 0,
1142
+ },
1143
+ size: {
1144
+ height: {
1145
+ type: "fit",
1146
+ value: null,
1147
+ },
1148
+ width: {
1149
+ type: "fit",
1150
+ value: null,
1151
+ },
1152
+ },
1153
+ text_lid: "L9SBKPm8In",
1154
+ type: "text",
1155
+ },
1156
+ type: "timeline_item",
1157
+ },
1158
+ ],
1159
+ margin: {
1160
+ bottom: 0,
1161
+ leading: 0,
1162
+ top: 0,
1163
+ trailing: 0,
1164
+ },
1165
+ name: "",
1166
+ overrides: [
1167
+ {
1168
+ conditions: [
1169
+ {
1170
+ type: "selected",
1171
+ },
1172
+ ],
1173
+ properties: {
1174
+ column_gutter: 16,
1175
+ item_spacing: 16,
1176
+ text_spacing: 16,
1177
+ },
1178
+ },
1179
+ ],
1180
+ padding: {
1181
+ bottom: 0,
1182
+ leading: 0,
1183
+ top: 0,
1184
+ trailing: 0,
1185
+ },
1186
+ size: {
1187
+ height: {
1188
+ type: "fit",
1189
+ value: null,
1190
+ },
1191
+ width: {
1192
+ type: "fit",
1193
+ value: null,
1194
+ },
1195
+ },
1196
+ text_spacing: 0,
1197
+ type: "timeline",
1198
+ },
1199
+ ],
1200
+ dimension: {
1201
+ alignment: "center",
1202
+ distribution: "start",
1203
+ type: "vertical",
1204
+ },
1205
+ id: "7QJtosSJ01",
1206
+ margin: {
1207
+ bottom: 8,
1208
+ leading: 8,
1209
+ top: 8,
1210
+ trailing: 8,
1211
+ },
1212
+ name: "",
1213
+ overrides: [
1214
+ {
1215
+ conditions: [
1216
+ {
1217
+ type: "selected",
1218
+ },
1219
+ ],
1220
+ properties: {
1221
+ border: {
1222
+ color: {
1223
+ light: {
1224
+ type: "hex",
1225
+ value: "#00ff00ff",
1226
+ },
1227
+ },
1228
+ width: 1,
1229
+ },
1230
+ },
1231
+ },
1232
+ ],
1233
+ padding: {
1234
+ bottom: 8,
1235
+ leading: 8,
1236
+ top: 8,
1237
+ trailing: 8,
1238
+ },
1239
+ shadow: null,
1240
+ shape: {
1241
+ corners: {
1242
+ bottom_leading: 8,
1243
+ bottom_trailing: 8,
1244
+ top_leading: 8,
1245
+ top_trailing: 8,
1246
+ },
1247
+ type: "rectangle",
1248
+ },
1249
+ size: {
1250
+ height: {
1251
+ type: "fit",
1252
+ value: null,
1253
+ },
1254
+ width: {
1255
+ type: "fill",
1256
+ value: null,
1257
+ },
1258
+ },
1259
+ spacing: 8,
1260
+ type: "stack",
1261
+ },
1262
+ type: "package",
1263
+ },
1264
+ ],
1265
+ dimension: {
1266
+ alignment: "center",
1267
+ distribution: "start",
1268
+ type: "vertical",
1269
+ },
1270
+ id: "A7lO8My2AR",
1271
+ margin: {
1272
+ bottom: 0,
1273
+ leading: 0,
1274
+ top: 0,
1275
+ trailing: 0,
1276
+ },
1277
+ name: "Content",
1278
+ padding: {
1279
+ bottom: 0,
1280
+ leading: 0,
1281
+ top: 0,
1282
+ trailing: 0,
1283
+ },
1284
+ shadow: null,
1285
+ shape: {
1286
+ corners: {
1287
+ bottom_leading: 0,
1288
+ bottom_trailing: 0,
1289
+ top_leading: 0,
1290
+ top_trailing: 0,
1291
+ },
1292
+ type: "rectangle",
1293
+ },
1294
+ size: {
1295
+ height: {
1296
+ type: "fit",
1297
+ value: null,
1298
+ },
1299
+ width: {
1300
+ type: "fill",
1301
+ value: null,
1302
+ },
1303
+ },
1304
+ spacing: 16,
1305
+ type: "stack",
1306
+ },
1307
+ sticky_footer: null,
1308
+ },
1309
+ },
1310
+ };