@developer_tribe/react-builder 1.2.27 → 1.2.28

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 (156) hide show
  1. package/dist/assets/samples/getSamples.d.ts +0 -3
  2. package/dist/build-components/BIcon/BIconProps.generated.d.ts +1 -2
  3. package/dist/build-components/CountDown/CountDownProps.generated.d.ts +2 -1
  4. package/dist/build-components/OnboardFooter/OnboardFooterProps.generated.d.ts +1 -2
  5. package/dist/build-components/OnboardSubtitle/OnboardSubtitleProps.generated.d.ts +1 -2
  6. package/dist/build-components/OnboardTitle/OnboardTitleProps.generated.d.ts +1 -2
  7. package/dist/build-components/PaywallCloseButton/PaywallCloseButtonProps.generated.d.ts +1 -2
  8. package/dist/build-components/PaywallOptions/usePaywallOptionParamsFactory.d.ts +1 -1
  9. package/dist/build-components/PriceTag/PriceTag.d.ts +5 -0
  10. package/dist/build-components/PriceTag/PriceTagProps.generated.d.ts +63 -0
  11. package/dist/build-components/Pricing/Pricing.d.ts +5 -0
  12. package/dist/build-components/Pricing/PricingProps.generated.d.ts +59 -0
  13. package/dist/build-components/Promo/Promo.d.ts +5 -0
  14. package/dist/build-components/Promo/PromoProps.generated.d.ts +59 -0
  15. package/dist/build-components/Text/TextProps.generated.d.ts +1 -2
  16. package/dist/build-components/index.d.ts +4 -1
  17. package/dist/build-components/patterns.generated.d.ts +1405 -202
  18. package/dist/components/BuilderProvider.d.ts +5 -3
  19. package/dist/components/ParamsProvider.d.ts +16 -8
  20. package/dist/hooks/useSyncHtmlThemeClass.d.ts +1 -1
  21. package/dist/index.cjs.js +4 -4
  22. package/dist/index.cjs.js.map +1 -1
  23. package/dist/index.d.ts +14 -3
  24. package/dist/index.esm.js +4 -4
  25. package/dist/index.esm.js.map +1 -1
  26. package/dist/index.web.cjs.js +4 -4
  27. package/dist/index.web.cjs.js.map +1 -1
  28. package/dist/index.web.esm.js +4 -4
  29. package/dist/index.web.esm.js.map +1 -1
  30. package/dist/logger.d.ts +18 -0
  31. package/dist/modals/InspectModal.d.ts +5 -0
  32. package/dist/modals/index.d.ts +1 -1
  33. package/dist/pages/ProjectPage.d.ts +3 -3
  34. package/dist/paywall/hooks/useCalculateLocalizedPrice.d.ts +4 -2
  35. package/dist/paywall/hooks/useDiscountRate.d.ts +3 -2
  36. package/dist/paywall/types/paywall-types.d.ts +7 -32
  37. package/dist/product-base/buildPaywallLocalizationParams.d.ts +16 -0
  38. package/dist/product-base/calculations.d.ts +29 -0
  39. package/dist/product-base/extractAndroidParams.d.ts +24 -0
  40. package/dist/product-base/extractIOSParams.d.ts +24 -0
  41. package/dist/product-base/index.d.ts +27 -0
  42. package/dist/product-base/periodLocalizationKeys.d.ts +44 -0
  43. package/dist/product-base/types.d.ts +155 -0
  44. package/dist/product-base/usePaywallLocalizationParams.d.ts +29 -0
  45. package/dist/store.d.ts +7 -1
  46. package/dist/styles.css +1 -1
  47. package/dist/types/PreviewConfig.d.ts +10 -16
  48. package/dist/utils/extractTextStyle/extractTextStyle.d.ts +2 -2
  49. package/dist/utils/extractTextStyle/extractTextStyleNative.d.ts +2 -2
  50. package/dist/utils/replaceLocalizationParams.d.ts +1 -1
  51. package/package.json +2 -2
  52. package/scripts/migrate-samples-to-current.ts +3 -3
  53. package/scripts/prebuild/utils/validateAllComponentsOrThrow.js +28 -12
  54. package/src/DeviceMockFrame.tsx +15 -10
  55. package/src/assets/meta.json +1 -1
  56. package/src/assets/samples/carousel-sample.json +6 -5
  57. package/src/assets/samples/getSamples.ts +16 -49
  58. package/src/assets/samples/paywall-1.json +64 -22
  59. package/src/assets/samples/paywall-2.json +0 -15
  60. package/src/assets/samples/paywall-app-delete-offer.json +0 -15
  61. package/src/assets/samples/paywall-app-open-offer.json +0 -15
  62. package/src/assets/samples/paywall-back-offer.json +0 -15
  63. package/src/assets/samples/paywall-notification-offer.json +0 -15
  64. package/src/assets/samples/simple-1.json +1 -16
  65. package/src/assets/samples/simple-2.json +0 -15
  66. package/src/assets/samples/unmigrated-builder-1.1.1.json +0 -3
  67. package/src/assets/samples/unmigrated-builder1.json +0 -3
  68. package/src/assets/samples/unvalidated-builder1.json +0 -3
  69. package/src/assets/samples/unvalidated-crash1.json +0 -3
  70. package/src/assets/samples/unvalidated-crashcomponent1.json +0 -3
  71. package/src/assets/samples/vpn-onboard-1.json +1 -34
  72. package/src/assets/samples/vpn-onboard-2.json +1 -34
  73. package/src/assets/samples/vpn-onboard-3.json +1 -42
  74. package/src/assets/samples/vpn-onboard-4.json +0 -73
  75. package/src/assets/samples/vpn-onboard-5.json +0 -73
  76. package/src/assets/samples/vpn-onboard-6.json +0 -73
  77. package/src/assets/samples/vpn-onboard-7.json +529 -0
  78. package/src/attribute-analyser/style/native/useExtractImageStyle.ts +1 -4
  79. package/src/attribute-analyser/style/native/useExtractTextStyle.ts +3 -12
  80. package/src/attribute-analyser/style/native/useExtractViewStyle.ts +1 -4
  81. package/src/attribute-analyser/style/web/useExtractImageStyle.ts +1 -4
  82. package/src/attribute-analyser/style/web/useExtractTextStyle.ts +3 -12
  83. package/src/attribute-analyser/style/web/useExtractViewStyle.ts +1 -4
  84. package/src/attributes-editor/useAttributesEditorModel.ts +5 -52
  85. package/src/build-components/BIcon/BIconProps.generated.ts +1 -2
  86. package/src/build-components/CarouselDots/CarouselDots.tsx +6 -13
  87. package/src/build-components/CountDown/CountDownProps.generated.ts +2 -1
  88. package/src/build-components/NavigationBarColor/NavigationBarColor.tsx +2 -2
  89. package/src/build-components/OnboardButton/OnboardButton.tsx +1 -2
  90. package/src/build-components/OnboardDot/OnboardDot.tsx +6 -18
  91. package/src/build-components/OnboardFooter/OnboardFooter.tsx +5 -3
  92. package/src/build-components/OnboardFooter/OnboardFooterProps.generated.ts +1 -2
  93. package/src/build-components/OnboardFooter/pattern.json +1 -1
  94. package/src/build-components/OnboardSubtitle/OnboardSubtitleProps.generated.ts +1 -2
  95. package/src/build-components/OnboardTitle/OnboardTitleProps.generated.ts +1 -2
  96. package/src/build-components/PaywallCloseButton/PaywallCloseButtonProps.generated.ts +1 -2
  97. package/src/build-components/PaywallOptions/PaywallOptions.tsx +3 -3
  98. package/src/build-components/PaywallOptions/usePaywallOptionParamsFactory.ts +26 -13
  99. package/src/build-components/PaywallProvider/PaywallProvider.tsx +51 -12
  100. package/src/build-components/PriceTag/PriceTag.tsx +25 -0
  101. package/src/build-components/PriceTag/PriceTagProps.generated.ts +83 -0
  102. package/src/build-components/PriceTag/pattern.json +53 -0
  103. package/src/build-components/Pricing/Pricing.tsx +13 -0
  104. package/src/build-components/Pricing/PricingProps.generated.ts +76 -0
  105. package/src/build-components/Pricing/pattern.json +25 -0
  106. package/src/build-components/Promo/Promo.tsx +13 -0
  107. package/src/build-components/Promo/PromoProps.generated.ts +76 -0
  108. package/src/build-components/Promo/pattern.json +25 -0
  109. package/src/build-components/RadioButton/RadioButton.tsx +3 -5
  110. package/src/build-components/RenderNode.generated.tsx +15 -0
  111. package/src/build-components/StatusBarColor/StatusBarColor.tsx +2 -2
  112. package/src/build-components/Text/Text.tsx +12 -5
  113. package/src/build-components/Text/TextProps.generated.ts +1 -2
  114. package/src/build-components/Text/pattern.json +3 -2
  115. package/src/build-components/index.ts +15 -0
  116. package/src/build-components/patterns.generated.ts +1454 -181
  117. package/src/components/BottomBar.tsx +42 -39
  118. package/src/components/BuilderProvider.tsx +41 -14
  119. package/src/components/LocalizationParamsProvider.tsx +1 -1
  120. package/src/components/ParamsProvider.tsx +36 -11
  121. package/src/hooks/useLocalize.ts +7 -4
  122. package/src/hooks/useParams.ts +1 -1
  123. package/src/hooks/useSyncHtmlThemeClass.ts +2 -2
  124. package/src/index.ts +52 -8
  125. package/src/logger.ts +39 -0
  126. package/src/modals/InspectModal.tsx +331 -0
  127. package/src/modals/ProductPresetsModal.tsx +6 -13
  128. package/src/modals/index.ts +1 -1
  129. package/src/pages/DebugJsonPage.tsx +9 -22
  130. package/src/pages/ProjectDebug.tsx +1 -1
  131. package/src/pages/ProjectPage.tsx +29 -11
  132. package/src/pages/tabs/SideTool.tsx +28 -104
  133. package/src/paywall/hooks/useCalculateLocalizedPrice.ts +8 -3
  134. package/src/paywall/hooks/useDiscountRate.ts +11 -3
  135. package/src/paywall/types/paywall-types.ts +7 -38
  136. package/src/product-base/buildPaywallLocalizationParams.ts +100 -0
  137. package/src/product-base/calculations.ts +93 -0
  138. package/src/product-base/extractAndroidParams.ts +207 -0
  139. package/src/product-base/extractIOSParams.ts +199 -0
  140. package/src/product-base/index.ts +28 -0
  141. package/src/product-base/mockProducts.json +489 -0
  142. package/src/product-base/periodLocalizationKeys.ts +114 -0
  143. package/src/product-base/types.ts +183 -0
  144. package/src/product-base/usePaywallLocalizationParams.ts +61 -0
  145. package/src/store.ts +18 -1
  146. package/src/styles/index.scss +1 -0
  147. package/src/styles/modals/_inspect-modal.scss +155 -0
  148. package/src/types/PreviewConfig.ts +157 -16
  149. package/src/utils/extractTextStyle/extractTextStyle.ts +14 -6
  150. package/src/utils/extractTextStyle/extractTextStyleNative.ts +8 -6
  151. package/src/utils/logRenderStore.ts +6 -10
  152. package/src/utils/parseColor.ts +0 -1
  153. package/src/utils/replaceLocalizationParams.ts +8 -4
  154. package/dist/modals/ScreenColorsModal.d.ts +0 -8
  155. package/src/assets/products.json +0 -98
  156. package/src/modals/ScreenColorsModal.tsx +0 -121
@@ -8,12 +8,12 @@ export declare const patterns: readonly [{
8
8
  readonly attributes: {
9
9
  readonly adjustsFontSizeToFit: "boolean";
10
10
  readonly showEllipsis: "boolean";
11
+ readonly translateCounter: "number";
11
12
  readonly style: {
12
13
  readonly color: "color";
13
14
  readonly fontSize: "size";
14
15
  readonly fontFamily: "fontFamily";
15
16
  readonly fontWeight: "fontWeight";
16
- readonly textAlign: readonly ["left", "center", "right", "justify"];
17
17
  readonly flexDirection: readonly ["row", "column"];
18
18
  readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
19
19
  readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
@@ -54,13 +54,6 @@ 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
- };
64
57
  };
65
58
  readonly meta: {
66
59
  readonly desiredParent: readonly ["all"];
@@ -440,7 +433,8 @@ export declare const patterns: readonly [{
440
433
  };
441
434
  };
442
435
  readonly defaults: {
443
- readonly style: {
436
+ readonly translateCounter: 1;
437
+ readonly styles: {
444
438
  readonly color: "THEME_COLORS.TEXT";
445
439
  readonly fontSize: "16";
446
440
  readonly fontWeight: "400";
@@ -503,18 +497,6 @@ export declare const patterns: readonly [{
503
497
  readonly src: "string";
504
498
  readonly resizeMode: readonly ["cover", "contain", "stretch", "center"];
505
499
  };
506
- readonly defaults: {
507
- readonly resizeMode: "cover";
508
- readonly style: {
509
- readonly width: "100%";
510
- readonly height: "100%";
511
- readonly position: "absolute";
512
- readonly top: 0;
513
- readonly left: 0;
514
- readonly right: 0;
515
- readonly bottom: 0;
516
- };
517
- };
518
500
  };
519
501
  readonly meta: {
520
502
  readonly desiredParent: readonly ["all", "background"];
@@ -837,8 +819,7 @@ export declare const patterns: readonly [{
837
819
  };
838
820
  };
839
821
  readonly defaults: {
840
- readonly resizeMode: "cover";
841
- readonly style: {
822
+ readonly styles: {
842
823
  readonly flexDirection: "column";
843
824
  readonly position: "absolute";
844
825
  readonly zIndex: 0;
@@ -852,6 +833,7 @@ export declare const patterns: readonly [{
852
833
  readonly right: 0;
853
834
  readonly bottom: 0;
854
835
  };
836
+ readonly resizeMode: "cover";
855
837
  };
856
838
  readonly types: {};
857
839
  }, {
@@ -1232,7 +1214,7 @@ export declare const patterns: readonly [{
1232
1214
  };
1233
1215
  };
1234
1216
  readonly defaults: {
1235
- readonly style: {
1217
+ readonly styles: {
1236
1218
  readonly flexDirection: "column";
1237
1219
  readonly position: "relative";
1238
1220
  readonly zIndex: 1;
@@ -1603,7 +1585,7 @@ export declare const patterns: readonly [{
1603
1585
  };
1604
1586
  };
1605
1587
  readonly defaults: {
1606
- readonly style: {
1588
+ readonly styles: {
1607
1589
  readonly flexDirection: "row";
1608
1590
  readonly position: "relative";
1609
1591
  readonly zIndex: 1;
@@ -1983,7 +1965,7 @@ export declare const patterns: readonly [{
1983
1965
  };
1984
1966
  };
1985
1967
  readonly defaults: {
1986
- readonly style: {
1968
+ readonly styles: {
1987
1969
  readonly flexDirection: "column";
1988
1970
  readonly position: "relative";
1989
1971
  readonly zIndex: 1;
@@ -2355,7 +2337,7 @@ export declare const patterns: readonly [{
2355
2337
  };
2356
2338
  };
2357
2339
  readonly defaults: {
2358
- readonly style: {
2340
+ readonly styles: {
2359
2341
  readonly flexDirection: "column";
2360
2342
  readonly position: "relative";
2361
2343
  readonly zIndex: 1;
@@ -2719,7 +2701,7 @@ export declare const patterns: readonly [{
2719
2701
  };
2720
2702
  };
2721
2703
  readonly defaults: {
2722
- readonly style: {
2704
+ readonly styles: {
2723
2705
  readonly flexDirection: "column";
2724
2706
  readonly position: "relative";
2725
2707
  readonly zIndex: 1;
@@ -2775,12 +2757,6 @@ export declare const patterns: readonly [{
2775
2757
  readonly zIndex: "number";
2776
2758
  };
2777
2759
  };
2778
- readonly defaults: {
2779
- readonly style: {
2780
- readonly width: "100%";
2781
- readonly height: "100%";
2782
- };
2783
- };
2784
2760
  };
2785
2761
  readonly meta: {
2786
2762
  readonly desiredParent: readonly ["root", ">View"];
@@ -3089,7 +3065,7 @@ export declare const patterns: readonly [{
3089
3065
  };
3090
3066
  };
3091
3067
  readonly defaults: {
3092
- readonly style: {
3068
+ readonly styles: {
3093
3069
  readonly flexDirection: "column";
3094
3070
  readonly position: "relative";
3095
3071
  readonly zIndex: 1;
@@ -3112,12 +3088,12 @@ export declare const patterns: readonly [{
3112
3088
  readonly attributes: {
3113
3089
  readonly adjustsFontSizeToFit: "boolean";
3114
3090
  readonly showEllipsis: "boolean";
3091
+ readonly translateCounter: "number";
3115
3092
  readonly style: {
3116
3093
  readonly color: "color";
3117
3094
  readonly fontSize: "size";
3118
3095
  readonly fontFamily: "fontFamily";
3119
3096
  readonly fontWeight: "fontWeight";
3120
- readonly textAlign: "never";
3121
3097
  readonly flexDirection: readonly ["row", "column"];
3122
3098
  readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
3123
3099
  readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
@@ -3152,17 +3128,11 @@ export declare const patterns: readonly [{
3152
3128
  readonly left: "size";
3153
3129
  readonly right: "size";
3154
3130
  readonly zIndex: "number";
3131
+ readonly textAlign: "never";
3155
3132
  };
3156
3133
  readonly scrollable: "boolean";
3157
3134
  readonly count: "number";
3158
3135
  };
3159
- readonly defaults: {
3160
- readonly style: {
3161
- readonly color: "THEME_COLORS.TEXT";
3162
- readonly fontSize: "16@fs";
3163
- readonly fontWeight: "400";
3164
- };
3165
- };
3166
3136
  };
3167
3137
  readonly meta: {
3168
3138
  readonly desiredParent: readonly ["all"];
@@ -3528,7 +3498,8 @@ export declare const patterns: readonly [{
3528
3498
  };
3529
3499
  };
3530
3500
  readonly defaults: {
3531
- readonly style: {
3501
+ readonly translateCounter: 1;
3502
+ readonly styles: {
3532
3503
  readonly color: "THEME_COLORS.TEXT";
3533
3504
  readonly fontSize: "16@fs";
3534
3505
  readonly fontWeight: "400";
@@ -3589,11 +3560,6 @@ export declare const patterns: readonly [{
3589
3560
  };
3590
3561
  readonly src: "string";
3591
3562
  };
3592
- readonly defaults: {
3593
- readonly style: {
3594
- readonly resizeMode: "contain";
3595
- };
3596
- };
3597
3563
  };
3598
3564
  readonly meta: {
3599
3565
  readonly desiredParent: readonly ["all"];
@@ -3916,7 +3882,7 @@ export declare const patterns: readonly [{
3916
3882
  };
3917
3883
  };
3918
3884
  readonly defaults: {
3919
- readonly style: {
3885
+ readonly styles: {
3920
3886
  readonly flexDirection: "column";
3921
3887
  readonly position: "relative";
3922
3888
  readonly zIndex: 1;
@@ -4291,7 +4257,7 @@ export declare const patterns: readonly [{
4291
4257
  readonly hideAllAttributes: true;
4292
4258
  };
4293
4259
  readonly defaults: {
4294
- readonly style: {
4260
+ readonly styles: {
4295
4261
  readonly flexDirection: "column";
4296
4262
  readonly position: "relative";
4297
4263
  readonly zIndex: 1;
@@ -4659,7 +4625,7 @@ export declare const patterns: readonly [{
4659
4625
  };
4660
4626
  };
4661
4627
  readonly defaults: {
4662
- readonly style: {
4628
+ readonly styles: {
4663
4629
  readonly flexDirection: "column";
4664
4630
  readonly position: "relative";
4665
4631
  readonly zIndex: 1;
@@ -5025,7 +4991,7 @@ export declare const patterns: readonly [{
5025
4991
  readonly desiredChildren: readonly ["=OnboardItem"];
5026
4992
  };
5027
4993
  readonly defaults: {
5028
- readonly style: {
4994
+ readonly styles: {
5029
4995
  readonly flexDirection: "row";
5030
4996
  readonly position: "relative";
5031
4997
  readonly zIndex: 1;
@@ -5088,12 +5054,6 @@ export declare const patterns: readonly [{
5088
5054
  readonly flex: "number";
5089
5055
  readonly events: "EventObject[]";
5090
5056
  };
5091
- readonly defaults: {
5092
- readonly style: {
5093
- readonly height: "40@vs";
5094
- readonly borderRadius: "12@s";
5095
- };
5096
- };
5097
5057
  };
5098
5058
  readonly meta: {
5099
5059
  readonly desiredParent: readonly ["=OnboardButtons"];
@@ -5444,7 +5404,7 @@ export declare const patterns: readonly [{
5444
5404
  };
5445
5405
  };
5446
5406
  readonly defaults: {
5447
- readonly style: {
5407
+ readonly styles: {
5448
5408
  readonly flexDirection: "column";
5449
5409
  readonly position: "relative";
5450
5410
  readonly zIndex: 1;
@@ -5516,17 +5476,6 @@ export declare const patterns: readonly [{
5516
5476
  readonly condition: readonly ["carousel-index"];
5517
5477
  readonly conditionVariable: "number";
5518
5478
  };
5519
- readonly defaults: {
5520
- readonly style: {
5521
- readonly display: "flex";
5522
- readonly flexDirection: "row";
5523
- readonly gap: 12;
5524
- readonly alignItems: "center";
5525
- readonly justifyContent: "center";
5526
- readonly marginVertical: "12@vs";
5527
- readonly marginHorizontal: "24@s";
5528
- };
5529
- };
5530
5479
  };
5531
5480
  readonly meta: {
5532
5481
  readonly desiredParent: readonly ["=OnboardItem"];
@@ -5884,7 +5833,7 @@ export declare const patterns: readonly [{
5884
5833
  };
5885
5834
  };
5886
5835
  readonly defaults: {
5887
- readonly style: {
5836
+ readonly styles: {
5888
5837
  readonly flexDirection: "row";
5889
5838
  readonly position: "relative";
5890
5839
  readonly zIndex: 1;
@@ -6297,7 +6246,7 @@ export declare const patterns: readonly [{
6297
6246
  };
6298
6247
  };
6299
6248
  readonly defaults: {
6300
- readonly style: {
6249
+ readonly styles: {
6301
6250
  readonly flexDirection: "row";
6302
6251
  readonly position: "relative";
6303
6252
  readonly zIndex: 1;
@@ -6320,16 +6269,16 @@ export declare const patterns: readonly [{
6320
6269
  readonly type: "OnboardFooter";
6321
6270
  readonly title: "title";
6322
6271
  readonly description: "description";
6323
- readonly children: "node";
6272
+ readonly children: "never";
6324
6273
  readonly attributes: {
6325
6274
  readonly adjustsFontSizeToFit: "boolean";
6326
6275
  readonly showEllipsis: "boolean";
6276
+ readonly translateCounter: "number";
6327
6277
  readonly style: {
6328
6278
  readonly color: "color";
6329
6279
  readonly fontSize: "size";
6330
6280
  readonly fontFamily: "fontFamily";
6331
6281
  readonly fontWeight: "fontWeight";
6332
- readonly textAlign: readonly ["left", "center", "right", "justify"];
6333
6282
  readonly flexDirection: readonly ["row", "column"];
6334
6283
  readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
6335
6284
  readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
@@ -6374,13 +6323,6 @@ export declare const patterns: readonly [{
6374
6323
  readonly linkedWordSecondColor: "color";
6375
6324
  readonly linkedWordSecondPage: "string";
6376
6325
  };
6377
- readonly defaults: {
6378
- readonly style: {
6379
- readonly color: "THEME_COLORS.TEXT";
6380
- readonly fontSize: "16@fs";
6381
- readonly fontWeight: "400";
6382
- };
6383
- };
6384
6326
  };
6385
6327
  readonly meta: {
6386
6328
  readonly desiredParent: readonly [">OnboardItem"];
@@ -6788,7 +6730,8 @@ export declare const patterns: readonly [{
6788
6730
  };
6789
6731
  };
6790
6732
  readonly defaults: {
6791
- readonly style: {
6733
+ readonly translateCounter: 1;
6734
+ readonly styles: {
6792
6735
  readonly color: "THEME_COLORS.TEXT";
6793
6736
  readonly fontSize: "16@fs";
6794
6737
  readonly fontWeight: "400";
@@ -6856,11 +6799,6 @@ export declare const patterns: readonly [{
6856
6799
  readonly video_url: "string";
6857
6800
  readonly lottie: "string";
6858
6801
  };
6859
- readonly defaults: {
6860
- readonly style: {
6861
- readonly resizeMode: "contain";
6862
- };
6863
- };
6864
6802
  };
6865
6803
  readonly meta: {
6866
6804
  readonly desiredParent: readonly [">OnboardProvider", ">OnboardItem", "!=Onboard"];
@@ -7197,7 +7135,7 @@ export declare const patterns: readonly [{
7197
7135
  };
7198
7136
  };
7199
7137
  readonly defaults: {
7200
- readonly style: {
7138
+ readonly styles: {
7201
7139
  readonly resizeMode: "contain";
7202
7140
  readonly flexDirection: "column";
7203
7141
  readonly position: "relative";
@@ -7571,7 +7509,7 @@ export declare const patterns: readonly [{
7571
7509
  };
7572
7510
  };
7573
7511
  readonly defaults: {
7574
- readonly style: {
7512
+ readonly styles: {
7575
7513
  readonly flexDirection: "column";
7576
7514
  readonly position: "relative";
7577
7515
  readonly zIndex: 1;
@@ -7943,7 +7881,7 @@ export declare const patterns: readonly [{
7943
7881
  };
7944
7882
  };
7945
7883
  readonly defaults: {
7946
- readonly style: {
7884
+ readonly styles: {
7947
7885
  readonly flexDirection: "column";
7948
7886
  readonly position: "relative";
7949
7887
  readonly zIndex: 1;
@@ -7965,12 +7903,12 @@ export declare const patterns: readonly [{
7965
7903
  readonly attributes: {
7966
7904
  readonly adjustsFontSizeToFit: "boolean";
7967
7905
  readonly showEllipsis: "boolean";
7906
+ readonly translateCounter: "number";
7968
7907
  readonly style: {
7969
7908
  readonly color: "color";
7970
7909
  readonly fontSize: "size";
7971
7910
  readonly fontFamily: "fontFamily";
7972
7911
  readonly fontWeight: "fontWeight";
7973
- readonly textAlign: readonly ["left", "center", "right", "justify"];
7974
7912
  readonly flexDirection: readonly ["row", "column"];
7975
7913
  readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
7976
7914
  readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
@@ -8008,13 +7946,6 @@ export declare const patterns: readonly [{
8008
7946
  };
8009
7947
  readonly scrollable: "boolean";
8010
7948
  };
8011
- readonly defaults: {
8012
- readonly style: {
8013
- readonly color: "THEME_COLORS.TEXT";
8014
- readonly fontSize: "16@fs";
8015
- readonly fontWeight: "400";
8016
- };
8017
- };
8018
7949
  };
8019
7950
  readonly meta: {
8020
7951
  readonly desiredParent: readonly [">OnboardProvider", ">OnboardItem"];
@@ -8373,7 +8304,8 @@ export declare const patterns: readonly [{
8373
8304
  };
8374
8305
  };
8375
8306
  readonly defaults: {
8376
- readonly style: {
8307
+ readonly translateCounter: 1;
8308
+ readonly styles: {
8377
8309
  readonly color: "THEME_COLORS.TEXT";
8378
8310
  readonly fontSize: "14@fs";
8379
8311
  readonly fontWeight: "600";
@@ -8396,12 +8328,12 @@ export declare const patterns: readonly [{
8396
8328
  readonly attributes: {
8397
8329
  readonly adjustsFontSizeToFit: "boolean";
8398
8330
  readonly showEllipsis: "boolean";
8331
+ readonly translateCounter: "number";
8399
8332
  readonly style: {
8400
8333
  readonly color: "color";
8401
8334
  readonly fontSize: "size";
8402
8335
  readonly fontFamily: "fontFamily";
8403
8336
  readonly fontWeight: "fontWeight";
8404
- readonly textAlign: readonly ["left", "center", "right", "justify"];
8405
8337
  readonly flexDirection: readonly ["row", "column"];
8406
8338
  readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
8407
8339
  readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
@@ -8439,13 +8371,6 @@ export declare const patterns: readonly [{
8439
8371
  };
8440
8372
  readonly scrollable: "boolean";
8441
8373
  };
8442
- readonly defaults: {
8443
- readonly style: {
8444
- readonly color: "THEME_COLORS.TEXT";
8445
- readonly fontSize: "16@fs";
8446
- readonly fontWeight: "400";
8447
- };
8448
- };
8449
8374
  };
8450
8375
  readonly meta: {
8451
8376
  readonly desiredParent: readonly [">OnboardItem", ">OnboardProvider"];
@@ -8804,7 +8729,8 @@ export declare const patterns: readonly [{
8804
8729
  };
8805
8730
  };
8806
8731
  readonly defaults: {
8807
- readonly style: {
8732
+ readonly translateCounter: 1;
8733
+ readonly styles: {
8808
8734
  readonly color: "THEME_COLORS.TEXT";
8809
8735
  readonly fontSize: "24@fs";
8810
8736
  readonly fontWeight: "700";
@@ -8866,18 +8792,6 @@ export declare const patterns: readonly [{
8866
8792
  readonly zIndex: "number";
8867
8793
  };
8868
8794
  };
8869
- readonly defaults: {
8870
- readonly resizeMode: "cover";
8871
- readonly style: {
8872
- readonly width: "100%";
8873
- readonly height: "100%";
8874
- readonly position: "absolute";
8875
- readonly top: 0;
8876
- readonly left: 0;
8877
- readonly right: 0;
8878
- readonly bottom: 0;
8879
- };
8880
- };
8881
8795
  };
8882
8796
  readonly meta: {
8883
8797
  readonly desiredParent: readonly [">PaywallProvider"];
@@ -9201,7 +9115,7 @@ export declare const patterns: readonly [{
9201
9115
  };
9202
9116
  readonly defaults: {
9203
9117
  readonly resizeMode: "cover";
9204
- readonly style: {
9118
+ readonly styles: {
9205
9119
  readonly width: "100%";
9206
9120
  readonly height: "100%";
9207
9121
  readonly position: "absolute";
@@ -9230,12 +9144,12 @@ export declare const patterns: readonly [{
9230
9144
  readonly strokeWidth: "number";
9231
9145
  readonly adjustsFontSizeToFit: "boolean";
9232
9146
  readonly showEllipsis: "boolean";
9147
+ readonly translateCounter: "number";
9233
9148
  readonly style: {
9234
9149
  readonly color: "color";
9235
9150
  readonly fontSize: "size";
9236
9151
  readonly fontFamily: "fontFamily";
9237
9152
  readonly fontWeight: "fontWeight";
9238
- readonly textAlign: readonly ["left", "center", "right", "justify"];
9239
9153
  readonly flexDirection: readonly ["row", "column"];
9240
9154
  readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
9241
9155
  readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
@@ -9273,13 +9187,6 @@ export declare const patterns: readonly [{
9273
9187
  };
9274
9188
  readonly scrollable: "boolean";
9275
9189
  };
9276
- readonly defaults: {
9277
- readonly style: {
9278
- readonly color: "THEME_COLORS.TEXT";
9279
- readonly fontSize: "16@fs";
9280
- readonly fontWeight: "400";
9281
- };
9282
- };
9283
9190
  };
9284
9191
  readonly meta: {
9285
9192
  readonly desiredParent: readonly [">PaywallProvider"];
@@ -9659,7 +9566,9 @@ export declare const patterns: readonly [{
9659
9566
  };
9660
9567
  };
9661
9568
  readonly defaults: {
9662
- readonly style: {
9569
+ readonly iconType: "close";
9570
+ readonly strokeWidth: 1.5;
9571
+ readonly styles: {
9663
9572
  readonly fontSize: "16@fs";
9664
9573
  readonly color: "THEME_COLORS.TEXT";
9665
9574
  readonly fontWeight: "400";
@@ -9674,8 +9583,7 @@ export declare const patterns: readonly [{
9674
9583
  readonly justifyContent: "center";
9675
9584
  readonly alignItems: "center";
9676
9585
  };
9677
- readonly iconType: "close";
9678
- readonly strokeWidth: 1.5;
9586
+ readonly translateCounter: 1;
9679
9587
  readonly size: 24;
9680
9588
  };
9681
9589
  readonly types: {};
@@ -10033,7 +9941,7 @@ export declare const patterns: readonly [{
10033
9941
  };
10034
9942
  };
10035
9943
  readonly defaults: {
10036
- readonly style: {
9944
+ readonly styles: {
10037
9945
  readonly flexDirection: "row";
10038
9946
  readonly position: "relative";
10039
9947
  readonly zIndex: 1;
@@ -10412,7 +10320,7 @@ export declare const patterns: readonly [{
10412
10320
  };
10413
10321
  };
10414
10322
  readonly defaults: {
10415
- readonly style: {
10323
+ readonly styles: {
10416
10324
  readonly flexDirection: "column";
10417
10325
  readonly position: "relative";
10418
10326
  readonly zIndex: 1;
@@ -10802,7 +10710,7 @@ export declare const patterns: readonly [{
10802
10710
  };
10803
10711
  };
10804
10712
  readonly defaults: {
10805
- readonly style: {
10713
+ readonly styles: {
10806
10714
  readonly display: "flex";
10807
10715
  readonly alignItems: "center";
10808
10716
  readonly justifyContent: "center";
@@ -10825,13 +10733,19 @@ export declare const patterns: readonly [{
10825
10733
  }, {
10826
10734
  readonly schemaVersion: 2;
10827
10735
  readonly pattern: {
10828
- readonly type: "RadioButton";
10736
+ readonly type: "PriceTag";
10829
10737
  readonly title: "title";
10830
10738
  readonly description: "description";
10831
- readonly children: "never";
10739
+ readonly children: "string";
10832
10740
  readonly attributes: {
10833
- readonly scrollable: "boolean";
10741
+ readonly adjustsFontSizeToFit: "boolean";
10742
+ readonly showEllipsis: "boolean";
10743
+ readonly translateCounter: "number";
10834
10744
  readonly style: {
10745
+ readonly color: "color";
10746
+ readonly fontSize: "size";
10747
+ readonly fontFamily: "fontFamily";
10748
+ readonly fontWeight: "fontWeight";
10835
10749
  readonly flexDirection: readonly ["row", "column"];
10836
10750
  readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
10837
10751
  readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
@@ -10866,43 +10780,54 @@ export declare const patterns: readonly [{
10866
10780
  readonly left: "size";
10867
10781
  readonly right: "size";
10868
10782
  readonly zIndex: "number";
10783
+ readonly textDecorationLine: readonly ["none", "underline", "line-through"];
10869
10784
  };
10870
- readonly selected: "boolean";
10871
- readonly color: "color";
10872
- readonly size: "number";
10785
+ readonly scrollable: "boolean";
10786
+ readonly showOriginalPricePossible: "boolean";
10787
+ readonly hideIfItsNotDiscount: "boolean";
10873
10788
  };
10874
10789
  };
10875
10790
  readonly meta: {
10876
- readonly desiredParent: readonly ["all"];
10877
- readonly label: "Radio Button";
10878
- readonly description: "Generic radio button icon.";
10879
- readonly specialCategories: {
10880
- readonly padding: {
10881
- readonly label: "Padding";
10882
- readonly description: "Uniform padding on all sides.";
10883
- readonly category: "container";
10791
+ readonly desiredParent: readonly [">PaywallProvider"];
10792
+ readonly label: "Price Tag";
10793
+ readonly description: "Displays a price tag text. Extends Text.";
10794
+ readonly styles: {
10795
+ readonly color: {
10796
+ readonly label: "Color";
10797
+ readonly description: "Text color.";
10798
+ readonly category: "style";
10799
+ readonly specialCategory: null;
10884
10800
  readonly sort: 1;
10885
10801
  };
10886
- readonly margin: {
10887
- readonly label: "Margin";
10888
- readonly description: "Uniform margin on all sides.";
10889
- readonly category: "container";
10802
+ readonly fontSize: {
10803
+ readonly label: "Font Size";
10804
+ readonly description: "Text size.";
10805
+ readonly category: "style";
10806
+ readonly specialCategory: null;
10890
10807
  readonly sort: 2;
10808
+ readonly preferredScale: "s";
10891
10809
  };
10892
- readonly size: {
10893
- readonly label: "Size";
10894
- readonly description: "Fixed dimensions.";
10895
- readonly category: "container";
10810
+ readonly fontFamily: {
10811
+ readonly label: "Font Family";
10812
+ readonly description: "Font family used for the text.";
10813
+ readonly category: "style";
10814
+ readonly specialCategory: null;
10896
10815
  readonly sort: 3;
10897
10816
  };
10898
- readonly offset: {
10899
- readonly label: "Offset";
10900
- readonly description: "Absolute positioning offsets.";
10901
- readonly category: "container";
10817
+ readonly fontWeight: {
10818
+ readonly label: "Font Weight";
10819
+ readonly description: "Text weight.";
10820
+ readonly category: "style";
10821
+ readonly specialCategory: null;
10902
10822
  readonly sort: 4;
10903
10823
  };
10904
- };
10905
- readonly styles: {
10824
+ readonly textAlign: {
10825
+ readonly label: "Text Align";
10826
+ readonly description: "Text alignment.";
10827
+ readonly category: "style";
10828
+ readonly specialCategory: null;
10829
+ readonly sort: 5;
10830
+ };
10906
10831
  readonly backgroundColor: {
10907
10832
  readonly label: "Background Color";
10908
10833
  readonly description: "Background fill color.";
@@ -10918,22 +10843,29 @@ export declare const patterns: readonly [{
10918
10843
  readonly sort: 21;
10919
10844
  readonly preferredScale: "s";
10920
10845
  };
10921
- readonly color: {
10922
- readonly label: "Color";
10923
- readonly description: "Radio color.";
10846
+ readonly textDecorationLine: {
10847
+ readonly label: "Text Decoration";
10848
+ readonly description: "Text decoration line style (e.g. line-through for strikethrough).";
10924
10849
  readonly category: "style";
10925
10850
  readonly specialCategory: null;
10851
+ readonly sort: 6;
10852
+ };
10853
+ };
10854
+ readonly attributes: {
10855
+ readonly adjustsFontSizeToFit: {
10856
+ readonly label: "Adjust Font Size To Fit";
10857
+ readonly description: "Automatically reduces font size to fit the available space.";
10858
+ readonly category: "other";
10859
+ readonly specialCategory: null;
10926
10860
  readonly sort: 1;
10927
10861
  };
10928
- readonly size: {
10929
- readonly label: "Size";
10930
- readonly description: "Radio size in px.";
10931
- readonly category: "style";
10862
+ readonly showEllipsis: {
10863
+ readonly label: "Show Ellipsis";
10864
+ readonly description: "If text overflows, show ellipsis (…); applied as single-line truncation.";
10865
+ readonly category: "other";
10932
10866
  readonly specialCategory: null;
10933
10867
  readonly sort: 2;
10934
10868
  };
10935
- };
10936
- readonly attributes: {
10937
10869
  readonly scrollable: {
10938
10870
  readonly label: "Scrollable";
10939
10871
  readonly description: "Turns scroll interaction on.";
@@ -11190,17 +11122,54 @@ export declare const patterns: readonly [{
11190
11122
  readonly specialCategory: null;
11191
11123
  readonly sort: 26;
11192
11124
  };
11193
- readonly selected: {
11194
- readonly label: "Selected";
11195
- readonly description: "Whether the radio is selected.";
11125
+ readonly showOriginalPricePossible: {
11126
+ readonly label: "Show Original Price Possible";
11127
+ readonly description: "When enabled, shows the original price if available.";
11196
11128
  readonly category: "other";
11197
11129
  readonly specialCategory: null;
11198
- readonly sort: 0;
11130
+ readonly sort: 1;
11131
+ };
11132
+ readonly hideIfItsNotDiscount: {
11133
+ readonly label: "Hide If No Discount";
11134
+ readonly description: "Hides this element when there is no active discount/promo.";
11135
+ readonly category: "other";
11136
+ readonly specialCategory: null;
11137
+ readonly sort: 2;
11138
+ };
11139
+ };
11140
+ readonly specialCategories: {
11141
+ readonly padding: {
11142
+ readonly label: "Padding";
11143
+ readonly description: "Uniform padding on all sides.";
11144
+ readonly category: "container";
11145
+ readonly sort: 1;
11146
+ };
11147
+ readonly margin: {
11148
+ readonly label: "Margin";
11149
+ readonly description: "Uniform margin on all sides.";
11150
+ readonly category: "container";
11151
+ readonly sort: 2;
11152
+ };
11153
+ readonly size: {
11154
+ readonly label: "Size";
11155
+ readonly description: "Fixed dimensions.";
11156
+ readonly category: "container";
11157
+ readonly sort: 3;
11158
+ };
11159
+ readonly offset: {
11160
+ readonly label: "Offset";
11161
+ readonly description: "Absolute positioning offsets.";
11162
+ readonly category: "container";
11163
+ readonly sort: 4;
11199
11164
  };
11200
11165
  };
11201
11166
  };
11202
11167
  readonly defaults: {
11203
- readonly style: {
11168
+ readonly translateCounter: 1;
11169
+ readonly styles: {
11170
+ readonly color: "THEME_COLORS.TEXT";
11171
+ readonly fontSize: "16@fs";
11172
+ readonly fontWeight: "700";
11204
11173
  readonly flexDirection: "column";
11205
11174
  readonly position: "relative";
11206
11175
  readonly zIndex: 1;
@@ -11213,35 +11182,1275 @@ export declare const patterns: readonly [{
11213
11182
  }, {
11214
11183
  readonly schemaVersion: 2;
11215
11184
  readonly pattern: {
11216
- readonly type: "Separator";
11185
+ readonly type: "Pricing";
11217
11186
  readonly title: "title";
11218
- readonly description: "description";
11219
- readonly children: "never";
11187
+ readonly description: "base.builder.paywall.pricing.default.text";
11188
+ readonly children: "string";
11220
11189
  readonly attributes: {
11190
+ readonly adjustsFontSizeToFit: "boolean";
11191
+ readonly showEllipsis: "boolean";
11192
+ readonly translateCounter: "number";
11221
11193
  readonly style: {
11222
- readonly backgroundColor: "color";
11223
- readonly width: "size";
11224
- readonly height: "size";
11194
+ readonly color: "color";
11195
+ readonly fontSize: "size";
11196
+ readonly fontFamily: "fontFamily";
11197
+ readonly fontWeight: "fontWeight";
11198
+ readonly flexDirection: readonly ["row", "column"];
11199
+ readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
11200
+ readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
11201
+ readonly justifyContent: readonly ["flex-start", "center", "flex-end", "space-between", "space-around", "space-evenly"];
11202
+ readonly gap: "size";
11203
+ readonly padding: "size";
11204
+ readonly paddingHorizontal: "size";
11205
+ readonly paddingVertical: "size";
11206
+ readonly paddingTop: "size";
11207
+ readonly paddingBottom: "size";
11208
+ readonly paddingLeft: "size";
11209
+ readonly paddingRight: "size";
11210
+ readonly margin: "size";
11225
11211
  readonly marginHorizontal: "size";
11226
11212
  readonly marginVertical: "size";
11227
11213
  readonly marginTop: "size";
11228
11214
  readonly marginBottom: "size";
11215
+ readonly marginLeft: "size";
11216
+ readonly marginRight: "size";
11217
+ readonly backgroundColor: "color";
11218
+ readonly borderRadius: "size";
11219
+ readonly width: "size";
11220
+ readonly minWidth: "size";
11221
+ readonly maxWidth: "size";
11222
+ readonly height: "size";
11223
+ readonly minHeight: "size";
11224
+ readonly maxHeight: "size";
11225
+ readonly flex: "number";
11226
+ readonly position: readonly ["relative", "absolute"];
11227
+ readonly top: "size";
11228
+ readonly bottom: "size";
11229
+ readonly left: "size";
11230
+ readonly right: "size";
11231
+ readonly zIndex: "number";
11229
11232
  };
11233
+ readonly scrollable: "boolean";
11230
11234
  };
11231
11235
  };
11232
11236
  readonly meta: {
11233
- readonly desiredParent: readonly ["all"];
11234
- readonly label: "Separator";
11235
- readonly description: "Horizontal line separator.";
11237
+ readonly desiredParent: readonly [">PaywallProvider"];
11238
+ readonly label: "Pricing";
11239
+ readonly description: "Displays pricing details (e.g. promo/trial breakdown). Extends Text.";
11236
11240
  readonly styles: {
11237
- readonly backgroundColor: {
11241
+ readonly color: {
11238
11242
  readonly label: "Color";
11239
- readonly description: "Separator line color.";
11243
+ readonly description: "Text color.";
11240
11244
  readonly category: "style";
11241
11245
  readonly specialCategory: null;
11242
11246
  readonly sort: 1;
11243
11247
  };
11244
- };
11248
+ readonly fontSize: {
11249
+ readonly label: "Font Size";
11250
+ readonly description: "Text size.";
11251
+ readonly category: "style";
11252
+ readonly specialCategory: null;
11253
+ readonly sort: 2;
11254
+ readonly preferredScale: "s";
11255
+ };
11256
+ readonly fontFamily: {
11257
+ readonly label: "Font Family";
11258
+ readonly description: "Font family used for the text.";
11259
+ readonly category: "style";
11260
+ readonly specialCategory: null;
11261
+ readonly sort: 3;
11262
+ };
11263
+ readonly fontWeight: {
11264
+ readonly label: "Font Weight";
11265
+ readonly description: "Text weight.";
11266
+ readonly category: "style";
11267
+ readonly specialCategory: null;
11268
+ readonly sort: 4;
11269
+ };
11270
+ readonly textAlign: {
11271
+ readonly label: "Text Align";
11272
+ readonly description: "Text alignment.";
11273
+ readonly category: "style";
11274
+ readonly specialCategory: null;
11275
+ readonly sort: 5;
11276
+ };
11277
+ readonly backgroundColor: {
11278
+ readonly label: "Background Color";
11279
+ readonly description: "Background fill color.";
11280
+ readonly category: "style";
11281
+ readonly specialCategory: null;
11282
+ readonly sort: 20;
11283
+ };
11284
+ readonly borderRadius: {
11285
+ readonly label: "Border Radius";
11286
+ readonly description: "Corner rounding amount.";
11287
+ readonly category: "style";
11288
+ readonly specialCategory: null;
11289
+ readonly sort: 21;
11290
+ readonly preferredScale: "s";
11291
+ };
11292
+ };
11293
+ readonly attributes: {
11294
+ readonly adjustsFontSizeToFit: {
11295
+ readonly label: "Adjust Font Size To Fit";
11296
+ readonly description: "Automatically reduces font size to fit the available space.";
11297
+ readonly category: "other";
11298
+ readonly specialCategory: null;
11299
+ readonly sort: 1;
11300
+ };
11301
+ readonly showEllipsis: {
11302
+ readonly label: "Show Ellipsis";
11303
+ readonly description: "If text overflows, show ellipsis (…); applied as single-line truncation.";
11304
+ readonly category: "other";
11305
+ readonly specialCategory: null;
11306
+ readonly sort: 2;
11307
+ };
11308
+ readonly scrollable: {
11309
+ readonly label: "Scrollable";
11310
+ readonly description: "Turns scroll interaction on.";
11311
+ readonly category: "container";
11312
+ readonly specialCategory: null;
11313
+ readonly sort: -1;
11314
+ };
11315
+ readonly flexDirection: {
11316
+ readonly label: "Flex Direction";
11317
+ readonly description: "Sets row or column layout.";
11318
+ readonly category: "container";
11319
+ readonly specialCategory: null;
11320
+ readonly sort: 4;
11321
+ };
11322
+ readonly flexWrap: {
11323
+ readonly label: "Flex Wrap";
11324
+ readonly description: "Controls whether flex items wrap to multiple lines.";
11325
+ readonly category: "container";
11326
+ readonly specialCategory: null;
11327
+ readonly sort: 4.5;
11328
+ };
11329
+ readonly alignItems: {
11330
+ readonly label: "Align Items";
11331
+ readonly description: "Controls cross-axis alignment.";
11332
+ readonly category: "container";
11333
+ readonly specialCategory: null;
11334
+ readonly sort: 3;
11335
+ };
11336
+ readonly justifyContent: {
11337
+ readonly label: "Justify Content";
11338
+ readonly description: "Controls main-axis alignment.";
11339
+ readonly category: "container";
11340
+ readonly specialCategory: null;
11341
+ readonly sort: 5;
11342
+ };
11343
+ readonly gap: {
11344
+ readonly label: "Gap";
11345
+ readonly description: "Space between children.";
11346
+ readonly category: "container";
11347
+ readonly specialCategory: null;
11348
+ readonly sort: 10;
11349
+ readonly preferredScale: "s";
11350
+ };
11351
+ readonly padding: {
11352
+ readonly label: "Padding";
11353
+ readonly description: "Uniform padding on all sides.";
11354
+ readonly category: "container";
11355
+ readonly specialCategory: "padding";
11356
+ readonly sort: 6;
11357
+ readonly preferredScale: "s";
11358
+ };
11359
+ readonly paddingHorizontal: {
11360
+ readonly label: "Padding Horizontal";
11361
+ readonly description: "Left and right padding.";
11362
+ readonly category: "container";
11363
+ readonly specialCategory: "padding";
11364
+ readonly sort: 7;
11365
+ readonly preferredScale: "s";
11366
+ };
11367
+ readonly paddingVertical: {
11368
+ readonly label: "Padding Vertical";
11369
+ readonly description: "Top and bottom padding.";
11370
+ readonly category: "container";
11371
+ readonly specialCategory: "padding";
11372
+ readonly sort: 8;
11373
+ readonly preferredScale: "vs";
11374
+ };
11375
+ readonly paddingTop: {
11376
+ readonly label: "Padding Top";
11377
+ readonly description: "Top padding only.";
11378
+ readonly category: "container";
11379
+ readonly specialCategory: "padding";
11380
+ readonly sort: 9;
11381
+ readonly preferredScale: "vs";
11382
+ };
11383
+ readonly paddingBottom: {
11384
+ readonly label: "Padding Bottom";
11385
+ readonly description: "Bottom padding only.";
11386
+ readonly category: "container";
11387
+ readonly specialCategory: "padding";
11388
+ readonly sort: 10;
11389
+ readonly preferredScale: "vs";
11390
+ };
11391
+ readonly paddingLeft: {
11392
+ readonly label: "Padding Left";
11393
+ readonly description: "Left padding only.";
11394
+ readonly category: "container";
11395
+ readonly specialCategory: "padding";
11396
+ readonly sort: 11;
11397
+ readonly preferredScale: "s";
11398
+ };
11399
+ readonly paddingRight: {
11400
+ readonly label: "Padding Right";
11401
+ readonly description: "Right padding only.";
11402
+ readonly category: "container";
11403
+ readonly specialCategory: "padding";
11404
+ readonly sort: 12;
11405
+ readonly preferredScale: "s";
11406
+ };
11407
+ readonly margin: {
11408
+ readonly label: "Margin";
11409
+ readonly description: "Uniform margin on all sides.";
11410
+ readonly category: "container";
11411
+ readonly specialCategory: "margin";
11412
+ readonly sort: 13;
11413
+ readonly preferredScale: "s";
11414
+ };
11415
+ readonly marginHorizontal: {
11416
+ readonly label: "Margin Horizontal";
11417
+ readonly description: "Left and right margin.";
11418
+ readonly category: "container";
11419
+ readonly specialCategory: "margin";
11420
+ readonly sort: 14;
11421
+ readonly preferredScale: "s";
11422
+ };
11423
+ readonly marginVertical: {
11424
+ readonly label: "Margin Vertical";
11425
+ readonly description: "Top and bottom margin.";
11426
+ readonly category: "container";
11427
+ readonly specialCategory: "margin";
11428
+ readonly sort: 15;
11429
+ readonly preferredScale: "vs";
11430
+ };
11431
+ readonly marginTop: {
11432
+ readonly label: "Margin Top";
11433
+ readonly description: "Top margin only.";
11434
+ readonly category: "container";
11435
+ readonly specialCategory: "margin";
11436
+ readonly sort: 16;
11437
+ readonly preferredScale: "vs";
11438
+ };
11439
+ readonly marginBottom: {
11440
+ readonly label: "Margin Bottom";
11441
+ readonly description: "Bottom margin only.";
11442
+ readonly category: "container";
11443
+ readonly specialCategory: "margin";
11444
+ readonly sort: 17;
11445
+ readonly preferredScale: "vs";
11446
+ };
11447
+ readonly marginLeft: {
11448
+ readonly label: "Margin Left";
11449
+ readonly description: "Left margin only.";
11450
+ readonly category: "container";
11451
+ readonly specialCategory: "margin";
11452
+ readonly sort: 18;
11453
+ readonly preferredScale: "s";
11454
+ };
11455
+ readonly marginRight: {
11456
+ readonly label: "Margin Right";
11457
+ readonly description: "Right margin only.";
11458
+ readonly category: "container";
11459
+ readonly specialCategory: "margin";
11460
+ readonly sort: 19;
11461
+ readonly preferredScale: "s";
11462
+ };
11463
+ readonly width: {
11464
+ readonly label: "Width";
11465
+ readonly description: "Fixed width value.";
11466
+ readonly category: "container";
11467
+ readonly specialCategory: "size";
11468
+ readonly sort: 0;
11469
+ readonly preferredScale: "s";
11470
+ };
11471
+ readonly minWidth: {
11472
+ readonly label: "Min Width";
11473
+ readonly description: "Minimum width constraint.";
11474
+ readonly category: "container";
11475
+ readonly specialCategory: "size";
11476
+ readonly sort: 1;
11477
+ readonly preferredScale: "s";
11478
+ };
11479
+ readonly maxWidth: {
11480
+ readonly label: "Max Width";
11481
+ readonly description: "Maximum width constraint.";
11482
+ readonly category: "container";
11483
+ readonly specialCategory: "size";
11484
+ readonly sort: 2;
11485
+ readonly preferredScale: "s";
11486
+ };
11487
+ readonly height: {
11488
+ readonly label: "Height";
11489
+ readonly description: "Fixed height value.";
11490
+ readonly category: "container";
11491
+ readonly specialCategory: "size";
11492
+ readonly sort: 3;
11493
+ readonly preferredScale: "vs";
11494
+ };
11495
+ readonly minHeight: {
11496
+ readonly label: "Min Height";
11497
+ readonly description: "Minimum height constraint.";
11498
+ readonly category: "container";
11499
+ readonly specialCategory: "size";
11500
+ readonly sort: 4;
11501
+ readonly preferredScale: "vs";
11502
+ };
11503
+ readonly maxHeight: {
11504
+ readonly label: "Max Height";
11505
+ readonly description: "Maximum height constraint.";
11506
+ readonly category: "container";
11507
+ readonly specialCategory: "size";
11508
+ readonly sort: 5;
11509
+ readonly preferredScale: "vs";
11510
+ };
11511
+ readonly flex: {
11512
+ readonly label: "Flex";
11513
+ readonly description: "Flex grow factor (e.g. 1 fills available space).";
11514
+ readonly category: "container";
11515
+ readonly specialCategory: "size";
11516
+ readonly sort: 6;
11517
+ };
11518
+ readonly position: {
11519
+ readonly label: "Position";
11520
+ readonly description: "Sets layout positioning mode.";
11521
+ readonly category: "container";
11522
+ readonly specialCategory: null;
11523
+ readonly sort: 3;
11524
+ };
11525
+ readonly top: {
11526
+ readonly label: "Top";
11527
+ readonly description: "Offset from the top edge.";
11528
+ readonly category: "container";
11529
+ readonly specialCategory: "offset";
11530
+ readonly sort: 22;
11531
+ readonly preferredScale: "vs";
11532
+ };
11533
+ readonly bottom: {
11534
+ readonly label: "Bottom";
11535
+ readonly description: "Offset from the bottom edge.";
11536
+ readonly category: "container";
11537
+ readonly specialCategory: "offset";
11538
+ readonly sort: 23;
11539
+ readonly preferredScale: "vs";
11540
+ };
11541
+ readonly left: {
11542
+ readonly label: "Left";
11543
+ readonly description: "Offset from the left edge.";
11544
+ readonly category: "container";
11545
+ readonly specialCategory: "offset";
11546
+ readonly sort: 24;
11547
+ readonly preferredScale: "s";
11548
+ };
11549
+ readonly right: {
11550
+ readonly label: "Right";
11551
+ readonly description: "Offset from the right edge.";
11552
+ readonly category: "container";
11553
+ readonly specialCategory: "offset";
11554
+ readonly sort: 25;
11555
+ readonly preferredScale: "s";
11556
+ };
11557
+ readonly zIndex: {
11558
+ readonly label: "Z-Index";
11559
+ readonly description: "Controls stacking order.";
11560
+ readonly category: "container";
11561
+ readonly specialCategory: null;
11562
+ readonly sort: 26;
11563
+ };
11564
+ };
11565
+ readonly specialCategories: {
11566
+ readonly padding: {
11567
+ readonly label: "Padding";
11568
+ readonly description: "Uniform padding on all sides.";
11569
+ readonly category: "container";
11570
+ readonly sort: 1;
11571
+ };
11572
+ readonly margin: {
11573
+ readonly label: "Margin";
11574
+ readonly description: "Uniform margin on all sides.";
11575
+ readonly category: "container";
11576
+ readonly sort: 2;
11577
+ };
11578
+ readonly size: {
11579
+ readonly label: "Size";
11580
+ readonly description: "Fixed dimensions.";
11581
+ readonly category: "container";
11582
+ readonly sort: 3;
11583
+ };
11584
+ readonly offset: {
11585
+ readonly label: "Offset";
11586
+ readonly description: "Absolute positioning offsets.";
11587
+ readonly category: "container";
11588
+ readonly sort: 4;
11589
+ };
11590
+ };
11591
+ };
11592
+ readonly defaults: {
11593
+ readonly translateCounter: 2;
11594
+ readonly styles: {
11595
+ readonly color: "rgba(255,255,255,0.6)";
11596
+ readonly fontSize: "12@fs";
11597
+ readonly fontWeight: "400";
11598
+ readonly flexDirection: "column";
11599
+ readonly position: "relative";
11600
+ readonly zIndex: 1;
11601
+ readonly alignSelf: "flex-start";
11602
+ readonly flexGrow: 0;
11603
+ readonly flexShrink: 0;
11604
+ readonly textAlign: "center";
11605
+ };
11606
+ };
11607
+ readonly types: {};
11608
+ }, {
11609
+ readonly schemaVersion: 2;
11610
+ readonly pattern: {
11611
+ readonly type: "Promo";
11612
+ readonly title: "title";
11613
+ readonly description: "base.builder.paywall.promo.default.text";
11614
+ readonly children: "string";
11615
+ readonly attributes: {
11616
+ readonly adjustsFontSizeToFit: "boolean";
11617
+ readonly showEllipsis: "boolean";
11618
+ readonly translateCounter: "number";
11619
+ readonly style: {
11620
+ readonly color: "color";
11621
+ readonly fontSize: "size";
11622
+ readonly fontFamily: "fontFamily";
11623
+ readonly fontWeight: "fontWeight";
11624
+ readonly flexDirection: readonly ["row", "column"];
11625
+ readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
11626
+ readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
11627
+ readonly justifyContent: readonly ["flex-start", "center", "flex-end", "space-between", "space-around", "space-evenly"];
11628
+ readonly gap: "size";
11629
+ readonly padding: "size";
11630
+ readonly paddingHorizontal: "size";
11631
+ readonly paddingVertical: "size";
11632
+ readonly paddingTop: "size";
11633
+ readonly paddingBottom: "size";
11634
+ readonly paddingLeft: "size";
11635
+ readonly paddingRight: "size";
11636
+ readonly margin: "size";
11637
+ readonly marginHorizontal: "size";
11638
+ readonly marginVertical: "size";
11639
+ readonly marginTop: "size";
11640
+ readonly marginBottom: "size";
11641
+ readonly marginLeft: "size";
11642
+ readonly marginRight: "size";
11643
+ readonly backgroundColor: "color";
11644
+ readonly borderRadius: "size";
11645
+ readonly width: "size";
11646
+ readonly minWidth: "size";
11647
+ readonly maxWidth: "size";
11648
+ readonly height: "size";
11649
+ readonly minHeight: "size";
11650
+ readonly maxHeight: "size";
11651
+ readonly flex: "number";
11652
+ readonly position: readonly ["relative", "absolute"];
11653
+ readonly top: "size";
11654
+ readonly bottom: "size";
11655
+ readonly left: "size";
11656
+ readonly right: "size";
11657
+ readonly zIndex: "number";
11658
+ };
11659
+ readonly scrollable: "boolean";
11660
+ };
11661
+ };
11662
+ readonly meta: {
11663
+ readonly desiredParent: readonly [">PaywallProvider"];
11664
+ readonly label: "Promo";
11665
+ readonly description: "Displays promotional badge/text (e.g. discount percentage). Extends Text.";
11666
+ readonly styles: {
11667
+ readonly color: {
11668
+ readonly label: "Color";
11669
+ readonly description: "Text color.";
11670
+ readonly category: "style";
11671
+ readonly specialCategory: null;
11672
+ readonly sort: 1;
11673
+ };
11674
+ readonly fontSize: {
11675
+ readonly label: "Font Size";
11676
+ readonly description: "Text size.";
11677
+ readonly category: "style";
11678
+ readonly specialCategory: null;
11679
+ readonly sort: 2;
11680
+ readonly preferredScale: "s";
11681
+ };
11682
+ readonly fontFamily: {
11683
+ readonly label: "Font Family";
11684
+ readonly description: "Font family used for the text.";
11685
+ readonly category: "style";
11686
+ readonly specialCategory: null;
11687
+ readonly sort: 3;
11688
+ };
11689
+ readonly fontWeight: {
11690
+ readonly label: "Font Weight";
11691
+ readonly description: "Text weight.";
11692
+ readonly category: "style";
11693
+ readonly specialCategory: null;
11694
+ readonly sort: 4;
11695
+ };
11696
+ readonly textAlign: {
11697
+ readonly label: "Text Align";
11698
+ readonly description: "Text alignment.";
11699
+ readonly category: "style";
11700
+ readonly specialCategory: null;
11701
+ readonly sort: 5;
11702
+ };
11703
+ readonly backgroundColor: {
11704
+ readonly label: "Background Color";
11705
+ readonly description: "Background fill color.";
11706
+ readonly category: "style";
11707
+ readonly specialCategory: null;
11708
+ readonly sort: 20;
11709
+ };
11710
+ readonly borderRadius: {
11711
+ readonly label: "Border Radius";
11712
+ readonly description: "Corner rounding amount.";
11713
+ readonly category: "style";
11714
+ readonly specialCategory: null;
11715
+ readonly sort: 21;
11716
+ readonly preferredScale: "s";
11717
+ };
11718
+ };
11719
+ readonly attributes: {
11720
+ readonly adjustsFontSizeToFit: {
11721
+ readonly label: "Adjust Font Size To Fit";
11722
+ readonly description: "Automatically reduces font size to fit the available space.";
11723
+ readonly category: "other";
11724
+ readonly specialCategory: null;
11725
+ readonly sort: 1;
11726
+ };
11727
+ readonly showEllipsis: {
11728
+ readonly label: "Show Ellipsis";
11729
+ readonly description: "If text overflows, show ellipsis (…); applied as single-line truncation.";
11730
+ readonly category: "other";
11731
+ readonly specialCategory: null;
11732
+ readonly sort: 2;
11733
+ };
11734
+ readonly scrollable: {
11735
+ readonly label: "Scrollable";
11736
+ readonly description: "Turns scroll interaction on.";
11737
+ readonly category: "container";
11738
+ readonly specialCategory: null;
11739
+ readonly sort: -1;
11740
+ };
11741
+ readonly flexDirection: {
11742
+ readonly label: "Flex Direction";
11743
+ readonly description: "Sets row or column layout.";
11744
+ readonly category: "container";
11745
+ readonly specialCategory: null;
11746
+ readonly sort: 4;
11747
+ };
11748
+ readonly flexWrap: {
11749
+ readonly label: "Flex Wrap";
11750
+ readonly description: "Controls whether flex items wrap to multiple lines.";
11751
+ readonly category: "container";
11752
+ readonly specialCategory: null;
11753
+ readonly sort: 4.5;
11754
+ };
11755
+ readonly alignItems: {
11756
+ readonly label: "Align Items";
11757
+ readonly description: "Controls cross-axis alignment.";
11758
+ readonly category: "container";
11759
+ readonly specialCategory: null;
11760
+ readonly sort: 3;
11761
+ };
11762
+ readonly justifyContent: {
11763
+ readonly label: "Justify Content";
11764
+ readonly description: "Controls main-axis alignment.";
11765
+ readonly category: "container";
11766
+ readonly specialCategory: null;
11767
+ readonly sort: 5;
11768
+ };
11769
+ readonly gap: {
11770
+ readonly label: "Gap";
11771
+ readonly description: "Space between children.";
11772
+ readonly category: "container";
11773
+ readonly specialCategory: null;
11774
+ readonly sort: 10;
11775
+ readonly preferredScale: "s";
11776
+ };
11777
+ readonly padding: {
11778
+ readonly label: "Padding";
11779
+ readonly description: "Uniform padding on all sides.";
11780
+ readonly category: "container";
11781
+ readonly specialCategory: "padding";
11782
+ readonly sort: 6;
11783
+ readonly preferredScale: "s";
11784
+ };
11785
+ readonly paddingHorizontal: {
11786
+ readonly label: "Padding Horizontal";
11787
+ readonly description: "Left and right padding.";
11788
+ readonly category: "container";
11789
+ readonly specialCategory: "padding";
11790
+ readonly sort: 7;
11791
+ readonly preferredScale: "s";
11792
+ };
11793
+ readonly paddingVertical: {
11794
+ readonly label: "Padding Vertical";
11795
+ readonly description: "Top and bottom padding.";
11796
+ readonly category: "container";
11797
+ readonly specialCategory: "padding";
11798
+ readonly sort: 8;
11799
+ readonly preferredScale: "vs";
11800
+ };
11801
+ readonly paddingTop: {
11802
+ readonly label: "Padding Top";
11803
+ readonly description: "Top padding only.";
11804
+ readonly category: "container";
11805
+ readonly specialCategory: "padding";
11806
+ readonly sort: 9;
11807
+ readonly preferredScale: "vs";
11808
+ };
11809
+ readonly paddingBottom: {
11810
+ readonly label: "Padding Bottom";
11811
+ readonly description: "Bottom padding only.";
11812
+ readonly category: "container";
11813
+ readonly specialCategory: "padding";
11814
+ readonly sort: 10;
11815
+ readonly preferredScale: "vs";
11816
+ };
11817
+ readonly paddingLeft: {
11818
+ readonly label: "Padding Left";
11819
+ readonly description: "Left padding only.";
11820
+ readonly category: "container";
11821
+ readonly specialCategory: "padding";
11822
+ readonly sort: 11;
11823
+ readonly preferredScale: "s";
11824
+ };
11825
+ readonly paddingRight: {
11826
+ readonly label: "Padding Right";
11827
+ readonly description: "Right padding only.";
11828
+ readonly category: "container";
11829
+ readonly specialCategory: "padding";
11830
+ readonly sort: 12;
11831
+ readonly preferredScale: "s";
11832
+ };
11833
+ readonly margin: {
11834
+ readonly label: "Margin";
11835
+ readonly description: "Uniform margin on all sides.";
11836
+ readonly category: "container";
11837
+ readonly specialCategory: "margin";
11838
+ readonly sort: 13;
11839
+ readonly preferredScale: "s";
11840
+ };
11841
+ readonly marginHorizontal: {
11842
+ readonly label: "Margin Horizontal";
11843
+ readonly description: "Left and right margin.";
11844
+ readonly category: "container";
11845
+ readonly specialCategory: "margin";
11846
+ readonly sort: 14;
11847
+ readonly preferredScale: "s";
11848
+ };
11849
+ readonly marginVertical: {
11850
+ readonly label: "Margin Vertical";
11851
+ readonly description: "Top and bottom margin.";
11852
+ readonly category: "container";
11853
+ readonly specialCategory: "margin";
11854
+ readonly sort: 15;
11855
+ readonly preferredScale: "vs";
11856
+ };
11857
+ readonly marginTop: {
11858
+ readonly label: "Margin Top";
11859
+ readonly description: "Top margin only.";
11860
+ readonly category: "container";
11861
+ readonly specialCategory: "margin";
11862
+ readonly sort: 16;
11863
+ readonly preferredScale: "vs";
11864
+ };
11865
+ readonly marginBottom: {
11866
+ readonly label: "Margin Bottom";
11867
+ readonly description: "Bottom margin only.";
11868
+ readonly category: "container";
11869
+ readonly specialCategory: "margin";
11870
+ readonly sort: 17;
11871
+ readonly preferredScale: "vs";
11872
+ };
11873
+ readonly marginLeft: {
11874
+ readonly label: "Margin Left";
11875
+ readonly description: "Left margin only.";
11876
+ readonly category: "container";
11877
+ readonly specialCategory: "margin";
11878
+ readonly sort: 18;
11879
+ readonly preferredScale: "s";
11880
+ };
11881
+ readonly marginRight: {
11882
+ readonly label: "Margin Right";
11883
+ readonly description: "Right margin only.";
11884
+ readonly category: "container";
11885
+ readonly specialCategory: "margin";
11886
+ readonly sort: 19;
11887
+ readonly preferredScale: "s";
11888
+ };
11889
+ readonly width: {
11890
+ readonly label: "Width";
11891
+ readonly description: "Fixed width value.";
11892
+ readonly category: "container";
11893
+ readonly specialCategory: "size";
11894
+ readonly sort: 0;
11895
+ readonly preferredScale: "s";
11896
+ };
11897
+ readonly minWidth: {
11898
+ readonly label: "Min Width";
11899
+ readonly description: "Minimum width constraint.";
11900
+ readonly category: "container";
11901
+ readonly specialCategory: "size";
11902
+ readonly sort: 1;
11903
+ readonly preferredScale: "s";
11904
+ };
11905
+ readonly maxWidth: {
11906
+ readonly label: "Max Width";
11907
+ readonly description: "Maximum width constraint.";
11908
+ readonly category: "container";
11909
+ readonly specialCategory: "size";
11910
+ readonly sort: 2;
11911
+ readonly preferredScale: "s";
11912
+ };
11913
+ readonly height: {
11914
+ readonly label: "Height";
11915
+ readonly description: "Fixed height value.";
11916
+ readonly category: "container";
11917
+ readonly specialCategory: "size";
11918
+ readonly sort: 3;
11919
+ readonly preferredScale: "vs";
11920
+ };
11921
+ readonly minHeight: {
11922
+ readonly label: "Min Height";
11923
+ readonly description: "Minimum height constraint.";
11924
+ readonly category: "container";
11925
+ readonly specialCategory: "size";
11926
+ readonly sort: 4;
11927
+ readonly preferredScale: "vs";
11928
+ };
11929
+ readonly maxHeight: {
11930
+ readonly label: "Max Height";
11931
+ readonly description: "Maximum height constraint.";
11932
+ readonly category: "container";
11933
+ readonly specialCategory: "size";
11934
+ readonly sort: 5;
11935
+ readonly preferredScale: "vs";
11936
+ };
11937
+ readonly flex: {
11938
+ readonly label: "Flex";
11939
+ readonly description: "Flex grow factor (e.g. 1 fills available space).";
11940
+ readonly category: "container";
11941
+ readonly specialCategory: "size";
11942
+ readonly sort: 6;
11943
+ };
11944
+ readonly position: {
11945
+ readonly label: "Position";
11946
+ readonly description: "Sets layout positioning mode.";
11947
+ readonly category: "container";
11948
+ readonly specialCategory: null;
11949
+ readonly sort: 3;
11950
+ };
11951
+ readonly top: {
11952
+ readonly label: "Top";
11953
+ readonly description: "Offset from the top edge.";
11954
+ readonly category: "container";
11955
+ readonly specialCategory: "offset";
11956
+ readonly sort: 22;
11957
+ readonly preferredScale: "vs";
11958
+ };
11959
+ readonly bottom: {
11960
+ readonly label: "Bottom";
11961
+ readonly description: "Offset from the bottom edge.";
11962
+ readonly category: "container";
11963
+ readonly specialCategory: "offset";
11964
+ readonly sort: 23;
11965
+ readonly preferredScale: "vs";
11966
+ };
11967
+ readonly left: {
11968
+ readonly label: "Left";
11969
+ readonly description: "Offset from the left edge.";
11970
+ readonly category: "container";
11971
+ readonly specialCategory: "offset";
11972
+ readonly sort: 24;
11973
+ readonly preferredScale: "s";
11974
+ };
11975
+ readonly right: {
11976
+ readonly label: "Right";
11977
+ readonly description: "Offset from the right edge.";
11978
+ readonly category: "container";
11979
+ readonly specialCategory: "offset";
11980
+ readonly sort: 25;
11981
+ readonly preferredScale: "s";
11982
+ };
11983
+ readonly zIndex: {
11984
+ readonly label: "Z-Index";
11985
+ readonly description: "Controls stacking order.";
11986
+ readonly category: "container";
11987
+ readonly specialCategory: null;
11988
+ readonly sort: 26;
11989
+ };
11990
+ };
11991
+ readonly specialCategories: {
11992
+ readonly padding: {
11993
+ readonly label: "Padding";
11994
+ readonly description: "Uniform padding on all sides.";
11995
+ readonly category: "container";
11996
+ readonly sort: 1;
11997
+ };
11998
+ readonly margin: {
11999
+ readonly label: "Margin";
12000
+ readonly description: "Uniform margin on all sides.";
12001
+ readonly category: "container";
12002
+ readonly sort: 2;
12003
+ };
12004
+ readonly size: {
12005
+ readonly label: "Size";
12006
+ readonly description: "Fixed dimensions.";
12007
+ readonly category: "container";
12008
+ readonly sort: 3;
12009
+ };
12010
+ readonly offset: {
12011
+ readonly label: "Offset";
12012
+ readonly description: "Absolute positioning offsets.";
12013
+ readonly category: "container";
12014
+ readonly sort: 4;
12015
+ };
12016
+ };
12017
+ };
12018
+ readonly defaults: {
12019
+ readonly translateCounter: 2;
12020
+ readonly styles: {
12021
+ readonly color: "#34D399";
12022
+ readonly fontSize: "12@fs";
12023
+ readonly fontWeight: "600";
12024
+ readonly flexDirection: "column";
12025
+ readonly position: "relative";
12026
+ readonly zIndex: 1;
12027
+ readonly alignSelf: "flex-start";
12028
+ readonly flexGrow: 0;
12029
+ readonly flexShrink: 0;
12030
+ readonly textAlign: "center";
12031
+ };
12032
+ };
12033
+ readonly types: {};
12034
+ }, {
12035
+ readonly schemaVersion: 2;
12036
+ readonly pattern: {
12037
+ readonly type: "RadioButton";
12038
+ readonly title: "title";
12039
+ readonly description: "description";
12040
+ readonly children: "never";
12041
+ readonly attributes: {
12042
+ readonly scrollable: "boolean";
12043
+ readonly style: {
12044
+ readonly flexDirection: readonly ["row", "column"];
12045
+ readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
12046
+ readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
12047
+ readonly justifyContent: readonly ["flex-start", "center", "flex-end", "space-between", "space-around", "space-evenly"];
12048
+ readonly gap: "size";
12049
+ readonly padding: "size";
12050
+ readonly paddingHorizontal: "size";
12051
+ readonly paddingVertical: "size";
12052
+ readonly paddingTop: "size";
12053
+ readonly paddingBottom: "size";
12054
+ readonly paddingLeft: "size";
12055
+ readonly paddingRight: "size";
12056
+ readonly margin: "size";
12057
+ readonly marginHorizontal: "size";
12058
+ readonly marginVertical: "size";
12059
+ readonly marginTop: "size";
12060
+ readonly marginBottom: "size";
12061
+ readonly marginLeft: "size";
12062
+ readonly marginRight: "size";
12063
+ readonly backgroundColor: "color";
12064
+ readonly borderRadius: "size";
12065
+ readonly width: "size";
12066
+ readonly minWidth: "size";
12067
+ readonly maxWidth: "size";
12068
+ readonly height: "size";
12069
+ readonly minHeight: "size";
12070
+ readonly maxHeight: "size";
12071
+ readonly flex: "number";
12072
+ readonly position: readonly ["relative", "absolute"];
12073
+ readonly top: "size";
12074
+ readonly bottom: "size";
12075
+ readonly left: "size";
12076
+ readonly right: "size";
12077
+ readonly zIndex: "number";
12078
+ };
12079
+ readonly selected: "boolean";
12080
+ readonly color: "color";
12081
+ readonly size: "number";
12082
+ };
12083
+ };
12084
+ readonly meta: {
12085
+ readonly desiredParent: readonly ["all"];
12086
+ readonly label: "Radio Button";
12087
+ readonly description: "Generic radio button icon.";
12088
+ readonly specialCategories: {
12089
+ readonly padding: {
12090
+ readonly label: "Padding";
12091
+ readonly description: "Uniform padding on all sides.";
12092
+ readonly category: "container";
12093
+ readonly sort: 1;
12094
+ };
12095
+ readonly margin: {
12096
+ readonly label: "Margin";
12097
+ readonly description: "Uniform margin on all sides.";
12098
+ readonly category: "container";
12099
+ readonly sort: 2;
12100
+ };
12101
+ readonly size: {
12102
+ readonly label: "Size";
12103
+ readonly description: "Fixed dimensions.";
12104
+ readonly category: "container";
12105
+ readonly sort: 3;
12106
+ };
12107
+ readonly offset: {
12108
+ readonly label: "Offset";
12109
+ readonly description: "Absolute positioning offsets.";
12110
+ readonly category: "container";
12111
+ readonly sort: 4;
12112
+ };
12113
+ };
12114
+ readonly styles: {
12115
+ readonly backgroundColor: {
12116
+ readonly label: "Background Color";
12117
+ readonly description: "Background fill color.";
12118
+ readonly category: "style";
12119
+ readonly specialCategory: null;
12120
+ readonly sort: 20;
12121
+ };
12122
+ readonly borderRadius: {
12123
+ readonly label: "Border Radius";
12124
+ readonly description: "Corner rounding amount.";
12125
+ readonly category: "style";
12126
+ readonly specialCategory: null;
12127
+ readonly sort: 21;
12128
+ readonly preferredScale: "s";
12129
+ };
12130
+ readonly color: {
12131
+ readonly label: "Color";
12132
+ readonly description: "Radio color.";
12133
+ readonly category: "style";
12134
+ readonly specialCategory: null;
12135
+ readonly sort: 1;
12136
+ };
12137
+ readonly size: {
12138
+ readonly label: "Size";
12139
+ readonly description: "Radio size in px.";
12140
+ readonly category: "style";
12141
+ readonly specialCategory: null;
12142
+ readonly sort: 2;
12143
+ };
12144
+ };
12145
+ readonly attributes: {
12146
+ readonly scrollable: {
12147
+ readonly label: "Scrollable";
12148
+ readonly description: "Turns scroll interaction on.";
12149
+ readonly category: "container";
12150
+ readonly specialCategory: null;
12151
+ readonly sort: -1;
12152
+ };
12153
+ readonly flexDirection: {
12154
+ readonly label: "Flex Direction";
12155
+ readonly description: "Sets row or column layout.";
12156
+ readonly category: "container";
12157
+ readonly specialCategory: null;
12158
+ readonly sort: 4;
12159
+ };
12160
+ readonly flexWrap: {
12161
+ readonly label: "Flex Wrap";
12162
+ readonly description: "Controls whether flex items wrap to multiple lines.";
12163
+ readonly category: "container";
12164
+ readonly specialCategory: null;
12165
+ readonly sort: 4.5;
12166
+ };
12167
+ readonly alignItems: {
12168
+ readonly label: "Align Items";
12169
+ readonly description: "Controls cross-axis alignment.";
12170
+ readonly category: "container";
12171
+ readonly specialCategory: null;
12172
+ readonly sort: 3;
12173
+ };
12174
+ readonly justifyContent: {
12175
+ readonly label: "Justify Content";
12176
+ readonly description: "Controls main-axis alignment.";
12177
+ readonly category: "container";
12178
+ readonly specialCategory: null;
12179
+ readonly sort: 5;
12180
+ };
12181
+ readonly gap: {
12182
+ readonly label: "Gap";
12183
+ readonly description: "Space between children.";
12184
+ readonly category: "container";
12185
+ readonly specialCategory: null;
12186
+ readonly sort: 10;
12187
+ readonly preferredScale: "s";
12188
+ };
12189
+ readonly padding: {
12190
+ readonly label: "Padding";
12191
+ readonly description: "Uniform padding on all sides.";
12192
+ readonly category: "container";
12193
+ readonly specialCategory: "padding";
12194
+ readonly sort: 6;
12195
+ readonly preferredScale: "s";
12196
+ };
12197
+ readonly paddingHorizontal: {
12198
+ readonly label: "Padding Horizontal";
12199
+ readonly description: "Left and right padding.";
12200
+ readonly category: "container";
12201
+ readonly specialCategory: "padding";
12202
+ readonly sort: 7;
12203
+ readonly preferredScale: "s";
12204
+ };
12205
+ readonly paddingVertical: {
12206
+ readonly label: "Padding Vertical";
12207
+ readonly description: "Top and bottom padding.";
12208
+ readonly category: "container";
12209
+ readonly specialCategory: "padding";
12210
+ readonly sort: 8;
12211
+ readonly preferredScale: "vs";
12212
+ };
12213
+ readonly paddingTop: {
12214
+ readonly label: "Padding Top";
12215
+ readonly description: "Top padding only.";
12216
+ readonly category: "container";
12217
+ readonly specialCategory: "padding";
12218
+ readonly sort: 9;
12219
+ readonly preferredScale: "vs";
12220
+ };
12221
+ readonly paddingBottom: {
12222
+ readonly label: "Padding Bottom";
12223
+ readonly description: "Bottom padding only.";
12224
+ readonly category: "container";
12225
+ readonly specialCategory: "padding";
12226
+ readonly sort: 10;
12227
+ readonly preferredScale: "vs";
12228
+ };
12229
+ readonly paddingLeft: {
12230
+ readonly label: "Padding Left";
12231
+ readonly description: "Left padding only.";
12232
+ readonly category: "container";
12233
+ readonly specialCategory: "padding";
12234
+ readonly sort: 11;
12235
+ readonly preferredScale: "s";
12236
+ };
12237
+ readonly paddingRight: {
12238
+ readonly label: "Padding Right";
12239
+ readonly description: "Right padding only.";
12240
+ readonly category: "container";
12241
+ readonly specialCategory: "padding";
12242
+ readonly sort: 12;
12243
+ readonly preferredScale: "s";
12244
+ };
12245
+ readonly margin: {
12246
+ readonly label: "Margin";
12247
+ readonly description: "Uniform margin on all sides.";
12248
+ readonly category: "container";
12249
+ readonly specialCategory: "margin";
12250
+ readonly sort: 13;
12251
+ readonly preferredScale: "s";
12252
+ };
12253
+ readonly marginHorizontal: {
12254
+ readonly label: "Margin Horizontal";
12255
+ readonly description: "Left and right margin.";
12256
+ readonly category: "container";
12257
+ readonly specialCategory: "margin";
12258
+ readonly sort: 14;
12259
+ readonly preferredScale: "s";
12260
+ };
12261
+ readonly marginVertical: {
12262
+ readonly label: "Margin Vertical";
12263
+ readonly description: "Top and bottom margin.";
12264
+ readonly category: "container";
12265
+ readonly specialCategory: "margin";
12266
+ readonly sort: 15;
12267
+ readonly preferredScale: "vs";
12268
+ };
12269
+ readonly marginTop: {
12270
+ readonly label: "Margin Top";
12271
+ readonly description: "Top margin only.";
12272
+ readonly category: "container";
12273
+ readonly specialCategory: "margin";
12274
+ readonly sort: 16;
12275
+ readonly preferredScale: "vs";
12276
+ };
12277
+ readonly marginBottom: {
12278
+ readonly label: "Margin Bottom";
12279
+ readonly description: "Bottom margin only.";
12280
+ readonly category: "container";
12281
+ readonly specialCategory: "margin";
12282
+ readonly sort: 17;
12283
+ readonly preferredScale: "vs";
12284
+ };
12285
+ readonly marginLeft: {
12286
+ readonly label: "Margin Left";
12287
+ readonly description: "Left margin only.";
12288
+ readonly category: "container";
12289
+ readonly specialCategory: "margin";
12290
+ readonly sort: 18;
12291
+ readonly preferredScale: "s";
12292
+ };
12293
+ readonly marginRight: {
12294
+ readonly label: "Margin Right";
12295
+ readonly description: "Right margin only.";
12296
+ readonly category: "container";
12297
+ readonly specialCategory: "margin";
12298
+ readonly sort: 19;
12299
+ readonly preferredScale: "s";
12300
+ };
12301
+ readonly width: {
12302
+ readonly label: "Width";
12303
+ readonly description: "Fixed width value.";
12304
+ readonly category: "container";
12305
+ readonly specialCategory: "size";
12306
+ readonly sort: 0;
12307
+ readonly preferredScale: "s";
12308
+ };
12309
+ readonly minWidth: {
12310
+ readonly label: "Min Width";
12311
+ readonly description: "Minimum width constraint.";
12312
+ readonly category: "container";
12313
+ readonly specialCategory: "size";
12314
+ readonly sort: 1;
12315
+ readonly preferredScale: "s";
12316
+ };
12317
+ readonly maxWidth: {
12318
+ readonly label: "Max Width";
12319
+ readonly description: "Maximum width constraint.";
12320
+ readonly category: "container";
12321
+ readonly specialCategory: "size";
12322
+ readonly sort: 2;
12323
+ readonly preferredScale: "s";
12324
+ };
12325
+ readonly height: {
12326
+ readonly label: "Height";
12327
+ readonly description: "Fixed height value.";
12328
+ readonly category: "container";
12329
+ readonly specialCategory: "size";
12330
+ readonly sort: 3;
12331
+ readonly preferredScale: "vs";
12332
+ };
12333
+ readonly minHeight: {
12334
+ readonly label: "Min Height";
12335
+ readonly description: "Minimum height constraint.";
12336
+ readonly category: "container";
12337
+ readonly specialCategory: "size";
12338
+ readonly sort: 4;
12339
+ readonly preferredScale: "vs";
12340
+ };
12341
+ readonly maxHeight: {
12342
+ readonly label: "Max Height";
12343
+ readonly description: "Maximum height constraint.";
12344
+ readonly category: "container";
12345
+ readonly specialCategory: "size";
12346
+ readonly sort: 5;
12347
+ readonly preferredScale: "vs";
12348
+ };
12349
+ readonly flex: {
12350
+ readonly label: "Flex";
12351
+ readonly description: "Flex grow factor (e.g. 1 fills available space).";
12352
+ readonly category: "container";
12353
+ readonly specialCategory: "size";
12354
+ readonly sort: 6;
12355
+ };
12356
+ readonly position: {
12357
+ readonly label: "Position";
12358
+ readonly description: "Sets layout positioning mode.";
12359
+ readonly category: "container";
12360
+ readonly specialCategory: null;
12361
+ readonly sort: 3;
12362
+ };
12363
+ readonly top: {
12364
+ readonly label: "Top";
12365
+ readonly description: "Offset from the top edge.";
12366
+ readonly category: "container";
12367
+ readonly specialCategory: "offset";
12368
+ readonly sort: 22;
12369
+ readonly preferredScale: "vs";
12370
+ };
12371
+ readonly bottom: {
12372
+ readonly label: "Bottom";
12373
+ readonly description: "Offset from the bottom edge.";
12374
+ readonly category: "container";
12375
+ readonly specialCategory: "offset";
12376
+ readonly sort: 23;
12377
+ readonly preferredScale: "vs";
12378
+ };
12379
+ readonly left: {
12380
+ readonly label: "Left";
12381
+ readonly description: "Offset from the left edge.";
12382
+ readonly category: "container";
12383
+ readonly specialCategory: "offset";
12384
+ readonly sort: 24;
12385
+ readonly preferredScale: "s";
12386
+ };
12387
+ readonly right: {
12388
+ readonly label: "Right";
12389
+ readonly description: "Offset from the right edge.";
12390
+ readonly category: "container";
12391
+ readonly specialCategory: "offset";
12392
+ readonly sort: 25;
12393
+ readonly preferredScale: "s";
12394
+ };
12395
+ readonly zIndex: {
12396
+ readonly label: "Z-Index";
12397
+ readonly description: "Controls stacking order.";
12398
+ readonly category: "container";
12399
+ readonly specialCategory: null;
12400
+ readonly sort: 26;
12401
+ };
12402
+ readonly selected: {
12403
+ readonly label: "Selected";
12404
+ readonly description: "Whether the radio is selected.";
12405
+ readonly category: "other";
12406
+ readonly specialCategory: null;
12407
+ readonly sort: 0;
12408
+ };
12409
+ };
12410
+ };
12411
+ readonly defaults: {
12412
+ readonly styles: {
12413
+ readonly flexDirection: "column";
12414
+ readonly position: "relative";
12415
+ readonly zIndex: 1;
12416
+ readonly alignSelf: "flex-start";
12417
+ readonly flexGrow: 0;
12418
+ readonly flexShrink: 0;
12419
+ };
12420
+ };
12421
+ readonly types: {};
12422
+ }, {
12423
+ readonly schemaVersion: 2;
12424
+ readonly pattern: {
12425
+ readonly type: "Separator";
12426
+ readonly title: "title";
12427
+ readonly description: "description";
12428
+ readonly children: "never";
12429
+ readonly attributes: {
12430
+ readonly style: {
12431
+ readonly backgroundColor: "color";
12432
+ readonly width: "size";
12433
+ readonly height: "size";
12434
+ readonly marginHorizontal: "size";
12435
+ readonly marginVertical: "size";
12436
+ readonly marginTop: "size";
12437
+ readonly marginBottom: "size";
12438
+ };
12439
+ };
12440
+ };
12441
+ readonly meta: {
12442
+ readonly desiredParent: readonly ["all"];
12443
+ readonly label: "Separator";
12444
+ readonly description: "Horizontal line separator.";
12445
+ readonly styles: {
12446
+ readonly backgroundColor: {
12447
+ readonly label: "Color";
12448
+ readonly description: "Separator line color.";
12449
+ readonly category: "style";
12450
+ readonly specialCategory: null;
12451
+ readonly sort: 1;
12452
+ };
12453
+ };
11245
12454
  readonly attributes: {
11246
12455
  readonly width: {
11247
12456
  readonly label: "Width";
@@ -11262,7 +12471,7 @@ export declare const patterns: readonly [{
11262
12471
  };
11263
12472
  };
11264
12473
  readonly defaults: {
11265
- readonly style: {
12474
+ readonly styles: {
11266
12475
  readonly width: "100%";
11267
12476
  readonly height: 2;
11268
12477
  readonly backgroundColor: "#000000";
@@ -11622,7 +12831,7 @@ export declare const patterns: readonly [{
11622
12831
  };
11623
12832
  };
11624
12833
  readonly defaults: {
11625
- readonly style: {
12834
+ readonly styles: {
11626
12835
  readonly flexDirection: "column";
11627
12836
  readonly position: "relative";
11628
12837
  readonly zIndex: 1;
@@ -11681,17 +12890,10 @@ export declare const patterns: readonly [{
11681
12890
  readonly fontSize: "size";
11682
12891
  readonly fontFamily: "fontFamily";
11683
12892
  readonly fontWeight: "fontWeight";
11684
- readonly textAlign: readonly ["left", "center", "right", "justify"];
11685
12893
  };
11686
12894
  readonly adjustsFontSizeToFit: "boolean";
11687
12895
  readonly showEllipsis: "boolean";
11688
- };
11689
- readonly defaults: {
11690
- readonly style: {
11691
- readonly color: "THEME_COLORS.TEXT";
11692
- readonly fontSize: "16@fs";
11693
- readonly fontWeight: "400";
11694
- };
12896
+ readonly translateCounter: "number";
11695
12897
  };
11696
12898
  };
11697
12899
  readonly meta: {
@@ -12051,7 +13253,7 @@ export declare const patterns: readonly [{
12051
13253
  };
12052
13254
  };
12053
13255
  readonly defaults: {
12054
- readonly style: {
13256
+ readonly styles: {
12055
13257
  readonly flexDirection: "column";
12056
13258
  readonly position: "relative";
12057
13259
  readonly zIndex: 1;
@@ -12062,6 +13264,7 @@ export declare const patterns: readonly [{
12062
13264
  readonly fontSize: "16@fs";
12063
13265
  readonly fontWeight: "400";
12064
13266
  };
13267
+ readonly translateCounter: 1;
12065
13268
  };
12066
13269
  readonly types: {};
12067
13270
  }, {
@@ -12418,7 +13621,7 @@ export declare const patterns: readonly [{
12418
13621
  };
12419
13622
  };
12420
13623
  readonly defaults: {
12421
- readonly style: {
13624
+ readonly styles: {
12422
13625
  readonly flexDirection: "column";
12423
13626
  readonly position: "relative";
12424
13627
  readonly zIndex: 1;