@developer_tribe/react-builder 1.2.22 → 1.2.23

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 (100) hide show
  1. package/dist/attribute-analyser/style/native/useExtractImageStyle.d.ts +2 -2
  2. package/dist/build-components/Image/ImageProps.generated.d.ts +2 -4
  3. package/dist/build-components/NavigationBarColor/NavigationBarColor.d.ts +5 -0
  4. package/dist/build-components/NavigationBarColor/NavigationBarColorProps.generated.d.ts +54 -0
  5. package/dist/build-components/OnboardImage/OnboardImageProps.generated.d.ts +1 -3
  6. package/dist/build-components/Separator/Separator.d.ts +5 -0
  7. package/dist/build-components/Separator/SeparatorProps.generated.d.ts +21 -0
  8. package/dist/build-components/StatusBarColor/StatusBarColor.d.ts +5 -0
  9. package/dist/build-components/StatusBarColor/StatusBarColorProps.generated.d.ts +54 -0
  10. package/dist/build-components/index.d.ts +4 -1
  11. package/dist/build-components/patterns.generated.d.ts +2105 -1253
  12. package/dist/components/AttributesEditorPanel.d.ts +1 -1
  13. package/dist/components/BuilderProvider.d.ts +1 -1
  14. package/dist/index.cjs.js +4 -4
  15. package/dist/index.cjs.js.map +1 -1
  16. package/dist/index.esm.js +4 -4
  17. package/dist/index.esm.js.map +1 -1
  18. package/dist/index.web.cjs.js +6 -6
  19. package/dist/index.web.cjs.js.map +1 -1
  20. package/dist/index.web.esm.js +4 -4
  21. package/dist/index.web.esm.js.map +1 -1
  22. package/dist/store.d.ts +4 -0
  23. package/dist/styles.css +1 -1
  24. package/dist/utils/attributeStyle.d.ts +9 -0
  25. package/dist/utils/extractImageStyle.d.ts +1 -1
  26. package/dist/utils/extractViewStyle/extractViewStyleNative.d.ts +1 -1
  27. package/package.json +2 -2
  28. package/src/DeviceMockFrame.tsx +8 -2
  29. package/src/assets/meta.json +1 -1
  30. package/src/assets/samples/paywall-1.json +39 -34
  31. package/src/assets/samples/paywall-2.json +39 -20
  32. package/src/assets/samples/paywall-app-delete-offer.json +40 -21
  33. package/src/assets/samples/paywall-app-open-offer.json +40 -21
  34. package/src/assets/samples/paywall-back-offer.json +40 -21
  35. package/src/assets/samples/paywall-notification-offer.json +40 -21
  36. package/src/assets/samples/vpn-onboard-1.json +84 -39
  37. package/src/assets/samples/vpn-onboard-2.json +85 -40
  38. package/src/assets/samples/vpn-onboard-3.json +84 -39
  39. package/src/assets/samples/vpn-onboard-4.json +84 -39
  40. package/src/assets/samples/vpn-onboard-5.json +102 -55
  41. package/src/assets/samples/vpn-onboard-6.json +87 -38
  42. package/src/attribute-analyser/style/native/useExtractImageStyle.ts +24 -22
  43. package/src/attribute-analyser/style/native/useExtractTextStyle.ts +9 -4
  44. package/src/attribute-analyser/style/native/useExtractViewStyle.ts +19 -7
  45. package/src/attributes-editor/useAttributesEditorModel.ts +23 -17
  46. package/src/build-components/BackgroundImage/pattern.json +9 -7
  47. package/src/build-components/CarouselDots/CarouselDots.tsx +12 -11
  48. package/src/build-components/CarouselProvider/CarouselProvider.tsx +3 -1
  49. package/src/build-components/Image/ImageProps.generated.ts +2 -4
  50. package/src/build-components/Image/pattern.json +12 -25
  51. package/src/build-components/NavigationBarColor/NavigationBarColor.tsx +39 -0
  52. package/src/build-components/NavigationBarColor/NavigationBarColorProps.generated.ts +71 -0
  53. package/src/build-components/NavigationBarColor/pattern.json +34 -0
  54. package/src/build-components/OnboardButtons/OnboardButtons.tsx +8 -10
  55. package/src/build-components/OnboardDot/OnboardDot.tsx +12 -10
  56. package/src/build-components/OnboardImage/OnboardImage.tsx +1 -1
  57. package/src/build-components/OnboardImage/OnboardImageProps.generated.ts +1 -3
  58. package/src/build-components/OnboardProvider/OnboardProvider.tsx +3 -1
  59. package/src/build-components/RenderNode.generated.tsx +15 -0
  60. package/src/build-components/Separator/Separator.tsx +41 -0
  61. package/src/build-components/Separator/SeparatorProps.generated.ts +26 -0
  62. package/src/build-components/Separator/pattern.json +59 -0
  63. package/src/build-components/StatusBarColor/StatusBarColor.tsx +39 -0
  64. package/src/build-components/StatusBarColor/StatusBarColorProps.generated.ts +71 -0
  65. package/src/build-components/StatusBarColor/pattern.json +34 -0
  66. package/src/build-components/Text/pattern.json +45 -38
  67. package/src/build-components/index.ts +15 -0
  68. package/src/build-components/patterns.generated.ts +2149 -1272
  69. package/src/build-components/useNode.ts +24 -25
  70. package/src/components/AttributesEditorPanel.tsx +4 -5
  71. package/src/components/Builder.tsx +1 -2
  72. package/src/components/BuilderProvider.tsx +40 -3
  73. package/src/components/JsonTextEditor.tsx +2 -2
  74. package/src/components/LoadingComponent.tsx +1 -1
  75. package/src/components/RenderErrorBoundary.tsx +1 -3
  76. package/src/migrations/migrations/1.1.2_extract_component_attributes_from_style.ts +3 -3
  77. package/src/modals/BenefitPresetsModal.tsx +1 -1
  78. package/src/modals/ProductPresetsModal.tsx +1 -1
  79. package/src/pages/DebugJsonPage.tsx +7 -4
  80. package/src/pages/ProjectDebug.tsx +1 -1
  81. package/src/pages/ProjectPage.tsx +31 -32
  82. package/src/pages/ProjectValidationPage.tsx +2 -2
  83. package/src/store.ts +13 -0
  84. package/src/styles/layout/_builder.scss +6 -0
  85. package/src/utils/__special_exceptions.ts +5 -5
  86. package/src/utils/analyseNode.ts +2 -2
  87. package/src/utils/analyseNodeByPatterns.ts +10 -9
  88. package/src/utils/analyseNodeStructural.ts +1 -1
  89. package/src/utils/attributeStyle.ts +26 -0
  90. package/src/utils/extractImageStyle.ts +17 -13
  91. package/src/utils/extractTextStyle/extractTextStyle.ts +7 -7
  92. package/src/utils/extractTextStyle/extractTextStyleNative.ts +10 -10
  93. package/src/utils/extractViewStyle/extractViewStyle.ts +8 -11
  94. package/src/utils/extractViewStyle/extractViewStyleNative.ts +19 -19
  95. package/src/utils/loadFontFamily.ts +14 -19
  96. package/src/utils/logRenderStore.ts +5 -4
  97. package/src/utils/nodeTree.ts +1 -1
  98. package/src/utils/patterns.ts +26 -31
  99. package/src/utils/repairNodeKeys.ts +5 -7
  100. package/src/utils/wrapNodeInMain.ts +3 -3
@@ -54,50 +54,72 @@ export declare const patterns: readonly [{
54
54
  readonly size: "number";
55
55
  readonly strokeWidth: "number";
56
56
  };
57
+ readonly defaults: {
58
+ readonly style: {
59
+ readonly color: "THEME_COLORS.TEXT";
60
+ readonly fontSize: "16@fs";
61
+ readonly fontWeight: "400";
62
+ };
63
+ };
57
64
  };
58
65
  readonly meta: {
59
66
  readonly desiredParent: readonly ["all"];
60
67
  readonly label: "BIcon";
61
68
  readonly description: "Renders an icon from the icon set.";
62
- readonly attributes: {
63
- readonly styles: {
64
- readonly color: {
65
- readonly label: "Color";
66
- readonly description: "Text color.";
67
- readonly category: "style";
68
- readonly specialCategory: null;
69
- readonly sort: 1;
70
- };
71
- readonly fontSize: {
72
- readonly label: "Font Size";
73
- readonly description: "Text size.";
74
- readonly category: "style";
75
- readonly specialCategory: null;
76
- readonly sort: 2;
77
- readonly preferredScale: "s";
78
- };
79
- readonly fontFamily: {
80
- readonly label: "Font Family";
81
- readonly description: "Font family used for the text.";
82
- readonly category: "style";
83
- readonly specialCategory: null;
84
- readonly sort: 3;
85
- };
86
- readonly fontWeight: {
87
- readonly label: "Font Weight";
88
- readonly description: "Text weight.";
89
- readonly category: "style";
90
- readonly specialCategory: null;
91
- readonly sort: 4;
92
- };
93
- readonly textAlign: {
94
- readonly label: "Text Align";
95
- readonly description: "Text alignment.";
96
- readonly category: "style";
97
- readonly specialCategory: null;
98
- readonly sort: 5;
99
- };
69
+ readonly styles: {
70
+ readonly color: {
71
+ readonly label: "Color";
72
+ readonly description: "Text color.";
73
+ readonly category: "style";
74
+ readonly specialCategory: null;
75
+ readonly sort: 1;
76
+ };
77
+ readonly fontSize: {
78
+ readonly label: "Font Size";
79
+ readonly description: "Text size.";
80
+ readonly category: "style";
81
+ readonly specialCategory: null;
82
+ readonly sort: 2;
83
+ readonly preferredScale: "s";
84
+ };
85
+ readonly fontFamily: {
86
+ readonly label: "Font Family";
87
+ readonly description: "Font family used for the text.";
88
+ readonly category: "style";
89
+ readonly specialCategory: null;
90
+ readonly sort: 3;
91
+ };
92
+ readonly fontWeight: {
93
+ readonly label: "Font Weight";
94
+ readonly description: "Text weight.";
95
+ readonly category: "style";
96
+ readonly specialCategory: null;
97
+ readonly sort: 4;
98
+ };
99
+ readonly textAlign: {
100
+ readonly label: "Text Align";
101
+ readonly description: "Text alignment.";
102
+ readonly category: "style";
103
+ readonly specialCategory: null;
104
+ readonly sort: 5;
100
105
  };
106
+ readonly backgroundColor: {
107
+ readonly label: "Background Color";
108
+ readonly description: "Background fill color.";
109
+ readonly category: "style";
110
+ readonly specialCategory: null;
111
+ readonly sort: 20;
112
+ };
113
+ readonly borderRadius: {
114
+ readonly label: "Border Radius";
115
+ readonly description: "Corner rounding amount.";
116
+ readonly category: "style";
117
+ readonly specialCategory: null;
118
+ readonly sort: 21;
119
+ readonly preferredScale: "s";
120
+ };
121
+ };
122
+ readonly attributes: {
101
123
  readonly adjustsFontSizeToFit: {
102
124
  readonly label: "Adjust Font Size To Fit";
103
125
  readonly description: "Automatically reduces font size to fit the available space.";
@@ -416,33 +438,18 @@ export declare const patterns: readonly [{
416
438
  readonly sort: 4;
417
439
  };
418
440
  };
419
- readonly styles: {
420
- readonly backgroundColor: {
421
- readonly label: "Background Color";
422
- readonly description: "Background fill color.";
423
- readonly category: "style";
424
- readonly specialCategory: null;
425
- readonly sort: 20;
426
- };
427
- readonly borderRadius: {
428
- readonly label: "Border Radius";
429
- readonly description: "Corner rounding amount.";
430
- readonly category: "style";
431
- readonly specialCategory: null;
432
- readonly sort: 21;
433
- readonly preferredScale: "s";
434
- };
435
- };
436
441
  };
437
442
  readonly defaults: {
438
443
  readonly style: {
444
+ readonly color: "THEME_COLORS.TEXT";
445
+ readonly fontSize: "16";
446
+ readonly fontWeight: "400";
439
447
  readonly flexDirection: "column";
440
448
  readonly position: "relative";
441
449
  readonly zIndex: 1;
442
450
  readonly alignSelf: "flex-start";
443
451
  readonly flexGrow: 0;
444
452
  readonly flexShrink: 0;
445
- readonly fontSize: "16";
446
453
  };
447
454
  readonly iconType: "activity";
448
455
  readonly strokeWidth: 1.5;
@@ -820,13 +827,13 @@ export declare const patterns: readonly [{
820
827
  readonly specialCategory: null;
821
828
  readonly sort: 26;
822
829
  };
823
- };
824
- readonly src: {
825
- readonly label: "Src";
826
- readonly description: "Image source URL.";
827
- readonly category: "other";
828
- readonly specialCategory: null;
829
- readonly sort: 1;
830
+ readonly src: {
831
+ readonly label: "Src";
832
+ readonly description: "Image source URL.";
833
+ readonly category: "other";
834
+ readonly specialCategory: null;
835
+ readonly sort: 1;
836
+ };
830
837
  };
831
838
  };
832
839
  readonly defaults: {
@@ -3149,6 +3156,13 @@ export declare const patterns: readonly [{
3149
3156
  };
3150
3157
  readonly scrollable: "boolean";
3151
3158
  };
3159
+ readonly defaults: {
3160
+ readonly style: {
3161
+ readonly color: "THEME_COLORS.TEXT";
3162
+ readonly fontSize: "16@fs";
3163
+ readonly fontWeight: "400";
3164
+ };
3165
+ };
3152
3166
  };
3153
3167
  readonly meta: {
3154
3168
  readonly desiredParent: readonly ["all"];
@@ -3162,44 +3176,6 @@ export declare const patterns: readonly [{
3162
3176
  readonly specialCategory: null;
3163
3177
  readonly sort: 1;
3164
3178
  };
3165
- readonly styles: {
3166
- readonly color: {
3167
- readonly label: "Color";
3168
- readonly description: "Text color.";
3169
- readonly category: "style";
3170
- readonly specialCategory: null;
3171
- readonly sort: 1;
3172
- };
3173
- readonly fontSize: {
3174
- readonly label: "Font Size";
3175
- readonly description: "Text size.";
3176
- readonly category: "style";
3177
- readonly specialCategory: null;
3178
- readonly sort: 2;
3179
- readonly preferredScale: "s";
3180
- };
3181
- readonly fontFamily: {
3182
- readonly label: "Font Family";
3183
- readonly description: "Font family used for the text.";
3184
- readonly category: "style";
3185
- readonly specialCategory: null;
3186
- readonly sort: 3;
3187
- };
3188
- readonly fontWeight: {
3189
- readonly label: "Font Weight";
3190
- readonly description: "Text weight.";
3191
- readonly category: "style";
3192
- readonly specialCategory: null;
3193
- readonly sort: 4;
3194
- };
3195
- readonly textAlign: {
3196
- readonly label: "Text Align";
3197
- readonly description: "Text alignment.";
3198
- readonly category: "style";
3199
- readonly specialCategory: null;
3200
- readonly sort: 5;
3201
- };
3202
- };
3203
3179
  readonly adjustsFontSizeToFit: {
3204
3180
  readonly label: "Adjust Font Size To Fit";
3205
3181
  readonly description: "Automatically reduces font size to fit the available space.";
@@ -3471,6 +3447,59 @@ export declare const patterns: readonly [{
3471
3447
  readonly sort: 26;
3472
3448
  };
3473
3449
  };
3450
+ readonly styles: {
3451
+ readonly color: {
3452
+ readonly label: "Color";
3453
+ readonly description: "Text color.";
3454
+ readonly category: "style";
3455
+ readonly specialCategory: null;
3456
+ readonly sort: 1;
3457
+ };
3458
+ readonly fontSize: {
3459
+ readonly label: "Font Size";
3460
+ readonly description: "Text size.";
3461
+ readonly category: "style";
3462
+ readonly specialCategory: null;
3463
+ readonly sort: 2;
3464
+ readonly preferredScale: "s";
3465
+ };
3466
+ readonly fontFamily: {
3467
+ readonly label: "Font Family";
3468
+ readonly description: "Font family used for the text.";
3469
+ readonly category: "style";
3470
+ readonly specialCategory: null;
3471
+ readonly sort: 3;
3472
+ };
3473
+ readonly fontWeight: {
3474
+ readonly label: "Font Weight";
3475
+ readonly description: "Text weight.";
3476
+ readonly category: "style";
3477
+ readonly specialCategory: null;
3478
+ readonly sort: 4;
3479
+ };
3480
+ readonly textAlign: {
3481
+ readonly label: "Text Align";
3482
+ readonly description: "Text alignment.";
3483
+ readonly category: "style";
3484
+ readonly specialCategory: null;
3485
+ readonly sort: 5;
3486
+ };
3487
+ readonly backgroundColor: {
3488
+ readonly label: "Background Color";
3489
+ readonly description: "Background fill color.";
3490
+ readonly category: "style";
3491
+ readonly specialCategory: null;
3492
+ readonly sort: 20;
3493
+ };
3494
+ readonly borderRadius: {
3495
+ readonly label: "Border Radius";
3496
+ readonly description: "Corner rounding amount.";
3497
+ readonly category: "style";
3498
+ readonly specialCategory: null;
3499
+ readonly sort: 21;
3500
+ readonly preferredScale: "s";
3501
+ };
3502
+ };
3474
3503
  readonly specialCategories: {
3475
3504
  readonly padding: {
3476
3505
  readonly label: "Padding";
@@ -3497,26 +3526,12 @@ export declare const patterns: readonly [{
3497
3526
  readonly sort: 4;
3498
3527
  };
3499
3528
  };
3500
- readonly styles: {
3501
- readonly backgroundColor: {
3502
- readonly label: "Background Color";
3503
- readonly description: "Background fill color.";
3504
- readonly category: "style";
3505
- readonly specialCategory: null;
3506
- readonly sort: 20;
3507
- };
3508
- readonly borderRadius: {
3509
- readonly label: "Border Radius";
3510
- readonly description: "Corner rounding amount.";
3511
- readonly category: "style";
3512
- readonly specialCategory: null;
3513
- readonly sort: 21;
3514
- readonly preferredScale: "s";
3515
- };
3516
- };
3517
3529
  };
3518
3530
  readonly defaults: {
3519
3531
  readonly style: {
3532
+ readonly color: "THEME_COLORS.TEXT";
3533
+ readonly fontSize: "16@fs";
3534
+ readonly fontWeight: "400";
3520
3535
  readonly flexDirection: "column";
3521
3536
  readonly position: "relative";
3522
3537
  readonly zIndex: 1;
@@ -3580,50 +3595,72 @@ export declare const patterns: readonly [{
3580
3595
  readonly scrollable: "boolean";
3581
3596
  readonly count: "number";
3582
3597
  };
3598
+ readonly defaults: {
3599
+ readonly style: {
3600
+ readonly color: "THEME_COLORS.TEXT";
3601
+ readonly fontSize: "16@fs";
3602
+ readonly fontWeight: "400";
3603
+ };
3604
+ };
3583
3605
  };
3584
3606
  readonly meta: {
3585
3607
  readonly desiredParent: readonly ["all"];
3586
3608
  readonly label: "Counter";
3587
3609
  readonly description: "Displays a numeric counter.";
3588
- readonly attributes: {
3589
- readonly styles: {
3590
- readonly color: {
3591
- readonly label: "Color";
3592
- readonly description: "Text color.";
3593
- readonly category: "style";
3594
- readonly specialCategory: null;
3595
- readonly sort: 1;
3596
- };
3597
- readonly fontSize: {
3598
- readonly label: "Font Size";
3599
- readonly description: "Text size.";
3600
- readonly category: "style";
3601
- readonly specialCategory: null;
3602
- readonly sort: 2;
3603
- readonly preferredScale: "s";
3604
- };
3605
- readonly fontFamily: {
3606
- readonly label: "Font Family";
3607
- readonly description: "Font family used for the text.";
3608
- readonly category: "style";
3609
- readonly specialCategory: null;
3610
- readonly sort: 3;
3611
- };
3612
- readonly fontWeight: {
3613
- readonly label: "Font Weight";
3614
- readonly description: "Text weight.";
3615
- readonly category: "style";
3616
- readonly specialCategory: null;
3617
- readonly sort: 4;
3618
- };
3619
- readonly textAlign: {
3620
- readonly label: "Text Align";
3621
- readonly description: "Text alignment.";
3622
- readonly category: "style";
3623
- readonly specialCategory: null;
3624
- readonly sort: 5;
3625
- };
3610
+ readonly styles: {
3611
+ readonly color: {
3612
+ readonly label: "Color";
3613
+ readonly description: "Text color.";
3614
+ readonly category: "style";
3615
+ readonly specialCategory: null;
3616
+ readonly sort: 1;
3617
+ };
3618
+ readonly fontSize: {
3619
+ readonly label: "Font Size";
3620
+ readonly description: "Text size.";
3621
+ readonly category: "style";
3622
+ readonly specialCategory: null;
3623
+ readonly sort: 2;
3624
+ readonly preferredScale: "s";
3625
+ };
3626
+ readonly fontFamily: {
3627
+ readonly label: "Font Family";
3628
+ readonly description: "Font family used for the text.";
3629
+ readonly category: "style";
3630
+ readonly specialCategory: null;
3631
+ readonly sort: 3;
3632
+ };
3633
+ readonly fontWeight: {
3634
+ readonly label: "Font Weight";
3635
+ readonly description: "Text weight.";
3636
+ readonly category: "style";
3637
+ readonly specialCategory: null;
3638
+ readonly sort: 4;
3639
+ };
3640
+ readonly textAlign: {
3641
+ readonly label: "Text Align";
3642
+ readonly description: "Text alignment.";
3643
+ readonly category: "style";
3644
+ readonly specialCategory: null;
3645
+ readonly sort: 5;
3646
+ };
3647
+ readonly backgroundColor: {
3648
+ readonly label: "Background Color";
3649
+ readonly description: "Background fill color.";
3650
+ readonly category: "style";
3651
+ readonly specialCategory: null;
3652
+ readonly sort: 20;
3653
+ };
3654
+ readonly borderRadius: {
3655
+ readonly label: "Border Radius";
3656
+ readonly description: "Corner rounding amount.";
3657
+ readonly category: "style";
3658
+ readonly specialCategory: null;
3659
+ readonly sort: 21;
3660
+ readonly preferredScale: "s";
3626
3661
  };
3662
+ };
3663
+ readonly attributes: {
3627
3664
  readonly adjustsFontSizeToFit: {
3628
3665
  readonly label: "Adjust Font Size To Fit";
3629
3666
  readonly description: "Automatically reduces font size to fit the available space.";
@@ -3928,26 +3965,12 @@ export declare const patterns: readonly [{
3928
3965
  readonly sort: 4;
3929
3966
  };
3930
3967
  };
3931
- readonly styles: {
3932
- readonly backgroundColor: {
3933
- readonly label: "Background Color";
3934
- readonly description: "Background fill color.";
3935
- readonly category: "style";
3936
- readonly specialCategory: null;
3937
- readonly sort: 20;
3938
- };
3939
- readonly borderRadius: {
3940
- readonly label: "Border Radius";
3941
- readonly description: "Corner rounding amount.";
3942
- readonly category: "style";
3943
- readonly specialCategory: null;
3944
- readonly sort: 21;
3945
- readonly preferredScale: "s";
3946
- };
3947
- };
3948
3968
  };
3949
3969
  readonly defaults: {
3950
3970
  readonly style: {
3971
+ readonly color: "THEME_COLORS.TEXT";
3972
+ readonly fontSize: "16@fs";
3973
+ readonly fontWeight: "400";
3951
3974
  readonly flexDirection: "column";
3952
3975
  readonly position: "relative";
3953
3976
  readonly zIndex: 1;
@@ -3999,13 +4022,11 @@ export declare const patterns: readonly [{
3999
4022
  readonly left: "size";
4000
4023
  readonly right: "size";
4001
4024
  readonly zIndex: "number";
4025
+ readonly resizeMode: readonly ["cover", "contain", "stretch", "center"];
4002
4026
  };
4003
4027
  readonly title: "title";
4004
4028
  readonly description: "description";
4005
4029
  readonly src: "string";
4006
- readonly width: "size";
4007
- readonly height: "size";
4008
- readonly resizeMode: readonly ["cover", "contain", "stretch", "center"];
4009
4030
  };
4010
4031
  };
4011
4032
  readonly meta: {
@@ -4054,6 +4075,13 @@ export declare const patterns: readonly [{
4054
4075
  readonly sort: 21;
4055
4076
  readonly preferredScale: "s";
4056
4077
  };
4078
+ readonly resizeMode: {
4079
+ readonly label: "Resize Mode";
4080
+ readonly description: "How the image fits the frame.";
4081
+ readonly category: "style";
4082
+ readonly specialCategory: null;
4083
+ readonly sort: 4;
4084
+ };
4057
4085
  };
4058
4086
  readonly attributes: {
4059
4087
  readonly scrollable: {
@@ -4213,10 +4241,11 @@ export declare const patterns: readonly [{
4213
4241
  };
4214
4242
  readonly width: {
4215
4243
  readonly label: "Width";
4216
- readonly description: "Image width.";
4244
+ readonly description: "Fixed width value.";
4217
4245
  readonly category: "container";
4218
- readonly specialCategory: null;
4219
- readonly sort: 2;
4246
+ readonly specialCategory: "size";
4247
+ readonly sort: 0;
4248
+ readonly preferredScale: "s";
4220
4249
  };
4221
4250
  readonly minWidth: {
4222
4251
  readonly label: "Min Width";
@@ -4236,10 +4265,11 @@ export declare const patterns: readonly [{
4236
4265
  };
4237
4266
  readonly height: {
4238
4267
  readonly label: "Height";
4239
- readonly description: "Image height.";
4268
+ readonly description: "Fixed height value.";
4240
4269
  readonly category: "container";
4241
- readonly specialCategory: null;
4270
+ readonly specialCategory: "size";
4242
4271
  readonly sort: 3;
4272
+ readonly preferredScale: "vs";
4243
4273
  };
4244
4274
  readonly minHeight: {
4245
4275
  readonly label: "Min Height";
@@ -4317,13 +4347,6 @@ export declare const patterns: readonly [{
4317
4347
  readonly specialCategory: null;
4318
4348
  readonly sort: 1;
4319
4349
  };
4320
- readonly resizeMode: {
4321
- readonly label: "Resize Mode";
4322
- readonly description: "How the image fits the frame.";
4323
- readonly category: "other";
4324
- readonly specialCategory: null;
4325
- readonly sort: 4;
4326
- };
4327
4350
  };
4328
4351
  };
4329
4352
  readonly defaults: {
@@ -4718,8 +4741,8 @@ export declare const patterns: readonly [{
4718
4741
  }, {
4719
4742
  readonly schemaVersion: 2;
4720
4743
  readonly pattern: {
4721
- readonly type: "Onboard";
4722
- readonly children: "node";
4744
+ readonly type: "NavigationBarColor";
4745
+ readonly children: "never";
4723
4746
  readonly attributes: {
4724
4747
  readonly scrollable: "boolean";
4725
4748
  readonly style: {
@@ -4763,9 +4786,9 @@ export declare const patterns: readonly [{
4763
4786
  };
4764
4787
  };
4765
4788
  readonly meta: {
4766
- readonly desiredParent: readonly ["=OnboardProvider"];
4767
- readonly label: "Onboard";
4768
- readonly description: "Wraps the onboarding flow.";
4789
+ readonly desiredParent: readonly ["all"];
4790
+ readonly label: "Navigation Bar Color";
4791
+ readonly description: "Sets the OS navigation bar background color.";
4769
4792
  readonly specialCategories: {
4770
4793
  readonly padding: {
4771
4794
  readonly label: "Padding";
@@ -4795,10 +4818,10 @@ export declare const patterns: readonly [{
4795
4818
  readonly styles: {
4796
4819
  readonly backgroundColor: {
4797
4820
  readonly label: "Background Color";
4798
- readonly description: "Background fill color.";
4821
+ readonly description: "Navigation bar background color.";
4799
4822
  readonly category: "style";
4800
4823
  readonly specialCategory: null;
4801
- readonly sort: 20;
4824
+ readonly sort: 1;
4802
4825
  };
4803
4826
  readonly borderRadius: {
4804
4827
  readonly label: "Border Radius";
@@ -5067,24 +5090,24 @@ export declare const patterns: readonly [{
5067
5090
  readonly sort: 26;
5068
5091
  };
5069
5092
  };
5070
- readonly desiredChildren: readonly ["=OnboardItem"];
5071
5093
  };
5072
5094
  readonly defaults: {
5073
5095
  readonly style: {
5074
- readonly flexDirection: "row";
5096
+ readonly flexDirection: "column";
5075
5097
  readonly position: "relative";
5076
5098
  readonly zIndex: 1;
5077
5099
  readonly alignSelf: "flex-start";
5078
5100
  readonly flexGrow: 0;
5079
5101
  readonly flexShrink: 0;
5102
+ readonly backgroundColor: "THEME_COLORS.BACKGROUND";
5080
5103
  };
5081
5104
  };
5082
5105
  readonly types: {};
5083
5106
  }, {
5084
5107
  readonly schemaVersion: 2;
5085
5108
  readonly pattern: {
5086
- readonly type: "OnboardButton";
5087
- readonly children: "never";
5109
+ readonly type: "Onboard";
5110
+ readonly children: "node";
5088
5111
  readonly attributes: {
5089
5112
  readonly scrollable: "boolean";
5090
5113
  readonly style: {
@@ -5125,25 +5148,12 @@ export declare const patterns: readonly [{
5125
5148
  };
5126
5149
  readonly title: "title";
5127
5150
  readonly description: "description";
5128
- readonly labelKey: "string";
5129
- readonly button_text_color: "color";
5130
- readonly animation: readonly ["simple-animation", "line-animation", "blur", "blur-animation", "blur-line-animation"];
5131
- readonly animation_color: "color";
5132
- readonly button_background_color: "color";
5133
- readonly flex: "number";
5134
- readonly events: "EventObject[]";
5135
- };
5136
- readonly defaults: {
5137
- readonly style: {
5138
- readonly height: "40@vs";
5139
- readonly borderRadius: "12@s";
5140
- };
5141
5151
  };
5142
5152
  };
5143
5153
  readonly meta: {
5144
- readonly desiredParent: readonly ["=OnboardButtons"];
5145
- readonly label: "Onboard Button";
5146
- readonly description: "Single action button for onboarding.";
5154
+ readonly desiredParent: readonly ["=OnboardProvider"];
5155
+ readonly label: "Onboard";
5156
+ readonly description: "Wraps the onboarding flow.";
5147
5157
  readonly specialCategories: {
5148
5158
  readonly padding: {
5149
5159
  readonly label: "Padding";
@@ -5186,34 +5196,6 @@ export declare const patterns: readonly [{
5186
5196
  readonly sort: 21;
5187
5197
  readonly preferredScale: "s";
5188
5198
  };
5189
- readonly button_text_color: {
5190
- readonly label: "Button Text Color";
5191
- readonly description: "Text color of the button.";
5192
- readonly category: "style";
5193
- readonly specialCategory: null;
5194
- readonly sort: 2;
5195
- };
5196
- readonly animation: {
5197
- readonly label: "Animation";
5198
- readonly description: "Animation style for the button.";
5199
- readonly category: "style";
5200
- readonly specialCategory: null;
5201
- readonly sort: 3;
5202
- };
5203
- readonly animation_color: {
5204
- readonly label: "Animation Color";
5205
- readonly description: "Color used by the animation.";
5206
- readonly category: "style";
5207
- readonly specialCategory: null;
5208
- readonly sort: 4;
5209
- };
5210
- readonly button_background_color: {
5211
- readonly label: "Button Background Color";
5212
- readonly description: "Background color of the button.";
5213
- readonly category: "style";
5214
- readonly specialCategory: null;
5215
- readonly sort: 5;
5216
- };
5217
5199
  };
5218
5200
  readonly attributes: {
5219
5201
  readonly scrollable: {
@@ -5421,9 +5403,9 @@ export declare const patterns: readonly [{
5421
5403
  };
5422
5404
  readonly flex: {
5423
5405
  readonly label: "Flex";
5424
- readonly description: "Flex grow value in layout.";
5406
+ readonly description: "Flex grow factor (e.g. 1 fills available space).";
5425
5407
  readonly category: "container";
5426
- readonly specialCategory: null;
5408
+ readonly specialCategory: "size";
5427
5409
  readonly sort: 6;
5428
5410
  };
5429
5411
  readonly position: {
@@ -5472,47 +5454,25 @@ export declare const patterns: readonly [{
5472
5454
  readonly specialCategory: null;
5473
5455
  readonly sort: 26;
5474
5456
  };
5475
- readonly labelKey: {
5476
- readonly label: "Label Key";
5477
- readonly description: "Localization key for the button text.";
5478
- readonly category: "other";
5479
- readonly specialCategory: null;
5480
- readonly sort: 1;
5481
- };
5482
- readonly events: {
5483
- readonly label: "Events";
5484
- readonly description: "List of events fired by the button.";
5485
- readonly category: "other";
5486
- readonly specialCategory: null;
5487
- readonly sort: 7;
5488
- };
5489
5457
  };
5458
+ readonly desiredChildren: readonly ["=OnboardItem"];
5490
5459
  };
5491
5460
  readonly defaults: {
5492
5461
  readonly style: {
5493
- readonly flexDirection: "column";
5462
+ readonly flexDirection: "row";
5494
5463
  readonly position: "relative";
5495
5464
  readonly zIndex: 1;
5496
5465
  readonly alignSelf: "flex-start";
5497
5466
  readonly flexGrow: 0;
5498
5467
  readonly flexShrink: 0;
5499
- readonly height: "40@vs";
5500
- readonly borderRadius: "12@s";
5501
- };
5502
- };
5503
- readonly types: {
5504
- readonly EventObject: {
5505
- readonly type: readonly ["Permission", "Navigate"];
5506
- readonly permission: readonly ["att", "notification", "rating", "GDPR", "null"];
5507
- readonly navigate_to: "string";
5508
- readonly targetIndex: "number";
5509
5468
  };
5510
5469
  };
5470
+ readonly types: {};
5511
5471
  }, {
5512
5472
  readonly schemaVersion: 2;
5513
5473
  readonly pattern: {
5514
- readonly type: "OnboardButtons";
5515
- readonly children: "node";
5474
+ readonly type: "OnboardButton";
5475
+ readonly children: "never";
5516
5476
  readonly attributes: {
5517
5477
  readonly scrollable: "boolean";
5518
5478
  readonly style: {
@@ -5553,30 +5513,25 @@ export declare const patterns: readonly [{
5553
5513
  };
5554
5514
  readonly title: "title";
5555
5515
  readonly description: "description";
5556
- readonly buttonType: readonly ["previous_button", "next_button", "skip_button"];
5557
- readonly skipNumber: "number";
5558
- readonly buttons_direction: readonly ["row", "column"];
5559
- readonly forIndex: "number";
5560
- readonly seperatorColor: "color";
5561
- readonly condition: readonly ["carousel-index"];
5562
- readonly conditionVariable: "number";
5516
+ readonly labelKey: "string";
5517
+ readonly button_text_color: "color";
5518
+ readonly animation: readonly ["simple-animation", "line-animation", "blur", "blur-animation", "blur-line-animation"];
5519
+ readonly animation_color: "color";
5520
+ readonly button_background_color: "color";
5521
+ readonly flex: "number";
5522
+ readonly events: "EventObject[]";
5563
5523
  };
5564
5524
  readonly defaults: {
5565
5525
  readonly style: {
5566
- readonly display: "flex";
5567
- readonly flexDirection: "row";
5568
- readonly gap: 12;
5569
- readonly alignItems: "center";
5570
- readonly justifyContent: "center";
5571
- readonly marginVertical: "12@vs";
5572
- readonly marginHorizontal: "24@s";
5526
+ readonly height: "40@vs";
5527
+ readonly borderRadius: "12@s";
5573
5528
  };
5574
5529
  };
5575
5530
  };
5576
5531
  readonly meta: {
5577
- readonly desiredParent: readonly ["=OnboardItem"];
5578
- readonly label: "Onboard Buttons";
5579
- readonly description: "Wrapper for onboarding button set.";
5532
+ readonly desiredParent: readonly ["=OnboardButtons"];
5533
+ readonly label: "Onboard Button";
5534
+ readonly description: "Single action button for onboarding.";
5580
5535
  readonly specialCategories: {
5581
5536
  readonly padding: {
5582
5537
  readonly label: "Padding";
@@ -5619,9 +5574,30 @@ export declare const patterns: readonly [{
5619
5574
  readonly sort: 21;
5620
5575
  readonly preferredScale: "s";
5621
5576
  };
5622
- readonly seperatorColor: {
5623
- readonly label: "Seperator Color";
5624
- readonly description: "Color of the divider line.";
5577
+ readonly button_text_color: {
5578
+ readonly label: "Button Text Color";
5579
+ readonly description: "Text color of the button.";
5580
+ readonly category: "style";
5581
+ readonly specialCategory: null;
5582
+ readonly sort: 2;
5583
+ };
5584
+ readonly animation: {
5585
+ readonly label: "Animation";
5586
+ readonly description: "Animation style for the button.";
5587
+ readonly category: "style";
5588
+ readonly specialCategory: null;
5589
+ readonly sort: 3;
5590
+ };
5591
+ readonly animation_color: {
5592
+ readonly label: "Animation Color";
5593
+ readonly description: "Color used by the animation.";
5594
+ readonly category: "style";
5595
+ readonly specialCategory: null;
5596
+ readonly sort: 4;
5597
+ };
5598
+ readonly button_background_color: {
5599
+ readonly label: "Button Background Color";
5600
+ readonly description: "Background color of the button.";
5625
5601
  readonly category: "style";
5626
5602
  readonly specialCategory: null;
5627
5603
  readonly sort: 5;
@@ -5833,9 +5809,9 @@ export declare const patterns: readonly [{
5833
5809
  };
5834
5810
  readonly flex: {
5835
5811
  readonly label: "Flex";
5836
- readonly description: "Flex grow factor (e.g. 1 fills available space).";
5812
+ readonly description: "Flex grow value in layout.";
5837
5813
  readonly category: "container";
5838
- readonly specialCategory: "size";
5814
+ readonly specialCategory: null;
5839
5815
  readonly sort: 6;
5840
5816
  };
5841
5817
  readonly position: {
@@ -5884,44 +5860,16 @@ export declare const patterns: readonly [{
5884
5860
  readonly specialCategory: null;
5885
5861
  readonly sort: 26;
5886
5862
  };
5887
- readonly buttonType: {
5888
- readonly label: "Button Type";
5889
- readonly description: "Which onboard button to show.";
5863
+ readonly labelKey: {
5864
+ readonly label: "Label Key";
5865
+ readonly description: "Localization key for the button text.";
5890
5866
  readonly category: "other";
5891
5867
  readonly specialCategory: null;
5892
5868
  readonly sort: 1;
5893
5869
  };
5894
- readonly skipNumber: {
5895
- readonly label: "Skip Number";
5896
- readonly description: "Slide index to skip to.";
5897
- readonly category: "other";
5898
- readonly specialCategory: null;
5899
- readonly sort: 2;
5900
- };
5901
- readonly buttons_direction: {
5902
- readonly label: "Buttons Direction";
5903
- readonly description: "Direction to lay out buttons.";
5904
- readonly category: "container";
5905
- readonly specialCategory: null;
5906
- readonly sort: 3;
5907
- };
5908
- readonly forIndex: {
5909
- readonly label: "For Index";
5910
- readonly description: "Show only for this slide index.";
5911
- readonly category: "other";
5912
- readonly specialCategory: null;
5913
- readonly sort: 4;
5914
- };
5915
- readonly condition: {
5916
- readonly label: "Condition";
5917
- readonly description: "Built-in condition to check.";
5918
- readonly category: "other";
5919
- readonly specialCategory: null;
5920
- readonly sort: 6;
5921
- };
5922
- readonly conditionVariable: {
5923
- readonly label: "Condition Variable";
5924
- readonly description: "Value used when checking the condition.";
5870
+ readonly events: {
5871
+ readonly label: "Events";
5872
+ readonly description: "List of events fired by the button.";
5925
5873
  readonly category: "other";
5926
5874
  readonly specialCategory: null;
5927
5875
  readonly sort: 7;
@@ -5930,26 +5878,29 @@ export declare const patterns: readonly [{
5930
5878
  };
5931
5879
  readonly defaults: {
5932
5880
  readonly style: {
5933
- readonly flexDirection: "row";
5881
+ readonly flexDirection: "column";
5934
5882
  readonly position: "relative";
5935
5883
  readonly zIndex: 1;
5936
5884
  readonly alignSelf: "flex-start";
5937
5885
  readonly flexGrow: 0;
5938
5886
  readonly flexShrink: 0;
5939
- readonly display: "flex";
5940
- readonly gap: 12;
5941
- readonly alignItems: "center";
5942
- readonly justifyContent: "center";
5943
- readonly marginVertical: "12@vs";
5944
- readonly marginHorizontal: "24@s";
5887
+ readonly height: "40@vs";
5888
+ readonly borderRadius: "12@s";
5889
+ };
5890
+ };
5891
+ readonly types: {
5892
+ readonly EventObject: {
5893
+ readonly type: readonly ["Permission", "Navigate"];
5894
+ readonly permission: readonly ["att", "notification", "rating", "GDPR", "null"];
5895
+ readonly navigate_to: "string";
5896
+ readonly targetIndex: "number";
5945
5897
  };
5946
5898
  };
5947
- readonly types: {};
5948
5899
  }, {
5949
5900
  readonly schemaVersion: 2;
5950
5901
  readonly pattern: {
5951
- readonly type: "OnboardDot";
5952
- readonly children: "never";
5902
+ readonly type: "OnboardButtons";
5903
+ readonly children: "node";
5953
5904
  readonly attributes: {
5954
5905
  readonly scrollable: "boolean";
5955
5906
  readonly style: {
@@ -5990,20 +5941,30 @@ export declare const patterns: readonly [{
5990
5941
  };
5991
5942
  readonly title: "title";
5992
5943
  readonly description: "description";
5993
- readonly dotType: readonly ["expanding_dot", "normal_dot", "scaling_dot", "sliding_border", "sliding_dot", "liquid_like"];
5994
- readonly dot_thickness: "size";
5995
- readonly inactive_dot_opacity: "number";
5996
- readonly inactive_dot_color: "color";
5997
- readonly active_dot_color: "color";
5998
- readonly flexDirection: "never";
5999
- readonly alignItems: "never";
6000
- readonly justifyContent: "never";
5944
+ readonly buttonType: readonly ["previous_button", "next_button", "skip_button"];
5945
+ readonly skipNumber: "number";
5946
+ readonly buttons_direction: readonly ["row", "column"];
5947
+ readonly forIndex: "number";
5948
+ readonly seperatorColor: "color";
5949
+ readonly condition: readonly ["carousel-index"];
5950
+ readonly conditionVariable: "number";
5951
+ };
5952
+ readonly defaults: {
5953
+ readonly style: {
5954
+ readonly display: "flex";
5955
+ readonly flexDirection: "row";
5956
+ readonly gap: 12;
5957
+ readonly alignItems: "center";
5958
+ readonly justifyContent: "center";
5959
+ readonly marginVertical: "12@vs";
5960
+ readonly marginHorizontal: "24@s";
5961
+ };
6001
5962
  };
6002
5963
  };
6003
5964
  readonly meta: {
6004
- readonly desiredParent: readonly [">OnboardProvider"];
6005
- readonly label: "Onboard Dot";
6006
- readonly description: "Renders onboarding progress dots.";
5965
+ readonly desiredParent: readonly ["=OnboardItem"];
5966
+ readonly label: "Onboard Buttons";
5967
+ readonly description: "Wrapper for onboarding button set.";
6007
5968
  readonly specialCategories: {
6008
5969
  readonly padding: {
6009
5970
  readonly label: "Padding";
@@ -6046,43 +6007,900 @@ export declare const patterns: readonly [{
6046
6007
  readonly sort: 21;
6047
6008
  readonly preferredScale: "s";
6048
6009
  };
6049
- readonly dotType: {
6050
- readonly label: "Dot Type";
6051
- readonly description: "Dot animation style.";
6010
+ readonly seperatorColor: {
6011
+ readonly label: "Seperator Color";
6012
+ readonly description: "Color of the divider line.";
6052
6013
  readonly category: "style";
6053
6014
  readonly specialCategory: null;
6054
- readonly sort: 1;
6015
+ readonly sort: 5;
6055
6016
  };
6056
- readonly inactive_dot_opacity: {
6057
- readonly label: "Inactive Dot Opacity";
6058
- readonly description: "Opacity for inactive dots.";
6059
- readonly category: "style";
6017
+ };
6018
+ readonly attributes: {
6019
+ readonly scrollable: {
6020
+ readonly label: "Scrollable";
6021
+ readonly description: "Turns scroll interaction on.";
6022
+ readonly category: "container";
6060
6023
  readonly specialCategory: null;
6061
- readonly sort: 3;
6024
+ readonly sort: -1;
6062
6025
  };
6063
- readonly inactive_dot_color: {
6064
- readonly label: "Inactive Dot Color";
6026
+ readonly flexDirection: {
6027
+ readonly label: "Flex Direction";
6028
+ readonly description: "Sets row or column layout.";
6029
+ readonly category: "container";
6030
+ readonly specialCategory: null;
6031
+ readonly sort: 4;
6032
+ };
6033
+ readonly flexWrap: {
6034
+ readonly label: "Flex Wrap";
6035
+ readonly description: "Controls whether flex items wrap to multiple lines.";
6036
+ readonly category: "container";
6037
+ readonly specialCategory: null;
6038
+ readonly sort: 4.5;
6039
+ };
6040
+ readonly alignItems: {
6041
+ readonly label: "Align Items";
6042
+ readonly description: "Controls cross-axis alignment.";
6043
+ readonly category: "container";
6044
+ readonly specialCategory: null;
6045
+ readonly sort: 3;
6046
+ };
6047
+ readonly justifyContent: {
6048
+ readonly label: "Justify Content";
6049
+ readonly description: "Controls main-axis alignment.";
6050
+ readonly category: "container";
6051
+ readonly specialCategory: null;
6052
+ readonly sort: 5;
6053
+ };
6054
+ readonly gap: {
6055
+ readonly label: "Gap";
6056
+ readonly description: "Space between children.";
6057
+ readonly category: "container";
6058
+ readonly specialCategory: null;
6059
+ readonly sort: 10;
6060
+ readonly preferredScale: "s";
6061
+ };
6062
+ readonly padding: {
6063
+ readonly label: "Padding";
6064
+ readonly description: "Uniform padding on all sides.";
6065
+ readonly category: "container";
6066
+ readonly specialCategory: "padding";
6067
+ readonly sort: 6;
6068
+ readonly preferredScale: "s";
6069
+ };
6070
+ readonly paddingHorizontal: {
6071
+ readonly label: "Padding Horizontal";
6072
+ readonly description: "Left and right padding.";
6073
+ readonly category: "container";
6074
+ readonly specialCategory: "padding";
6075
+ readonly sort: 7;
6076
+ readonly preferredScale: "s";
6077
+ };
6078
+ readonly paddingVertical: {
6079
+ readonly label: "Padding Vertical";
6080
+ readonly description: "Top and bottom padding.";
6081
+ readonly category: "container";
6082
+ readonly specialCategory: "padding";
6083
+ readonly sort: 8;
6084
+ readonly preferredScale: "vs";
6085
+ };
6086
+ readonly paddingTop: {
6087
+ readonly label: "Padding Top";
6088
+ readonly description: "Top padding only.";
6089
+ readonly category: "container";
6090
+ readonly specialCategory: "padding";
6091
+ readonly sort: 9;
6092
+ readonly preferredScale: "vs";
6093
+ };
6094
+ readonly paddingBottom: {
6095
+ readonly label: "Padding Bottom";
6096
+ readonly description: "Bottom padding only.";
6097
+ readonly category: "container";
6098
+ readonly specialCategory: "padding";
6099
+ readonly sort: 10;
6100
+ readonly preferredScale: "vs";
6101
+ };
6102
+ readonly paddingLeft: {
6103
+ readonly label: "Padding Left";
6104
+ readonly description: "Left padding only.";
6105
+ readonly category: "container";
6106
+ readonly specialCategory: "padding";
6107
+ readonly sort: 11;
6108
+ readonly preferredScale: "s";
6109
+ };
6110
+ readonly paddingRight: {
6111
+ readonly label: "Padding Right";
6112
+ readonly description: "Right padding only.";
6113
+ readonly category: "container";
6114
+ readonly specialCategory: "padding";
6115
+ readonly sort: 12;
6116
+ readonly preferredScale: "s";
6117
+ };
6118
+ readonly margin: {
6119
+ readonly label: "Margin";
6120
+ readonly description: "Uniform margin on all sides.";
6121
+ readonly category: "container";
6122
+ readonly specialCategory: "margin";
6123
+ readonly sort: 13;
6124
+ readonly preferredScale: "s";
6125
+ };
6126
+ readonly marginHorizontal: {
6127
+ readonly label: "Margin Horizontal";
6128
+ readonly description: "Left and right margin.";
6129
+ readonly category: "container";
6130
+ readonly specialCategory: "margin";
6131
+ readonly sort: 14;
6132
+ readonly preferredScale: "s";
6133
+ };
6134
+ readonly marginVertical: {
6135
+ readonly label: "Margin Vertical";
6136
+ readonly description: "Top and bottom margin.";
6137
+ readonly category: "container";
6138
+ readonly specialCategory: "margin";
6139
+ readonly sort: 15;
6140
+ readonly preferredScale: "vs";
6141
+ };
6142
+ readonly marginTop: {
6143
+ readonly label: "Margin Top";
6144
+ readonly description: "Top margin only.";
6145
+ readonly category: "container";
6146
+ readonly specialCategory: "margin";
6147
+ readonly sort: 16;
6148
+ readonly preferredScale: "vs";
6149
+ };
6150
+ readonly marginBottom: {
6151
+ readonly label: "Margin Bottom";
6152
+ readonly description: "Bottom margin only.";
6153
+ readonly category: "container";
6154
+ readonly specialCategory: "margin";
6155
+ readonly sort: 17;
6156
+ readonly preferredScale: "vs";
6157
+ };
6158
+ readonly marginLeft: {
6159
+ readonly label: "Margin Left";
6160
+ readonly description: "Left margin only.";
6161
+ readonly category: "container";
6162
+ readonly specialCategory: "margin";
6163
+ readonly sort: 18;
6164
+ readonly preferredScale: "s";
6165
+ };
6166
+ readonly marginRight: {
6167
+ readonly label: "Margin Right";
6168
+ readonly description: "Right margin only.";
6169
+ readonly category: "container";
6170
+ readonly specialCategory: "margin";
6171
+ readonly sort: 19;
6172
+ readonly preferredScale: "s";
6173
+ };
6174
+ readonly width: {
6175
+ readonly label: "Width";
6176
+ readonly description: "Fixed width value.";
6177
+ readonly category: "container";
6178
+ readonly specialCategory: "size";
6179
+ readonly sort: 0;
6180
+ readonly preferredScale: "s";
6181
+ };
6182
+ readonly minWidth: {
6183
+ readonly label: "Min Width";
6184
+ readonly description: "Minimum width constraint.";
6185
+ readonly category: "container";
6186
+ readonly specialCategory: "size";
6187
+ readonly sort: 1;
6188
+ readonly preferredScale: "s";
6189
+ };
6190
+ readonly maxWidth: {
6191
+ readonly label: "Max Width";
6192
+ readonly description: "Maximum width constraint.";
6193
+ readonly category: "container";
6194
+ readonly specialCategory: "size";
6195
+ readonly sort: 2;
6196
+ readonly preferredScale: "s";
6197
+ };
6198
+ readonly height: {
6199
+ readonly label: "Height";
6200
+ readonly description: "Fixed height value.";
6201
+ readonly category: "container";
6202
+ readonly specialCategory: "size";
6203
+ readonly sort: 3;
6204
+ readonly preferredScale: "vs";
6205
+ };
6206
+ readonly minHeight: {
6207
+ readonly label: "Min Height";
6208
+ readonly description: "Minimum height constraint.";
6209
+ readonly category: "container";
6210
+ readonly specialCategory: "size";
6211
+ readonly sort: 4;
6212
+ readonly preferredScale: "vs";
6213
+ };
6214
+ readonly maxHeight: {
6215
+ readonly label: "Max Height";
6216
+ readonly description: "Maximum height constraint.";
6217
+ readonly category: "container";
6218
+ readonly specialCategory: "size";
6219
+ readonly sort: 5;
6220
+ readonly preferredScale: "vs";
6221
+ };
6222
+ readonly flex: {
6223
+ readonly label: "Flex";
6224
+ readonly description: "Flex grow factor (e.g. 1 fills available space).";
6225
+ readonly category: "container";
6226
+ readonly specialCategory: "size";
6227
+ readonly sort: 6;
6228
+ };
6229
+ readonly position: {
6230
+ readonly label: "Position";
6231
+ readonly description: "Sets layout positioning mode.";
6232
+ readonly category: "container";
6233
+ readonly specialCategory: null;
6234
+ readonly sort: 3;
6235
+ };
6236
+ readonly top: {
6237
+ readonly label: "Top";
6238
+ readonly description: "Offset from the top edge.";
6239
+ readonly category: "container";
6240
+ readonly specialCategory: "offset";
6241
+ readonly sort: 22;
6242
+ readonly preferredScale: "vs";
6243
+ };
6244
+ readonly bottom: {
6245
+ readonly label: "Bottom";
6246
+ readonly description: "Offset from the bottom edge.";
6247
+ readonly category: "container";
6248
+ readonly specialCategory: "offset";
6249
+ readonly sort: 23;
6250
+ readonly preferredScale: "vs";
6251
+ };
6252
+ readonly left: {
6253
+ readonly label: "Left";
6254
+ readonly description: "Offset from the left edge.";
6255
+ readonly category: "container";
6256
+ readonly specialCategory: "offset";
6257
+ readonly sort: 24;
6258
+ readonly preferredScale: "s";
6259
+ };
6260
+ readonly right: {
6261
+ readonly label: "Right";
6262
+ readonly description: "Offset from the right edge.";
6263
+ readonly category: "container";
6264
+ readonly specialCategory: "offset";
6265
+ readonly sort: 25;
6266
+ readonly preferredScale: "s";
6267
+ };
6268
+ readonly zIndex: {
6269
+ readonly label: "Z-Index";
6270
+ readonly description: "Controls stacking order.";
6271
+ readonly category: "container";
6272
+ readonly specialCategory: null;
6273
+ readonly sort: 26;
6274
+ };
6275
+ readonly buttonType: {
6276
+ readonly label: "Button Type";
6277
+ readonly description: "Which onboard button to show.";
6278
+ readonly category: "other";
6279
+ readonly specialCategory: null;
6280
+ readonly sort: 1;
6281
+ };
6282
+ readonly skipNumber: {
6283
+ readonly label: "Skip Number";
6284
+ readonly description: "Slide index to skip to.";
6285
+ readonly category: "other";
6286
+ readonly specialCategory: null;
6287
+ readonly sort: 2;
6288
+ };
6289
+ readonly buttons_direction: {
6290
+ readonly label: "Buttons Direction";
6291
+ readonly description: "Direction to lay out buttons.";
6292
+ readonly category: "container";
6293
+ readonly specialCategory: null;
6294
+ readonly sort: 3;
6295
+ };
6296
+ readonly forIndex: {
6297
+ readonly label: "For Index";
6298
+ readonly description: "Show only for this slide index.";
6299
+ readonly category: "other";
6300
+ readonly specialCategory: null;
6301
+ readonly sort: 4;
6302
+ };
6303
+ readonly condition: {
6304
+ readonly label: "Condition";
6305
+ readonly description: "Built-in condition to check.";
6306
+ readonly category: "other";
6307
+ readonly specialCategory: null;
6308
+ readonly sort: 6;
6309
+ };
6310
+ readonly conditionVariable: {
6311
+ readonly label: "Condition Variable";
6312
+ readonly description: "Value used when checking the condition.";
6313
+ readonly category: "other";
6314
+ readonly specialCategory: null;
6315
+ readonly sort: 7;
6316
+ };
6317
+ };
6318
+ };
6319
+ readonly defaults: {
6320
+ readonly style: {
6321
+ readonly flexDirection: "row";
6322
+ readonly position: "relative";
6323
+ readonly zIndex: 1;
6324
+ readonly alignSelf: "flex-start";
6325
+ readonly flexGrow: 0;
6326
+ readonly flexShrink: 0;
6327
+ readonly display: "flex";
6328
+ readonly gap: 12;
6329
+ readonly alignItems: "center";
6330
+ readonly justifyContent: "center";
6331
+ readonly marginVertical: "12@vs";
6332
+ readonly marginHorizontal: "24@s";
6333
+ };
6334
+ };
6335
+ readonly types: {};
6336
+ }, {
6337
+ readonly schemaVersion: 2;
6338
+ readonly pattern: {
6339
+ readonly type: "OnboardDot";
6340
+ readonly children: "never";
6341
+ readonly attributes: {
6342
+ readonly scrollable: "boolean";
6343
+ readonly style: {
6344
+ readonly flexDirection: readonly ["row", "column"];
6345
+ readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
6346
+ readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
6347
+ readonly justifyContent: readonly ["flex-start", "center", "flex-end", "space-between", "space-around", "space-evenly"];
6348
+ readonly gap: "size";
6349
+ readonly padding: "size";
6350
+ readonly paddingHorizontal: "size";
6351
+ readonly paddingVertical: "size";
6352
+ readonly paddingTop: "size";
6353
+ readonly paddingBottom: "size";
6354
+ readonly paddingLeft: "size";
6355
+ readonly paddingRight: "size";
6356
+ readonly margin: "size";
6357
+ readonly marginHorizontal: "size";
6358
+ readonly marginVertical: "size";
6359
+ readonly marginTop: "size";
6360
+ readonly marginBottom: "size";
6361
+ readonly marginLeft: "size";
6362
+ readonly marginRight: "size";
6363
+ readonly backgroundColor: "color";
6364
+ readonly borderRadius: "size";
6365
+ readonly width: "size";
6366
+ readonly minWidth: "size";
6367
+ readonly maxWidth: "size";
6368
+ readonly height: "size";
6369
+ readonly minHeight: "size";
6370
+ readonly maxHeight: "size";
6371
+ readonly flex: "number";
6372
+ readonly position: readonly ["relative", "absolute"];
6373
+ readonly top: "size";
6374
+ readonly bottom: "size";
6375
+ readonly left: "size";
6376
+ readonly right: "size";
6377
+ readonly zIndex: "number";
6378
+ };
6379
+ readonly title: "title";
6380
+ readonly description: "description";
6381
+ readonly dotType: readonly ["expanding_dot", "normal_dot", "scaling_dot", "sliding_border", "sliding_dot", "liquid_like"];
6382
+ readonly dot_thickness: "size";
6383
+ readonly inactive_dot_opacity: "number";
6384
+ readonly inactive_dot_color: "color";
6385
+ readonly active_dot_color: "color";
6386
+ readonly flexDirection: "never";
6387
+ readonly alignItems: "never";
6388
+ readonly justifyContent: "never";
6389
+ };
6390
+ };
6391
+ readonly meta: {
6392
+ readonly desiredParent: readonly [">OnboardProvider"];
6393
+ readonly label: "Onboard Dot";
6394
+ readonly description: "Renders onboarding progress dots.";
6395
+ readonly specialCategories: {
6396
+ readonly padding: {
6397
+ readonly label: "Padding";
6398
+ readonly description: "Uniform padding on all sides.";
6399
+ readonly category: "container";
6400
+ readonly sort: 1;
6401
+ };
6402
+ readonly margin: {
6403
+ readonly label: "Margin";
6404
+ readonly description: "Uniform margin on all sides.";
6405
+ readonly category: "container";
6406
+ readonly sort: 2;
6407
+ };
6408
+ readonly size: {
6409
+ readonly label: "Size";
6410
+ readonly description: "Fixed dimensions.";
6411
+ readonly category: "container";
6412
+ readonly sort: 3;
6413
+ };
6414
+ readonly offset: {
6415
+ readonly label: "Offset";
6416
+ readonly description: "Absolute positioning offsets.";
6417
+ readonly category: "container";
6418
+ readonly sort: 4;
6419
+ };
6420
+ };
6421
+ readonly styles: {
6422
+ readonly backgroundColor: {
6423
+ readonly label: "Background Color";
6424
+ readonly description: "Background fill color.";
6425
+ readonly category: "style";
6426
+ readonly specialCategory: null;
6427
+ readonly sort: 20;
6428
+ };
6429
+ readonly borderRadius: {
6430
+ readonly label: "Border Radius";
6431
+ readonly description: "Corner rounding amount.";
6432
+ readonly category: "style";
6433
+ readonly specialCategory: null;
6434
+ readonly sort: 21;
6435
+ readonly preferredScale: "s";
6436
+ };
6437
+ readonly dotType: {
6438
+ readonly label: "Dot Type";
6439
+ readonly description: "Dot animation style.";
6440
+ readonly category: "style";
6441
+ readonly specialCategory: null;
6442
+ readonly sort: 1;
6443
+ };
6444
+ readonly inactive_dot_opacity: {
6445
+ readonly label: "Inactive Dot Opacity";
6446
+ readonly description: "Opacity for inactive dots.";
6447
+ readonly category: "style";
6448
+ readonly specialCategory: null;
6449
+ readonly sort: 3;
6450
+ };
6451
+ readonly inactive_dot_color: {
6452
+ readonly label: "Inactive Dot Color";
6065
6453
  readonly description: "Color of inactive dots.";
6066
6454
  readonly category: "style";
6067
6455
  readonly specialCategory: null;
6068
- readonly sort: 4;
6456
+ readonly sort: 4;
6457
+ };
6458
+ readonly dot_thickness: {
6459
+ readonly label: "Dot Thickness";
6460
+ readonly description: "Dot size/diameter.";
6461
+ readonly category: "style";
6462
+ readonly specialCategory: null;
6463
+ readonly sort: 2;
6464
+ };
6465
+ readonly active_dot_color: {
6466
+ readonly label: "Active Dot Color";
6467
+ readonly description: "Color of the active dot.";
6468
+ readonly category: "style";
6469
+ readonly specialCategory: null;
6470
+ readonly sort: 5;
6471
+ };
6472
+ };
6473
+ readonly attributes: {
6474
+ readonly scrollable: {
6475
+ readonly label: "Scrollable";
6476
+ readonly description: "Turns scroll interaction on.";
6477
+ readonly category: "container";
6478
+ readonly specialCategory: null;
6479
+ readonly sort: -1;
6480
+ };
6481
+ readonly flexDirection: {
6482
+ readonly label: "Flex Direction";
6483
+ readonly description: "Sets row or column layout.";
6484
+ readonly category: "container";
6485
+ readonly specialCategory: null;
6486
+ readonly sort: 4;
6487
+ };
6488
+ readonly flexWrap: {
6489
+ readonly label: "Flex Wrap";
6490
+ readonly description: "Controls whether flex items wrap to multiple lines.";
6491
+ readonly category: "container";
6492
+ readonly specialCategory: null;
6493
+ readonly sort: 4.5;
6494
+ };
6495
+ readonly alignItems: {
6496
+ readonly label: "Align Items";
6497
+ readonly description: "Controls cross-axis alignment.";
6498
+ readonly category: "container";
6499
+ readonly specialCategory: null;
6500
+ readonly sort: 3;
6501
+ };
6502
+ readonly justifyContent: {
6503
+ readonly label: "Justify Content";
6504
+ readonly description: "Controls main-axis alignment.";
6505
+ readonly category: "container";
6506
+ readonly specialCategory: null;
6507
+ readonly sort: 5;
6508
+ };
6509
+ readonly gap: {
6510
+ readonly label: "Gap";
6511
+ readonly description: "Space between children.";
6512
+ readonly category: "container";
6513
+ readonly specialCategory: null;
6514
+ readonly sort: 10;
6515
+ readonly preferredScale: "s";
6516
+ };
6517
+ readonly padding: {
6518
+ readonly label: "Padding";
6519
+ readonly description: "Uniform padding on all sides.";
6520
+ readonly category: "container";
6521
+ readonly specialCategory: "padding";
6522
+ readonly sort: 6;
6523
+ readonly preferredScale: "s";
6524
+ };
6525
+ readonly paddingHorizontal: {
6526
+ readonly label: "Padding Horizontal";
6527
+ readonly description: "Left and right padding.";
6528
+ readonly category: "container";
6529
+ readonly specialCategory: "padding";
6530
+ readonly sort: 7;
6531
+ readonly preferredScale: "s";
6532
+ };
6533
+ readonly paddingVertical: {
6534
+ readonly label: "Padding Vertical";
6535
+ readonly description: "Top and bottom padding.";
6536
+ readonly category: "container";
6537
+ readonly specialCategory: "padding";
6538
+ readonly sort: 8;
6539
+ readonly preferredScale: "vs";
6540
+ };
6541
+ readonly paddingTop: {
6542
+ readonly label: "Padding Top";
6543
+ readonly description: "Top padding only.";
6544
+ readonly category: "container";
6545
+ readonly specialCategory: "padding";
6546
+ readonly sort: 9;
6547
+ readonly preferredScale: "vs";
6548
+ };
6549
+ readonly paddingBottom: {
6550
+ readonly label: "Padding Bottom";
6551
+ readonly description: "Bottom padding only.";
6552
+ readonly category: "container";
6553
+ readonly specialCategory: "padding";
6554
+ readonly sort: 10;
6555
+ readonly preferredScale: "vs";
6556
+ };
6557
+ readonly paddingLeft: {
6558
+ readonly label: "Padding Left";
6559
+ readonly description: "Left padding only.";
6560
+ readonly category: "container";
6561
+ readonly specialCategory: "padding";
6562
+ readonly sort: 11;
6563
+ readonly preferredScale: "s";
6564
+ };
6565
+ readonly paddingRight: {
6566
+ readonly label: "Padding Right";
6567
+ readonly description: "Right padding only.";
6568
+ readonly category: "container";
6569
+ readonly specialCategory: "padding";
6570
+ readonly sort: 12;
6571
+ readonly preferredScale: "s";
6572
+ };
6573
+ readonly margin: {
6574
+ readonly label: "Margin";
6575
+ readonly description: "Uniform margin on all sides.";
6576
+ readonly category: "container";
6577
+ readonly specialCategory: "margin";
6578
+ readonly sort: 13;
6579
+ readonly preferredScale: "s";
6580
+ };
6581
+ readonly marginHorizontal: {
6582
+ readonly label: "Margin Horizontal";
6583
+ readonly description: "Left and right margin.";
6584
+ readonly category: "container";
6585
+ readonly specialCategory: "margin";
6586
+ readonly sort: 14;
6587
+ readonly preferredScale: "s";
6588
+ };
6589
+ readonly marginVertical: {
6590
+ readonly label: "Margin Vertical";
6591
+ readonly description: "Top and bottom margin.";
6592
+ readonly category: "container";
6593
+ readonly specialCategory: "margin";
6594
+ readonly sort: 15;
6595
+ readonly preferredScale: "vs";
6596
+ };
6597
+ readonly marginTop: {
6598
+ readonly label: "Margin Top";
6599
+ readonly description: "Top margin only.";
6600
+ readonly category: "container";
6601
+ readonly specialCategory: "margin";
6602
+ readonly sort: 16;
6603
+ readonly preferredScale: "vs";
6604
+ };
6605
+ readonly marginBottom: {
6606
+ readonly label: "Margin Bottom";
6607
+ readonly description: "Bottom margin only.";
6608
+ readonly category: "container";
6609
+ readonly specialCategory: "margin";
6610
+ readonly sort: 17;
6611
+ readonly preferredScale: "vs";
6612
+ };
6613
+ readonly marginLeft: {
6614
+ readonly label: "Margin Left";
6615
+ readonly description: "Left margin only.";
6616
+ readonly category: "container";
6617
+ readonly specialCategory: "margin";
6618
+ readonly sort: 18;
6619
+ readonly preferredScale: "s";
6620
+ };
6621
+ readonly marginRight: {
6622
+ readonly label: "Margin Right";
6623
+ readonly description: "Right margin only.";
6624
+ readonly category: "container";
6625
+ readonly specialCategory: "margin";
6626
+ readonly sort: 19;
6627
+ readonly preferredScale: "s";
6628
+ };
6629
+ readonly width: {
6630
+ readonly label: "Width";
6631
+ readonly description: "Fixed width value.";
6632
+ readonly category: "container";
6633
+ readonly specialCategory: "size";
6634
+ readonly sort: 0;
6635
+ readonly preferredScale: "s";
6636
+ };
6637
+ readonly minWidth: {
6638
+ readonly label: "Min Width";
6639
+ readonly description: "Minimum width constraint.";
6640
+ readonly category: "container";
6641
+ readonly specialCategory: "size";
6642
+ readonly sort: 1;
6643
+ readonly preferredScale: "s";
6644
+ };
6645
+ readonly maxWidth: {
6646
+ readonly label: "Max Width";
6647
+ readonly description: "Maximum width constraint.";
6648
+ readonly category: "container";
6649
+ readonly specialCategory: "size";
6650
+ readonly sort: 2;
6651
+ readonly preferredScale: "s";
6652
+ };
6653
+ readonly height: {
6654
+ readonly label: "Height";
6655
+ readonly description: "Fixed height value.";
6656
+ readonly category: "container";
6657
+ readonly specialCategory: "size";
6658
+ readonly sort: 3;
6659
+ readonly preferredScale: "vs";
6660
+ };
6661
+ readonly minHeight: {
6662
+ readonly label: "Min Height";
6663
+ readonly description: "Minimum height constraint.";
6664
+ readonly category: "container";
6665
+ readonly specialCategory: "size";
6666
+ readonly sort: 4;
6667
+ readonly preferredScale: "vs";
6668
+ };
6669
+ readonly maxHeight: {
6670
+ readonly label: "Max Height";
6671
+ readonly description: "Maximum height constraint.";
6672
+ readonly category: "container";
6673
+ readonly specialCategory: "size";
6674
+ readonly sort: 5;
6675
+ readonly preferredScale: "vs";
6676
+ };
6677
+ readonly flex: {
6678
+ readonly label: "Flex";
6679
+ readonly description: "Flex grow factor (e.g. 1 fills available space).";
6680
+ readonly category: "container";
6681
+ readonly specialCategory: "size";
6682
+ readonly sort: 6;
6683
+ };
6684
+ readonly position: {
6685
+ readonly label: "Position";
6686
+ readonly description: "Sets layout positioning mode.";
6687
+ readonly category: "container";
6688
+ readonly specialCategory: null;
6689
+ readonly sort: 3;
6690
+ };
6691
+ readonly top: {
6692
+ readonly label: "Top";
6693
+ readonly description: "Offset from the top edge.";
6694
+ readonly category: "container";
6695
+ readonly specialCategory: "offset";
6696
+ readonly sort: 22;
6697
+ readonly preferredScale: "vs";
6698
+ };
6699
+ readonly bottom: {
6700
+ readonly label: "Bottom";
6701
+ readonly description: "Offset from the bottom edge.";
6702
+ readonly category: "container";
6703
+ readonly specialCategory: "offset";
6704
+ readonly sort: 23;
6705
+ readonly preferredScale: "vs";
6706
+ };
6707
+ readonly left: {
6708
+ readonly label: "Left";
6709
+ readonly description: "Offset from the left edge.";
6710
+ readonly category: "container";
6711
+ readonly specialCategory: "offset";
6712
+ readonly sort: 24;
6713
+ readonly preferredScale: "s";
6714
+ };
6715
+ readonly right: {
6716
+ readonly label: "Right";
6717
+ readonly description: "Offset from the right edge.";
6718
+ readonly category: "container";
6719
+ readonly specialCategory: "offset";
6720
+ readonly sort: 25;
6721
+ readonly preferredScale: "s";
6722
+ };
6723
+ readonly zIndex: {
6724
+ readonly label: "Z-Index";
6725
+ readonly description: "Controls stacking order.";
6726
+ readonly category: "container";
6727
+ readonly specialCategory: null;
6728
+ readonly sort: 26;
6729
+ };
6730
+ };
6731
+ };
6732
+ readonly defaults: {
6733
+ readonly style: {
6734
+ readonly flexDirection: "row";
6735
+ readonly position: "relative";
6736
+ readonly zIndex: 1;
6737
+ readonly alignSelf: "flex-start";
6738
+ readonly flexGrow: 0;
6739
+ readonly flexShrink: 0;
6740
+ readonly alignItems: "center";
6741
+ readonly justifyContent: "center";
6742
+ readonly gap: "12@s";
6743
+ };
6744
+ readonly dotType: "expanding_dot";
6745
+ readonly dot_thickness: 10;
6746
+ readonly inactive_dot_opacity: 0.3;
6747
+ readonly active_dot_color: "#007AFF";
6748
+ };
6749
+ readonly types: {};
6750
+ }, {
6751
+ readonly schemaVersion: 2;
6752
+ readonly pattern: {
6753
+ readonly type: "OnboardFooter";
6754
+ readonly children: "node";
6755
+ readonly attributes: {
6756
+ readonly title: "title";
6757
+ readonly description: "description";
6758
+ readonly adjustsFontSizeToFit: "boolean";
6759
+ readonly showEllipsis: "boolean";
6760
+ readonly style: {
6761
+ readonly color: "color";
6762
+ readonly fontSize: "size";
6763
+ readonly fontFamily: "fontFamily";
6764
+ readonly fontWeight: "fontWeight";
6765
+ readonly textAlign: readonly ["left", "center", "right", "justify"];
6766
+ readonly flexDirection: readonly ["row", "column"];
6767
+ readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
6768
+ readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
6769
+ readonly justifyContent: readonly ["flex-start", "center", "flex-end", "space-between", "space-around", "space-evenly"];
6770
+ readonly gap: "size";
6771
+ readonly padding: "size";
6772
+ readonly paddingHorizontal: "size";
6773
+ readonly paddingVertical: "size";
6774
+ readonly paddingTop: "size";
6775
+ readonly paddingBottom: "size";
6776
+ readonly paddingLeft: "size";
6777
+ readonly paddingRight: "size";
6778
+ readonly margin: "size";
6779
+ readonly marginHorizontal: "size";
6780
+ readonly marginVertical: "size";
6781
+ readonly marginTop: "size";
6782
+ readonly marginBottom: "size";
6783
+ readonly marginLeft: "size";
6784
+ readonly marginRight: "size";
6785
+ readonly backgroundColor: "color";
6786
+ readonly borderRadius: "size";
6787
+ readonly width: "size";
6788
+ readonly minWidth: "size";
6789
+ readonly maxWidth: "size";
6790
+ readonly height: "size";
6791
+ readonly minHeight: "size";
6792
+ readonly maxHeight: "size";
6793
+ readonly flex: "number";
6794
+ readonly position: readonly ["relative", "absolute"];
6795
+ readonly top: "size";
6796
+ readonly bottom: "size";
6797
+ readonly left: "size";
6798
+ readonly right: "size";
6799
+ readonly zIndex: "number";
6800
+ };
6801
+ readonly scrollable: "boolean";
6802
+ readonly textLocalizationKey: "string";
6803
+ readonly linkedWordFirstLocalizationKey: "string";
6804
+ readonly linkedWordFirstColor: "color";
6805
+ readonly linkedWordFirstPage: "string";
6806
+ readonly linkedWordSecondLocalizationKey: "string";
6807
+ readonly linkedWordSecondColor: "color";
6808
+ readonly linkedWordSecondPage: "string";
6809
+ };
6810
+ readonly defaults: {
6811
+ readonly style: {
6812
+ readonly color: "THEME_COLORS.TEXT";
6813
+ readonly fontSize: "16@fs";
6814
+ readonly fontWeight: "400";
6815
+ };
6816
+ };
6817
+ };
6818
+ readonly meta: {
6819
+ readonly desiredParent: readonly [">OnboardItem"];
6820
+ readonly label: "Onboard Footer";
6821
+ readonly description: "Footer text with optional links.";
6822
+ readonly styles: {
6823
+ readonly color: {
6824
+ readonly label: "Color";
6825
+ readonly description: "Text color.";
6826
+ readonly category: "style";
6827
+ readonly specialCategory: null;
6828
+ readonly sort: 1;
6829
+ };
6830
+ readonly fontSize: {
6831
+ readonly label: "Font Size";
6832
+ readonly description: "Text size.";
6833
+ readonly category: "style";
6834
+ readonly specialCategory: null;
6835
+ readonly sort: 2;
6836
+ readonly preferredScale: "s";
6837
+ };
6838
+ readonly fontFamily: {
6839
+ readonly label: "Font Family";
6840
+ readonly description: "Font family used for the text.";
6841
+ readonly category: "style";
6842
+ readonly specialCategory: null;
6843
+ readonly sort: 3;
6844
+ };
6845
+ readonly fontWeight: {
6846
+ readonly label: "Font Weight";
6847
+ readonly description: "Text weight.";
6848
+ readonly category: "style";
6849
+ readonly specialCategory: null;
6850
+ readonly sort: 4;
6851
+ };
6852
+ readonly textAlign: {
6853
+ readonly label: "Text Align";
6854
+ readonly description: "Text alignment.";
6855
+ readonly category: "style";
6856
+ readonly specialCategory: null;
6857
+ readonly sort: 5;
6069
6858
  };
6070
- readonly dot_thickness: {
6071
- readonly label: "Dot Thickness";
6072
- readonly description: "Dot size/diameter.";
6859
+ readonly backgroundColor: {
6860
+ readonly label: "Background Color";
6861
+ readonly description: "Background fill color.";
6073
6862
  readonly category: "style";
6074
6863
  readonly specialCategory: null;
6075
- readonly sort: 2;
6864
+ readonly sort: 20;
6076
6865
  };
6077
- readonly active_dot_color: {
6078
- readonly label: "Active Dot Color";
6079
- readonly description: "Color of the active dot.";
6866
+ readonly borderRadius: {
6867
+ readonly label: "Border Radius";
6868
+ readonly description: "Corner rounding amount.";
6080
6869
  readonly category: "style";
6081
6870
  readonly specialCategory: null;
6082
- readonly sort: 5;
6871
+ readonly sort: 21;
6872
+ readonly preferredScale: "s";
6873
+ };
6874
+ readonly linkedWordFirstColor: {
6875
+ readonly label: "Linked Word First Color";
6876
+ readonly description: "Color of the first linked word.";
6877
+ readonly category: "style";
6878
+ readonly specialCategory: null;
6879
+ readonly sort: 3;
6880
+ };
6881
+ readonly linkedWordSecondColor: {
6882
+ readonly label: "Linked Word Second Color";
6883
+ readonly description: "Color of the second linked word.";
6884
+ readonly category: "style";
6885
+ readonly specialCategory: null;
6886
+ readonly sort: 6;
6083
6887
  };
6084
6888
  };
6085
6889
  readonly attributes: {
6890
+ readonly adjustsFontSizeToFit: {
6891
+ readonly label: "Adjust Font Size To Fit";
6892
+ readonly description: "Automatically reduces font size to fit the available space.";
6893
+ readonly category: "other";
6894
+ readonly specialCategory: null;
6895
+ readonly sort: 1;
6896
+ };
6897
+ readonly showEllipsis: {
6898
+ readonly label: "Show Ellipsis";
6899
+ readonly description: "If text overflows, show ellipsis (…); applied as single-line truncation.";
6900
+ readonly category: "other";
6901
+ readonly specialCategory: null;
6902
+ readonly sort: 2;
6903
+ };
6086
6904
  readonly scrollable: {
6087
6905
  readonly label: "Scrollable";
6088
6906
  readonly description: "Turns scroll interaction on.";
@@ -6339,42 +7157,99 @@ export declare const patterns: readonly [{
6339
7157
  readonly specialCategory: null;
6340
7158
  readonly sort: 26;
6341
7159
  };
7160
+ readonly textLocalizationKey: {
7161
+ readonly label: "Text Localization Key";
7162
+ readonly description: "Localization key for the footer text.";
7163
+ readonly category: "other";
7164
+ readonly specialCategory: null;
7165
+ readonly sort: 1;
7166
+ };
7167
+ readonly linkedWordFirstLocalizationKey: {
7168
+ readonly label: "Linked Word First Localization Key";
7169
+ readonly description: "Key for the first linked word.";
7170
+ readonly category: "other";
7171
+ readonly specialCategory: null;
7172
+ readonly sort: 2;
7173
+ };
7174
+ readonly linkedWordFirstPage: {
7175
+ readonly label: "Linked Word First Page";
7176
+ readonly description: "Page opened by the first link.";
7177
+ readonly category: "other";
7178
+ readonly specialCategory: null;
7179
+ readonly sort: 4;
7180
+ };
7181
+ readonly linkedWordSecondLocalizationKey: {
7182
+ readonly label: "Linked Word Second Localization Key";
7183
+ readonly description: "Key for the second linked word.";
7184
+ readonly category: "other";
7185
+ readonly specialCategory: null;
7186
+ readonly sort: 5;
7187
+ };
7188
+ readonly linkedWordSecondPage: {
7189
+ readonly label: "Linked Word Second Page";
7190
+ readonly description: "Page opened by the second link.";
7191
+ readonly category: "other";
7192
+ readonly specialCategory: null;
7193
+ readonly sort: 7;
7194
+ };
7195
+ };
7196
+ readonly specialCategories: {
7197
+ readonly padding: {
7198
+ readonly label: "Padding";
7199
+ readonly description: "Uniform padding on all sides.";
7200
+ readonly category: "container";
7201
+ readonly sort: 1;
7202
+ };
7203
+ readonly margin: {
7204
+ readonly label: "Margin";
7205
+ readonly description: "Uniform margin on all sides.";
7206
+ readonly category: "container";
7207
+ readonly sort: 2;
7208
+ };
7209
+ readonly size: {
7210
+ readonly label: "Size";
7211
+ readonly description: "Fixed dimensions.";
7212
+ readonly category: "container";
7213
+ readonly sort: 3;
7214
+ };
7215
+ readonly offset: {
7216
+ readonly label: "Offset";
7217
+ readonly description: "Absolute positioning offsets.";
7218
+ readonly category: "container";
7219
+ readonly sort: 4;
7220
+ };
6342
7221
  };
6343
7222
  };
6344
7223
  readonly defaults: {
6345
7224
  readonly style: {
7225
+ readonly color: "THEME_COLORS.TEXT";
7226
+ readonly fontSize: "16@fs";
7227
+ readonly fontWeight: "400";
6346
7228
  readonly flexDirection: "row";
6347
7229
  readonly position: "relative";
6348
7230
  readonly zIndex: 1;
6349
7231
  readonly alignSelf: "flex-start";
6350
7232
  readonly flexGrow: 0;
6351
7233
  readonly flexShrink: 0;
7234
+ readonly flexWrap: "wrap";
6352
7235
  readonly alignItems: "center";
6353
7236
  readonly justifyContent: "center";
6354
- readonly gap: "12@s";
7237
+ readonly textAlign: "center";
7238
+ readonly paddingHorizontal: "24@s";
6355
7239
  };
6356
- readonly dotType: "expanding_dot";
6357
- readonly dot_thickness: 10;
6358
- readonly inactive_dot_opacity: 0.3;
6359
- readonly active_dot_color: "#007AFF";
6360
7240
  };
6361
7241
  readonly types: {};
6362
7242
  }, {
6363
7243
  readonly schemaVersion: 2;
6364
7244
  readonly pattern: {
6365
- readonly type: "OnboardFooter";
7245
+ readonly type: "OnboardImage";
6366
7246
  readonly children: "node";
6367
7247
  readonly attributes: {
6368
7248
  readonly title: "title";
6369
7249
  readonly description: "description";
6370
- readonly adjustsFontSizeToFit: "boolean";
6371
- readonly showEllipsis: "boolean";
7250
+ readonly src: "string";
6372
7251
  readonly style: {
6373
- readonly color: "color";
6374
- readonly fontSize: "size";
6375
- readonly fontFamily: "fontFamily";
6376
- readonly fontWeight: "fontWeight";
6377
- readonly textAlign: readonly ["left", "center", "right", "justify"];
7252
+ readonly resizeMode: readonly ["cover", "contain", "stretch", "center"];
6378
7253
  readonly flexDirection: readonly ["row", "column"];
6379
7254
  readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
6380
7255
  readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
@@ -6411,71 +7286,45 @@ export declare const patterns: readonly [{
6411
7286
  readonly zIndex: "number";
6412
7287
  };
6413
7288
  readonly scrollable: "boolean";
6414
- readonly textLocalizationKey: "string";
6415
- readonly linkedWordFirstLocalizationKey: "string";
6416
- readonly linkedWordFirstColor: "color";
6417
- readonly linkedWordFirstPage: "string";
6418
- readonly linkedWordSecondLocalizationKey: "string";
6419
- readonly linkedWordSecondColor: "color";
6420
- readonly linkedWordSecondPage: "string";
7289
+ readonly video_url: "string";
7290
+ readonly lottie: "string";
6421
7291
  };
6422
7292
  };
6423
7293
  readonly meta: {
6424
- readonly desiredParent: readonly [">OnboardItem"];
6425
- readonly label: "Onboard Footer";
6426
- readonly description: "Footer text with optional links.";
6427
- readonly attributes: {
6428
- readonly styles: {
6429
- readonly color: {
6430
- readonly label: "Color";
6431
- readonly description: "Text color.";
6432
- readonly category: "style";
6433
- readonly specialCategory: null;
6434
- readonly sort: 1;
6435
- };
6436
- readonly fontSize: {
6437
- readonly label: "Font Size";
6438
- readonly description: "Text size.";
6439
- readonly category: "style";
6440
- readonly specialCategory: null;
6441
- readonly sort: 2;
6442
- readonly preferredScale: "s";
6443
- };
6444
- readonly fontFamily: {
6445
- readonly label: "Font Family";
6446
- readonly description: "Font family used for the text.";
6447
- readonly category: "style";
6448
- readonly specialCategory: null;
6449
- readonly sort: 3;
6450
- };
6451
- readonly fontWeight: {
6452
- readonly label: "Font Weight";
6453
- readonly description: "Text weight.";
6454
- readonly category: "style";
6455
- readonly specialCategory: null;
6456
- readonly sort: 4;
6457
- };
6458
- readonly textAlign: {
6459
- readonly label: "Text Align";
6460
- readonly description: "Text alignment.";
6461
- readonly category: "style";
6462
- readonly specialCategory: null;
6463
- readonly sort: 5;
6464
- };
7294
+ readonly desiredParent: readonly [">OnboardProvider", ">OnboardItem", "!=Onboard"];
7295
+ readonly label: "Onboard Image";
7296
+ readonly description: "Onboarding hero image with media.";
7297
+ readonly styles: {
7298
+ readonly resizeMode: {
7299
+ readonly label: "Resize Mode";
7300
+ readonly description: "How the image fits the frame.";
7301
+ readonly category: "style";
7302
+ readonly specialCategory: null;
7303
+ readonly sort: 4;
6465
7304
  };
6466
- readonly adjustsFontSizeToFit: {
6467
- readonly label: "Adjust Font Size To Fit";
6468
- readonly description: "Automatically reduces font size to fit the available space.";
6469
- readonly category: "other";
7305
+ readonly backgroundColor: {
7306
+ readonly label: "Background Color";
7307
+ readonly description: "Background fill color.";
7308
+ readonly category: "style";
6470
7309
  readonly specialCategory: null;
6471
- readonly sort: 1;
7310
+ readonly sort: 20;
6472
7311
  };
6473
- readonly showEllipsis: {
6474
- readonly label: "Show Ellipsis";
6475
- readonly description: "If text overflows, show ellipsis (…); applied as single-line truncation.";
7312
+ readonly borderRadius: {
7313
+ readonly label: "Border Radius";
7314
+ readonly description: "Corner rounding amount.";
7315
+ readonly category: "style";
7316
+ readonly specialCategory: null;
7317
+ readonly sort: 21;
7318
+ readonly preferredScale: "s";
7319
+ };
7320
+ };
7321
+ readonly attributes: {
7322
+ readonly src: {
7323
+ readonly label: "Src";
7324
+ readonly description: "Image source URL.";
6476
7325
  readonly category: "other";
6477
7326
  readonly specialCategory: null;
6478
- readonly sort: 2;
7327
+ readonly sort: 1;
6479
7328
  };
6480
7329
  readonly scrollable: {
6481
7330
  readonly label: "Scrollable";
@@ -6733,41 +7582,20 @@ export declare const patterns: readonly [{
6733
7582
  readonly specialCategory: null;
6734
7583
  readonly sort: 26;
6735
7584
  };
6736
- readonly textLocalizationKey: {
6737
- readonly label: "Text Localization Key";
6738
- readonly description: "Localization key for the footer text.";
7585
+ readonly video_url: {
7586
+ readonly label: "Video Url";
7587
+ readonly description: "URL for the onboarding video.";
6739
7588
  readonly category: "other";
6740
7589
  readonly specialCategory: null;
6741
7590
  readonly sort: 1;
6742
7591
  };
6743
- readonly linkedWordFirstLocalizationKey: {
6744
- readonly label: "Linked Word First Localization Key";
6745
- readonly description: "Key for the first linked word.";
7592
+ readonly lottie: {
7593
+ readonly label: "Lottie";
7594
+ readonly description: "Path to the lottie animation.";
6746
7595
  readonly category: "other";
6747
7596
  readonly specialCategory: null;
6748
7597
  readonly sort: 2;
6749
7598
  };
6750
- readonly linkedWordFirstPage: {
6751
- readonly label: "Linked Word First Page";
6752
- readonly description: "Page opened by the first link.";
6753
- readonly category: "other";
6754
- readonly specialCategory: null;
6755
- readonly sort: 4;
6756
- };
6757
- readonly linkedWordSecondLocalizationKey: {
6758
- readonly label: "Linked Word Second Localization Key";
6759
- readonly description: "Key for the second linked word.";
6760
- readonly category: "other";
6761
- readonly specialCategory: null;
6762
- readonly sort: 5;
6763
- };
6764
- readonly linkedWordSecondPage: {
6765
- readonly label: "Linked Word Second Page";
6766
- readonly description: "Page opened by the second link.";
6767
- readonly category: "other";
6768
- readonly specialCategory: null;
6769
- readonly sort: 7;
6770
- };
6771
7599
  };
6772
7600
  readonly specialCategories: {
6773
7601
  readonly padding: {
@@ -6795,66 +7623,24 @@ export declare const patterns: readonly [{
6795
7623
  readonly sort: 4;
6796
7624
  };
6797
7625
  };
6798
- readonly styles: {
6799
- readonly backgroundColor: {
6800
- readonly label: "Background Color";
6801
- readonly description: "Background fill color.";
6802
- readonly category: "style";
6803
- readonly specialCategory: null;
6804
- readonly sort: 20;
6805
- };
6806
- readonly borderRadius: {
6807
- readonly label: "Border Radius";
6808
- readonly description: "Corner rounding amount.";
6809
- readonly category: "style";
6810
- readonly specialCategory: null;
6811
- readonly sort: 21;
6812
- readonly preferredScale: "s";
6813
- };
6814
- readonly linkedWordFirstColor: {
6815
- readonly label: "Linked Word First Color";
6816
- readonly description: "Color of the first linked word.";
6817
- readonly category: "style";
6818
- readonly specialCategory: null;
6819
- readonly sort: 3;
6820
- };
6821
- readonly linkedWordSecondColor: {
6822
- readonly label: "Linked Word Second Color";
6823
- readonly description: "Color of the second linked word.";
6824
- readonly category: "style";
6825
- readonly specialCategory: null;
6826
- readonly sort: 6;
6827
- };
6828
- };
6829
7626
  };
6830
7627
  readonly defaults: {
6831
7628
  readonly style: {
6832
- readonly flexDirection: "row";
7629
+ readonly flexDirection: "column";
6833
7630
  readonly position: "relative";
6834
7631
  readonly zIndex: 1;
6835
7632
  readonly alignSelf: "flex-start";
6836
7633
  readonly flexGrow: 0;
6837
7634
  readonly flexShrink: 0;
6838
- readonly flexWrap: "wrap";
6839
- readonly alignItems: "center";
6840
- readonly justifyContent: "center";
6841
- readonly textAlign: "center";
6842
- readonly paddingHorizontal: "24@s";
6843
7635
  };
6844
7636
  };
6845
7637
  readonly types: {};
6846
7638
  }, {
6847
7639
  readonly schemaVersion: 2;
6848
7640
  readonly pattern: {
6849
- readonly type: "OnboardImage";
7641
+ readonly type: "OnboardItem";
6850
7642
  readonly children: "node";
6851
7643
  readonly attributes: {
6852
- readonly title: "title";
6853
- readonly description: "description";
6854
- readonly src: "string";
6855
- readonly width: "size";
6856
- readonly height: "size";
6857
- readonly resizeMode: readonly ["cover", "contain", "stretch", "center"];
6858
7644
  readonly scrollable: "boolean";
6859
7645
  readonly style: {
6860
7646
  readonly flexDirection: readonly ["row", "column"];
@@ -6892,14 +7678,44 @@ export declare const patterns: readonly [{
6892
7678
  readonly right: "size";
6893
7679
  readonly zIndex: "number";
6894
7680
  };
6895
- readonly video_url: "string";
6896
- readonly lottie: "string";
7681
+ readonly title: "title";
7682
+ readonly description: "description";
7683
+ readonly display: readonly ["flex", "block"];
7684
+ readonly gap: "size";
7685
+ readonly flexDirection: readonly ["row", "column"];
7686
+ readonly paddingHorizontal: "size";
6897
7687
  };
6898
7688
  };
6899
7689
  readonly meta: {
6900
- readonly desiredParent: readonly [">OnboardProvider", ">OnboardItem", "!=Onboard"];
6901
- readonly label: "Onboard Image";
6902
- readonly description: "Onboarding hero image with media.";
7690
+ readonly desiredParent: readonly ["=Onboard"];
7691
+ readonly label: "Onboard Item";
7692
+ readonly description: "Single onboarding screen section.";
7693
+ readonly specialCategories: {
7694
+ readonly padding: {
7695
+ readonly label: "Padding";
7696
+ readonly description: "Uniform padding on all sides.";
7697
+ readonly category: "container";
7698
+ readonly sort: 1;
7699
+ };
7700
+ readonly margin: {
7701
+ readonly label: "Margin";
7702
+ readonly description: "Uniform margin on all sides.";
7703
+ readonly category: "container";
7704
+ readonly sort: 2;
7705
+ };
7706
+ readonly size: {
7707
+ readonly label: "Size";
7708
+ readonly description: "Fixed dimensions.";
7709
+ readonly category: "container";
7710
+ readonly sort: 3;
7711
+ };
7712
+ readonly offset: {
7713
+ readonly label: "Offset";
7714
+ readonly description: "Absolute positioning offsets.";
7715
+ readonly category: "container";
7716
+ readonly sort: 4;
7717
+ };
7718
+ };
6903
7719
  readonly styles: {
6904
7720
  readonly backgroundColor: {
6905
7721
  readonly label: "Background Color";
@@ -6918,36 +7734,6 @@ export declare const patterns: readonly [{
6918
7734
  };
6919
7735
  };
6920
7736
  readonly attributes: {
6921
- readonly src: {
6922
- readonly label: "Src";
6923
- readonly description: "Image source URL.";
6924
- readonly category: "other";
6925
- readonly specialCategory: null;
6926
- readonly sort: 1;
6927
- };
6928
- readonly width: {
6929
- readonly label: "Width";
6930
- readonly description: "Fixed width value.";
6931
- readonly category: "container";
6932
- readonly specialCategory: "size";
6933
- readonly sort: 0;
6934
- readonly preferredScale: "s";
6935
- };
6936
- readonly height: {
6937
- readonly label: "Height";
6938
- readonly description: "Fixed height value.";
6939
- readonly category: "container";
6940
- readonly specialCategory: "size";
6941
- readonly sort: 3;
6942
- readonly preferredScale: "vs";
6943
- };
6944
- readonly resizeMode: {
6945
- readonly label: "Resize Mode";
6946
- readonly description: "How the image fits the frame.";
6947
- readonly category: "other";
6948
- readonly specialCategory: null;
6949
- readonly sort: 4;
6950
- };
6951
7737
  readonly scrollable: {
6952
7738
  readonly label: "Scrollable";
6953
7739
  readonly description: "Turns scroll interaction on.";
@@ -6957,10 +7743,10 @@ export declare const patterns: readonly [{
6957
7743
  };
6958
7744
  readonly flexDirection: {
6959
7745
  readonly label: "Flex Direction";
6960
- readonly description: "Sets row or column layout.";
7746
+ readonly description: "Order of child stacking.";
6961
7747
  readonly category: "container";
6962
7748
  readonly specialCategory: null;
6963
- readonly sort: 4;
7749
+ readonly sort: 3;
6964
7750
  };
6965
7751
  readonly flexWrap: {
6966
7752
  readonly label: "Flex Wrap";
@@ -6985,11 +7771,10 @@ export declare const patterns: readonly [{
6985
7771
  };
6986
7772
  readonly gap: {
6987
7773
  readonly label: "Gap";
6988
- readonly description: "Space between children.";
7774
+ readonly description: "Space between child blocks.";
6989
7775
  readonly category: "container";
6990
7776
  readonly specialCategory: null;
6991
- readonly sort: 10;
6992
- readonly preferredScale: "s";
7777
+ readonly sort: 2;
6993
7778
  };
6994
7779
  readonly padding: {
6995
7780
  readonly label: "Padding";
@@ -7004,8 +7789,7 @@ export declare const patterns: readonly [{
7004
7789
  readonly description: "Left and right padding.";
7005
7790
  readonly category: "container";
7006
7791
  readonly specialCategory: "padding";
7007
- readonly sort: 7;
7008
- readonly preferredScale: "s";
7792
+ readonly sort: 4;
7009
7793
  };
7010
7794
  readonly paddingVertical: {
7011
7795
  readonly label: "Padding Vertical";
@@ -7103,6 +7887,14 @@ export declare const patterns: readonly [{
7103
7887
  readonly sort: 19;
7104
7888
  readonly preferredScale: "s";
7105
7889
  };
7890
+ readonly width: {
7891
+ readonly label: "Width";
7892
+ readonly description: "Fixed width value.";
7893
+ readonly category: "container";
7894
+ readonly specialCategory: "size";
7895
+ readonly sort: 0;
7896
+ readonly preferredScale: "s";
7897
+ };
7106
7898
  readonly minWidth: {
7107
7899
  readonly label: "Min Width";
7108
7900
  readonly description: "Minimum width constraint.";
@@ -7119,6 +7911,14 @@ export declare const patterns: readonly [{
7119
7911
  readonly sort: 2;
7120
7912
  readonly preferredScale: "s";
7121
7913
  };
7914
+ readonly height: {
7915
+ readonly label: "Height";
7916
+ readonly description: "Fixed height value.";
7917
+ readonly category: "container";
7918
+ readonly specialCategory: "size";
7919
+ readonly sort: 3;
7920
+ readonly preferredScale: "vs";
7921
+ };
7122
7922
  readonly minHeight: {
7123
7923
  readonly label: "Min Height";
7124
7924
  readonly description: "Minimum height constraint.";
@@ -7188,46 +7988,13 @@ export declare const patterns: readonly [{
7188
7988
  readonly specialCategory: null;
7189
7989
  readonly sort: 26;
7190
7990
  };
7191
- readonly video_url: {
7192
- readonly label: "Video Url";
7193
- readonly description: "URL for the onboarding video.";
7194
- readonly category: "other";
7195
- readonly specialCategory: null;
7196
- readonly sort: 1;
7197
- };
7198
- readonly lottie: {
7199
- readonly label: "Lottie";
7200
- readonly description: "Path to the lottie animation.";
7201
- readonly category: "other";
7202
- readonly specialCategory: null;
7203
- readonly sort: 2;
7204
- };
7205
- };
7206
- readonly specialCategories: {
7207
- readonly padding: {
7208
- readonly label: "Padding";
7209
- readonly description: "Uniform padding on all sides.";
7991
+ readonly display: {
7992
+ readonly label: "Display";
7993
+ readonly description: "Controls layout display mode.";
7210
7994
  readonly category: "container";
7995
+ readonly specialCategory: null;
7211
7996
  readonly sort: 1;
7212
7997
  };
7213
- readonly margin: {
7214
- readonly label: "Margin";
7215
- readonly description: "Uniform margin on all sides.";
7216
- readonly category: "container";
7217
- readonly sort: 2;
7218
- };
7219
- readonly size: {
7220
- readonly label: "Size";
7221
- readonly description: "Fixed dimensions.";
7222
- readonly category: "container";
7223
- readonly sort: 3;
7224
- };
7225
- readonly offset: {
7226
- readonly label: "Offset";
7227
- readonly description: "Absolute positioning offsets.";
7228
- readonly category: "container";
7229
- readonly sort: 4;
7230
- };
7231
7998
  };
7232
7999
  };
7233
8000
  readonly defaults: {
@@ -7238,13 +8005,16 @@ export declare const patterns: readonly [{
7238
8005
  readonly alignSelf: "flex-start";
7239
8006
  readonly flexGrow: 0;
7240
8007
  readonly flexShrink: 0;
8008
+ readonly gap: "16@vs";
8009
+ readonly paddingHorizontal: "24@s";
7241
8010
  };
8011
+ readonly display: "flex";
7242
8012
  };
7243
8013
  readonly types: {};
7244
8014
  }, {
7245
8015
  readonly schemaVersion: 2;
7246
8016
  readonly pattern: {
7247
- readonly type: "OnboardItem";
8017
+ readonly type: "OnboardProvider";
7248
8018
  readonly children: "node";
7249
8019
  readonly attributes: {
7250
8020
  readonly scrollable: "boolean";
@@ -7286,16 +8056,14 @@ export declare const patterns: readonly [{
7286
8056
  };
7287
8057
  readonly title: "title";
7288
8058
  readonly description: "description";
7289
- readonly display: readonly ["flex", "block"];
7290
- readonly gap: "size";
7291
- readonly flexDirection: readonly ["row", "column"];
7292
- readonly paddingHorizontal: "size";
8059
+ readonly theme: readonly ["light", "dark", "all"];
8060
+ readonly borderRadius: "never";
7293
8061
  };
7294
8062
  };
7295
8063
  readonly meta: {
7296
- readonly desiredParent: readonly ["=Onboard"];
7297
- readonly label: "Onboard Item";
7298
- readonly description: "Single onboarding screen section.";
8064
+ readonly desiredParent: readonly ["root"];
8065
+ readonly label: "Onboard Provider";
8066
+ readonly description: "Provides shared settings for onboarding.";
7299
8067
  readonly specialCategories: {
7300
8068
  readonly padding: {
7301
8069
  readonly label: "Padding";
@@ -7349,10 +8117,10 @@ export declare const patterns: readonly [{
7349
8117
  };
7350
8118
  readonly flexDirection: {
7351
8119
  readonly label: "Flex Direction";
7352
- readonly description: "Order of child stacking.";
8120
+ readonly description: "Sets row or column layout.";
7353
8121
  readonly category: "container";
7354
8122
  readonly specialCategory: null;
7355
- readonly sort: 3;
8123
+ readonly sort: 4;
7356
8124
  };
7357
8125
  readonly flexWrap: {
7358
8126
  readonly label: "Flex Wrap";
@@ -7377,10 +8145,11 @@ export declare const patterns: readonly [{
7377
8145
  };
7378
8146
  readonly gap: {
7379
8147
  readonly label: "Gap";
7380
- readonly description: "Space between child blocks.";
8148
+ readonly description: "Space between children.";
7381
8149
  readonly category: "container";
7382
8150
  readonly specialCategory: null;
7383
- readonly sort: 2;
8151
+ readonly sort: 10;
8152
+ readonly preferredScale: "s";
7384
8153
  };
7385
8154
  readonly padding: {
7386
8155
  readonly label: "Padding";
@@ -7395,7 +8164,8 @@ export declare const patterns: readonly [{
7395
8164
  readonly description: "Left and right padding.";
7396
8165
  readonly category: "container";
7397
8166
  readonly specialCategory: "padding";
7398
- readonly sort: 4;
8167
+ readonly sort: 7;
8168
+ readonly preferredScale: "s";
7399
8169
  };
7400
8170
  readonly paddingVertical: {
7401
8171
  readonly label: "Padding Vertical";
@@ -7407,35 +8177,31 @@ export declare const patterns: readonly [{
7407
8177
  };
7408
8178
  readonly paddingTop: {
7409
8179
  readonly label: "Padding Top";
7410
- readonly description: "Top padding only.";
8180
+ readonly description: "Top padding for the provider.";
7411
8181
  readonly category: "container";
7412
8182
  readonly specialCategory: "padding";
7413
- readonly sort: 9;
7414
- readonly preferredScale: "vs";
8183
+ readonly sort: 1;
7415
8184
  };
7416
8185
  readonly paddingBottom: {
7417
8186
  readonly label: "Padding Bottom";
7418
- readonly description: "Bottom padding only.";
8187
+ readonly description: "Bottom padding for the provider.";
7419
8188
  readonly category: "container";
7420
8189
  readonly specialCategory: "padding";
7421
- readonly sort: 10;
7422
- readonly preferredScale: "vs";
8190
+ readonly sort: 3;
7423
8191
  };
7424
8192
  readonly paddingLeft: {
7425
8193
  readonly label: "Padding Left";
7426
- readonly description: "Left padding only.";
8194
+ readonly description: "Left padding for the provider.";
7427
8195
  readonly category: "container";
7428
8196
  readonly specialCategory: "padding";
7429
- readonly sort: 11;
7430
- readonly preferredScale: "s";
8197
+ readonly sort: 4;
7431
8198
  };
7432
8199
  readonly paddingRight: {
7433
8200
  readonly label: "Padding Right";
7434
- readonly description: "Right padding only.";
8201
+ readonly description: "Right padding for the provider.";
7435
8202
  readonly category: "container";
7436
8203
  readonly specialCategory: "padding";
7437
- readonly sort: 12;
7438
- readonly preferredScale: "s";
8204
+ readonly sort: 2;
7439
8205
  };
7440
8206
  readonly margin: {
7441
8207
  readonly label: "Margin";
@@ -7594,12 +8360,12 @@ export declare const patterns: readonly [{
7594
8360
  readonly specialCategory: null;
7595
8361
  readonly sort: 26;
7596
8362
  };
7597
- readonly display: {
7598
- readonly label: "Display";
7599
- readonly description: "Controls layout display mode.";
7600
- readonly category: "container";
8363
+ readonly theme: {
8364
+ readonly label: "Theme";
8365
+ readonly description: "Controls which app theme(s) this onboarding is intended for.";
8366
+ readonly category: "other";
7601
8367
  readonly specialCategory: null;
7602
- readonly sort: 1;
8368
+ readonly sort: -10;
7603
8369
  };
7604
8370
  };
7605
8371
  };
@@ -7611,20 +8377,27 @@ export declare const patterns: readonly [{
7611
8377
  readonly alignSelf: "flex-start";
7612
8378
  readonly flexGrow: 0;
7613
8379
  readonly flexShrink: 0;
7614
- readonly gap: "16@vs";
7615
- readonly paddingHorizontal: "24@s";
8380
+ readonly width: "100%";
8381
+ readonly height: "100%";
7616
8382
  };
7617
- readonly display: "flex";
7618
8383
  };
7619
8384
  readonly types: {};
7620
8385
  }, {
7621
8386
  readonly schemaVersion: 2;
7622
8387
  readonly pattern: {
7623
- readonly type: "OnboardProvider";
7624
- readonly children: "node";
8388
+ readonly type: "OnboardSubtitle";
8389
+ readonly children: "string";
7625
8390
  readonly attributes: {
7626
- readonly scrollable: "boolean";
8391
+ readonly title: "title";
8392
+ readonly description: "description";
8393
+ readonly adjustsFontSizeToFit: "boolean";
8394
+ readonly showEllipsis: "boolean";
7627
8395
  readonly style: {
8396
+ readonly color: "color";
8397
+ readonly fontSize: "size";
8398
+ readonly fontFamily: "fontFamily";
8399
+ readonly fontWeight: "fontWeight";
8400
+ readonly textAlign: readonly ["left", "center", "right", "justify"];
7628
8401
  readonly flexDirection: readonly ["row", "column"];
7629
8402
  readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
7630
8403
  readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
@@ -7660,43 +8433,57 @@ export declare const patterns: readonly [{
7660
8433
  readonly right: "size";
7661
8434
  readonly zIndex: "number";
7662
8435
  };
7663
- readonly title: "title";
7664
- readonly description: "description";
7665
- readonly theme: readonly ["light", "dark", "all"];
7666
- readonly borderRadius: "never";
8436
+ readonly scrollable: "boolean";
8437
+ };
8438
+ readonly defaults: {
8439
+ readonly style: {
8440
+ readonly color: "THEME_COLORS.TEXT";
8441
+ readonly fontSize: "16@fs";
8442
+ readonly fontWeight: "400";
8443
+ };
7667
8444
  };
7668
8445
  };
7669
8446
  readonly meta: {
7670
- readonly desiredParent: readonly ["root"];
7671
- readonly label: "Onboard Provider";
7672
- readonly description: "Provides shared settings for onboarding.";
7673
- readonly specialCategories: {
7674
- readonly padding: {
7675
- readonly label: "Padding";
7676
- readonly description: "Uniform padding on all sides.";
7677
- readonly category: "container";
8447
+ readonly desiredParent: readonly [">OnboardProvider", ">OnboardItem"];
8448
+ readonly label: "Onboard Subtitle";
8449
+ readonly description: "Subtitle text for an onboarding step.";
8450
+ readonly styles: {
8451
+ readonly color: {
8452
+ readonly label: "Color";
8453
+ readonly description: "Text color.";
8454
+ readonly category: "style";
8455
+ readonly specialCategory: null;
7678
8456
  readonly sort: 1;
7679
8457
  };
7680
- readonly margin: {
7681
- readonly label: "Margin";
7682
- readonly description: "Uniform margin on all sides.";
7683
- readonly category: "container";
7684
- readonly sort: 2;
7685
- };
7686
- readonly size: {
7687
- readonly label: "Size";
7688
- readonly description: "Fixed dimensions.";
7689
- readonly category: "container";
8458
+ readonly fontSize: {
8459
+ readonly label: "Font Size";
8460
+ readonly description: "Text size.";
8461
+ readonly category: "style";
8462
+ readonly specialCategory: null;
8463
+ readonly sort: 2;
8464
+ readonly preferredScale: "s";
8465
+ };
8466
+ readonly fontFamily: {
8467
+ readonly label: "Font Family";
8468
+ readonly description: "Font family used for the text.";
8469
+ readonly category: "style";
8470
+ readonly specialCategory: null;
7690
8471
  readonly sort: 3;
7691
8472
  };
7692
- readonly offset: {
7693
- readonly label: "Offset";
7694
- readonly description: "Absolute positioning offsets.";
7695
- readonly category: "container";
8473
+ readonly fontWeight: {
8474
+ readonly label: "Font Weight";
8475
+ readonly description: "Text weight.";
8476
+ readonly category: "style";
8477
+ readonly specialCategory: null;
7696
8478
  readonly sort: 4;
7697
8479
  };
7698
- };
7699
- readonly styles: {
8480
+ readonly textAlign: {
8481
+ readonly label: "Text Align";
8482
+ readonly description: "Text alignment.";
8483
+ readonly category: "style";
8484
+ readonly specialCategory: null;
8485
+ readonly sort: 5;
8486
+ };
7700
8487
  readonly backgroundColor: {
7701
8488
  readonly label: "Background Color";
7702
8489
  readonly description: "Background fill color.";
@@ -7714,6 +8501,20 @@ export declare const patterns: readonly [{
7714
8501
  };
7715
8502
  };
7716
8503
  readonly attributes: {
8504
+ readonly adjustsFontSizeToFit: {
8505
+ readonly label: "Adjust Font Size To Fit";
8506
+ readonly description: "Automatically reduces font size to fit the available space.";
8507
+ readonly category: "other";
8508
+ readonly specialCategory: null;
8509
+ readonly sort: 1;
8510
+ };
8511
+ readonly showEllipsis: {
8512
+ readonly label: "Show Ellipsis";
8513
+ readonly description: "If text overflows, show ellipsis (…); applied as single-line truncation.";
8514
+ readonly category: "other";
8515
+ readonly specialCategory: null;
8516
+ readonly sort: 2;
8517
+ };
7717
8518
  readonly scrollable: {
7718
8519
  readonly label: "Scrollable";
7719
8520
  readonly description: "Turns scroll interaction on.";
@@ -7783,31 +8584,35 @@ export declare const patterns: readonly [{
7783
8584
  };
7784
8585
  readonly paddingTop: {
7785
8586
  readonly label: "Padding Top";
7786
- readonly description: "Top padding for the provider.";
8587
+ readonly description: "Top padding only.";
7787
8588
  readonly category: "container";
7788
8589
  readonly specialCategory: "padding";
7789
- readonly sort: 1;
8590
+ readonly sort: 9;
8591
+ readonly preferredScale: "vs";
7790
8592
  };
7791
8593
  readonly paddingBottom: {
7792
8594
  readonly label: "Padding Bottom";
7793
- readonly description: "Bottom padding for the provider.";
8595
+ readonly description: "Bottom padding only.";
7794
8596
  readonly category: "container";
7795
8597
  readonly specialCategory: "padding";
7796
- readonly sort: 3;
8598
+ readonly sort: 10;
8599
+ readonly preferredScale: "vs";
7797
8600
  };
7798
8601
  readonly paddingLeft: {
7799
8602
  readonly label: "Padding Left";
7800
- readonly description: "Left padding for the provider.";
8603
+ readonly description: "Left padding only.";
7801
8604
  readonly category: "container";
7802
8605
  readonly specialCategory: "padding";
7803
- readonly sort: 4;
8606
+ readonly sort: 11;
8607
+ readonly preferredScale: "s";
7804
8608
  };
7805
8609
  readonly paddingRight: {
7806
8610
  readonly label: "Padding Right";
7807
- readonly description: "Right padding for the provider.";
8611
+ readonly description: "Right padding only.";
7808
8612
  readonly category: "container";
7809
8613
  readonly specialCategory: "padding";
7810
- readonly sort: 2;
8614
+ readonly sort: 12;
8615
+ readonly preferredScale: "s";
7811
8616
  };
7812
8617
  readonly margin: {
7813
8618
  readonly label: "Margin";
@@ -7966,32 +8771,52 @@ export declare const patterns: readonly [{
7966
8771
  readonly specialCategory: null;
7967
8772
  readonly sort: 26;
7968
8773
  };
7969
- readonly theme: {
7970
- readonly label: "Theme";
7971
- readonly description: "Controls which app theme(s) this onboarding is intended for.";
7972
- readonly category: "other";
7973
- readonly specialCategory: null;
7974
- readonly sort: -10;
8774
+ };
8775
+ readonly specialCategories: {
8776
+ readonly padding: {
8777
+ readonly label: "Padding";
8778
+ readonly description: "Uniform padding on all sides.";
8779
+ readonly category: "container";
8780
+ readonly sort: 1;
8781
+ };
8782
+ readonly margin: {
8783
+ readonly label: "Margin";
8784
+ readonly description: "Uniform margin on all sides.";
8785
+ readonly category: "container";
8786
+ readonly sort: 2;
8787
+ };
8788
+ readonly size: {
8789
+ readonly label: "Size";
8790
+ readonly description: "Fixed dimensions.";
8791
+ readonly category: "container";
8792
+ readonly sort: 3;
8793
+ };
8794
+ readonly offset: {
8795
+ readonly label: "Offset";
8796
+ readonly description: "Absolute positioning offsets.";
8797
+ readonly category: "container";
8798
+ readonly sort: 4;
7975
8799
  };
7976
8800
  };
7977
8801
  };
7978
8802
  readonly defaults: {
7979
8803
  readonly style: {
8804
+ readonly color: "THEME_COLORS.TEXT";
8805
+ readonly fontSize: "14@fs";
8806
+ readonly fontWeight: "600";
7980
8807
  readonly flexDirection: "column";
7981
8808
  readonly position: "relative";
7982
8809
  readonly zIndex: 1;
7983
8810
  readonly alignSelf: "flex-start";
7984
8811
  readonly flexGrow: 0;
7985
8812
  readonly flexShrink: 0;
7986
- readonly width: "100%";
7987
- readonly height: "100%";
7988
8813
  };
7989
8814
  };
7990
8815
  readonly types: {};
7991
8816
  }, {
7992
8817
  readonly schemaVersion: 2;
7993
8818
  readonly pattern: {
7994
- readonly type: "OnboardSubtitle";
8819
+ readonly type: "OnboardTitle";
7995
8820
  readonly children: "string";
7996
8821
  readonly attributes: {
7997
8822
  readonly title: "title";
@@ -8041,50 +8866,72 @@ export declare const patterns: readonly [{
8041
8866
  };
8042
8867
  readonly scrollable: "boolean";
8043
8868
  };
8869
+ readonly defaults: {
8870
+ readonly style: {
8871
+ readonly color: "THEME_COLORS.TEXT";
8872
+ readonly fontSize: "16@fs";
8873
+ readonly fontWeight: "400";
8874
+ };
8875
+ };
8044
8876
  };
8045
8877
  readonly meta: {
8046
- readonly desiredParent: readonly [">OnboardProvider", ">OnboardItem"];
8047
- readonly label: "Onboard Subtitle";
8048
- readonly description: "Subtitle text for an onboarding step.";
8049
- readonly attributes: {
8050
- readonly styles: {
8051
- readonly color: {
8052
- readonly label: "Color";
8053
- readonly description: "Text color.";
8054
- readonly category: "style";
8055
- readonly specialCategory: null;
8056
- readonly sort: 1;
8057
- };
8058
- readonly fontSize: {
8059
- readonly label: "Font Size";
8060
- readonly description: "Text size.";
8061
- readonly category: "style";
8062
- readonly specialCategory: null;
8063
- readonly sort: 2;
8064
- readonly preferredScale: "s";
8065
- };
8066
- readonly fontFamily: {
8067
- readonly label: "Font Family";
8068
- readonly description: "Font family used for the text.";
8069
- readonly category: "style";
8070
- readonly specialCategory: null;
8071
- readonly sort: 3;
8072
- };
8073
- readonly fontWeight: {
8074
- readonly label: "Font Weight";
8075
- readonly description: "Text weight.";
8076
- readonly category: "style";
8077
- readonly specialCategory: null;
8078
- readonly sort: 4;
8079
- };
8080
- readonly textAlign: {
8081
- readonly label: "Text Align";
8082
- readonly description: "Text alignment.";
8083
- readonly category: "style";
8084
- readonly specialCategory: null;
8085
- readonly sort: 5;
8086
- };
8878
+ readonly desiredParent: readonly [">OnboardItem", ">OnboardProvider"];
8879
+ readonly label: "Onboard Title";
8880
+ readonly description: "Title text for an onboarding step.";
8881
+ readonly styles: {
8882
+ readonly color: {
8883
+ readonly label: "Color";
8884
+ readonly description: "Text color.";
8885
+ readonly category: "style";
8886
+ readonly specialCategory: null;
8887
+ readonly sort: 1;
8888
+ };
8889
+ readonly fontSize: {
8890
+ readonly label: "Font Size";
8891
+ readonly description: "Text size.";
8892
+ readonly category: "style";
8893
+ readonly specialCategory: null;
8894
+ readonly sort: 2;
8895
+ readonly preferredScale: "s";
8896
+ };
8897
+ readonly fontFamily: {
8898
+ readonly label: "Font Family";
8899
+ readonly description: "Font family used for the text.";
8900
+ readonly category: "style";
8901
+ readonly specialCategory: null;
8902
+ readonly sort: 3;
8903
+ };
8904
+ readonly fontWeight: {
8905
+ readonly label: "Font Weight";
8906
+ readonly description: "Text weight.";
8907
+ readonly category: "style";
8908
+ readonly specialCategory: null;
8909
+ readonly sort: 4;
8910
+ };
8911
+ readonly textAlign: {
8912
+ readonly label: "Text Align";
8913
+ readonly description: "Text alignment.";
8914
+ readonly category: "style";
8915
+ readonly specialCategory: null;
8916
+ readonly sort: 5;
8087
8917
  };
8918
+ readonly backgroundColor: {
8919
+ readonly label: "Background Color";
8920
+ readonly description: "Background fill color.";
8921
+ readonly category: "style";
8922
+ readonly specialCategory: null;
8923
+ readonly sort: 20;
8924
+ };
8925
+ readonly borderRadius: {
8926
+ readonly label: "Border Radius";
8927
+ readonly description: "Corner rounding amount.";
8928
+ readonly category: "style";
8929
+ readonly specialCategory: null;
8930
+ readonly sort: 21;
8931
+ readonly preferredScale: "s";
8932
+ };
8933
+ };
8934
+ readonly attributes: {
8088
8935
  readonly adjustsFontSizeToFit: {
8089
8936
  readonly label: "Adjust Font Size To Fit";
8090
8937
  readonly description: "Automatically reduces font size to fit the available space.";
@@ -8382,53 +9229,34 @@ export declare const patterns: readonly [{
8382
9229
  readonly sort: 4;
8383
9230
  };
8384
9231
  };
8385
- readonly styles: {
8386
- readonly backgroundColor: {
8387
- readonly label: "Background Color";
8388
- readonly description: "Background fill color.";
8389
- readonly category: "style";
8390
- readonly specialCategory: null;
8391
- readonly sort: 20;
8392
- };
8393
- readonly borderRadius: {
8394
- readonly label: "Border Radius";
8395
- readonly description: "Corner rounding amount.";
8396
- readonly category: "style";
8397
- readonly specialCategory: null;
8398
- readonly sort: 21;
8399
- readonly preferredScale: "s";
8400
- };
8401
- };
8402
9232
  };
8403
9233
  readonly defaults: {
8404
9234
  readonly style: {
9235
+ readonly color: "THEME_COLORS.TEXT";
9236
+ readonly fontSize: "24@fs";
9237
+ readonly fontWeight: "700";
8405
9238
  readonly flexDirection: "column";
8406
9239
  readonly position: "relative";
8407
9240
  readonly zIndex: 1;
8408
9241
  readonly alignSelf: "flex-start";
8409
9242
  readonly flexGrow: 0;
8410
9243
  readonly flexShrink: 0;
8411
- readonly fontSize: "14@fs";
8412
- readonly fontWeight: "600";
9244
+ readonly textAlign: "center";
8413
9245
  };
8414
9246
  };
8415
9247
  readonly types: {};
8416
9248
  }, {
8417
9249
  readonly schemaVersion: 2;
8418
9250
  readonly pattern: {
8419
- readonly type: "OnboardTitle";
8420
- readonly children: "string";
9251
+ readonly type: "PaywallBackground";
9252
+ readonly children: "never";
8421
9253
  readonly attributes: {
8422
9254
  readonly title: "title";
8423
9255
  readonly description: "description";
8424
- readonly adjustsFontSizeToFit: "boolean";
8425
- readonly showEllipsis: "boolean";
9256
+ readonly src: "string";
9257
+ readonly resizeMode: readonly ["cover", "contain", "stretch", "center"];
9258
+ readonly scrollable: "boolean";
8426
9259
  readonly style: {
8427
- readonly color: "color";
8428
- readonly fontSize: "size";
8429
- readonly fontFamily: "fontFamily";
8430
- readonly fontWeight: "fontWeight";
8431
- readonly textAlign: readonly ["left", "center", "right", "justify"];
8432
9260
  readonly flexDirection: readonly ["row", "column"];
8433
9261
  readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
8434
9262
  readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
@@ -8464,65 +9292,55 @@ export declare const patterns: readonly [{
8464
9292
  readonly right: "size";
8465
9293
  readonly zIndex: "number";
8466
9294
  };
8467
- readonly scrollable: "boolean";
9295
+ };
9296
+ readonly defaults: {
9297
+ readonly resizeMode: "cover";
9298
+ readonly style: {
9299
+ readonly width: "100%";
9300
+ readonly height: "100%";
9301
+ readonly position: "absolute";
9302
+ readonly top: 0;
9303
+ readonly left: 0;
9304
+ readonly right: 0;
9305
+ readonly bottom: 0;
9306
+ };
8468
9307
  };
8469
9308
  };
8470
9309
  readonly meta: {
8471
- readonly desiredParent: readonly [">OnboardItem", ">OnboardProvider"];
8472
- readonly label: "Onboard Title";
8473
- readonly description: "Title text for an onboarding step.";
8474
- readonly attributes: {
8475
- readonly styles: {
8476
- readonly color: {
8477
- readonly label: "Color";
8478
- readonly description: "Text color.";
8479
- readonly category: "style";
8480
- readonly specialCategory: null;
8481
- readonly sort: 1;
8482
- };
8483
- readonly fontSize: {
8484
- readonly label: "Font Size";
8485
- readonly description: "Text size.";
8486
- readonly category: "style";
8487
- readonly specialCategory: null;
8488
- readonly sort: 2;
8489
- readonly preferredScale: "s";
8490
- };
8491
- readonly fontFamily: {
8492
- readonly label: "Font Family";
8493
- readonly description: "Font family used for the text.";
8494
- readonly category: "style";
8495
- readonly specialCategory: null;
8496
- readonly sort: 3;
8497
- };
8498
- readonly fontWeight: {
8499
- readonly label: "Font Weight";
8500
- readonly description: "Text weight.";
8501
- readonly category: "style";
8502
- readonly specialCategory: null;
8503
- readonly sort: 4;
8504
- };
8505
- readonly textAlign: {
8506
- readonly label: "Text Align";
8507
- readonly description: "Text alignment.";
8508
- readonly category: "style";
8509
- readonly specialCategory: null;
8510
- readonly sort: 5;
8511
- };
9310
+ readonly desiredParent: readonly [">PaywallProvider"];
9311
+ readonly label: "Paywall Background";
9312
+ readonly description: "Paywall Background component.";
9313
+ readonly styles: {
9314
+ readonly resizeMode: {
9315
+ readonly label: "Resize Mode";
9316
+ readonly description: "How the image fits its container.";
9317
+ readonly category: "style";
9318
+ readonly specialCategory: null;
9319
+ readonly sort: 4;
8512
9320
  };
8513
- readonly adjustsFontSizeToFit: {
8514
- readonly label: "Adjust Font Size To Fit";
8515
- readonly description: "Automatically reduces font size to fit the available space.";
8516
- readonly category: "other";
9321
+ readonly backgroundColor: {
9322
+ readonly label: "Background Color";
9323
+ readonly description: "Background fill color.";
9324
+ readonly category: "style";
8517
9325
  readonly specialCategory: null;
8518
- readonly sort: 1;
9326
+ readonly sort: 20;
8519
9327
  };
8520
- readonly showEllipsis: {
8521
- readonly label: "Show Ellipsis";
8522
- readonly description: "If text overflows, show ellipsis (…); applied as single-line truncation.";
9328
+ readonly borderRadius: {
9329
+ readonly label: "Border Radius";
9330
+ readonly description: "Corner rounding amount.";
9331
+ readonly category: "style";
9332
+ readonly specialCategory: null;
9333
+ readonly sort: 21;
9334
+ readonly preferredScale: "s";
9335
+ };
9336
+ };
9337
+ readonly attributes: {
9338
+ readonly src: {
9339
+ readonly label: "Src";
9340
+ readonly description: "Image source URL.";
8523
9341
  readonly category: "other";
8524
9342
  readonly specialCategory: null;
8525
- readonly sort: 2;
9343
+ readonly sort: 1;
8526
9344
  };
8527
9345
  readonly scrollable: {
8528
9346
  readonly label: "Scrollable";
@@ -8802,55 +9620,49 @@ export declare const patterns: readonly [{
8802
9620
  };
8803
9621
  readonly offset: {
8804
9622
  readonly label: "Offset";
8805
- readonly description: "Absolute positioning offsets.";
8806
- readonly category: "container";
8807
- readonly sort: 4;
8808
- };
8809
- };
8810
- readonly styles: {
8811
- readonly backgroundColor: {
8812
- readonly label: "Background Color";
8813
- readonly description: "Background fill color.";
8814
- readonly category: "style";
8815
- readonly specialCategory: null;
8816
- readonly sort: 20;
8817
- };
8818
- readonly borderRadius: {
8819
- readonly label: "Border Radius";
8820
- readonly description: "Corner rounding amount.";
8821
- readonly category: "style";
8822
- readonly specialCategory: null;
8823
- readonly sort: 21;
8824
- readonly preferredScale: "s";
9623
+ readonly description: "Absolute positioning offsets.";
9624
+ readonly category: "container";
9625
+ readonly sort: 4;
8825
9626
  };
8826
9627
  };
8827
9628
  };
8828
9629
  readonly defaults: {
9630
+ readonly resizeMode: "cover";
8829
9631
  readonly style: {
8830
- readonly flexDirection: "column";
8831
- readonly position: "relative";
9632
+ readonly width: "100%";
9633
+ readonly height: "100%";
9634
+ readonly position: "absolute";
9635
+ readonly top: 0;
9636
+ readonly left: 0;
9637
+ readonly right: 0;
9638
+ readonly bottom: 0;
8832
9639
  readonly zIndex: 1;
9640
+ readonly flexDirection: "column";
8833
9641
  readonly alignSelf: "flex-start";
8834
9642
  readonly flexGrow: 0;
8835
9643
  readonly flexShrink: 0;
8836
- readonly fontSize: "24@fs";
8837
- readonly fontWeight: "700";
8838
- readonly textAlign: "center";
8839
9644
  };
8840
9645
  };
8841
9646
  readonly types: {};
8842
9647
  }, {
8843
9648
  readonly schemaVersion: 2;
8844
9649
  readonly pattern: {
8845
- readonly type: "PaywallBackground";
9650
+ readonly type: "PaywallCloseButton";
8846
9651
  readonly children: "never";
8847
9652
  readonly attributes: {
8848
9653
  readonly title: "title";
8849
9654
  readonly description: "description";
8850
- readonly src: "string";
8851
- readonly resizeMode: readonly ["cover", "contain", "stretch", "center"];
8852
- readonly scrollable: "boolean";
9655
+ readonly iconType: "iconType";
9656
+ readonly size: "number";
9657
+ readonly strokeWidth: "number";
9658
+ readonly adjustsFontSizeToFit: "boolean";
9659
+ readonly showEllipsis: "boolean";
8853
9660
  readonly style: {
9661
+ readonly color: "color";
9662
+ readonly fontSize: "size";
9663
+ readonly fontFamily: "fontFamily";
9664
+ readonly fontWeight: "fontWeight";
9665
+ readonly textAlign: readonly ["left", "center", "right", "justify"];
8854
9666
  readonly flexDirection: readonly ["row", "column"];
8855
9667
  readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
8856
9668
  readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
@@ -8886,39 +9698,57 @@ export declare const patterns: readonly [{
8886
9698
  readonly right: "size";
8887
9699
  readonly zIndex: "number";
8888
9700
  };
9701
+ readonly scrollable: "boolean";
8889
9702
  };
8890
9703
  readonly defaults: {
8891
- readonly resizeMode: "cover";
8892
9704
  readonly style: {
8893
- readonly width: "100%";
8894
- readonly height: "100%";
8895
- readonly position: "absolute";
8896
- readonly top: 0;
8897
- readonly left: 0;
8898
- readonly right: 0;
8899
- readonly bottom: 0;
9705
+ readonly color: "THEME_COLORS.TEXT";
9706
+ readonly fontSize: "16@fs";
9707
+ readonly fontWeight: "400";
8900
9708
  };
8901
9709
  };
8902
9710
  };
8903
9711
  readonly meta: {
8904
9712
  readonly desiredParent: readonly [">PaywallProvider"];
8905
- readonly label: "Paywall Background";
8906
- readonly description: "Paywall Background component.";
8907
- readonly src: {
8908
- readonly label: "Src";
8909
- readonly description: "Image source URL.";
8910
- readonly category: "other";
8911
- readonly specialCategory: null;
8912
- readonly sort: 1;
8913
- };
9713
+ readonly label: "Paywall Close Button";
9714
+ readonly description: "Paywall Close Button component.";
8914
9715
  readonly styles: {
8915
- readonly resizeMode: {
8916
- readonly label: "Resize Mode";
8917
- readonly description: "How the image fits its container.";
9716
+ readonly color: {
9717
+ readonly label: "Color";
9718
+ readonly description: "Text color.";
9719
+ readonly category: "style";
9720
+ readonly specialCategory: null;
9721
+ readonly sort: 1;
9722
+ };
9723
+ readonly fontSize: {
9724
+ readonly label: "Font Size";
9725
+ readonly description: "Text size.";
9726
+ readonly category: "style";
9727
+ readonly specialCategory: null;
9728
+ readonly sort: 2;
9729
+ readonly preferredScale: "s";
9730
+ };
9731
+ readonly fontFamily: {
9732
+ readonly label: "Font Family";
9733
+ readonly description: "Font family used for the text.";
9734
+ readonly category: "style";
9735
+ readonly specialCategory: null;
9736
+ readonly sort: 3;
9737
+ };
9738
+ readonly fontWeight: {
9739
+ readonly label: "Font Weight";
9740
+ readonly description: "Text weight.";
8918
9741
  readonly category: "style";
8919
9742
  readonly specialCategory: null;
8920
9743
  readonly sort: 4;
8921
9744
  };
9745
+ readonly textAlign: {
9746
+ readonly label: "Text Align";
9747
+ readonly description: "Text alignment.";
9748
+ readonly category: "style";
9749
+ readonly specialCategory: null;
9750
+ readonly sort: 5;
9751
+ };
8922
9752
  readonly backgroundColor: {
8923
9753
  readonly label: "Background Color";
8924
9754
  readonly description: "Background fill color.";
@@ -8935,33 +9765,42 @@ export declare const patterns: readonly [{
8935
9765
  readonly preferredScale: "s";
8936
9766
  };
8937
9767
  };
8938
- readonly specialCategories: {
8939
- readonly padding: {
8940
- readonly label: "Padding";
8941
- readonly description: "Uniform padding on all sides.";
8942
- readonly category: "container";
9768
+ readonly attributes: {
9769
+ readonly iconType: {
9770
+ readonly label: "Icon";
9771
+ readonly description: "Which icon to render.";
9772
+ readonly category: "other";
9773
+ readonly specialCategory: null;
8943
9774
  readonly sort: 1;
8944
9775
  };
8945
- readonly margin: {
8946
- readonly label: "Margin";
8947
- readonly description: "Uniform margin on all sides.";
8948
- readonly category: "container";
8949
- readonly sort: 2;
8950
- };
8951
9776
  readonly size: {
8952
9777
  readonly label: "Size";
8953
- readonly description: "Fixed dimensions.";
8954
- readonly category: "container";
9778
+ readonly description: "Icon size (px).";
9779
+ readonly category: "other";
9780
+ readonly specialCategory: null;
9781
+ readonly sort: 2;
9782
+ };
9783
+ readonly strokeWidth: {
9784
+ readonly label: "Stroke Width";
9785
+ readonly description: "SVG stroke width override (applied to the icon paths).";
9786
+ readonly category: "other";
9787
+ readonly specialCategory: null;
8955
9788
  readonly sort: 3;
8956
9789
  };
8957
- readonly offset: {
8958
- readonly label: "Offset";
8959
- readonly description: "Absolute positioning offsets.";
8960
- readonly category: "container";
8961
- readonly sort: 4;
9790
+ readonly adjustsFontSizeToFit: {
9791
+ readonly label: "Adjust Font Size To Fit";
9792
+ readonly description: "Automatically reduces font size to fit the available space.";
9793
+ readonly category: "other";
9794
+ readonly specialCategory: null;
9795
+ readonly sort: 1;
9796
+ };
9797
+ readonly showEllipsis: {
9798
+ readonly label: "Show Ellipsis";
9799
+ readonly description: "If text overflows, show ellipsis (…); applied as single-line truncation.";
9800
+ readonly category: "other";
9801
+ readonly specialCategory: null;
9802
+ readonly sort: 2;
8962
9803
  };
8963
- };
8964
- readonly attributes: {
8965
9804
  readonly scrollable: {
8966
9805
  readonly label: "Scrollable";
8967
9806
  readonly description: "Turns scroll interaction on.";
@@ -9219,36 +10058,63 @@ export declare const patterns: readonly [{
9219
10058
  readonly sort: 26;
9220
10059
  };
9221
10060
  };
10061
+ readonly specialCategories: {
10062
+ readonly padding: {
10063
+ readonly label: "Padding";
10064
+ readonly description: "Uniform padding on all sides.";
10065
+ readonly category: "container";
10066
+ readonly sort: 1;
10067
+ };
10068
+ readonly margin: {
10069
+ readonly label: "Margin";
10070
+ readonly description: "Uniform margin on all sides.";
10071
+ readonly category: "container";
10072
+ readonly sort: 2;
10073
+ };
10074
+ readonly size: {
10075
+ readonly label: "Size";
10076
+ readonly description: "Fixed dimensions.";
10077
+ readonly category: "container";
10078
+ readonly sort: 3;
10079
+ };
10080
+ readonly offset: {
10081
+ readonly label: "Offset";
10082
+ readonly description: "Absolute positioning offsets.";
10083
+ readonly category: "container";
10084
+ readonly sort: 4;
10085
+ };
10086
+ };
9222
10087
  };
9223
10088
  readonly defaults: {
9224
- readonly resizeMode: "cover";
9225
10089
  readonly style: {
9226
- readonly width: "100%";
9227
- readonly height: "100%";
10090
+ readonly fontSize: "16@fs";
10091
+ readonly color: "THEME_COLORS.TEXT";
10092
+ readonly fontWeight: "400";
10093
+ readonly flexDirection: "row";
9228
10094
  readonly position: "absolute";
9229
- readonly top: 0;
9230
- readonly left: 0;
9231
- readonly right: 0;
9232
- readonly bottom: 0;
9233
10095
  readonly zIndex: 1;
9234
- readonly flexDirection: "column";
9235
10096
  readonly alignSelf: "flex-start";
9236
10097
  readonly flexGrow: 0;
9237
10098
  readonly flexShrink: 0;
10099
+ readonly top: "35@vs";
10100
+ readonly left: "24@s";
10101
+ readonly justifyContent: "center";
10102
+ readonly alignItems: "center";
9238
10103
  };
10104
+ readonly iconType: "close";
10105
+ readonly strokeWidth: 1.5;
10106
+ readonly size: 24;
9239
10107
  };
9240
10108
  readonly types: {};
9241
10109
  }, {
9242
10110
  readonly schemaVersion: 2;
9243
10111
  readonly pattern: {
9244
- readonly type: "PaywallCloseButton";
10112
+ readonly type: "PaywallCounter";
9245
10113
  readonly children: "never";
9246
10114
  readonly attributes: {
10115
+ readonly count: "number";
9247
10116
  readonly title: "title";
9248
10117
  readonly description: "description";
9249
- readonly iconType: "iconType";
9250
- readonly size: "number";
9251
- readonly strokeWidth: "number";
9252
10118
  readonly adjustsFontSizeToFit: "boolean";
9253
10119
  readonly showEllipsis: "boolean";
9254
10120
  readonly style: {
@@ -9294,88 +10160,26 @@ export declare const patterns: readonly [{
9294
10160
  };
9295
10161
  readonly scrollable: "boolean";
9296
10162
  };
9297
- };
9298
- readonly meta: {
9299
- readonly desiredParent: readonly [">PaywallProvider"];
9300
- readonly label: "Paywall Close Button";
9301
- readonly description: "Paywall Close Button component.";
9302
- readonly styles: {
9303
- readonly backgroundColor: {
9304
- readonly label: "Background Color";
9305
- readonly description: "Background fill color.";
9306
- readonly category: "style";
9307
- readonly specialCategory: null;
9308
- readonly sort: 20;
9309
- };
9310
- readonly borderRadius: {
9311
- readonly label: "Border Radius";
9312
- readonly description: "Corner rounding amount.";
9313
- readonly category: "style";
9314
- readonly specialCategory: null;
9315
- readonly sort: 21;
9316
- readonly preferredScale: "s";
10163
+ readonly defaults: {
10164
+ readonly style: {
10165
+ readonly color: "THEME_COLORS.TEXT";
10166
+ readonly fontSize: "16@fs";
10167
+ readonly fontWeight: "400";
9317
10168
  };
9318
10169
  };
10170
+ };
10171
+ readonly meta: {
10172
+ readonly desiredParent: readonly ["all"];
10173
+ readonly label: "Paywall Counter";
10174
+ readonly description: "Displays the paywall counter value.";
9319
10175
  readonly attributes: {
9320
- readonly iconType: {
9321
- readonly label: "Icon";
9322
- readonly description: "Which icon to render.";
10176
+ readonly count: {
10177
+ readonly label: "Fallback Count";
10178
+ readonly description: "Used only when the paywall counter hook returns no value.";
9323
10179
  readonly category: "other";
9324
10180
  readonly specialCategory: null;
9325
10181
  readonly sort: 1;
9326
10182
  };
9327
- readonly size: {
9328
- readonly label: "Size";
9329
- readonly description: "Icon size (px).";
9330
- readonly category: "other";
9331
- readonly specialCategory: null;
9332
- readonly sort: 2;
9333
- };
9334
- readonly strokeWidth: {
9335
- readonly label: "Stroke Width";
9336
- readonly description: "SVG stroke width override (applied to the icon paths).";
9337
- readonly category: "other";
9338
- readonly specialCategory: null;
9339
- readonly sort: 3;
9340
- };
9341
- readonly styles: {
9342
- readonly color: {
9343
- readonly label: "Color";
9344
- readonly description: "Text color.";
9345
- readonly category: "style";
9346
- readonly specialCategory: null;
9347
- readonly sort: 1;
9348
- };
9349
- readonly fontSize: {
9350
- readonly label: "Font Size";
9351
- readonly description: "Text size.";
9352
- readonly category: "style";
9353
- readonly specialCategory: null;
9354
- readonly sort: 2;
9355
- readonly preferredScale: "s";
9356
- };
9357
- readonly fontFamily: {
9358
- readonly label: "Font Family";
9359
- readonly description: "Font family used for the text.";
9360
- readonly category: "style";
9361
- readonly specialCategory: null;
9362
- readonly sort: 3;
9363
- };
9364
- readonly fontWeight: {
9365
- readonly label: "Font Weight";
9366
- readonly description: "Text weight.";
9367
- readonly category: "style";
9368
- readonly specialCategory: null;
9369
- readonly sort: 4;
9370
- };
9371
- readonly textAlign: {
9372
- readonly label: "Text Align";
9373
- readonly description: "Text alignment.";
9374
- readonly category: "style";
9375
- readonly specialCategory: null;
9376
- readonly sort: 5;
9377
- };
9378
- };
9379
10183
  readonly adjustsFontSizeToFit: {
9380
10184
  readonly label: "Adjust Font Size To Fit";
9381
10185
  readonly description: "Automatically reduces font size to fit the available space.";
@@ -9639,12 +10443,65 @@ export declare const patterns: readonly [{
9639
10443
  readonly sort: 25;
9640
10444
  readonly preferredScale: "s";
9641
10445
  };
9642
- readonly zIndex: {
9643
- readonly label: "Z-Index";
9644
- readonly description: "Controls stacking order.";
9645
- readonly category: "container";
10446
+ readonly zIndex: {
10447
+ readonly label: "Z-Index";
10448
+ readonly description: "Controls stacking order.";
10449
+ readonly category: "container";
10450
+ readonly specialCategory: null;
10451
+ readonly sort: 26;
10452
+ };
10453
+ };
10454
+ readonly styles: {
10455
+ readonly color: {
10456
+ readonly label: "Color";
10457
+ readonly description: "Text color.";
10458
+ readonly category: "style";
10459
+ readonly specialCategory: null;
10460
+ readonly sort: 1;
10461
+ };
10462
+ readonly fontSize: {
10463
+ readonly label: "Font Size";
10464
+ readonly description: "Text size.";
10465
+ readonly category: "style";
10466
+ readonly specialCategory: null;
10467
+ readonly sort: 2;
10468
+ readonly preferredScale: "s";
10469
+ };
10470
+ readonly fontFamily: {
10471
+ readonly label: "Font Family";
10472
+ readonly description: "Font family used for the text.";
10473
+ readonly category: "style";
10474
+ readonly specialCategory: null;
10475
+ readonly sort: 3;
10476
+ };
10477
+ readonly fontWeight: {
10478
+ readonly label: "Font Weight";
10479
+ readonly description: "Text weight.";
10480
+ readonly category: "style";
10481
+ readonly specialCategory: null;
10482
+ readonly sort: 4;
10483
+ };
10484
+ readonly textAlign: {
10485
+ readonly label: "Text Align";
10486
+ readonly description: "Text alignment.";
10487
+ readonly category: "style";
10488
+ readonly specialCategory: null;
10489
+ readonly sort: 5;
10490
+ };
10491
+ readonly backgroundColor: {
10492
+ readonly label: "Background Color";
10493
+ readonly description: "Background fill color.";
10494
+ readonly category: "style";
10495
+ readonly specialCategory: null;
10496
+ readonly sort: 20;
10497
+ };
10498
+ readonly borderRadius: {
10499
+ readonly label: "Border Radius";
10500
+ readonly description: "Corner rounding amount.";
10501
+ readonly category: "style";
9646
10502
  readonly specialCategory: null;
9647
- readonly sort: 26;
10503
+ readonly sort: 21;
10504
+ readonly preferredScale: "s";
9648
10505
  };
9649
10506
  };
9650
10507
  readonly specialCategories: {
@@ -9675,41 +10532,27 @@ export declare const patterns: readonly [{
9675
10532
  };
9676
10533
  };
9677
10534
  readonly defaults: {
9678
- readonly iconType: "close";
9679
- readonly strokeWidth: 1.5;
9680
10535
  readonly style: {
9681
- readonly fontSize: "16";
9682
- readonly flexDirection: "row";
9683
- readonly position: "absolute";
10536
+ readonly color: "THEME_COLORS.TEXT";
10537
+ readonly fontSize: "16@fs";
10538
+ readonly fontWeight: "400";
10539
+ readonly flexDirection: "column";
10540
+ readonly position: "relative";
9684
10541
  readonly zIndex: 1;
9685
10542
  readonly alignSelf: "flex-start";
9686
10543
  readonly flexGrow: 0;
9687
10544
  readonly flexShrink: 0;
9688
- readonly top: "35@vs";
9689
- readonly left: "24@s";
9690
- readonly justifyContent: "center";
9691
- readonly alignItems: "center";
9692
10545
  };
9693
- readonly size: 24;
9694
10546
  };
9695
10547
  readonly types: {};
9696
10548
  }, {
9697
10549
  readonly schemaVersion: 2;
9698
10550
  readonly pattern: {
9699
- readonly type: "PaywallCounter";
9700
- readonly children: "never";
10551
+ readonly type: "PaywallOptions";
10552
+ readonly children: "node";
9701
10553
  readonly attributes: {
9702
- readonly count: "number";
9703
- readonly title: "title";
9704
- readonly description: "description";
9705
- readonly adjustsFontSizeToFit: "boolean";
9706
- readonly showEllipsis: "boolean";
10554
+ readonly scrollable: "boolean";
9707
10555
  readonly style: {
9708
- readonly color: "color";
9709
- readonly fontSize: "size";
9710
- readonly fontFamily: "fontFamily";
9711
- readonly fontWeight: "fontWeight";
9712
- readonly textAlign: readonly ["left", "center", "right", "justify"];
9713
10556
  readonly flexDirection: readonly ["row", "column"];
9714
10557
  readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
9715
10558
  readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
@@ -9745,73 +10588,58 @@ export declare const patterns: readonly [{
9745
10588
  readonly right: "size";
9746
10589
  readonly zIndex: "number";
9747
10590
  };
9748
- readonly scrollable: "boolean";
10591
+ readonly title: "title";
10592
+ readonly description: "description";
9749
10593
  };
9750
10594
  };
9751
10595
  readonly meta: {
9752
- readonly desiredParent: readonly ["all"];
9753
- readonly label: "Paywall Counter";
9754
- readonly description: "Displays the paywall counter value.";
9755
- readonly attributes: {
9756
- readonly count: {
9757
- readonly label: "Fallback Count";
9758
- readonly description: "Used only when the paywall counter hook returns no value.";
9759
- readonly category: "other";
9760
- readonly specialCategory: null;
10596
+ readonly desiredParent: readonly [">PaywallProvider"];
10597
+ readonly label: "Paywall Options";
10598
+ readonly description: "Paywall options selector component.";
10599
+ readonly specialCategories: {
10600
+ readonly padding: {
10601
+ readonly label: "Padding";
10602
+ readonly description: "Uniform padding on all sides.";
10603
+ readonly category: "container";
9761
10604
  readonly sort: 1;
9762
10605
  };
9763
- readonly styles: {
9764
- readonly color: {
9765
- readonly label: "Color";
9766
- readonly description: "Text color.";
9767
- readonly category: "style";
9768
- readonly specialCategory: null;
9769
- readonly sort: 1;
9770
- };
9771
- readonly fontSize: {
9772
- readonly label: "Font Size";
9773
- readonly description: "Text size.";
9774
- readonly category: "style";
9775
- readonly specialCategory: null;
9776
- readonly sort: 2;
9777
- readonly preferredScale: "s";
9778
- };
9779
- readonly fontFamily: {
9780
- readonly label: "Font Family";
9781
- readonly description: "Font family used for the text.";
9782
- readonly category: "style";
9783
- readonly specialCategory: null;
9784
- readonly sort: 3;
9785
- };
9786
- readonly fontWeight: {
9787
- readonly label: "Font Weight";
9788
- readonly description: "Text weight.";
9789
- readonly category: "style";
9790
- readonly specialCategory: null;
9791
- readonly sort: 4;
9792
- };
9793
- readonly textAlign: {
9794
- readonly label: "Text Align";
9795
- readonly description: "Text alignment.";
9796
- readonly category: "style";
9797
- readonly specialCategory: null;
9798
- readonly sort: 5;
9799
- };
10606
+ readonly margin: {
10607
+ readonly label: "Margin";
10608
+ readonly description: "Uniform margin on all sides.";
10609
+ readonly category: "container";
10610
+ readonly sort: 2;
9800
10611
  };
9801
- readonly adjustsFontSizeToFit: {
9802
- readonly label: "Adjust Font Size To Fit";
9803
- readonly description: "Automatically reduces font size to fit the available space.";
9804
- readonly category: "other";
10612
+ readonly size: {
10613
+ readonly label: "Size";
10614
+ readonly description: "Fixed dimensions.";
10615
+ readonly category: "container";
10616
+ readonly sort: 3;
10617
+ };
10618
+ readonly offset: {
10619
+ readonly label: "Offset";
10620
+ readonly description: "Absolute positioning offsets.";
10621
+ readonly category: "container";
10622
+ readonly sort: 4;
10623
+ };
10624
+ };
10625
+ readonly styles: {
10626
+ readonly backgroundColor: {
10627
+ readonly label: "Background Color";
10628
+ readonly description: "Background fill color.";
10629
+ readonly category: "style";
9805
10630
  readonly specialCategory: null;
9806
- readonly sort: 1;
10631
+ readonly sort: 20;
9807
10632
  };
9808
- readonly showEllipsis: {
9809
- readonly label: "Show Ellipsis";
9810
- readonly description: "If text overflows, show ellipsis (…); applied as single-line truncation.";
9811
- readonly category: "other";
10633
+ readonly borderRadius: {
10634
+ readonly label: "Border Radius";
10635
+ readonly description: "Corner rounding amount.";
10636
+ readonly category: "style";
9812
10637
  readonly specialCategory: null;
9813
- readonly sort: 2;
10638
+ readonly sort: 21;
10639
+ readonly preferredScale: "s";
9814
10640
  };
10641
+ };
10642
+ readonly attributes: {
9815
10643
  readonly scrollable: {
9816
10644
  readonly label: "Scrollable";
9817
10645
  readonly description: "Turns scroll interaction on.";
@@ -10069,65 +10897,25 @@ export declare const patterns: readonly [{
10069
10897
  readonly sort: 26;
10070
10898
  };
10071
10899
  };
10072
- readonly specialCategories: {
10073
- readonly padding: {
10074
- readonly label: "Padding";
10075
- readonly description: "Uniform padding on all sides.";
10076
- readonly category: "container";
10077
- readonly sort: 1;
10078
- };
10079
- readonly margin: {
10080
- readonly label: "Margin";
10081
- readonly description: "Uniform margin on all sides.";
10082
- readonly category: "container";
10083
- readonly sort: 2;
10084
- };
10085
- readonly size: {
10086
- readonly label: "Size";
10087
- readonly description: "Fixed dimensions.";
10088
- readonly category: "container";
10089
- readonly sort: 3;
10090
- };
10091
- readonly offset: {
10092
- readonly label: "Offset";
10093
- readonly description: "Absolute positioning offsets.";
10094
- readonly category: "container";
10095
- readonly sort: 4;
10096
- };
10097
- };
10098
- readonly styles: {
10099
- readonly backgroundColor: {
10100
- readonly label: "Background Color";
10101
- readonly description: "Background fill color.";
10102
- readonly category: "style";
10103
- readonly specialCategory: null;
10104
- readonly sort: 20;
10105
- };
10106
- readonly borderRadius: {
10107
- readonly label: "Border Radius";
10108
- readonly description: "Corner rounding amount.";
10109
- readonly category: "style";
10110
- readonly specialCategory: null;
10111
- readonly sort: 21;
10112
- readonly preferredScale: "s";
10113
- };
10114
- };
10115
10900
  };
10116
10901
  readonly defaults: {
10117
10902
  readonly style: {
10118
- readonly flexDirection: "column";
10903
+ readonly flexDirection: "row";
10119
10904
  readonly position: "relative";
10120
10905
  readonly zIndex: 1;
10121
10906
  readonly alignSelf: "flex-start";
10122
10907
  readonly flexGrow: 0;
10123
10908
  readonly flexShrink: 0;
10909
+ readonly justifyContent: "space-between";
10910
+ readonly alignItems: "center";
10911
+ readonly minHeight: "60px";
10124
10912
  };
10125
10913
  };
10126
10914
  readonly types: {};
10127
10915
  }, {
10128
10916
  readonly schemaVersion: 2;
10129
10917
  readonly pattern: {
10130
- readonly type: "PaywallOptions";
10918
+ readonly type: "PaywallProvider";
10131
10919
  readonly children: "node";
10132
10920
  readonly attributes: {
10133
10921
  readonly scrollable: "boolean";
@@ -10169,12 +10957,13 @@ export declare const patterns: readonly [{
10169
10957
  };
10170
10958
  readonly title: "title";
10171
10959
  readonly description: "description";
10960
+ readonly delay: "number";
10172
10961
  };
10173
10962
  };
10174
10963
  readonly meta: {
10175
- readonly desiredParent: readonly [">PaywallProvider"];
10176
- readonly label: "Paywall Options";
10177
- readonly description: "Paywall options selector component.";
10964
+ readonly desiredParent: readonly ["all"];
10965
+ readonly label: "Paywall Provider";
10966
+ readonly description: "Provider/wrapper for paywall screen components.";
10178
10967
  readonly specialCategories: {
10179
10968
  readonly padding: {
10180
10969
  readonly label: "Padding";
@@ -10475,30 +11264,44 @@ export declare const patterns: readonly [{
10475
11264
  readonly specialCategory: null;
10476
11265
  readonly sort: 26;
10477
11266
  };
11267
+ readonly delay: {
11268
+ readonly label: "Back Delay (ms)";
11269
+ readonly description: "Milliseconds before the paywall can be dismissed via back/close.";
11270
+ readonly category: "other";
11271
+ readonly specialCategory: null;
11272
+ readonly sort: 1;
11273
+ };
11274
+ };
11275
+ readonly mockableFeatures: {
11276
+ readonly products: true;
11277
+ readonly benefits: true;
10478
11278
  };
10479
11279
  };
10480
11280
  readonly defaults: {
10481
11281
  readonly style: {
10482
- readonly flexDirection: "row";
11282
+ readonly flexDirection: "column";
10483
11283
  readonly position: "relative";
10484
11284
  readonly zIndex: 1;
10485
11285
  readonly alignSelf: "flex-start";
10486
11286
  readonly flexGrow: 0;
10487
11287
  readonly flexShrink: 0;
10488
- readonly justifyContent: "space-between";
10489
- readonly alignItems: "center";
10490
- readonly minHeight: "60px";
11288
+ readonly width: "100%";
11289
+ readonly height: "100%";
10491
11290
  };
10492
11291
  };
10493
11292
  readonly types: {};
10494
11293
  }, {
10495
11294
  readonly schemaVersion: 2;
10496
11295
  readonly pattern: {
10497
- readonly type: "PaywallProvider";
10498
- readonly children: "node";
11296
+ readonly type: "PaywallSubscribeButton";
11297
+ readonly children: "string";
10499
11298
  readonly attributes: {
10500
- readonly scrollable: "boolean";
11299
+ readonly title: "title";
11300
+ readonly description: "description";
10501
11301
  readonly style: {
11302
+ readonly color: "color";
11303
+ readonly fontSize: "size";
11304
+ readonly fontWeight: readonly ["normal", "bold", "100", "200", "300", "400", "500", "600", "700", "800", "900"];
10502
11305
  readonly flexDirection: readonly ["row", "column"];
10503
11306
  readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
10504
11307
  readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
@@ -10534,15 +11337,51 @@ export declare const patterns: readonly [{
10534
11337
  readonly right: "size";
10535
11338
  readonly zIndex: "number";
10536
11339
  };
10537
- readonly title: "title";
10538
- readonly description: "description";
10539
- readonly delay: "number";
11340
+ readonly scrollable: "boolean";
10540
11341
  };
10541
11342
  };
10542
11343
  readonly meta: {
10543
- readonly desiredParent: readonly ["all"];
10544
- readonly label: "Paywall Provider";
10545
- readonly description: "Provider/wrapper for paywall screen components.";
11344
+ readonly desiredParent: readonly [">PaywallProvider"];
11345
+ readonly label: "Paywall Subscribe Button";
11346
+ readonly description: "Paywall subscribe call-to-action button. Extends Button.";
11347
+ readonly styles: {
11348
+ readonly color: {
11349
+ readonly label: "Color";
11350
+ readonly description: "Text color of the button.";
11351
+ readonly category: "style";
11352
+ readonly specialCategory: null;
11353
+ readonly sort: 1;
11354
+ };
11355
+ readonly fontSize: {
11356
+ readonly label: "Font Size";
11357
+ readonly description: "Text size of the button.";
11358
+ readonly category: "style";
11359
+ readonly specialCategory: null;
11360
+ readonly sort: 2;
11361
+ };
11362
+ readonly fontWeight: {
11363
+ readonly label: "Font Weight";
11364
+ readonly description: "Text weight of the button.";
11365
+ readonly category: "style";
11366
+ readonly specialCategory: null;
11367
+ readonly sort: 3;
11368
+ };
11369
+ readonly backgroundColor: {
11370
+ readonly label: "Background Color";
11371
+ readonly description: "Background fill color.";
11372
+ readonly category: "style";
11373
+ readonly specialCategory: null;
11374
+ readonly sort: 20;
11375
+ };
11376
+ readonly borderRadius: {
11377
+ readonly label: "Border Radius";
11378
+ readonly description: "Corner rounding amount.";
11379
+ readonly category: "style";
11380
+ readonly specialCategory: null;
11381
+ readonly sort: 21;
11382
+ readonly preferredScale: "s";
11383
+ };
11384
+ };
10546
11385
  readonly specialCategories: {
10547
11386
  readonly padding: {
10548
11387
  readonly label: "Padding";
@@ -10559,31 +11398,14 @@ export declare const patterns: readonly [{
10559
11398
  readonly size: {
10560
11399
  readonly label: "Size";
10561
11400
  readonly description: "Fixed dimensions.";
10562
- readonly category: "container";
10563
- readonly sort: 3;
10564
- };
10565
- readonly offset: {
10566
- readonly label: "Offset";
10567
- readonly description: "Absolute positioning offsets.";
10568
- readonly category: "container";
10569
- readonly sort: 4;
10570
- };
10571
- };
10572
- readonly styles: {
10573
- readonly backgroundColor: {
10574
- readonly label: "Background Color";
10575
- readonly description: "Background fill color.";
10576
- readonly category: "style";
10577
- readonly specialCategory: null;
10578
- readonly sort: 20;
11401
+ readonly category: "container";
11402
+ readonly sort: 3;
10579
11403
  };
10580
- readonly borderRadius: {
10581
- readonly label: "Border Radius";
10582
- readonly description: "Corner rounding amount.";
10583
- readonly category: "style";
10584
- readonly specialCategory: null;
10585
- readonly sort: 21;
10586
- readonly preferredScale: "s";
11404
+ readonly offset: {
11405
+ readonly label: "Offset";
11406
+ readonly description: "Absolute positioning offsets.";
11407
+ readonly category: "container";
11408
+ readonly sort: 4;
10587
11409
  };
10588
11410
  };
10589
11411
  readonly attributes: {
@@ -10843,44 +11665,37 @@ export declare const patterns: readonly [{
10843
11665
  readonly specialCategory: null;
10844
11666
  readonly sort: 26;
10845
11667
  };
10846
- readonly delay: {
10847
- readonly label: "Back Delay (ms)";
10848
- readonly description: "Milliseconds before the paywall can be dismissed via back/close.";
10849
- readonly category: "other";
10850
- readonly specialCategory: null;
10851
- readonly sort: 1;
10852
- };
10853
- };
10854
- readonly mockableFeatures: {
10855
- readonly products: true;
10856
- readonly benefits: true;
10857
11668
  };
10858
11669
  };
10859
11670
  readonly defaults: {
10860
11671
  readonly style: {
11672
+ readonly display: "flex";
11673
+ readonly alignItems: "center";
11674
+ readonly justifyContent: "center";
11675
+ readonly backgroundColor: "#6495ED";
10861
11676
  readonly flexDirection: "column";
10862
11677
  readonly position: "relative";
10863
11678
  readonly zIndex: 1;
10864
11679
  readonly alignSelf: "flex-start";
10865
11680
  readonly flexGrow: 0;
10866
11681
  readonly flexShrink: 0;
10867
- readonly width: "100%";
10868
- readonly height: "100%";
11682
+ readonly paddingHorizontal: "20@s";
11683
+ readonly paddingVertical: "12@vs";
11684
+ readonly borderRadius: "12@s";
11685
+ readonly color: "#FFFFFF";
11686
+ readonly fontSize: "16@fs";
11687
+ readonly fontWeight: "700";
10869
11688
  };
10870
11689
  };
10871
11690
  readonly types: {};
10872
11691
  }, {
10873
11692
  readonly schemaVersion: 2;
10874
11693
  readonly pattern: {
10875
- readonly type: "PaywallSubscribeButton";
10876
- readonly children: "string";
11694
+ readonly type: "RadioButton";
11695
+ readonly children: "never";
10877
11696
  readonly attributes: {
10878
- readonly title: "title";
10879
- readonly description: "description";
11697
+ readonly scrollable: "boolean";
10880
11698
  readonly style: {
10881
- readonly color: "color";
10882
- readonly fontSize: "size";
10883
- readonly fontWeight: readonly ["normal", "bold", "100", "200", "300", "400", "500", "600", "700", "800", "900"];
10884
11699
  readonly flexDirection: readonly ["row", "column"];
10885
11700
  readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
10886
11701
  readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
@@ -10916,35 +11731,44 @@ export declare const patterns: readonly [{
10916
11731
  readonly right: "size";
10917
11732
  readonly zIndex: "number";
10918
11733
  };
10919
- readonly scrollable: "boolean";
11734
+ readonly title: "title";
11735
+ readonly description: "description";
11736
+ readonly selected: "boolean";
11737
+ readonly color: "color";
11738
+ readonly size: "number";
10920
11739
  };
10921
11740
  };
10922
11741
  readonly meta: {
10923
- readonly desiredParent: readonly [">PaywallProvider"];
10924
- readonly label: "Paywall Subscribe Button";
10925
- readonly description: "Paywall subscribe call-to-action button. Extends Button.";
10926
- readonly styles: {
10927
- readonly color: {
10928
- readonly label: "Color";
10929
- readonly description: "Text color of the button.";
10930
- readonly category: "style";
10931
- readonly specialCategory: null;
11742
+ readonly desiredParent: readonly ["all"];
11743
+ readonly label: "Radio Button";
11744
+ readonly description: "Generic radio button icon.";
11745
+ readonly specialCategories: {
11746
+ readonly padding: {
11747
+ readonly label: "Padding";
11748
+ readonly description: "Uniform padding on all sides.";
11749
+ readonly category: "container";
10932
11750
  readonly sort: 1;
10933
11751
  };
10934
- readonly fontSize: {
10935
- readonly label: "Font Size";
10936
- readonly description: "Text size of the button.";
10937
- readonly category: "style";
10938
- readonly specialCategory: null;
11752
+ readonly margin: {
11753
+ readonly label: "Margin";
11754
+ readonly description: "Uniform margin on all sides.";
11755
+ readonly category: "container";
10939
11756
  readonly sort: 2;
10940
11757
  };
10941
- readonly fontWeight: {
10942
- readonly label: "Font Weight";
10943
- readonly description: "Text weight of the button.";
10944
- readonly category: "style";
10945
- readonly specialCategory: null;
11758
+ readonly size: {
11759
+ readonly label: "Size";
11760
+ readonly description: "Fixed dimensions.";
11761
+ readonly category: "container";
10946
11762
  readonly sort: 3;
10947
11763
  };
11764
+ readonly offset: {
11765
+ readonly label: "Offset";
11766
+ readonly description: "Absolute positioning offsets.";
11767
+ readonly category: "container";
11768
+ readonly sort: 4;
11769
+ };
11770
+ };
11771
+ readonly styles: {
10948
11772
  readonly backgroundColor: {
10949
11773
  readonly label: "Background Color";
10950
11774
  readonly description: "Background fill color.";
@@ -10960,31 +11784,19 @@ export declare const patterns: readonly [{
10960
11784
  readonly sort: 21;
10961
11785
  readonly preferredScale: "s";
10962
11786
  };
10963
- };
10964
- readonly specialCategories: {
10965
- readonly padding: {
10966
- readonly label: "Padding";
10967
- readonly description: "Uniform padding on all sides.";
10968
- readonly category: "container";
11787
+ readonly color: {
11788
+ readonly label: "Color";
11789
+ readonly description: "Radio color.";
11790
+ readonly category: "style";
11791
+ readonly specialCategory: null;
10969
11792
  readonly sort: 1;
10970
11793
  };
10971
- readonly margin: {
10972
- readonly label: "Margin";
10973
- readonly description: "Uniform margin on all sides.";
10974
- readonly category: "container";
10975
- readonly sort: 2;
10976
- };
10977
11794
  readonly size: {
10978
11795
  readonly label: "Size";
10979
- readonly description: "Fixed dimensions.";
10980
- readonly category: "container";
10981
- readonly sort: 3;
10982
- };
10983
- readonly offset: {
10984
- readonly label: "Offset";
10985
- readonly description: "Absolute positioning offsets.";
10986
- readonly category: "container";
10987
- readonly sort: 4;
11796
+ readonly description: "Radio size in px.";
11797
+ readonly category: "style";
11798
+ readonly specialCategory: null;
11799
+ readonly sort: 2;
10988
11800
  };
10989
11801
  };
10990
11802
  readonly attributes: {
@@ -11244,33 +12056,88 @@ export declare const patterns: readonly [{
11244
12056
  readonly specialCategory: null;
11245
12057
  readonly sort: 26;
11246
12058
  };
12059
+ readonly selected: {
12060
+ readonly label: "Selected";
12061
+ readonly description: "Whether the radio is selected.";
12062
+ readonly category: "other";
12063
+ readonly specialCategory: null;
12064
+ readonly sort: 0;
12065
+ };
11247
12066
  };
11248
12067
  };
11249
12068
  readonly defaults: {
11250
12069
  readonly style: {
11251
- readonly display: "flex";
11252
- readonly alignItems: "center";
11253
- readonly justifyContent: "center";
11254
- readonly backgroundColor: "#6495ED";
11255
12070
  readonly flexDirection: "column";
11256
12071
  readonly position: "relative";
11257
12072
  readonly zIndex: 1;
11258
12073
  readonly alignSelf: "flex-start";
11259
12074
  readonly flexGrow: 0;
11260
12075
  readonly flexShrink: 0;
11261
- readonly paddingHorizontal: "20@s";
11262
- readonly paddingVertical: "12@vs";
11263
- readonly borderRadius: "12@s";
11264
- readonly color: "#FFFFFF";
11265
- readonly fontSize: "16@fs";
11266
- readonly fontWeight: "700";
11267
12076
  };
11268
12077
  };
11269
12078
  readonly types: {};
11270
12079
  }, {
11271
12080
  readonly schemaVersion: 2;
11272
12081
  readonly pattern: {
11273
- readonly type: "RadioButton";
12082
+ readonly type: "Separator";
12083
+ readonly children: "never";
12084
+ readonly attributes: {
12085
+ readonly title: "title";
12086
+ readonly description: "description";
12087
+ readonly style: {
12088
+ readonly backgroundColor: "color";
12089
+ readonly width: "size";
12090
+ readonly height: "size";
12091
+ readonly marginHorizontal: "size";
12092
+ readonly marginVertical: "size";
12093
+ readonly marginTop: "size";
12094
+ readonly marginBottom: "size";
12095
+ };
12096
+ };
12097
+ };
12098
+ readonly meta: {
12099
+ readonly desiredParent: readonly ["all"];
12100
+ readonly label: "Separator";
12101
+ readonly description: "Horizontal line separator.";
12102
+ readonly styles: {
12103
+ readonly backgroundColor: {
12104
+ readonly label: "Color";
12105
+ readonly description: "Separator line color.";
12106
+ readonly category: "style";
12107
+ readonly specialCategory: null;
12108
+ readonly sort: 1;
12109
+ };
12110
+ };
12111
+ readonly attributes: {
12112
+ readonly width: {
12113
+ readonly label: "Width";
12114
+ readonly description: "Separator width.";
12115
+ readonly category: "container";
12116
+ readonly specialCategory: null;
12117
+ readonly sort: 1;
12118
+ readonly preferredScale: "s";
12119
+ };
12120
+ readonly height: {
12121
+ readonly label: "Height";
12122
+ readonly description: "Separator thickness.";
12123
+ readonly category: "container";
12124
+ readonly specialCategory: null;
12125
+ readonly sort: 2;
12126
+ readonly preferredScale: "vs";
12127
+ };
12128
+ };
12129
+ };
12130
+ readonly defaults: {
12131
+ readonly style: {
12132
+ readonly width: "100%";
12133
+ readonly height: 2;
12134
+ readonly backgroundColor: "#000000";
12135
+ };
12136
+ };
12137
+ }, {
12138
+ readonly schemaVersion: 2;
12139
+ readonly pattern: {
12140
+ readonly type: "StatusBarColor";
11274
12141
  readonly children: "never";
11275
12142
  readonly attributes: {
11276
12143
  readonly scrollable: "boolean";
@@ -11312,15 +12179,12 @@ export declare const patterns: readonly [{
11312
12179
  };
11313
12180
  readonly title: "title";
11314
12181
  readonly description: "description";
11315
- readonly selected: "boolean";
11316
- readonly color: "color";
11317
- readonly size: "number";
11318
12182
  };
11319
12183
  };
11320
12184
  readonly meta: {
11321
12185
  readonly desiredParent: readonly ["all"];
11322
- readonly label: "Radio Button";
11323
- readonly description: "Generic radio button icon.";
12186
+ readonly label: "Status Bar Color";
12187
+ readonly description: "Sets the OS status bar background color.";
11324
12188
  readonly specialCategories: {
11325
12189
  readonly padding: {
11326
12190
  readonly label: "Padding";
@@ -11350,10 +12214,10 @@ export declare const patterns: readonly [{
11350
12214
  readonly styles: {
11351
12215
  readonly backgroundColor: {
11352
12216
  readonly label: "Background Color";
11353
- readonly description: "Background fill color.";
12217
+ readonly description: "Status bar background color.";
11354
12218
  readonly category: "style";
11355
12219
  readonly specialCategory: null;
11356
- readonly sort: 20;
12220
+ readonly sort: 1;
11357
12221
  };
11358
12222
  readonly borderRadius: {
11359
12223
  readonly label: "Border Radius";
@@ -11363,20 +12227,6 @@ export declare const patterns: readonly [{
11363
12227
  readonly sort: 21;
11364
12228
  readonly preferredScale: "s";
11365
12229
  };
11366
- readonly color: {
11367
- readonly label: "Color";
11368
- readonly description: "Radio color.";
11369
- readonly category: "style";
11370
- readonly specialCategory: null;
11371
- readonly sort: 1;
11372
- };
11373
- readonly size: {
11374
- readonly label: "Size";
11375
- readonly description: "Radio size in px.";
11376
- readonly category: "style";
11377
- readonly specialCategory: null;
11378
- readonly sort: 2;
11379
- };
11380
12230
  };
11381
12231
  readonly attributes: {
11382
12232
  readonly scrollable: {
@@ -11635,13 +12485,6 @@ export declare const patterns: readonly [{
11635
12485
  readonly specialCategory: null;
11636
12486
  readonly sort: 26;
11637
12487
  };
11638
- readonly selected: {
11639
- readonly label: "Selected";
11640
- readonly description: "Whether the radio is selected.";
11641
- readonly category: "other";
11642
- readonly specialCategory: null;
11643
- readonly sort: 0;
11644
- };
11645
12488
  };
11646
12489
  };
11647
12490
  readonly defaults: {
@@ -11652,6 +12495,7 @@ export declare const patterns: readonly [{
11652
12495
  readonly alignSelf: "flex-start";
11653
12496
  readonly flexGrow: 0;
11654
12497
  readonly flexShrink: 0;
12498
+ readonly backgroundColor: "THEME_COLORS.BACKGROUND";
11655
12499
  };
11656
12500
  };
11657
12501
  readonly types: {};
@@ -11708,6 +12552,13 @@ export declare const patterns: readonly [{
11708
12552
  readonly adjustsFontSizeToFit: "boolean";
11709
12553
  readonly showEllipsis: "boolean";
11710
12554
  };
12555
+ readonly defaults: {
12556
+ readonly style: {
12557
+ readonly color: "THEME_COLORS.TEXT";
12558
+ readonly fontSize: "16@fs";
12559
+ readonly fontWeight: "400";
12560
+ };
12561
+ };
11711
12562
  };
11712
12563
  readonly meta: {
11713
12564
  readonly desiredParent: readonly ["all"];
@@ -11755,6 +12606,42 @@ export declare const patterns: readonly [{
11755
12606
  readonly sort: 21;
11756
12607
  readonly preferredScale: "s";
11757
12608
  };
12609
+ readonly color: {
12610
+ readonly label: "Color";
12611
+ readonly description: "Text color.";
12612
+ readonly category: "style";
12613
+ readonly specialCategory: null;
12614
+ readonly sort: 1;
12615
+ };
12616
+ readonly fontSize: {
12617
+ readonly label: "Font Size";
12618
+ readonly description: "Text size.";
12619
+ readonly category: "style";
12620
+ readonly specialCategory: null;
12621
+ readonly sort: 2;
12622
+ readonly preferredScale: "s";
12623
+ };
12624
+ readonly fontFamily: {
12625
+ readonly label: "Font Family";
12626
+ readonly description: "Font family used for the text.";
12627
+ readonly category: "style";
12628
+ readonly specialCategory: null;
12629
+ readonly sort: 3;
12630
+ };
12631
+ readonly fontWeight: {
12632
+ readonly label: "Font Weight";
12633
+ readonly description: "Text weight.";
12634
+ readonly category: "style";
12635
+ readonly specialCategory: null;
12636
+ readonly sort: 4;
12637
+ };
12638
+ readonly textAlign: {
12639
+ readonly label: "Text Align";
12640
+ readonly description: "Text alignment.";
12641
+ readonly category: "style";
12642
+ readonly specialCategory: null;
12643
+ readonly sort: 5;
12644
+ };
11758
12645
  };
11759
12646
  readonly attributes: {
11760
12647
  readonly scrollable: {
@@ -12013,44 +12900,6 @@ export declare const patterns: readonly [{
12013
12900
  readonly specialCategory: null;
12014
12901
  readonly sort: 26;
12015
12902
  };
12016
- readonly styles: {
12017
- readonly color: {
12018
- readonly label: "Color";
12019
- readonly description: "Text color.";
12020
- readonly category: "style";
12021
- readonly specialCategory: null;
12022
- readonly sort: 1;
12023
- };
12024
- readonly fontSize: {
12025
- readonly label: "Font Size";
12026
- readonly description: "Text size.";
12027
- readonly category: "style";
12028
- readonly specialCategory: null;
12029
- readonly sort: 2;
12030
- readonly preferredScale: "s";
12031
- };
12032
- readonly fontFamily: {
12033
- readonly label: "Font Family";
12034
- readonly description: "Font family used for the text.";
12035
- readonly category: "style";
12036
- readonly specialCategory: null;
12037
- readonly sort: 3;
12038
- };
12039
- readonly fontWeight: {
12040
- readonly label: "Font Weight";
12041
- readonly description: "Text weight.";
12042
- readonly category: "style";
12043
- readonly specialCategory: null;
12044
- readonly sort: 4;
12045
- };
12046
- readonly textAlign: {
12047
- readonly label: "Text Align";
12048
- readonly description: "Text alignment.";
12049
- readonly category: "style";
12050
- readonly specialCategory: null;
12051
- readonly sort: 5;
12052
- };
12053
- };
12054
12903
  readonly adjustsFontSizeToFit: {
12055
12904
  readonly label: "Adjust Font Size To Fit";
12056
12905
  readonly description: "Automatically reduces font size to fit the available space.";
@@ -12075,6 +12924,9 @@ export declare const patterns: readonly [{
12075
12924
  readonly alignSelf: "flex-start";
12076
12925
  readonly flexGrow: 0;
12077
12926
  readonly flexShrink: 0;
12927
+ readonly color: "THEME_COLORS.TEXT";
12928
+ readonly fontSize: "16@fs";
12929
+ readonly fontWeight: "400";
12078
12930
  };
12079
12931
  };
12080
12932
  readonly types: {};