@developer_tribe/react-builder 1.2.41 → 1.2.42

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 (55) hide show
  1. package/dist/build-components/PaywallFooter/PaywallFooter.d.ts +5 -0
  2. package/dist/build-components/PaywallFooter/PaywallFooterProps.generated.d.ts +68 -0
  3. package/dist/build-components/index.d.ts +2 -1
  4. package/dist/build-components/patterns.generated.d.ts +495 -3
  5. package/dist/index.cjs.js +1 -1
  6. package/dist/index.cjs.js.map +1 -1
  7. package/dist/index.esm.js +1 -1
  8. package/dist/index.esm.js.map +1 -1
  9. package/dist/index.web.cjs.js +4 -4
  10. package/dist/index.web.cjs.js.map +1 -1
  11. package/dist/index.web.esm.js +4 -4
  12. package/dist/index.web.esm.js.map +1 -1
  13. package/dist/modals/IconPickerModal.d.ts +1 -1
  14. package/dist/styles.css +1 -1
  15. package/dist/types/PreviewConfig.d.ts +1 -1
  16. package/package.json +2 -2
  17. package/src/RenderPage.tsx +1 -1
  18. package/src/assets/meta.json +1 -1
  19. package/src/assets/prompt-scheme-onboard.generated.ts +1 -1
  20. package/src/assets/prompt-scheme-paywall.generated.ts +1 -1
  21. package/src/assets/samples/paywall-1.json +17 -0
  22. package/src/assets/samples/vpn-onboard-1.json +3 -3
  23. package/src/assets/samples/vpn-onboard-2.json +3 -3
  24. package/src/assets/samples/vpn-onboard-3.json +3 -3
  25. package/src/assets/samples/vpn-onboard-4.json +3 -3
  26. package/src/assets/samples/vpn-onboard-5.json +3 -3
  27. package/src/assets/samples/vpn-onboard-6.json +3 -3
  28. package/src/assets/samples/vpn-onboard-7.json +3 -3
  29. package/src/attributes-editor/AttributesEditorFields.tsx +1 -1
  30. package/src/build-components/BIcon/BIcon.tsx +1 -1
  31. package/src/build-components/OnboardButton/OnboardButton.tsx +1 -1
  32. package/src/build-components/OnboardButton/pattern.json +1 -1
  33. package/src/build-components/OnboardFooter/OnboardFooter.tsx +29 -20
  34. package/src/build-components/OnboardFooter/pattern.json +2 -1
  35. package/src/build-components/OnboardProvider/pattern.json +1 -1
  36. package/src/build-components/PaywallCloseButton/PaywallCloseButton.tsx +1 -1
  37. package/src/build-components/PaywallFooter/PaywallFooter.tsx +242 -0
  38. package/src/build-components/PaywallFooter/PaywallFooterProps.generated.ts +85 -0
  39. package/src/build-components/PaywallFooter/pattern.json +86 -0
  40. package/src/build-components/RenderNode.generated.tsx +5 -0
  41. package/src/build-components/index.ts +5 -0
  42. package/src/build-components/patterns.generated.ts +511 -3
  43. package/src/components/BottomBar.tsx +1 -1
  44. package/src/components/DeviceNavigationBar.tsx +2 -2
  45. package/src/hooks/useLocalize.ts +11 -1
  46. package/src/mockOS/managers/mockPermissionManager.ts +5 -3
  47. package/src/mockOS/managers/navigationManager.ts +6 -4
  48. package/src/modals/IconPickerModal.tsx +1 -1
  49. package/src/modals/InspectModal.tsx +22 -24
  50. package/src/styles/base/_global.scss +1 -1
  51. package/src/types/PreviewConfig.ts +24 -6
  52. package/dist/build-components/index.generated.d.ts +0 -38
  53. package/dist/types/Icons.generated.d.ts +0 -2
  54. package/src/build-components/index.generated.ts +0 -184
  55. package/src/types/Icons.generated.ts +0 -244
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ import type { PaywallFooterComponentProps } from './PaywallFooterProps.generated';
3
+ declare function PaywallFooter({ node }: PaywallFooterComponentProps): import("react/jsx-runtime").JSX.Element;
4
+ declare const _default: React.MemoExoticComponent<typeof PaywallFooter>;
5
+ export default _default;
@@ -0,0 +1,68 @@
1
+ import type { NodeData } from '../../types/Node';
2
+ export type FlexDirectionOptionType = 'row' | 'column';
3
+ export type FlexWrapOptionType = 'nowrap' | 'wrap' | 'wrap-reverse';
4
+ export type AlignItemsOptionType = 'flex-start' | 'center' | 'flex-end' | 'stretch' | 'baseline';
5
+ export type JustifyContentOptionType = 'flex-start' | 'center' | 'flex-end' | 'space-between' | 'space-around' | 'space-evenly';
6
+ export type PositionOptionType = 'relative' | 'absolute';
7
+ export interface PaywallFooterStyleGenerated {
8
+ color?: string;
9
+ fontSize?: string;
10
+ fontFamily?: string;
11
+ fontWeight?: string;
12
+ textAlign?: string;
13
+ flexDirection?: FlexDirectionOptionType;
14
+ flexWrap?: FlexWrapOptionType;
15
+ alignItems?: AlignItemsOptionType;
16
+ justifyContent?: JustifyContentOptionType;
17
+ gap?: string;
18
+ padding?: string;
19
+ paddingHorizontal?: string;
20
+ paddingVertical?: string;
21
+ paddingTop?: string;
22
+ paddingBottom?: string;
23
+ paddingLeft?: string;
24
+ paddingRight?: string;
25
+ margin?: string;
26
+ marginHorizontal?: string;
27
+ marginVertical?: string;
28
+ marginTop?: string;
29
+ marginBottom?: string;
30
+ marginLeft?: string;
31
+ marginRight?: string;
32
+ backgroundColor?: string;
33
+ borderRadius?: string;
34
+ width?: string;
35
+ minWidth?: string;
36
+ maxWidth?: string;
37
+ height?: string;
38
+ minHeight?: string;
39
+ maxHeight?: string;
40
+ flex?: number;
41
+ position?: PositionOptionType;
42
+ top?: string;
43
+ bottom?: string;
44
+ left?: string;
45
+ right?: string;
46
+ zIndex?: number;
47
+ }
48
+ export interface PaywallFooterPropsGenerated {
49
+ child: string;
50
+ attributes: {
51
+ styles?: PaywallFooterStyleGenerated;
52
+ adjustsFontSizeToFit?: boolean;
53
+ showEllipsis?: boolean;
54
+ translateCounter?: number;
55
+ scrollable?: boolean;
56
+ testID?: string;
57
+ textLocalizationKey?: string;
58
+ linkedWordFirstLocalizationKey?: string;
59
+ linkedWordFirstColor?: string;
60
+ linkedWordFirstPage?: string;
61
+ linkedWordSecondLocalizationKey?: string;
62
+ linkedWordSecondColor?: string;
63
+ linkedWordSecondPage?: string;
64
+ };
65
+ }
66
+ export interface PaywallFooterComponentProps {
67
+ node: NodeData<PaywallFooterPropsGenerated['attributes']>;
68
+ }
@@ -1,6 +1,6 @@
1
1
  export { default as RenderNode } from './RenderNode.generated';
2
2
  export { patterns } from './patterns.generated';
3
- export declare const allcomponentNames: readonly ["BIcon", "BackgroundImage", "Button", "Carousel", "CarouselButtons", "CarouselDots", "CarouselItem", "CarouselProvider", "CountDown", "Image", "Main", "NavigationBarColor", "Onboard", "OnboardButton", "OnboardButtons", "OnboardDot", "OnboardFooter", "OnboardImage", "OnboardItem", "OnboardProvider", "OnboardSubtitle", "OnboardTitle", "PaywallBackground", "PaywallCloseButton", "PaywallOptions", "PaywallProvider", "PaywallSubscribeButton", "PriceTag", "Pricing", "Promo", "RadioButton", "Separator", "StatusBarColor", "Text", "View"];
3
+ export declare const allcomponentNames: readonly ["BIcon", "BackgroundImage", "Button", "Carousel", "CarouselButtons", "CarouselDots", "CarouselItem", "CarouselProvider", "CountDown", "Image", "Main", "NavigationBarColor", "Onboard", "OnboardButton", "OnboardButtons", "OnboardDot", "OnboardFooter", "OnboardImage", "OnboardItem", "OnboardProvider", "OnboardSubtitle", "OnboardTitle", "PaywallBackground", "PaywallCloseButton", "PaywallFooter", "PaywallOptions", "PaywallProvider", "PaywallSubscribeButton", "PriceTag", "Pricing", "Promo", "RadioButton", "Separator", "StatusBarColor", "Text", "View"];
4
4
  export type { BIconPropsGenerated, BIconComponentProps, } from './BIcon/BIconProps.generated';
5
5
  export type { BackgroundImagePropsGenerated, BackgroundImageComponentProps, } from './BackgroundImage/BackgroundImageProps.generated';
6
6
  export type { ButtonPropsGenerated, ButtonComponentProps, } from './Button/ButtonProps.generated';
@@ -25,6 +25,7 @@ export type { OnboardSubtitlePropsGenerated, OnboardSubtitleComponentProps, } fr
25
25
  export type { OnboardTitlePropsGenerated, OnboardTitleComponentProps, } from './OnboardTitle/OnboardTitleProps.generated';
26
26
  export type { PaywallBackgroundPropsGenerated, PaywallBackgroundComponentProps, } from './PaywallBackground/PaywallBackgroundProps.generated';
27
27
  export type { PaywallCloseButtonPropsGenerated, PaywallCloseButtonComponentProps, } from './PaywallCloseButton/PaywallCloseButtonProps.generated';
28
+ export type { PaywallFooterPropsGenerated, PaywallFooterComponentProps, } from './PaywallFooter/PaywallFooterProps.generated';
28
29
  export type { PaywallOptionsPropsGenerated, PaywallOptionsComponentProps, } from './PaywallOptions/PaywallOptionsProps.generated';
29
30
  export type { PaywallProviderPropsGenerated, PaywallProviderComponentProps, } from './PaywallProvider/PaywallProviderProps.generated';
30
31
  export type { PaywallSubscribeButtonPropsGenerated, PaywallSubscribeButtonComponentProps, } from './PaywallSubscribeButton/PaywallSubscribeButtonProps.generated';
@@ -4781,7 +4781,7 @@ export declare const patterns: readonly [{
4781
4781
  readonly meta: {
4782
4782
  readonly desiredParent: readonly ["=OnboardButtons"];
4783
4783
  readonly label: "Onboard Button";
4784
- readonly description: "Single action button for onboarding.";
4784
+ readonly description: "Single action button for onboard.";
4785
4785
  readonly specialCategories: {
4786
4786
  readonly padding: {
4787
4787
  readonly label: "Padding";
@@ -6468,11 +6468,12 @@ export declare const patterns: readonly [{
6468
6468
  readonly alignSelf: "flex-start";
6469
6469
  readonly flexGrow: 0;
6470
6470
  readonly flexShrink: 0;
6471
+ readonly minHeight: "50@vs";
6471
6472
  readonly flexWrap: "wrap";
6472
6473
  readonly alignItems: "center";
6473
6474
  readonly justifyContent: "center";
6474
6475
  readonly textAlign: "center";
6475
- readonly paddingHorizontal: "24@s";
6476
+ readonly paddingHorizontal: "16@s";
6476
6477
  };
6477
6478
  };
6478
6479
  readonly types: {};
@@ -7313,7 +7314,7 @@ export declare const patterns: readonly [{
7313
7314
  readonly meta: {
7314
7315
  readonly desiredParent: readonly ["root"];
7315
7316
  readonly label: "Onboard Provider";
7316
- readonly description: "Provides shared settings for onboarding.";
7317
+ readonly description: "Provides shared settings for onboard.";
7317
7318
  readonly specialCategories: {
7318
7319
  readonly padding: {
7319
7320
  readonly label: "Padding";
@@ -9342,6 +9343,497 @@ export declare const patterns: readonly [{
9342
9343
  readonly size: 24;
9343
9344
  };
9344
9345
  readonly types: {};
9346
+ }, {
9347
+ readonly schemaVersion: 2;
9348
+ readonly pattern: {
9349
+ readonly type: "PaywallFooter";
9350
+ readonly title: "title";
9351
+ readonly description: "description";
9352
+ readonly children: "never";
9353
+ readonly attributes: {
9354
+ readonly adjustsFontSizeToFit: "boolean";
9355
+ readonly showEllipsis: "boolean";
9356
+ readonly translateCounter: "number";
9357
+ readonly styles: {
9358
+ readonly color: "color";
9359
+ readonly fontSize: "size";
9360
+ readonly fontFamily: "fontFamily";
9361
+ readonly fontWeight: "fontWeight";
9362
+ readonly textAlign: "string";
9363
+ readonly flexDirection: readonly ["row", "column"];
9364
+ readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
9365
+ readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
9366
+ readonly justifyContent: readonly ["flex-start", "center", "flex-end", "space-between", "space-around", "space-evenly"];
9367
+ readonly gap: "size";
9368
+ readonly padding: "size";
9369
+ readonly paddingHorizontal: "size";
9370
+ readonly paddingVertical: "size";
9371
+ readonly paddingTop: "size";
9372
+ readonly paddingBottom: "size";
9373
+ readonly paddingLeft: "size";
9374
+ readonly paddingRight: "size";
9375
+ readonly margin: "size";
9376
+ readonly marginHorizontal: "size";
9377
+ readonly marginVertical: "size";
9378
+ readonly marginTop: "size";
9379
+ readonly marginBottom: "size";
9380
+ readonly marginLeft: "size";
9381
+ readonly marginRight: "size";
9382
+ readonly backgroundColor: "color";
9383
+ readonly borderRadius: "size";
9384
+ readonly width: "size";
9385
+ readonly minWidth: "size";
9386
+ readonly maxWidth: "size";
9387
+ readonly height: "size";
9388
+ readonly minHeight: "size";
9389
+ readonly maxHeight: "size";
9390
+ readonly flex: "number";
9391
+ readonly position: readonly ["relative", "absolute"];
9392
+ readonly top: "size";
9393
+ readonly bottom: "size";
9394
+ readonly left: "size";
9395
+ readonly right: "size";
9396
+ readonly zIndex: "number";
9397
+ };
9398
+ readonly scrollable: "boolean";
9399
+ readonly testID: "string";
9400
+ readonly textLocalizationKey: "string";
9401
+ readonly linkedWordFirstLocalizationKey: "string";
9402
+ readonly linkedWordFirstColor: "color";
9403
+ readonly linkedWordFirstPage: "string";
9404
+ readonly linkedWordSecondLocalizationKey: "string";
9405
+ readonly linkedWordSecondColor: "color";
9406
+ readonly linkedWordSecondPage: "string";
9407
+ };
9408
+ };
9409
+ readonly meta: {
9410
+ readonly desiredParent: readonly [">PaywallProvider"];
9411
+ readonly label: "Paywall Footer";
9412
+ readonly description: "Footer text with optional links for paywall screens.";
9413
+ readonly styles: {
9414
+ readonly color: {
9415
+ readonly label: "Color";
9416
+ readonly description: "Text color.";
9417
+ readonly category: "style";
9418
+ readonly specialCategory: null;
9419
+ readonly sort: 1;
9420
+ };
9421
+ readonly fontSize: {
9422
+ readonly label: "Font Size";
9423
+ readonly description: "Text size.";
9424
+ readonly category: "style";
9425
+ readonly specialCategory: null;
9426
+ readonly sort: 2;
9427
+ readonly preferredScale: "f";
9428
+ };
9429
+ readonly fontFamily: {
9430
+ readonly label: "Font Family";
9431
+ readonly description: "Font family used for the text.";
9432
+ readonly category: "style";
9433
+ readonly specialCategory: null;
9434
+ readonly sort: 3;
9435
+ };
9436
+ readonly fontWeight: {
9437
+ readonly label: "Font Weight";
9438
+ readonly description: "Text weight.";
9439
+ readonly category: "style";
9440
+ readonly specialCategory: null;
9441
+ readonly sort: 4;
9442
+ };
9443
+ readonly textAlign: {
9444
+ readonly label: "Text Align";
9445
+ readonly description: "Text alignment.";
9446
+ readonly category: "style";
9447
+ readonly specialCategory: null;
9448
+ readonly sort: 5;
9449
+ };
9450
+ };
9451
+ readonly attributes: {
9452
+ readonly adjustsFontSizeToFit: {
9453
+ readonly label: "Adjust Font Size To Fit";
9454
+ readonly description: "Automatically reduces font size to fit the available space.";
9455
+ readonly category: "other";
9456
+ readonly specialCategory: null;
9457
+ readonly sort: 1;
9458
+ };
9459
+ readonly showEllipsis: {
9460
+ readonly label: "Show Ellipsis";
9461
+ readonly description: "If text overflows, show ellipsis (…); applied as single-line truncation.";
9462
+ readonly category: "other";
9463
+ readonly specialCategory: null;
9464
+ readonly sort: 2;
9465
+ };
9466
+ readonly scrollable: {
9467
+ readonly label: "Scrollable";
9468
+ readonly description: "Turns scroll interaction on.";
9469
+ readonly category: "container";
9470
+ readonly specialCategory: null;
9471
+ readonly sort: -1;
9472
+ };
9473
+ readonly styles: {
9474
+ readonly backgroundColor: {
9475
+ readonly label: "Background Color";
9476
+ readonly description: "Background fill color.";
9477
+ readonly category: "style";
9478
+ readonly specialCategory: null;
9479
+ readonly sort: 20;
9480
+ };
9481
+ readonly borderRadius: {
9482
+ readonly label: "Border Radius";
9483
+ readonly description: "Corner rounding amount.";
9484
+ readonly category: "style";
9485
+ readonly specialCategory: null;
9486
+ readonly sort: 21;
9487
+ readonly preferredScale: "s";
9488
+ };
9489
+ readonly flexDirection: {
9490
+ readonly label: "Flex Direction";
9491
+ readonly description: "Sets row or column layout.";
9492
+ readonly category: "container";
9493
+ readonly specialCategory: null;
9494
+ readonly sort: 4;
9495
+ };
9496
+ readonly flexWrap: {
9497
+ readonly label: "Flex Wrap";
9498
+ readonly description: "Controls whether flex items wrap to multiple lines.";
9499
+ readonly category: "container";
9500
+ readonly specialCategory: null;
9501
+ readonly sort: 4.5;
9502
+ };
9503
+ readonly alignItems: {
9504
+ readonly label: "Align Items";
9505
+ readonly description: "Controls cross-axis alignment.";
9506
+ readonly category: "container";
9507
+ readonly specialCategory: null;
9508
+ readonly sort: 3;
9509
+ };
9510
+ readonly justifyContent: {
9511
+ readonly label: "Justify Content";
9512
+ readonly description: "Controls main-axis alignment.";
9513
+ readonly category: "container";
9514
+ readonly specialCategory: null;
9515
+ readonly sort: 5;
9516
+ };
9517
+ readonly gap: {
9518
+ readonly label: "Gap";
9519
+ readonly description: "Space between children.";
9520
+ readonly category: "container";
9521
+ readonly specialCategory: null;
9522
+ readonly sort: 10;
9523
+ readonly preferredScale: "s";
9524
+ };
9525
+ readonly padding: {
9526
+ readonly label: "Padding";
9527
+ readonly description: "Uniform padding on all sides.";
9528
+ readonly category: "container";
9529
+ readonly specialCategory: "padding";
9530
+ readonly sort: 6;
9531
+ readonly preferredScale: "s";
9532
+ };
9533
+ readonly paddingHorizontal: {
9534
+ readonly label: "Padding Horizontal";
9535
+ readonly description: "Left and right padding.";
9536
+ readonly category: "container";
9537
+ readonly specialCategory: "padding";
9538
+ readonly sort: 7;
9539
+ readonly preferredScale: "s";
9540
+ };
9541
+ readonly paddingVertical: {
9542
+ readonly label: "Padding Vertical";
9543
+ readonly description: "Top and bottom padding.";
9544
+ readonly category: "container";
9545
+ readonly specialCategory: "padding";
9546
+ readonly sort: 8;
9547
+ readonly preferredScale: "vs";
9548
+ };
9549
+ readonly paddingTop: {
9550
+ readonly label: "Padding Top";
9551
+ readonly description: "Top padding only.";
9552
+ readonly category: "container";
9553
+ readonly specialCategory: "padding";
9554
+ readonly sort: 9;
9555
+ readonly preferredScale: "vs";
9556
+ };
9557
+ readonly paddingBottom: {
9558
+ readonly label: "Padding Bottom";
9559
+ readonly description: "Bottom padding only.";
9560
+ readonly category: "container";
9561
+ readonly specialCategory: "padding";
9562
+ readonly sort: 10;
9563
+ readonly preferredScale: "vs";
9564
+ };
9565
+ readonly paddingLeft: {
9566
+ readonly label: "Padding Left";
9567
+ readonly description: "Left padding only.";
9568
+ readonly category: "container";
9569
+ readonly specialCategory: "padding";
9570
+ readonly sort: 11;
9571
+ readonly preferredScale: "s";
9572
+ };
9573
+ readonly paddingRight: {
9574
+ readonly label: "Padding Right";
9575
+ readonly description: "Right padding only.";
9576
+ readonly category: "container";
9577
+ readonly specialCategory: "padding";
9578
+ readonly sort: 12;
9579
+ readonly preferredScale: "s";
9580
+ };
9581
+ readonly margin: {
9582
+ readonly label: "Margin";
9583
+ readonly description: "Uniform margin on all sides.";
9584
+ readonly category: "container";
9585
+ readonly specialCategory: "margin";
9586
+ readonly sort: 13;
9587
+ readonly preferredScale: "s";
9588
+ };
9589
+ readonly marginHorizontal: {
9590
+ readonly label: "Margin Horizontal";
9591
+ readonly description: "Left and right margin.";
9592
+ readonly category: "container";
9593
+ readonly specialCategory: "margin";
9594
+ readonly sort: 14;
9595
+ readonly preferredScale: "s";
9596
+ };
9597
+ readonly marginVertical: {
9598
+ readonly label: "Margin Vertical";
9599
+ readonly description: "Top and bottom margin.";
9600
+ readonly category: "container";
9601
+ readonly specialCategory: "margin";
9602
+ readonly sort: 15;
9603
+ readonly preferredScale: "vs";
9604
+ };
9605
+ readonly marginTop: {
9606
+ readonly label: "Margin Top";
9607
+ readonly description: "Top margin only.";
9608
+ readonly category: "container";
9609
+ readonly specialCategory: "margin";
9610
+ readonly sort: 16;
9611
+ readonly preferredScale: "vs";
9612
+ };
9613
+ readonly marginBottom: {
9614
+ readonly label: "Margin Bottom";
9615
+ readonly description: "Bottom margin only.";
9616
+ readonly category: "container";
9617
+ readonly specialCategory: "margin";
9618
+ readonly sort: 17;
9619
+ readonly preferredScale: "vs";
9620
+ };
9621
+ readonly marginLeft: {
9622
+ readonly label: "Margin Left";
9623
+ readonly description: "Left margin only.";
9624
+ readonly category: "container";
9625
+ readonly specialCategory: "margin";
9626
+ readonly sort: 18;
9627
+ readonly preferredScale: "s";
9628
+ };
9629
+ readonly marginRight: {
9630
+ readonly label: "Margin Right";
9631
+ readonly description: "Right margin only.";
9632
+ readonly category: "container";
9633
+ readonly specialCategory: "margin";
9634
+ readonly sort: 19;
9635
+ readonly preferredScale: "s";
9636
+ };
9637
+ readonly width: {
9638
+ readonly label: "Width";
9639
+ readonly description: "Fixed width value.";
9640
+ readonly category: "container";
9641
+ readonly specialCategory: "size";
9642
+ readonly sort: 0;
9643
+ readonly preferredScale: "s";
9644
+ };
9645
+ readonly minWidth: {
9646
+ readonly label: "Min Width";
9647
+ readonly description: "Minimum width constraint.";
9648
+ readonly category: "container";
9649
+ readonly specialCategory: "size";
9650
+ readonly sort: 1;
9651
+ readonly preferredScale: "s";
9652
+ };
9653
+ readonly maxWidth: {
9654
+ readonly label: "Max Width";
9655
+ readonly description: "Maximum width constraint.";
9656
+ readonly category: "container";
9657
+ readonly specialCategory: "size";
9658
+ readonly sort: 2;
9659
+ readonly preferredScale: "s";
9660
+ };
9661
+ readonly height: {
9662
+ readonly label: "Height";
9663
+ readonly description: "Fixed height value.";
9664
+ readonly category: "container";
9665
+ readonly specialCategory: "size";
9666
+ readonly sort: 3;
9667
+ readonly preferredScale: "vs";
9668
+ };
9669
+ readonly minHeight: {
9670
+ readonly label: "Min Height";
9671
+ readonly description: "Minimum height constraint.";
9672
+ readonly category: "container";
9673
+ readonly specialCategory: "size";
9674
+ readonly sort: 4;
9675
+ readonly preferredScale: "vs";
9676
+ };
9677
+ readonly maxHeight: {
9678
+ readonly label: "Max Height";
9679
+ readonly description: "Maximum height constraint.";
9680
+ readonly category: "container";
9681
+ readonly specialCategory: "size";
9682
+ readonly sort: 5;
9683
+ readonly preferredScale: "vs";
9684
+ };
9685
+ readonly flex: {
9686
+ readonly label: "Flex";
9687
+ readonly description: "Flex grow factor (e.g. 1 fills available space).";
9688
+ readonly category: "container";
9689
+ readonly specialCategory: "size";
9690
+ readonly sort: 6;
9691
+ };
9692
+ readonly position: {
9693
+ readonly label: "Position";
9694
+ readonly description: "Sets layout positioning mode.";
9695
+ readonly category: "container";
9696
+ readonly specialCategory: null;
9697
+ readonly sort: 3;
9698
+ };
9699
+ readonly top: {
9700
+ readonly label: "Top";
9701
+ readonly description: "Offset from the top edge.";
9702
+ readonly category: "container";
9703
+ readonly specialCategory: "offset";
9704
+ readonly sort: 22;
9705
+ readonly preferredScale: "vs";
9706
+ };
9707
+ readonly bottom: {
9708
+ readonly label: "Bottom";
9709
+ readonly description: "Offset from the bottom edge.";
9710
+ readonly category: "container";
9711
+ readonly specialCategory: "offset";
9712
+ readonly sort: 23;
9713
+ readonly preferredScale: "vs";
9714
+ };
9715
+ readonly left: {
9716
+ readonly label: "Left";
9717
+ readonly description: "Offset from the left edge.";
9718
+ readonly category: "container";
9719
+ readonly specialCategory: "offset";
9720
+ readonly sort: 24;
9721
+ readonly preferredScale: "s";
9722
+ };
9723
+ readonly right: {
9724
+ readonly label: "Right";
9725
+ readonly description: "Offset from the right edge.";
9726
+ readonly category: "container";
9727
+ readonly specialCategory: "offset";
9728
+ readonly sort: 25;
9729
+ readonly preferredScale: "s";
9730
+ };
9731
+ readonly zIndex: {
9732
+ readonly label: "Z-Index";
9733
+ readonly description: "Controls stacking order.";
9734
+ readonly category: "container";
9735
+ readonly specialCategory: null;
9736
+ readonly sort: 26;
9737
+ };
9738
+ };
9739
+ readonly textLocalizationKey: {
9740
+ readonly label: "Text Localization Key";
9741
+ readonly description: "Localization key for the footer text.";
9742
+ readonly category: "other";
9743
+ readonly specialCategory: null;
9744
+ readonly sort: 1;
9745
+ };
9746
+ readonly linkedWordFirstLocalizationKey: {
9747
+ readonly label: "Linked Word First Localization Key";
9748
+ readonly description: "Key for the first linked word.";
9749
+ readonly category: "other";
9750
+ readonly specialCategory: null;
9751
+ readonly sort: 2;
9752
+ };
9753
+ readonly linkedWordFirstColor: {
9754
+ readonly label: "Linked Word First Color";
9755
+ readonly description: "Color of the first linked word.";
9756
+ readonly category: "other";
9757
+ readonly specialCategory: null;
9758
+ readonly sort: 3;
9759
+ };
9760
+ readonly linkedWordFirstPage: {
9761
+ readonly label: "Linked Word First Page";
9762
+ readonly description: "Page opened by the first link.";
9763
+ readonly category: "other";
9764
+ readonly specialCategory: null;
9765
+ readonly sort: 4;
9766
+ };
9767
+ readonly linkedWordSecondLocalizationKey: {
9768
+ readonly label: "Linked Word Second Localization Key";
9769
+ readonly description: "Key for the second linked word.";
9770
+ readonly category: "other";
9771
+ readonly specialCategory: null;
9772
+ readonly sort: 5;
9773
+ };
9774
+ readonly linkedWordSecondColor: {
9775
+ readonly label: "Linked Word Second Color";
9776
+ readonly description: "Color of the second linked word.";
9777
+ readonly category: "other";
9778
+ readonly specialCategory: null;
9779
+ readonly sort: 6;
9780
+ };
9781
+ readonly linkedWordSecondPage: {
9782
+ readonly label: "Linked Word Second Page";
9783
+ readonly description: "Page opened by the second link.";
9784
+ readonly category: "other";
9785
+ readonly specialCategory: null;
9786
+ readonly sort: 7;
9787
+ };
9788
+ };
9789
+ readonly specialCategories: {
9790
+ readonly padding: {
9791
+ readonly label: "Padding";
9792
+ readonly description: "Uniform padding on all sides.";
9793
+ readonly category: "container";
9794
+ readonly sort: 1;
9795
+ };
9796
+ readonly margin: {
9797
+ readonly label: "Margin";
9798
+ readonly description: "Uniform margin on all sides.";
9799
+ readonly category: "container";
9800
+ readonly sort: 2;
9801
+ };
9802
+ readonly size: {
9803
+ readonly label: "Size";
9804
+ readonly description: "Fixed dimensions.";
9805
+ readonly category: "container";
9806
+ readonly sort: 3;
9807
+ };
9808
+ readonly offset: {
9809
+ readonly label: "Offset";
9810
+ readonly description: "Absolute positioning offsets.";
9811
+ readonly category: "container";
9812
+ readonly sort: 4;
9813
+ };
9814
+ };
9815
+ };
9816
+ readonly defaults: {
9817
+ readonly translateCounter: 1;
9818
+ readonly styles: {
9819
+ readonly color: "THEME_COLORS.TEXT";
9820
+ readonly fontSize: "16@fs";
9821
+ readonly fontWeight: "400";
9822
+ readonly flexDirection: "row";
9823
+ readonly position: "relative";
9824
+ readonly zIndex: 1;
9825
+ readonly alignSelf: "flex-start";
9826
+ readonly flexGrow: 0;
9827
+ readonly flexShrink: 0;
9828
+ readonly minHeight: "50@vs";
9829
+ readonly flexWrap: "wrap";
9830
+ readonly alignItems: "center";
9831
+ readonly justifyContent: "center";
9832
+ readonly textAlign: "center";
9833
+ readonly paddingHorizontal: "16@s";
9834
+ };
9835
+ };
9836
+ readonly types: {};
9345
9837
  }, {
9346
9838
  readonly schemaVersion: 2;
9347
9839
  readonly pattern: {