@developer_tribe/react-builder 1.2.41 → 1.2.43

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 (81) hide show
  1. package/dist/build-components/BIcon/BIconProps.generated.d.ts +1 -1
  2. package/dist/build-components/CountDown/CountDownProps.generated.d.ts +1 -1
  3. package/dist/build-components/OnboardFooter/OnboardFooterProps.generated.d.ts +1 -1
  4. package/dist/build-components/OnboardSubtitle/OnboardSubtitleProps.generated.d.ts +1 -1
  5. package/dist/build-components/OnboardTitle/OnboardTitleProps.generated.d.ts +1 -1
  6. package/dist/build-components/PaywallCloseButton/PaywallCloseButtonProps.generated.d.ts +1 -1
  7. package/dist/build-components/PaywallFooter/PaywallFooter.d.ts +5 -0
  8. package/dist/build-components/PaywallFooter/PaywallFooterProps.generated.d.ts +68 -0
  9. package/dist/build-components/PriceTag/PriceTagProps.generated.d.ts +1 -1
  10. package/dist/build-components/Pricing/PricingProps.generated.d.ts +1 -1
  11. package/dist/build-components/Promo/PromoProps.generated.d.ts +1 -1
  12. package/dist/build-components/Text/TextProps.generated.d.ts +1 -1
  13. package/dist/build-components/index.d.ts +2 -1
  14. package/dist/build-components/patterns.generated.d.ts +516 -13
  15. package/dist/index.cjs.js +1 -1
  16. package/dist/index.cjs.js.map +1 -1
  17. package/dist/index.esm.js +1 -1
  18. package/dist/index.esm.js.map +1 -1
  19. package/dist/index.web.cjs.js +4 -4
  20. package/dist/index.web.cjs.js.map +1 -1
  21. package/dist/index.web.esm.js +4 -4
  22. package/dist/index.web.esm.js.map +1 -1
  23. package/dist/modals/IconPickerModal.d.ts +1 -1
  24. package/dist/styles.css +1 -1
  25. package/dist/types/PreviewConfig.d.ts +1 -1
  26. package/package.json +2 -2
  27. package/src/RenderPage.tsx +5 -2
  28. package/src/assets/meta.json +1 -1
  29. package/src/assets/prompt-scheme-onboard.generated.ts +1 -1
  30. package/src/assets/prompt-scheme-paywall.generated.ts +1 -1
  31. package/src/assets/samples/paywall-1.json +19 -2
  32. package/src/assets/samples/vpn-onboard-1.json +3 -3
  33. package/src/assets/samples/vpn-onboard-2.json +3 -3
  34. package/src/assets/samples/vpn-onboard-3.json +3 -3
  35. package/src/assets/samples/vpn-onboard-4.json +3 -3
  36. package/src/assets/samples/vpn-onboard-5.json +3 -3
  37. package/src/assets/samples/vpn-onboard-6.json +3 -3
  38. package/src/assets/samples/vpn-onboard-7.json +3 -3
  39. package/src/attributes-editor/AttributesEditorFields.tsx +1 -1
  40. package/src/attributes-editor/FallbackLocalizationField.tsx +725 -250
  41. package/src/build-components/BIcon/BIcon.tsx +1 -1
  42. package/src/build-components/BIcon/BIconProps.generated.ts +1 -1
  43. package/src/build-components/CountDown/CountDownProps.generated.ts +1 -1
  44. package/src/build-components/OnboardButton/OnboardButton.tsx +1 -1
  45. package/src/build-components/OnboardButton/pattern.json +1 -1
  46. package/src/build-components/OnboardFooter/OnboardFooter.tsx +29 -20
  47. package/src/build-components/OnboardFooter/OnboardFooterProps.generated.ts +1 -1
  48. package/src/build-components/OnboardFooter/pattern.json +2 -1
  49. package/src/build-components/OnboardProvider/pattern.json +1 -1
  50. package/src/build-components/OnboardSubtitle/OnboardSubtitleProps.generated.ts +1 -1
  51. package/src/build-components/OnboardTitle/OnboardTitleProps.generated.ts +1 -1
  52. package/src/build-components/PaywallCloseButton/PaywallCloseButton.tsx +1 -1
  53. package/src/build-components/PaywallCloseButton/PaywallCloseButtonProps.generated.ts +1 -1
  54. package/src/build-components/PaywallFooter/PaywallFooter.tsx +242 -0
  55. package/src/build-components/PaywallFooter/PaywallFooterProps.generated.ts +85 -0
  56. package/src/build-components/PaywallFooter/pattern.json +86 -0
  57. package/src/build-components/PriceTag/PriceTagProps.generated.ts +1 -1
  58. package/src/build-components/Pricing/PricingProps.generated.ts +1 -1
  59. package/src/build-components/Promo/PromoProps.generated.ts +1 -1
  60. package/src/build-components/RenderNode.generated.tsx +5 -0
  61. package/src/build-components/Text/Text.tsx +5 -4
  62. package/src/build-components/Text/TextProps.generated.ts +1 -1
  63. package/src/build-components/Text/pattern.json +2 -1
  64. package/src/build-components/index.ts +5 -0
  65. package/src/build-components/patterns.generated.ts +532 -13
  66. package/src/components/BottomBar.tsx +1 -1
  67. package/src/components/DeviceNavigationBar.tsx +2 -2
  68. package/src/hooks/useLocalize.ts +11 -1
  69. package/src/hooks/useSafeAreaViewStyle.ts +1 -11
  70. package/src/mockOS/managers/mockPermissionManager.ts +5 -3
  71. package/src/mockOS/managers/navigationManager.ts +6 -4
  72. package/src/modals/IconPickerModal.tsx +1 -1
  73. package/src/modals/InspectModal.tsx +22 -24
  74. package/src/styles/base/_global.scss +1 -1
  75. package/src/types/PreviewConfig.ts +24 -6
  76. package/src/utils/extractViewStyle/extractViewStyle.ts +0 -1
  77. package/src/utils/useMergedStyle.ts +1 -1
  78. package/dist/build-components/index.generated.d.ts +0 -38
  79. package/dist/types/Icons.generated.d.ts +0 -2
  80. package/src/build-components/index.generated.ts +0 -184
  81. package/src/types/Icons.generated.ts +0 -244
@@ -7,7 +7,7 @@ export declare const patterns: readonly [{
7
7
  readonly children: "never";
8
8
  readonly attributes: {
9
9
  readonly adjustsFontSizeToFit: "boolean";
10
- readonly showEllipsis: "boolean";
10
+ readonly numberOfLines: "number";
11
11
  readonly translateCounter: "number";
12
12
  readonly styles: {
13
13
  readonly color: "color";
@@ -438,6 +438,7 @@ export declare const patterns: readonly [{
438
438
  };
439
439
  readonly defaults: {
440
440
  readonly translateCounter: 1;
441
+ readonly numberOfLines: 1;
441
442
  readonly styles: {
442
443
  readonly color: "THEME_COLORS.TEXT";
443
444
  readonly fontSize: "16";
@@ -3115,7 +3116,7 @@ export declare const patterns: readonly [{
3115
3116
  readonly children: "never";
3116
3117
  readonly attributes: {
3117
3118
  readonly adjustsFontSizeToFit: "boolean";
3118
- readonly showEllipsis: "boolean";
3119
+ readonly numberOfLines: "number";
3119
3120
  readonly translateCounter: "number";
3120
3121
  readonly styles: {
3121
3122
  readonly color: "color";
@@ -3530,6 +3531,7 @@ export declare const patterns: readonly [{
3530
3531
  };
3531
3532
  readonly defaults: {
3532
3533
  readonly translateCounter: 1;
3534
+ readonly numberOfLines: 1;
3533
3535
  readonly styles: {
3534
3536
  readonly color: "THEME_COLORS.TEXT";
3535
3537
  readonly fontSize: "16@fs";
@@ -4781,7 +4783,7 @@ export declare const patterns: readonly [{
4781
4783
  readonly meta: {
4782
4784
  readonly desiredParent: readonly ["=OnboardButtons"];
4783
4785
  readonly label: "Onboard Button";
4784
- readonly description: "Single action button for onboarding.";
4786
+ readonly description: "Single action button for onboard.";
4785
4787
  readonly specialCategories: {
4786
4788
  readonly padding: {
4787
4789
  readonly label: "Padding";
@@ -5995,7 +5997,7 @@ export declare const patterns: readonly [{
5995
5997
  readonly children: "never";
5996
5998
  readonly attributes: {
5997
5999
  readonly adjustsFontSizeToFit: "boolean";
5998
- readonly showEllipsis: "boolean";
6000
+ readonly numberOfLines: "number";
5999
6001
  readonly translateCounter: "number";
6000
6002
  readonly styles: {
6001
6003
  readonly color: "color";
@@ -6458,6 +6460,7 @@ export declare const patterns: readonly [{
6458
6460
  };
6459
6461
  readonly defaults: {
6460
6462
  readonly translateCounter: 1;
6463
+ readonly numberOfLines: 1;
6461
6464
  readonly styles: {
6462
6465
  readonly color: "THEME_COLORS.TEXT";
6463
6466
  readonly fontSize: "16@fs";
@@ -6468,11 +6471,12 @@ export declare const patterns: readonly [{
6468
6471
  readonly alignSelf: "flex-start";
6469
6472
  readonly flexGrow: 0;
6470
6473
  readonly flexShrink: 0;
6474
+ readonly minHeight: "50@vs";
6471
6475
  readonly flexWrap: "wrap";
6472
6476
  readonly alignItems: "center";
6473
6477
  readonly justifyContent: "center";
6474
6478
  readonly textAlign: "center";
6475
- readonly paddingHorizontal: "24@s";
6479
+ readonly paddingHorizontal: "16@s";
6476
6480
  };
6477
6481
  };
6478
6482
  readonly types: {};
@@ -7313,7 +7317,7 @@ export declare const patterns: readonly [{
7313
7317
  readonly meta: {
7314
7318
  readonly desiredParent: readonly ["root"];
7315
7319
  readonly label: "Onboard Provider";
7316
- readonly description: "Provides shared settings for onboarding.";
7320
+ readonly description: "Provides shared settings for onboard.";
7317
7321
  readonly specialCategories: {
7318
7322
  readonly padding: {
7319
7323
  readonly label: "Padding";
@@ -7642,7 +7646,7 @@ export declare const patterns: readonly [{
7642
7646
  readonly children: "string";
7643
7647
  readonly attributes: {
7644
7648
  readonly adjustsFontSizeToFit: "boolean";
7645
- readonly showEllipsis: "boolean";
7649
+ readonly numberOfLines: "number";
7646
7650
  readonly translateCounter: "number";
7647
7651
  readonly styles: {
7648
7652
  readonly color: "color";
@@ -8049,6 +8053,7 @@ export declare const patterns: readonly [{
8049
8053
  };
8050
8054
  readonly defaults: {
8051
8055
  readonly translateCounter: 1;
8056
+ readonly numberOfLines: 1;
8052
8057
  readonly styles: {
8053
8058
  readonly color: "THEME_COLORS.TEXT";
8054
8059
  readonly fontSize: "14@fs";
@@ -8071,7 +8076,7 @@ export declare const patterns: readonly [{
8071
8076
  readonly children: "string";
8072
8077
  readonly attributes: {
8073
8078
  readonly adjustsFontSizeToFit: "boolean";
8074
- readonly showEllipsis: "boolean";
8079
+ readonly numberOfLines: "number";
8075
8080
  readonly translateCounter: "number";
8076
8081
  readonly styles: {
8077
8082
  readonly color: "color";
@@ -8478,6 +8483,7 @@ export declare const patterns: readonly [{
8478
8483
  };
8479
8484
  readonly defaults: {
8480
8485
  readonly translateCounter: 1;
8486
+ readonly numberOfLines: 1;
8481
8487
  readonly styles: {
8482
8488
  readonly color: "THEME_COLORS.TEXT";
8483
8489
  readonly fontSize: "24@fs";
@@ -8893,7 +8899,7 @@ export declare const patterns: readonly [{
8893
8899
  readonly size: "number";
8894
8900
  readonly strokeWidth: "number";
8895
8901
  readonly adjustsFontSizeToFit: "boolean";
8896
- readonly showEllipsis: "boolean";
8902
+ readonly numberOfLines: "number";
8897
8903
  readonly translateCounter: "number";
8898
8904
  readonly styles: {
8899
8905
  readonly color: "color";
@@ -9338,10 +9344,503 @@ export declare const patterns: readonly [{
9338
9344
  readonly alignItems: "center";
9339
9345
  };
9340
9346
  readonly translateCounter: 1;
9347
+ readonly numberOfLines: 1;
9341
9348
  readonly testID: "paywall-close-button";
9342
9349
  readonly size: 24;
9343
9350
  };
9344
9351
  readonly types: {};
9352
+ }, {
9353
+ readonly schemaVersion: 2;
9354
+ readonly pattern: {
9355
+ readonly type: "PaywallFooter";
9356
+ readonly title: "title";
9357
+ readonly description: "description";
9358
+ readonly children: "never";
9359
+ readonly attributes: {
9360
+ readonly adjustsFontSizeToFit: "boolean";
9361
+ readonly numberOfLines: "number";
9362
+ readonly translateCounter: "number";
9363
+ readonly styles: {
9364
+ readonly color: "color";
9365
+ readonly fontSize: "size";
9366
+ readonly fontFamily: "fontFamily";
9367
+ readonly fontWeight: "fontWeight";
9368
+ readonly textAlign: "string";
9369
+ readonly flexDirection: readonly ["row", "column"];
9370
+ readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
9371
+ readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
9372
+ readonly justifyContent: readonly ["flex-start", "center", "flex-end", "space-between", "space-around", "space-evenly"];
9373
+ readonly gap: "size";
9374
+ readonly padding: "size";
9375
+ readonly paddingHorizontal: "size";
9376
+ readonly paddingVertical: "size";
9377
+ readonly paddingTop: "size";
9378
+ readonly paddingBottom: "size";
9379
+ readonly paddingLeft: "size";
9380
+ readonly paddingRight: "size";
9381
+ readonly margin: "size";
9382
+ readonly marginHorizontal: "size";
9383
+ readonly marginVertical: "size";
9384
+ readonly marginTop: "size";
9385
+ readonly marginBottom: "size";
9386
+ readonly marginLeft: "size";
9387
+ readonly marginRight: "size";
9388
+ readonly backgroundColor: "color";
9389
+ readonly borderRadius: "size";
9390
+ readonly width: "size";
9391
+ readonly minWidth: "size";
9392
+ readonly maxWidth: "size";
9393
+ readonly height: "size";
9394
+ readonly minHeight: "size";
9395
+ readonly maxHeight: "size";
9396
+ readonly flex: "number";
9397
+ readonly position: readonly ["relative", "absolute"];
9398
+ readonly top: "size";
9399
+ readonly bottom: "size";
9400
+ readonly left: "size";
9401
+ readonly right: "size";
9402
+ readonly zIndex: "number";
9403
+ };
9404
+ readonly scrollable: "boolean";
9405
+ readonly testID: "string";
9406
+ readonly textLocalizationKey: "string";
9407
+ readonly linkedWordFirstLocalizationKey: "string";
9408
+ readonly linkedWordFirstColor: "color";
9409
+ readonly linkedWordFirstPage: "string";
9410
+ readonly linkedWordSecondLocalizationKey: "string";
9411
+ readonly linkedWordSecondColor: "color";
9412
+ readonly linkedWordSecondPage: "string";
9413
+ };
9414
+ };
9415
+ readonly meta: {
9416
+ readonly desiredParent: readonly [">PaywallProvider"];
9417
+ readonly label: "Paywall Footer";
9418
+ readonly description: "Footer text with optional links for paywall screens.";
9419
+ readonly styles: {
9420
+ readonly color: {
9421
+ readonly label: "Color";
9422
+ readonly description: "Text color.";
9423
+ readonly category: "style";
9424
+ readonly specialCategory: null;
9425
+ readonly sort: 1;
9426
+ };
9427
+ readonly fontSize: {
9428
+ readonly label: "Font Size";
9429
+ readonly description: "Text size.";
9430
+ readonly category: "style";
9431
+ readonly specialCategory: null;
9432
+ readonly sort: 2;
9433
+ readonly preferredScale: "f";
9434
+ };
9435
+ readonly fontFamily: {
9436
+ readonly label: "Font Family";
9437
+ readonly description: "Font family used for the text.";
9438
+ readonly category: "style";
9439
+ readonly specialCategory: null;
9440
+ readonly sort: 3;
9441
+ };
9442
+ readonly fontWeight: {
9443
+ readonly label: "Font Weight";
9444
+ readonly description: "Text weight.";
9445
+ readonly category: "style";
9446
+ readonly specialCategory: null;
9447
+ readonly sort: 4;
9448
+ };
9449
+ readonly textAlign: {
9450
+ readonly label: "Text Align";
9451
+ readonly description: "Text alignment.";
9452
+ readonly category: "style";
9453
+ readonly specialCategory: null;
9454
+ readonly sort: 5;
9455
+ };
9456
+ };
9457
+ readonly attributes: {
9458
+ readonly adjustsFontSizeToFit: {
9459
+ readonly label: "Adjust Font Size To Fit";
9460
+ readonly description: "Automatically reduces font size to fit the available space.";
9461
+ readonly category: "other";
9462
+ readonly specialCategory: null;
9463
+ readonly sort: 1;
9464
+ };
9465
+ readonly showEllipsis: {
9466
+ readonly label: "Show Ellipsis";
9467
+ readonly description: "If text overflows, show ellipsis (…); applied as single-line truncation.";
9468
+ readonly category: "other";
9469
+ readonly specialCategory: null;
9470
+ readonly sort: 2;
9471
+ };
9472
+ readonly scrollable: {
9473
+ readonly label: "Scrollable";
9474
+ readonly description: "Turns scroll interaction on.";
9475
+ readonly category: "container";
9476
+ readonly specialCategory: null;
9477
+ readonly sort: -1;
9478
+ };
9479
+ readonly styles: {
9480
+ readonly backgroundColor: {
9481
+ readonly label: "Background Color";
9482
+ readonly description: "Background fill color.";
9483
+ readonly category: "style";
9484
+ readonly specialCategory: null;
9485
+ readonly sort: 20;
9486
+ };
9487
+ readonly borderRadius: {
9488
+ readonly label: "Border Radius";
9489
+ readonly description: "Corner rounding amount.";
9490
+ readonly category: "style";
9491
+ readonly specialCategory: null;
9492
+ readonly sort: 21;
9493
+ readonly preferredScale: "s";
9494
+ };
9495
+ readonly flexDirection: {
9496
+ readonly label: "Flex Direction";
9497
+ readonly description: "Sets row or column layout.";
9498
+ readonly category: "container";
9499
+ readonly specialCategory: null;
9500
+ readonly sort: 4;
9501
+ };
9502
+ readonly flexWrap: {
9503
+ readonly label: "Flex Wrap";
9504
+ readonly description: "Controls whether flex items wrap to multiple lines.";
9505
+ readonly category: "container";
9506
+ readonly specialCategory: null;
9507
+ readonly sort: 4.5;
9508
+ };
9509
+ readonly alignItems: {
9510
+ readonly label: "Align Items";
9511
+ readonly description: "Controls cross-axis alignment.";
9512
+ readonly category: "container";
9513
+ readonly specialCategory: null;
9514
+ readonly sort: 3;
9515
+ };
9516
+ readonly justifyContent: {
9517
+ readonly label: "Justify Content";
9518
+ readonly description: "Controls main-axis alignment.";
9519
+ readonly category: "container";
9520
+ readonly specialCategory: null;
9521
+ readonly sort: 5;
9522
+ };
9523
+ readonly gap: {
9524
+ readonly label: "Gap";
9525
+ readonly description: "Space between children.";
9526
+ readonly category: "container";
9527
+ readonly specialCategory: null;
9528
+ readonly sort: 10;
9529
+ readonly preferredScale: "s";
9530
+ };
9531
+ readonly padding: {
9532
+ readonly label: "Padding";
9533
+ readonly description: "Uniform padding on all sides.";
9534
+ readonly category: "container";
9535
+ readonly specialCategory: "padding";
9536
+ readonly sort: 6;
9537
+ readonly preferredScale: "s";
9538
+ };
9539
+ readonly paddingHorizontal: {
9540
+ readonly label: "Padding Horizontal";
9541
+ readonly description: "Left and right padding.";
9542
+ readonly category: "container";
9543
+ readonly specialCategory: "padding";
9544
+ readonly sort: 7;
9545
+ readonly preferredScale: "s";
9546
+ };
9547
+ readonly paddingVertical: {
9548
+ readonly label: "Padding Vertical";
9549
+ readonly description: "Top and bottom padding.";
9550
+ readonly category: "container";
9551
+ readonly specialCategory: "padding";
9552
+ readonly sort: 8;
9553
+ readonly preferredScale: "vs";
9554
+ };
9555
+ readonly paddingTop: {
9556
+ readonly label: "Padding Top";
9557
+ readonly description: "Top padding only.";
9558
+ readonly category: "container";
9559
+ readonly specialCategory: "padding";
9560
+ readonly sort: 9;
9561
+ readonly preferredScale: "vs";
9562
+ };
9563
+ readonly paddingBottom: {
9564
+ readonly label: "Padding Bottom";
9565
+ readonly description: "Bottom padding only.";
9566
+ readonly category: "container";
9567
+ readonly specialCategory: "padding";
9568
+ readonly sort: 10;
9569
+ readonly preferredScale: "vs";
9570
+ };
9571
+ readonly paddingLeft: {
9572
+ readonly label: "Padding Left";
9573
+ readonly description: "Left padding only.";
9574
+ readonly category: "container";
9575
+ readonly specialCategory: "padding";
9576
+ readonly sort: 11;
9577
+ readonly preferredScale: "s";
9578
+ };
9579
+ readonly paddingRight: {
9580
+ readonly label: "Padding Right";
9581
+ readonly description: "Right padding only.";
9582
+ readonly category: "container";
9583
+ readonly specialCategory: "padding";
9584
+ readonly sort: 12;
9585
+ readonly preferredScale: "s";
9586
+ };
9587
+ readonly margin: {
9588
+ readonly label: "Margin";
9589
+ readonly description: "Uniform margin on all sides.";
9590
+ readonly category: "container";
9591
+ readonly specialCategory: "margin";
9592
+ readonly sort: 13;
9593
+ readonly preferredScale: "s";
9594
+ };
9595
+ readonly marginHorizontal: {
9596
+ readonly label: "Margin Horizontal";
9597
+ readonly description: "Left and right margin.";
9598
+ readonly category: "container";
9599
+ readonly specialCategory: "margin";
9600
+ readonly sort: 14;
9601
+ readonly preferredScale: "s";
9602
+ };
9603
+ readonly marginVertical: {
9604
+ readonly label: "Margin Vertical";
9605
+ readonly description: "Top and bottom margin.";
9606
+ readonly category: "container";
9607
+ readonly specialCategory: "margin";
9608
+ readonly sort: 15;
9609
+ readonly preferredScale: "vs";
9610
+ };
9611
+ readonly marginTop: {
9612
+ readonly label: "Margin Top";
9613
+ readonly description: "Top margin only.";
9614
+ readonly category: "container";
9615
+ readonly specialCategory: "margin";
9616
+ readonly sort: 16;
9617
+ readonly preferredScale: "vs";
9618
+ };
9619
+ readonly marginBottom: {
9620
+ readonly label: "Margin Bottom";
9621
+ readonly description: "Bottom margin only.";
9622
+ readonly category: "container";
9623
+ readonly specialCategory: "margin";
9624
+ readonly sort: 17;
9625
+ readonly preferredScale: "vs";
9626
+ };
9627
+ readonly marginLeft: {
9628
+ readonly label: "Margin Left";
9629
+ readonly description: "Left margin only.";
9630
+ readonly category: "container";
9631
+ readonly specialCategory: "margin";
9632
+ readonly sort: 18;
9633
+ readonly preferredScale: "s";
9634
+ };
9635
+ readonly marginRight: {
9636
+ readonly label: "Margin Right";
9637
+ readonly description: "Right margin only.";
9638
+ readonly category: "container";
9639
+ readonly specialCategory: "margin";
9640
+ readonly sort: 19;
9641
+ readonly preferredScale: "s";
9642
+ };
9643
+ readonly width: {
9644
+ readonly label: "Width";
9645
+ readonly description: "Fixed width value.";
9646
+ readonly category: "container";
9647
+ readonly specialCategory: "size";
9648
+ readonly sort: 0;
9649
+ readonly preferredScale: "s";
9650
+ };
9651
+ readonly minWidth: {
9652
+ readonly label: "Min Width";
9653
+ readonly description: "Minimum width constraint.";
9654
+ readonly category: "container";
9655
+ readonly specialCategory: "size";
9656
+ readonly sort: 1;
9657
+ readonly preferredScale: "s";
9658
+ };
9659
+ readonly maxWidth: {
9660
+ readonly label: "Max Width";
9661
+ readonly description: "Maximum width constraint.";
9662
+ readonly category: "container";
9663
+ readonly specialCategory: "size";
9664
+ readonly sort: 2;
9665
+ readonly preferredScale: "s";
9666
+ };
9667
+ readonly height: {
9668
+ readonly label: "Height";
9669
+ readonly description: "Fixed height value.";
9670
+ readonly category: "container";
9671
+ readonly specialCategory: "size";
9672
+ readonly sort: 3;
9673
+ readonly preferredScale: "vs";
9674
+ };
9675
+ readonly minHeight: {
9676
+ readonly label: "Min Height";
9677
+ readonly description: "Minimum height constraint.";
9678
+ readonly category: "container";
9679
+ readonly specialCategory: "size";
9680
+ readonly sort: 4;
9681
+ readonly preferredScale: "vs";
9682
+ };
9683
+ readonly maxHeight: {
9684
+ readonly label: "Max Height";
9685
+ readonly description: "Maximum height constraint.";
9686
+ readonly category: "container";
9687
+ readonly specialCategory: "size";
9688
+ readonly sort: 5;
9689
+ readonly preferredScale: "vs";
9690
+ };
9691
+ readonly flex: {
9692
+ readonly label: "Flex";
9693
+ readonly description: "Flex grow factor (e.g. 1 fills available space).";
9694
+ readonly category: "container";
9695
+ readonly specialCategory: "size";
9696
+ readonly sort: 6;
9697
+ };
9698
+ readonly position: {
9699
+ readonly label: "Position";
9700
+ readonly description: "Sets layout positioning mode.";
9701
+ readonly category: "container";
9702
+ readonly specialCategory: null;
9703
+ readonly sort: 3;
9704
+ };
9705
+ readonly top: {
9706
+ readonly label: "Top";
9707
+ readonly description: "Offset from the top edge.";
9708
+ readonly category: "container";
9709
+ readonly specialCategory: "offset";
9710
+ readonly sort: 22;
9711
+ readonly preferredScale: "vs";
9712
+ };
9713
+ readonly bottom: {
9714
+ readonly label: "Bottom";
9715
+ readonly description: "Offset from the bottom edge.";
9716
+ readonly category: "container";
9717
+ readonly specialCategory: "offset";
9718
+ readonly sort: 23;
9719
+ readonly preferredScale: "vs";
9720
+ };
9721
+ readonly left: {
9722
+ readonly label: "Left";
9723
+ readonly description: "Offset from the left edge.";
9724
+ readonly category: "container";
9725
+ readonly specialCategory: "offset";
9726
+ readonly sort: 24;
9727
+ readonly preferredScale: "s";
9728
+ };
9729
+ readonly right: {
9730
+ readonly label: "Right";
9731
+ readonly description: "Offset from the right edge.";
9732
+ readonly category: "container";
9733
+ readonly specialCategory: "offset";
9734
+ readonly sort: 25;
9735
+ readonly preferredScale: "s";
9736
+ };
9737
+ readonly zIndex: {
9738
+ readonly label: "Z-Index";
9739
+ readonly description: "Controls stacking order.";
9740
+ readonly category: "container";
9741
+ readonly specialCategory: null;
9742
+ readonly sort: 26;
9743
+ };
9744
+ };
9745
+ readonly textLocalizationKey: {
9746
+ readonly label: "Text Localization Key";
9747
+ readonly description: "Localization key for the footer text.";
9748
+ readonly category: "other";
9749
+ readonly specialCategory: null;
9750
+ readonly sort: 1;
9751
+ };
9752
+ readonly linkedWordFirstLocalizationKey: {
9753
+ readonly label: "Linked Word First Localization Key";
9754
+ readonly description: "Key for the first linked word.";
9755
+ readonly category: "other";
9756
+ readonly specialCategory: null;
9757
+ readonly sort: 2;
9758
+ };
9759
+ readonly linkedWordFirstColor: {
9760
+ readonly label: "Linked Word First Color";
9761
+ readonly description: "Color of the first linked word.";
9762
+ readonly category: "other";
9763
+ readonly specialCategory: null;
9764
+ readonly sort: 3;
9765
+ };
9766
+ readonly linkedWordFirstPage: {
9767
+ readonly label: "Linked Word First Page";
9768
+ readonly description: "Page opened by the first link.";
9769
+ readonly category: "other";
9770
+ readonly specialCategory: null;
9771
+ readonly sort: 4;
9772
+ };
9773
+ readonly linkedWordSecondLocalizationKey: {
9774
+ readonly label: "Linked Word Second Localization Key";
9775
+ readonly description: "Key for the second linked word.";
9776
+ readonly category: "other";
9777
+ readonly specialCategory: null;
9778
+ readonly sort: 5;
9779
+ };
9780
+ readonly linkedWordSecondColor: {
9781
+ readonly label: "Linked Word Second Color";
9782
+ readonly description: "Color of the second linked word.";
9783
+ readonly category: "other";
9784
+ readonly specialCategory: null;
9785
+ readonly sort: 6;
9786
+ };
9787
+ readonly linkedWordSecondPage: {
9788
+ readonly label: "Linked Word Second Page";
9789
+ readonly description: "Page opened by the second link.";
9790
+ readonly category: "other";
9791
+ readonly specialCategory: null;
9792
+ readonly sort: 7;
9793
+ };
9794
+ };
9795
+ readonly specialCategories: {
9796
+ readonly padding: {
9797
+ readonly label: "Padding";
9798
+ readonly description: "Uniform padding on all sides.";
9799
+ readonly category: "container";
9800
+ readonly sort: 1;
9801
+ };
9802
+ readonly margin: {
9803
+ readonly label: "Margin";
9804
+ readonly description: "Uniform margin on all sides.";
9805
+ readonly category: "container";
9806
+ readonly sort: 2;
9807
+ };
9808
+ readonly size: {
9809
+ readonly label: "Size";
9810
+ readonly description: "Fixed dimensions.";
9811
+ readonly category: "container";
9812
+ readonly sort: 3;
9813
+ };
9814
+ readonly offset: {
9815
+ readonly label: "Offset";
9816
+ readonly description: "Absolute positioning offsets.";
9817
+ readonly category: "container";
9818
+ readonly sort: 4;
9819
+ };
9820
+ };
9821
+ };
9822
+ readonly defaults: {
9823
+ readonly translateCounter: 1;
9824
+ readonly numberOfLines: 1;
9825
+ readonly styles: {
9826
+ readonly color: "THEME_COLORS.TEXT";
9827
+ readonly fontSize: "16@fs";
9828
+ readonly fontWeight: "400";
9829
+ readonly flexDirection: "row";
9830
+ readonly position: "relative";
9831
+ readonly zIndex: 1;
9832
+ readonly alignSelf: "flex-start";
9833
+ readonly flexGrow: 0;
9834
+ readonly flexShrink: 0;
9835
+ readonly minHeight: "50@vs";
9836
+ readonly flexWrap: "wrap";
9837
+ readonly alignItems: "center";
9838
+ readonly justifyContent: "center";
9839
+ readonly textAlign: "center";
9840
+ readonly paddingHorizontal: "16@s";
9841
+ };
9842
+ };
9843
+ readonly types: {};
9345
9844
  }, {
9346
9845
  readonly schemaVersion: 2;
9347
9846
  readonly pattern: {
@@ -10501,7 +11000,7 @@ export declare const patterns: readonly [{
10501
11000
  readonly children: "string";
10502
11001
  readonly attributes: {
10503
11002
  readonly adjustsFontSizeToFit: "boolean";
10504
- readonly showEllipsis: "boolean";
11003
+ readonly numberOfLines: "number";
10505
11004
  readonly translateCounter: "number";
10506
11005
  readonly styles: {
10507
11006
  readonly color: "color";
@@ -10932,6 +11431,7 @@ export declare const patterns: readonly [{
10932
11431
  };
10933
11432
  readonly defaults: {
10934
11433
  readonly translateCounter: 1;
11434
+ readonly numberOfLines: 1;
10935
11435
  readonly styles: {
10936
11436
  readonly color: "THEME_COLORS.TEXT";
10937
11437
  readonly fontSize: "16@fs";
@@ -10954,7 +11454,7 @@ export declare const patterns: readonly [{
10954
11454
  readonly children: "string";
10955
11455
  readonly attributes: {
10956
11456
  readonly adjustsFontSizeToFit: "boolean";
10957
- readonly showEllipsis: "boolean";
11457
+ readonly numberOfLines: "number";
10958
11458
  readonly translateCounter: "number";
10959
11459
  readonly styles: {
10960
11460
  readonly color: "color";
@@ -11361,6 +11861,7 @@ export declare const patterns: readonly [{
11361
11861
  };
11362
11862
  readonly defaults: {
11363
11863
  readonly translateCounter: 2;
11864
+ readonly numberOfLines: 1;
11364
11865
  readonly styles: {
11365
11866
  readonly color: "rgba(255,255,255,0.6)";
11366
11867
  readonly fontSize: "12@fs";
@@ -11384,7 +11885,7 @@ export declare const patterns: readonly [{
11384
11885
  readonly children: "string";
11385
11886
  readonly attributes: {
11386
11887
  readonly adjustsFontSizeToFit: "boolean";
11387
- readonly showEllipsis: "boolean";
11888
+ readonly numberOfLines: "number";
11388
11889
  readonly translateCounter: "number";
11389
11890
  readonly styles: {
11390
11891
  readonly color: "color";
@@ -11791,6 +12292,7 @@ export declare const patterns: readonly [{
11791
12292
  };
11792
12293
  readonly defaults: {
11793
12294
  readonly translateCounter: 2;
12295
+ readonly numberOfLines: 1;
11794
12296
  readonly styles: {
11795
12297
  readonly color: "#34D399";
11796
12298
  readonly fontSize: "12@fs";
@@ -12348,7 +12850,7 @@ export declare const patterns: readonly [{
12348
12850
  };
12349
12851
  readonly testID: "string";
12350
12852
  readonly adjustsFontSizeToFit: "boolean";
12351
- readonly showEllipsis: "boolean";
12853
+ readonly numberOfLines: "number";
12352
12854
  readonly translateCounter: "number";
12353
12855
  };
12354
12856
  };
@@ -12723,6 +13225,7 @@ export declare const patterns: readonly [{
12723
13225
  readonly fontWeight: "400";
12724
13226
  };
12725
13227
  readonly translateCounter: 1;
13228
+ readonly numberOfLines: 1;
12726
13229
  };
12727
13230
  readonly types: {};
12728
13231
  }, {