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