@developer_tribe/react-builder 1.2.24 → 1.2.26
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/attributes-editor/AttributesEditorFields.d.ts +1 -1
- package/dist/attributes-editor/SpecialCategorySection.d.ts +2 -1
- package/dist/attributes-editor/attributesEditorModelTypes.d.ts +2 -0
- package/dist/build-components/BIcon/BIconProps.generated.d.ts +0 -2
- package/dist/build-components/BackgroundImage/BackgroundImageProps.generated.d.ts +0 -2
- package/dist/build-components/Button/ButtonProps.generated.d.ts +0 -2
- package/dist/build-components/Carousel/CarouselProps.generated.d.ts +0 -2
- package/dist/build-components/CarouselButtons/CarouselButtonsProps.generated.d.ts +0 -2
- package/dist/build-components/CarouselDots/CarouselDotsProps.generated.d.ts +0 -2
- package/dist/build-components/CarouselItem/CarouselItemProps.generated.d.ts +0 -2
- package/dist/build-components/CarouselProvider/CarouselProviderProps.generated.d.ts +0 -2
- package/dist/build-components/CountDown/CountDownProps.generated.d.ts +3 -6
- package/dist/build-components/Image/ImageProps.generated.d.ts +0 -2
- package/dist/build-components/Main/MainProps.generated.d.ts +0 -2
- package/dist/build-components/NavigationBarColor/NavigationBarColorProps.generated.d.ts +0 -2
- package/dist/build-components/Onboard/OnboardProps.generated.d.ts +0 -2
- package/dist/build-components/OnboardButton/OnboardButtonProps.generated.d.ts +0 -2
- package/dist/build-components/OnboardButtons/OnboardButtonsProps.generated.d.ts +0 -2
- package/dist/build-components/OnboardDot/OnboardDotProps.generated.d.ts +0 -2
- package/dist/build-components/OnboardFooter/OnboardFooterProps.generated.d.ts +0 -2
- package/dist/build-components/OnboardImage/OnboardImageProps.generated.d.ts +0 -2
- package/dist/build-components/OnboardItem/OnboardItemProps.generated.d.ts +0 -2
- package/dist/build-components/OnboardProvider/OnboardProviderProps.generated.d.ts +0 -2
- package/dist/build-components/OnboardSubtitle/OnboardSubtitleProps.generated.d.ts +0 -2
- package/dist/build-components/OnboardTitle/OnboardTitleProps.generated.d.ts +0 -2
- package/dist/build-components/PaywallBackground/PaywallBackgroundProps.generated.d.ts +0 -2
- package/dist/build-components/PaywallCloseButton/PaywallCloseButtonProps.generated.d.ts +0 -2
- package/dist/build-components/PaywallOptions/PaywallOptionButton.d.ts +1 -1
- package/dist/build-components/PaywallOptions/PaywallOptionsProps.generated.d.ts +0 -2
- package/dist/build-components/PaywallProvider/PaywallContext.d.ts +1 -2
- package/dist/build-components/PaywallProvider/PaywallProviderProps.generated.d.ts +0 -2
- package/dist/build-components/PaywallSubscribeButton/PaywallSubscribeButtonProps.generated.d.ts +0 -2
- package/dist/build-components/RadioButton/RadioButtonProps.generated.d.ts +0 -2
- package/dist/build-components/Separator/SeparatorProps.generated.d.ts +0 -2
- package/dist/build-components/StatusBarColor/StatusBarColorProps.generated.d.ts +0 -2
- package/dist/build-components/Text/TextProps.generated.d.ts +0 -2
- package/dist/build-components/index.d.ts +1 -3
- package/dist/build-components/patterns.generated.d.ts +818 -1690
- package/dist/index.cjs.js +3 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.esm.js +4 -4
- package/dist/index.esm.js.map +1 -1
- package/dist/index.web.cjs.js +4 -4
- package/dist/index.web.cjs.js.map +1 -1
- package/dist/index.web.esm.js +3 -3
- package/dist/index.web.esm.js.map +1 -1
- package/dist/pages/ProjectPage.d.ts +2 -2
- package/dist/pages/projectPageUtils.d.ts +7 -1
- package/dist/paywall/hooks/index.d.ts +0 -1
- package/dist/styles.css +1 -1
- package/dist/types/Project.d.ts +6 -0
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/patterns.d.ts +2 -0
- package/dist/utils/projectColors.d.ts +7 -0
- package/package.json +3 -3
- package/scripts/prebuild/utils/validateAllComponentsOrThrow.js +11 -2
- package/src/AttributesEditor.tsx +15 -4
- package/src/DeviceMockFrame.tsx +0 -2
- package/src/RenderPage.tsx +0 -9
- package/src/assets/.DS_Store +0 -0
- package/src/assets/meta.json +1 -1
- package/src/assets/samples/paywall-1.json +0 -1
- package/src/assets/samples/paywall-2.json +2 -3
- package/src/assets/samples/paywall-app-delete-offer.json +2 -4
- package/src/assets/samples/paywall-app-open-offer.json +2 -4
- package/src/assets/samples/paywall-back-offer.json +2 -4
- package/src/assets/samples/paywall-notification-offer.json +2 -4
- package/src/assets/samples/simple-2.json +0 -1
- package/src/assets/samples/vpn-onboard-1.json +15 -15
- package/src/assets/samples/vpn-onboard-2.json +15 -15
- package/src/assets/samples/vpn-onboard-3.json +15 -15
- package/src/assets/samples/vpn-onboard-4.json +15 -15
- package/src/assets/samples/vpn-onboard-5.json +21 -21
- package/src/assets/samples/vpn-onboard-6.json +15 -15
- package/src/attributes-editor/AttributesEditorFields.tsx +0 -1
- package/src/attributes-editor/AttributesEditorView.tsx +43 -38
- package/src/attributes-editor/Field.tsx +1 -1
- package/src/attributes-editor/SpecialCategorySection.tsx +5 -4
- package/src/attributes-editor/attributesEditorModelTypes.ts +2 -0
- package/src/attributes-editor/useAttributesEditorModel.ts +24 -8
- package/src/build-components/BIcon/BIcon.tsx +1 -1
- package/src/build-components/BIcon/BIconProps.generated.ts +0 -2
- package/src/build-components/BIcon/pattern.json +2 -2
- package/src/build-components/BackgroundImage/BackgroundImageProps.generated.ts +0 -2
- package/src/build-components/BackgroundImage/pattern.json +2 -2
- package/src/build-components/Button/ButtonProps.generated.ts +0 -2
- package/src/build-components/Button/pattern.json +2 -2
- package/src/build-components/Carousel/Carousel.tsx +1 -1
- package/src/build-components/Carousel/CarouselProps.generated.ts +0 -2
- package/src/build-components/Carousel/pattern.json +3 -3
- package/src/build-components/CarouselButtons/CarouselButtonsProps.generated.ts +0 -2
- package/src/build-components/CarouselButtons/pattern.json +2 -2
- package/src/build-components/CarouselDots/CarouselDotsProps.generated.ts +0 -2
- package/src/build-components/CarouselDots/pattern.json +2 -2
- package/src/build-components/CarouselItem/CarouselItemProps.generated.ts +0 -2
- package/src/build-components/CarouselItem/pattern.json +3 -5
- package/src/build-components/CarouselProvider/CarouselProvider.tsx +1 -1
- package/src/build-components/CarouselProvider/CarouselProviderProps.generated.ts +0 -2
- package/src/build-components/CarouselProvider/pattern.json +2 -4
- package/src/build-components/CountDown/CountDown.tsx +25 -1
- package/src/build-components/CountDown/CountDownProps.generated.ts +3 -6
- package/src/build-components/CountDown/pattern.json +10 -2
- package/src/build-components/Image/ImageProps.generated.ts +0 -2
- package/src/build-components/Image/pattern.json +5 -3
- package/src/build-components/Main/MainProps.generated.ts +0 -2
- package/src/build-components/Main/pattern.json +2 -2
- package/src/build-components/NavigationBarColor/NavigationBarColorProps.generated.ts +0 -2
- package/src/build-components/NavigationBarColor/pattern.json +2 -2
- package/src/build-components/Onboard/OnboardProps.generated.ts +0 -2
- package/src/build-components/Onboard/pattern.json +3 -5
- package/src/build-components/OnboardButton/OnboardButton.tsx +1 -4
- package/src/build-components/OnboardButton/OnboardButtonProps.generated.ts +0 -2
- package/src/build-components/OnboardButton/pattern.json +2 -2
- package/src/build-components/OnboardButtons/OnboardButtons.tsx +1 -9
- package/src/build-components/OnboardButtons/OnboardButtonsProps.generated.ts +0 -2
- package/src/build-components/OnboardButtons/pattern.json +2 -2
- package/src/build-components/OnboardDot/OnboardDot.tsx +2 -1
- package/src/build-components/OnboardDot/OnboardDotProps.generated.ts +0 -2
- package/src/build-components/OnboardDot/pattern.json +2 -2
- package/src/build-components/OnboardFooter/OnboardFooterProps.generated.ts +0 -2
- package/src/build-components/OnboardFooter/pattern.json +2 -2
- package/src/build-components/OnboardImage/OnboardImageProps.generated.ts +0 -2
- package/src/build-components/OnboardImage/pattern.json +2 -2
- package/src/build-components/OnboardItem/OnboardItem.tsx +1 -1
- package/src/build-components/OnboardItem/OnboardItemProps.generated.ts +0 -2
- package/src/build-components/OnboardItem/pattern.json +2 -2
- package/src/build-components/OnboardProvider/OnboardProvider.tsx +0 -1
- package/src/build-components/OnboardProvider/OnboardProviderProps.generated.ts +0 -2
- package/src/build-components/OnboardProvider/pattern.json +2 -2
- package/src/build-components/OnboardSubtitle/OnboardSubtitleProps.generated.ts +0 -2
- package/src/build-components/OnboardSubtitle/pattern.json +3 -5
- package/src/build-components/OnboardTitle/OnboardTitleProps.generated.ts +0 -2
- package/src/build-components/OnboardTitle/pattern.json +3 -5
- package/src/build-components/PaywallBackground/PaywallBackgroundProps.generated.ts +0 -2
- package/src/build-components/PaywallBackground/pattern.json +2 -4
- package/src/build-components/PaywallCloseButton/PaywallCloseButtonProps.generated.ts +0 -2
- package/src/build-components/PaywallCloseButton/pattern.json +3 -5
- package/src/build-components/PaywallOptions/PaywallOptionButton.tsx +1 -2
- package/src/build-components/PaywallOptions/PaywallOptionsProps.generated.ts +0 -2
- package/src/build-components/PaywallOptions/pattern.json +3 -5
- package/src/build-components/PaywallProvider/PaywallContext.ts +1 -1
- package/src/build-components/PaywallProvider/PaywallProvider.tsx +0 -10
- package/src/build-components/PaywallProvider/PaywallProviderProps.generated.ts +0 -2
- package/src/build-components/PaywallProvider/pattern.json +2 -2
- package/src/build-components/PaywallSubscribeButton/PaywallSubscribeButton.tsx +1 -1
- package/src/build-components/PaywallSubscribeButton/PaywallSubscribeButtonProps.generated.ts +0 -2
- package/src/build-components/PaywallSubscribeButton/pattern.json +3 -5
- package/src/build-components/RadioButton/RadioButton.tsx +1 -1
- package/src/build-components/RadioButton/RadioButtonProps.generated.ts +0 -2
- package/src/build-components/RadioButton/pattern.json +2 -2
- package/src/build-components/RenderNode.generated.tsx +0 -10
- package/src/build-components/Separator/SeparatorProps.generated.ts +0 -2
- package/src/build-components/Separator/pattern.json +2 -2
- package/src/build-components/StatusBarColor/StatusBarColorProps.generated.ts +0 -2
- package/src/build-components/StatusBarColor/pattern.json +2 -2
- package/src/build-components/Text/TextProps.generated.ts +0 -2
- package/src/build-components/Text/pattern.json +2 -3
- package/src/build-components/View/pattern.json +2 -0
- package/src/build-components/index.ts +0 -10
- package/src/build-components/patterns.generated.ts +850 -1759
- package/src/components/AttributesEditorPanel.tsx +48 -32
- package/src/components/Builder.tsx +9 -1
- package/src/components/BuilderProvider.tsx +2 -37
- package/src/hooks/useSafeAreaViewStyle.ts +1 -3
- package/src/index.ts +1 -1
- package/src/mockOS/managers/navigationManager.ts +1 -1
- package/src/pages/ProjectPage.tsx +47 -22
- package/src/pages/projectPageUtils.ts +15 -1
- package/src/pages/tabs/SideTool.tsx +1 -22
- package/src/paywall/hooks/index.ts +0 -1
- package/src/store.ts +1 -6
- package/src/styles/base/_global.scss +2 -0
- package/src/types/Project.ts +7 -0
- package/src/utils/analyseNodeByPatterns.ts +4 -0
- package/src/utils/index.ts +1 -0
- package/src/utils/logRenderStore.ts +0 -1
- package/src/utils/novaToJson.ts +1 -5
- package/src/utils/parseColor.ts +1 -0
- package/src/utils/patterns.ts +2 -0
- package/src/utils/projectColors.ts +71 -0
- package/dist/build-components/Counter/Counter.d.ts +0 -2
- package/dist/build-components/Counter/CounterProps.generated.d.ts +0 -63
- package/dist/build-components/PaywallCounter/PaywallCounter.d.ts +0 -2
- package/dist/build-components/PaywallCounter/PaywallCounterProps.generated.d.ts +0 -63
- package/dist/paywall/hooks/useHandleGoBack.d.ts +0 -1
- package/src/build-components/Counter/Counter.tsx +0 -44
- package/src/build-components/Counter/CounterProps.generated.ts +0 -80
- package/src/build-components/Counter/pattern.json +0 -25
- package/src/build-components/PaywallCounter/PaywallCounter.tsx +0 -46
- package/src/build-components/PaywallCounter/PaywallCounterProps.generated.ts +0 -80
- package/src/build-components/PaywallCounter/pattern.json +0 -23
- package/src/paywall/hooks/useHandleGoBack.ts +0 -60
|
@@ -2,10 +2,10 @@ export declare const patterns: readonly [{
|
|
|
2
2
|
readonly schemaVersion: 2;
|
|
3
3
|
readonly pattern: {
|
|
4
4
|
readonly type: "BIcon";
|
|
5
|
+
readonly title: "title";
|
|
6
|
+
readonly description: "description";
|
|
5
7
|
readonly children: "never";
|
|
6
8
|
readonly attributes: {
|
|
7
|
-
readonly title: "title";
|
|
8
|
-
readonly description: "description";
|
|
9
9
|
readonly adjustsFontSizeToFit: "boolean";
|
|
10
10
|
readonly showEllipsis: "boolean";
|
|
11
11
|
readonly style: {
|
|
@@ -459,6 +459,8 @@ export declare const patterns: readonly [{
|
|
|
459
459
|
readonly schemaVersion: 2;
|
|
460
460
|
readonly pattern: {
|
|
461
461
|
readonly type: "BackgroundImage";
|
|
462
|
+
readonly title: "title";
|
|
463
|
+
readonly description: "description";
|
|
462
464
|
readonly children: "never";
|
|
463
465
|
readonly attributes: {
|
|
464
466
|
readonly scrollable: "boolean";
|
|
@@ -498,8 +500,6 @@ export declare const patterns: readonly [{
|
|
|
498
500
|
readonly right: "size";
|
|
499
501
|
readonly zIndex: "number";
|
|
500
502
|
};
|
|
501
|
-
readonly title: "title";
|
|
502
|
-
readonly description: "description";
|
|
503
503
|
readonly src: "string";
|
|
504
504
|
readonly resizeMode: readonly ["cover", "contain", "stretch", "center"];
|
|
505
505
|
};
|
|
@@ -858,6 +858,8 @@ export declare const patterns: readonly [{
|
|
|
858
858
|
readonly schemaVersion: 2;
|
|
859
859
|
readonly pattern: {
|
|
860
860
|
readonly type: "Button";
|
|
861
|
+
readonly title: "title";
|
|
862
|
+
readonly description: "description";
|
|
861
863
|
readonly children: "string";
|
|
862
864
|
readonly attributes: {
|
|
863
865
|
readonly scrollable: "boolean";
|
|
@@ -900,8 +902,6 @@ export declare const patterns: readonly [{
|
|
|
900
902
|
readonly fontSize: "size";
|
|
901
903
|
readonly fontWeight: readonly ["normal", "bold", "100", "200", "300", "400", "500", "600", "700", "800", "900"];
|
|
902
904
|
};
|
|
903
|
-
readonly title: "title";
|
|
904
|
-
readonly description: "description";
|
|
905
905
|
};
|
|
906
906
|
};
|
|
907
907
|
readonly meta: {
|
|
@@ -1250,6 +1250,8 @@ export declare const patterns: readonly [{
|
|
|
1250
1250
|
readonly schemaVersion: 2;
|
|
1251
1251
|
readonly pattern: {
|
|
1252
1252
|
readonly type: "Carousel";
|
|
1253
|
+
readonly title: "title";
|
|
1254
|
+
readonly description: "description";
|
|
1253
1255
|
readonly children: "node";
|
|
1254
1256
|
readonly attributes: {
|
|
1255
1257
|
readonly scrollable: "boolean";
|
|
@@ -1289,8 +1291,6 @@ export declare const patterns: readonly [{
|
|
|
1289
1291
|
readonly right: "size";
|
|
1290
1292
|
readonly zIndex: "number";
|
|
1291
1293
|
};
|
|
1292
|
-
readonly title: "title";
|
|
1293
|
-
readonly description: "description";
|
|
1294
1294
|
readonly loop: "boolean";
|
|
1295
1295
|
readonly dragFree: "boolean";
|
|
1296
1296
|
readonly align: readonly ["start", "center", "end"];
|
|
@@ -1617,6 +1617,8 @@ export declare const patterns: readonly [{
|
|
|
1617
1617
|
readonly schemaVersion: 2;
|
|
1618
1618
|
readonly pattern: {
|
|
1619
1619
|
readonly type: "CarouselButtons";
|
|
1620
|
+
readonly title: "title";
|
|
1621
|
+
readonly description: "description";
|
|
1620
1622
|
readonly children: "never";
|
|
1621
1623
|
readonly attributes: {
|
|
1622
1624
|
readonly scrollable: "boolean";
|
|
@@ -1656,8 +1658,6 @@ export declare const patterns: readonly [{
|
|
|
1656
1658
|
readonly right: "size";
|
|
1657
1659
|
readonly zIndex: "number";
|
|
1658
1660
|
};
|
|
1659
|
-
readonly title: "title";
|
|
1660
|
-
readonly description: "description";
|
|
1661
1661
|
readonly buttonType: readonly ["previous_button", "next_button", "skip_button"];
|
|
1662
1662
|
readonly skipNumber: "number";
|
|
1663
1663
|
};
|
|
@@ -1997,6 +1997,8 @@ export declare const patterns: readonly [{
|
|
|
1997
1997
|
readonly schemaVersion: 2;
|
|
1998
1998
|
readonly pattern: {
|
|
1999
1999
|
readonly type: "CarouselDots";
|
|
2000
|
+
readonly title: "title";
|
|
2001
|
+
readonly description: "description";
|
|
2000
2002
|
readonly children: "never";
|
|
2001
2003
|
readonly attributes: {
|
|
2002
2004
|
readonly scrollable: "boolean";
|
|
@@ -2036,8 +2038,6 @@ export declare const patterns: readonly [{
|
|
|
2036
2038
|
readonly right: "size";
|
|
2037
2039
|
readonly zIndex: "number";
|
|
2038
2040
|
};
|
|
2039
|
-
readonly title: "title";
|
|
2040
|
-
readonly description: "description";
|
|
2041
2041
|
readonly dotType: readonly ["expanding_dot", "normal_dot", "scaling_dot", "sliding_border", "sliding_dot", "liquid_like"];
|
|
2042
2042
|
};
|
|
2043
2043
|
};
|
|
@@ -2369,6 +2369,8 @@ export declare const patterns: readonly [{
|
|
|
2369
2369
|
readonly schemaVersion: 2;
|
|
2370
2370
|
readonly pattern: {
|
|
2371
2371
|
readonly type: "CarouselItem";
|
|
2372
|
+
readonly title: "title";
|
|
2373
|
+
readonly description: "description";
|
|
2372
2374
|
readonly children: "node";
|
|
2373
2375
|
readonly attributes: {
|
|
2374
2376
|
readonly scrollable: "boolean";
|
|
@@ -2408,8 +2410,6 @@ export declare const patterns: readonly [{
|
|
|
2408
2410
|
readonly right: "size";
|
|
2409
2411
|
readonly zIndex: "number";
|
|
2410
2412
|
};
|
|
2411
|
-
readonly title: "title";
|
|
2412
|
-
readonly description: "description";
|
|
2413
2413
|
};
|
|
2414
2414
|
};
|
|
2415
2415
|
readonly meta: {
|
|
@@ -2733,6 +2733,8 @@ export declare const patterns: readonly [{
|
|
|
2733
2733
|
readonly schemaVersion: 1;
|
|
2734
2734
|
readonly pattern: {
|
|
2735
2735
|
readonly type: "CarouselProvider";
|
|
2736
|
+
readonly title: "title";
|
|
2737
|
+
readonly description: "description";
|
|
2736
2738
|
readonly children: "node";
|
|
2737
2739
|
readonly attributes: {
|
|
2738
2740
|
readonly scrollable: "boolean";
|
|
@@ -2772,8 +2774,6 @@ export declare const patterns: readonly [{
|
|
|
2772
2774
|
readonly right: "size";
|
|
2773
2775
|
readonly zIndex: "number";
|
|
2774
2776
|
};
|
|
2775
|
-
readonly title: "title";
|
|
2776
|
-
readonly description: "description";
|
|
2777
2777
|
};
|
|
2778
2778
|
readonly defaults: {
|
|
2779
2779
|
readonly style: {
|
|
@@ -3106,11 +3106,10 @@ export declare const patterns: readonly [{
|
|
|
3106
3106
|
readonly schemaVersion: 2;
|
|
3107
3107
|
readonly pattern: {
|
|
3108
3108
|
readonly type: "CountDown";
|
|
3109
|
+
readonly title: "title";
|
|
3110
|
+
readonly description: "description";
|
|
3109
3111
|
readonly children: "never";
|
|
3110
3112
|
readonly attributes: {
|
|
3111
|
-
readonly count: "number";
|
|
3112
|
-
readonly title: "title";
|
|
3113
|
-
readonly description: "description";
|
|
3114
3113
|
readonly adjustsFontSizeToFit: "boolean";
|
|
3115
3114
|
readonly showEllipsis: "boolean";
|
|
3116
3115
|
readonly style: {
|
|
@@ -3118,7 +3117,7 @@ export declare const patterns: readonly [{
|
|
|
3118
3117
|
readonly fontSize: "size";
|
|
3119
3118
|
readonly fontFamily: "fontFamily";
|
|
3120
3119
|
readonly fontWeight: "fontWeight";
|
|
3121
|
-
readonly textAlign:
|
|
3120
|
+
readonly textAlign: "never";
|
|
3122
3121
|
readonly flexDirection: readonly ["row", "column"];
|
|
3123
3122
|
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
3124
3123
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
@@ -3140,7 +3139,7 @@ export declare const patterns: readonly [{
|
|
|
3140
3139
|
readonly marginRight: "size";
|
|
3141
3140
|
readonly backgroundColor: "color";
|
|
3142
3141
|
readonly borderRadius: "size";
|
|
3143
|
-
readonly width: "
|
|
3142
|
+
readonly width: "never";
|
|
3144
3143
|
readonly minWidth: "size";
|
|
3145
3144
|
readonly maxWidth: "size";
|
|
3146
3145
|
readonly height: "size";
|
|
@@ -3155,6 +3154,7 @@ export declare const patterns: readonly [{
|
|
|
3155
3154
|
readonly zIndex: "number";
|
|
3156
3155
|
};
|
|
3157
3156
|
readonly scrollable: "boolean";
|
|
3157
|
+
readonly count: "number";
|
|
3158
3158
|
};
|
|
3159
3159
|
readonly defaults: {
|
|
3160
3160
|
readonly style: {
|
|
@@ -3168,14 +3168,60 @@ export declare const patterns: readonly [{
|
|
|
3168
3168
|
readonly desiredParent: readonly ["all"];
|
|
3169
3169
|
readonly label: "Count Down";
|
|
3170
3170
|
readonly description: "Displays a countdown timer.";
|
|
3171
|
-
readonly
|
|
3172
|
-
readonly
|
|
3173
|
-
readonly label: "
|
|
3174
|
-
readonly description: "
|
|
3175
|
-
readonly category: "
|
|
3171
|
+
readonly styles: {
|
|
3172
|
+
readonly color: {
|
|
3173
|
+
readonly label: "Color";
|
|
3174
|
+
readonly description: "Text color.";
|
|
3175
|
+
readonly category: "style";
|
|
3176
3176
|
readonly specialCategory: null;
|
|
3177
3177
|
readonly sort: 1;
|
|
3178
3178
|
};
|
|
3179
|
+
readonly fontSize: {
|
|
3180
|
+
readonly label: "Font Size";
|
|
3181
|
+
readonly description: "Text size.";
|
|
3182
|
+
readonly category: "style";
|
|
3183
|
+
readonly specialCategory: null;
|
|
3184
|
+
readonly sort: 2;
|
|
3185
|
+
readonly preferredScale: "s";
|
|
3186
|
+
};
|
|
3187
|
+
readonly fontFamily: {
|
|
3188
|
+
readonly label: "Font Family";
|
|
3189
|
+
readonly description: "Font family used for the text.";
|
|
3190
|
+
readonly category: "style";
|
|
3191
|
+
readonly specialCategory: null;
|
|
3192
|
+
readonly sort: 3;
|
|
3193
|
+
};
|
|
3194
|
+
readonly fontWeight: {
|
|
3195
|
+
readonly label: "Font Weight";
|
|
3196
|
+
readonly description: "Text weight.";
|
|
3197
|
+
readonly category: "style";
|
|
3198
|
+
readonly specialCategory: null;
|
|
3199
|
+
readonly sort: 4;
|
|
3200
|
+
};
|
|
3201
|
+
readonly textAlign: {
|
|
3202
|
+
readonly label: "Text Align";
|
|
3203
|
+
readonly description: "Text alignment.";
|
|
3204
|
+
readonly category: "style";
|
|
3205
|
+
readonly specialCategory: null;
|
|
3206
|
+
readonly sort: 5;
|
|
3207
|
+
};
|
|
3208
|
+
readonly backgroundColor: {
|
|
3209
|
+
readonly label: "Background Color";
|
|
3210
|
+
readonly description: "Background fill color.";
|
|
3211
|
+
readonly category: "style";
|
|
3212
|
+
readonly specialCategory: null;
|
|
3213
|
+
readonly sort: 20;
|
|
3214
|
+
};
|
|
3215
|
+
readonly borderRadius: {
|
|
3216
|
+
readonly label: "Border Radius";
|
|
3217
|
+
readonly description: "Corner rounding amount.";
|
|
3218
|
+
readonly category: "style";
|
|
3219
|
+
readonly specialCategory: null;
|
|
3220
|
+
readonly sort: 21;
|
|
3221
|
+
readonly preferredScale: "s";
|
|
3222
|
+
};
|
|
3223
|
+
};
|
|
3224
|
+
readonly attributes: {
|
|
3179
3225
|
readonly adjustsFontSizeToFit: {
|
|
3180
3226
|
readonly label: "Adjust Font Size To Fit";
|
|
3181
3227
|
readonly description: "Automatically reduces font size to fit the available space.";
|
|
@@ -3446,59 +3492,13 @@ export declare const patterns: readonly [{
|
|
|
3446
3492
|
readonly specialCategory: null;
|
|
3447
3493
|
readonly sort: 26;
|
|
3448
3494
|
};
|
|
3449
|
-
|
|
3450
|
-
|
|
3451
|
-
|
|
3452
|
-
readonly
|
|
3453
|
-
readonly description: "Text color.";
|
|
3454
|
-
readonly category: "style";
|
|
3495
|
+
readonly count: {
|
|
3496
|
+
readonly label: "Count (ms)";
|
|
3497
|
+
readonly description: "Countdown duration in milliseconds.";
|
|
3498
|
+
readonly category: "other";
|
|
3455
3499
|
readonly specialCategory: null;
|
|
3456
3500
|
readonly sort: 1;
|
|
3457
3501
|
};
|
|
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
3502
|
};
|
|
3503
3503
|
readonly specialCategories: {
|
|
3504
3504
|
readonly padding: {
|
|
@@ -3544,19 +3544,13 @@ export declare const patterns: readonly [{
|
|
|
3544
3544
|
}, {
|
|
3545
3545
|
readonly schemaVersion: 2;
|
|
3546
3546
|
readonly pattern: {
|
|
3547
|
-
readonly type: "
|
|
3547
|
+
readonly type: "Image";
|
|
3548
|
+
readonly title: "title";
|
|
3549
|
+
readonly description: "description";
|
|
3548
3550
|
readonly children: "never";
|
|
3549
3551
|
readonly attributes: {
|
|
3550
|
-
readonly
|
|
3551
|
-
readonly description: "description";
|
|
3552
|
-
readonly adjustsFontSizeToFit: "boolean";
|
|
3553
|
-
readonly showEllipsis: "boolean";
|
|
3552
|
+
readonly scrollable: "boolean";
|
|
3554
3553
|
readonly style: {
|
|
3555
|
-
readonly color: "color";
|
|
3556
|
-
readonly fontSize: "size";
|
|
3557
|
-
readonly fontFamily: "fontFamily";
|
|
3558
|
-
readonly fontWeight: "fontWeight";
|
|
3559
|
-
readonly textAlign: readonly ["left", "center", "right", "justify"];
|
|
3560
3554
|
readonly flexDirection: readonly ["row", "column"];
|
|
3561
3555
|
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
3562
3556
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
@@ -3591,59 +3585,47 @@ export declare const patterns: readonly [{
|
|
|
3591
3585
|
readonly left: "size";
|
|
3592
3586
|
readonly right: "size";
|
|
3593
3587
|
readonly zIndex: "number";
|
|
3588
|
+
readonly resizeMode: readonly ["cover", "contain", "stretch", "center"];
|
|
3594
3589
|
};
|
|
3595
|
-
readonly
|
|
3596
|
-
readonly count: "number";
|
|
3590
|
+
readonly src: "string";
|
|
3597
3591
|
};
|
|
3598
3592
|
readonly defaults: {
|
|
3599
3593
|
readonly style: {
|
|
3600
|
-
readonly
|
|
3601
|
-
readonly fontSize: "16@fs";
|
|
3602
|
-
readonly fontWeight: "400";
|
|
3594
|
+
readonly resizeMode: "contain";
|
|
3603
3595
|
};
|
|
3604
3596
|
};
|
|
3605
3597
|
};
|
|
3606
3598
|
readonly meta: {
|
|
3607
3599
|
readonly desiredParent: readonly ["all"];
|
|
3608
|
-
readonly label: "
|
|
3609
|
-
readonly description: "
|
|
3610
|
-
readonly
|
|
3611
|
-
readonly
|
|
3612
|
-
readonly label: "
|
|
3613
|
-
readonly description: "
|
|
3614
|
-
readonly category: "
|
|
3615
|
-
readonly specialCategory: null;
|
|
3600
|
+
readonly label: "Image";
|
|
3601
|
+
readonly description: "Shows an image or graphic.";
|
|
3602
|
+
readonly specialCategories: {
|
|
3603
|
+
readonly padding: {
|
|
3604
|
+
readonly label: "Padding";
|
|
3605
|
+
readonly description: "Uniform padding on all sides.";
|
|
3606
|
+
readonly category: "container";
|
|
3616
3607
|
readonly sort: 1;
|
|
3617
3608
|
};
|
|
3618
|
-
readonly
|
|
3619
|
-
readonly label: "
|
|
3620
|
-
readonly description: "
|
|
3621
|
-
readonly category: "
|
|
3622
|
-
readonly specialCategory: null;
|
|
3609
|
+
readonly margin: {
|
|
3610
|
+
readonly label: "Margin";
|
|
3611
|
+
readonly description: "Uniform margin on all sides.";
|
|
3612
|
+
readonly category: "container";
|
|
3623
3613
|
readonly sort: 2;
|
|
3624
|
-
readonly preferredScale: "s";
|
|
3625
3614
|
};
|
|
3626
|
-
readonly
|
|
3627
|
-
readonly label: "
|
|
3628
|
-
readonly description: "
|
|
3629
|
-
readonly category: "
|
|
3630
|
-
readonly specialCategory: null;
|
|
3615
|
+
readonly size: {
|
|
3616
|
+
readonly label: "Size";
|
|
3617
|
+
readonly description: "Fixed dimensions.";
|
|
3618
|
+
readonly category: "container";
|
|
3631
3619
|
readonly sort: 3;
|
|
3632
3620
|
};
|
|
3633
|
-
readonly
|
|
3634
|
-
readonly label: "
|
|
3635
|
-
readonly description: "
|
|
3636
|
-
readonly category: "
|
|
3637
|
-
readonly specialCategory: null;
|
|
3621
|
+
readonly offset: {
|
|
3622
|
+
readonly label: "Offset";
|
|
3623
|
+
readonly description: "Absolute positioning offsets.";
|
|
3624
|
+
readonly category: "container";
|
|
3638
3625
|
readonly sort: 4;
|
|
3639
3626
|
};
|
|
3640
|
-
|
|
3641
|
-
|
|
3642
|
-
readonly description: "Text alignment.";
|
|
3643
|
-
readonly category: "style";
|
|
3644
|
-
readonly specialCategory: null;
|
|
3645
|
-
readonly sort: 5;
|
|
3646
|
-
};
|
|
3627
|
+
};
|
|
3628
|
+
readonly styles: {
|
|
3647
3629
|
readonly backgroundColor: {
|
|
3648
3630
|
readonly label: "Background Color";
|
|
3649
3631
|
readonly description: "Background fill color.";
|
|
@@ -3659,22 +3641,15 @@ export declare const patterns: readonly [{
|
|
|
3659
3641
|
readonly sort: 21;
|
|
3660
3642
|
readonly preferredScale: "s";
|
|
3661
3643
|
};
|
|
3662
|
-
|
|
3663
|
-
|
|
3664
|
-
|
|
3665
|
-
readonly
|
|
3666
|
-
readonly description: "Automatically reduces font size to fit the available space.";
|
|
3667
|
-
readonly category: "other";
|
|
3668
|
-
readonly specialCategory: null;
|
|
3669
|
-
readonly sort: 1;
|
|
3670
|
-
};
|
|
3671
|
-
readonly showEllipsis: {
|
|
3672
|
-
readonly label: "Show Ellipsis";
|
|
3673
|
-
readonly description: "If text overflows, show ellipsis (…); applied as single-line truncation.";
|
|
3674
|
-
readonly category: "other";
|
|
3644
|
+
readonly resizeMode: {
|
|
3645
|
+
readonly label: "Resize Mode";
|
|
3646
|
+
readonly description: "How the image fits the frame.";
|
|
3647
|
+
readonly category: "style";
|
|
3675
3648
|
readonly specialCategory: null;
|
|
3676
|
-
readonly sort:
|
|
3649
|
+
readonly sort: 4;
|
|
3677
3650
|
};
|
|
3651
|
+
};
|
|
3652
|
+
readonly attributes: {
|
|
3678
3653
|
readonly scrollable: {
|
|
3679
3654
|
readonly label: "Scrollable";
|
|
3680
3655
|
readonly description: "Turns scroll interaction on.";
|
|
@@ -3931,60 +3906,34 @@ export declare const patterns: readonly [{
|
|
|
3931
3906
|
readonly specialCategory: null;
|
|
3932
3907
|
readonly sort: 26;
|
|
3933
3908
|
};
|
|
3934
|
-
readonly
|
|
3935
|
-
readonly label: "
|
|
3936
|
-
readonly description: "
|
|
3909
|
+
readonly src: {
|
|
3910
|
+
readonly label: "Src";
|
|
3911
|
+
readonly description: "Image source URL.";
|
|
3937
3912
|
readonly category: "other";
|
|
3938
3913
|
readonly specialCategory: null;
|
|
3939
3914
|
readonly sort: 1;
|
|
3940
3915
|
};
|
|
3941
3916
|
};
|
|
3942
|
-
readonly specialCategories: {
|
|
3943
|
-
readonly padding: {
|
|
3944
|
-
readonly label: "Padding";
|
|
3945
|
-
readonly description: "Uniform padding on all sides.";
|
|
3946
|
-
readonly category: "container";
|
|
3947
|
-
readonly sort: 1;
|
|
3948
|
-
};
|
|
3949
|
-
readonly margin: {
|
|
3950
|
-
readonly label: "Margin";
|
|
3951
|
-
readonly description: "Uniform margin on all sides.";
|
|
3952
|
-
readonly category: "container";
|
|
3953
|
-
readonly sort: 2;
|
|
3954
|
-
};
|
|
3955
|
-
readonly size: {
|
|
3956
|
-
readonly label: "Size";
|
|
3957
|
-
readonly description: "Fixed dimensions.";
|
|
3958
|
-
readonly category: "container";
|
|
3959
|
-
readonly sort: 3;
|
|
3960
|
-
};
|
|
3961
|
-
readonly offset: {
|
|
3962
|
-
readonly label: "Offset";
|
|
3963
|
-
readonly description: "Absolute positioning offsets.";
|
|
3964
|
-
readonly category: "container";
|
|
3965
|
-
readonly sort: 4;
|
|
3966
|
-
};
|
|
3967
|
-
};
|
|
3968
3917
|
};
|
|
3969
3918
|
readonly defaults: {
|
|
3970
3919
|
readonly style: {
|
|
3971
|
-
readonly color: "THEME_COLORS.TEXT";
|
|
3972
|
-
readonly fontSize: "16@fs";
|
|
3973
|
-
readonly fontWeight: "400";
|
|
3974
3920
|
readonly flexDirection: "column";
|
|
3975
3921
|
readonly position: "relative";
|
|
3976
3922
|
readonly zIndex: 1;
|
|
3977
3923
|
readonly alignSelf: "flex-start";
|
|
3978
3924
|
readonly flexGrow: 0;
|
|
3979
3925
|
readonly flexShrink: 0;
|
|
3926
|
+
readonly resizeMode: "contain";
|
|
3980
3927
|
};
|
|
3981
3928
|
};
|
|
3982
3929
|
readonly types: {};
|
|
3983
3930
|
}, {
|
|
3984
3931
|
readonly schemaVersion: 2;
|
|
3985
3932
|
readonly pattern: {
|
|
3986
|
-
readonly type: "
|
|
3987
|
-
readonly
|
|
3933
|
+
readonly type: "Main";
|
|
3934
|
+
readonly title: "title";
|
|
3935
|
+
readonly description: "description";
|
|
3936
|
+
readonly children: "node";
|
|
3988
3937
|
readonly attributes: {
|
|
3989
3938
|
readonly scrollable: "boolean";
|
|
3990
3939
|
readonly style: {
|
|
@@ -4022,20 +3971,14 @@ export declare const patterns: readonly [{
|
|
|
4022
3971
|
readonly left: "size";
|
|
4023
3972
|
readonly right: "size";
|
|
4024
3973
|
readonly zIndex: "number";
|
|
4025
|
-
readonly resizeMode: readonly ["cover", "contain", "stretch", "center"];
|
|
4026
3974
|
};
|
|
4027
|
-
readonly
|
|
4028
|
-
readonly description: "description";
|
|
4029
|
-
readonly src: "string";
|
|
4030
|
-
};
|
|
4031
|
-
readonly defaults: {
|
|
4032
|
-
readonly resizeMode: "contain";
|
|
3975
|
+
readonly useSafeAreaView: "boolean";
|
|
4033
3976
|
};
|
|
4034
3977
|
};
|
|
4035
3978
|
readonly meta: {
|
|
4036
|
-
readonly desiredParent: readonly ["
|
|
4037
|
-
readonly label: "
|
|
4038
|
-
readonly description: "
|
|
3979
|
+
readonly desiredParent: readonly ["root"];
|
|
3980
|
+
readonly label: "Main";
|
|
3981
|
+
readonly description: "Top-level screen wrapper (safe area, base layout).";
|
|
4039
3982
|
readonly specialCategories: {
|
|
4040
3983
|
readonly padding: {
|
|
4041
3984
|
readonly label: "Padding";
|
|
@@ -4078,13 +4021,6 @@ export declare const patterns: readonly [{
|
|
|
4078
4021
|
readonly sort: 21;
|
|
4079
4022
|
readonly preferredScale: "s";
|
|
4080
4023
|
};
|
|
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
|
-
};
|
|
4088
4024
|
};
|
|
4089
4025
|
readonly attributes: {
|
|
4090
4026
|
readonly scrollable: {
|
|
@@ -4343,17 +4279,18 @@ export declare const patterns: readonly [{
|
|
|
4343
4279
|
readonly specialCategory: null;
|
|
4344
4280
|
readonly sort: 26;
|
|
4345
4281
|
};
|
|
4346
|
-
readonly
|
|
4347
|
-
readonly label: "
|
|
4348
|
-
readonly description: "
|
|
4349
|
-
readonly category: "
|
|
4282
|
+
readonly useSafeAreaView: {
|
|
4283
|
+
readonly label: "Use Safe Area View";
|
|
4284
|
+
readonly description: "Wraps content with a safe-area-aware container (when supported by the target).";
|
|
4285
|
+
readonly category: "container";
|
|
4350
4286
|
readonly specialCategory: null;
|
|
4351
4287
|
readonly sort: 1;
|
|
4288
|
+
readonly forceVisible: true;
|
|
4352
4289
|
};
|
|
4353
4290
|
};
|
|
4291
|
+
readonly hideAllAttributes: true;
|
|
4354
4292
|
};
|
|
4355
4293
|
readonly defaults: {
|
|
4356
|
-
readonly resizeMode: "contain";
|
|
4357
4294
|
readonly style: {
|
|
4358
4295
|
readonly flexDirection: "column";
|
|
4359
4296
|
readonly position: "relative";
|
|
@@ -4361,14 +4298,20 @@ export declare const patterns: readonly [{
|
|
|
4361
4298
|
readonly alignSelf: "flex-start";
|
|
4362
4299
|
readonly flexGrow: 0;
|
|
4363
4300
|
readonly flexShrink: 0;
|
|
4301
|
+
readonly width: "100%";
|
|
4302
|
+
readonly height: "100%";
|
|
4303
|
+
readonly flex: 1;
|
|
4364
4304
|
};
|
|
4305
|
+
readonly useSafeAreaView: true;
|
|
4365
4306
|
};
|
|
4366
4307
|
readonly types: {};
|
|
4367
4308
|
}, {
|
|
4368
4309
|
readonly schemaVersion: 2;
|
|
4369
4310
|
readonly pattern: {
|
|
4370
|
-
readonly type: "
|
|
4371
|
-
readonly
|
|
4311
|
+
readonly type: "NavigationBarColor";
|
|
4312
|
+
readonly title: "title";
|
|
4313
|
+
readonly description: "description";
|
|
4314
|
+
readonly children: "never";
|
|
4372
4315
|
readonly attributes: {
|
|
4373
4316
|
readonly scrollable: "boolean";
|
|
4374
4317
|
readonly style: {
|
|
@@ -4407,15 +4350,12 @@ export declare const patterns: readonly [{
|
|
|
4407
4350
|
readonly right: "size";
|
|
4408
4351
|
readonly zIndex: "number";
|
|
4409
4352
|
};
|
|
4410
|
-
readonly title: "title";
|
|
4411
|
-
readonly description: "description";
|
|
4412
|
-
readonly useSafeAreaView: "boolean";
|
|
4413
4353
|
};
|
|
4414
4354
|
};
|
|
4415
4355
|
readonly meta: {
|
|
4416
|
-
readonly desiredParent: readonly ["
|
|
4417
|
-
readonly label: "
|
|
4418
|
-
readonly description: "
|
|
4356
|
+
readonly desiredParent: readonly ["all"];
|
|
4357
|
+
readonly label: "Navigation Bar Color";
|
|
4358
|
+
readonly description: "Sets the OS navigation bar background color.";
|
|
4419
4359
|
readonly specialCategories: {
|
|
4420
4360
|
readonly padding: {
|
|
4421
4361
|
readonly label: "Padding";
|
|
@@ -4445,10 +4385,10 @@ export declare const patterns: readonly [{
|
|
|
4445
4385
|
readonly styles: {
|
|
4446
4386
|
readonly backgroundColor: {
|
|
4447
4387
|
readonly label: "Background Color";
|
|
4448
|
-
readonly description: "
|
|
4388
|
+
readonly description: "Navigation bar background color.";
|
|
4449
4389
|
readonly category: "style";
|
|
4450
4390
|
readonly specialCategory: null;
|
|
4451
|
-
readonly sort:
|
|
4391
|
+
readonly sort: 1;
|
|
4452
4392
|
};
|
|
4453
4393
|
readonly borderRadius: {
|
|
4454
4394
|
readonly label: "Border Radius";
|
|
@@ -4716,16 +4656,7 @@ export declare const patterns: readonly [{
|
|
|
4716
4656
|
readonly specialCategory: null;
|
|
4717
4657
|
readonly sort: 26;
|
|
4718
4658
|
};
|
|
4719
|
-
readonly useSafeAreaView: {
|
|
4720
|
-
readonly label: "Use Safe Area View";
|
|
4721
|
-
readonly description: "Wraps content with a safe-area-aware container (when supported by the target).";
|
|
4722
|
-
readonly category: "container";
|
|
4723
|
-
readonly specialCategory: null;
|
|
4724
|
-
readonly sort: 1;
|
|
4725
|
-
readonly forceVisible: true;
|
|
4726
|
-
};
|
|
4727
4659
|
};
|
|
4728
|
-
readonly hideAllAttributes: true;
|
|
4729
4660
|
};
|
|
4730
4661
|
readonly defaults: {
|
|
4731
4662
|
readonly style: {
|
|
@@ -4735,18 +4666,17 @@ export declare const patterns: readonly [{
|
|
|
4735
4666
|
readonly alignSelf: "flex-start";
|
|
4736
4667
|
readonly flexGrow: 0;
|
|
4737
4668
|
readonly flexShrink: 0;
|
|
4738
|
-
readonly
|
|
4739
|
-
readonly height: "100%";
|
|
4740
|
-
readonly flex: 1;
|
|
4669
|
+
readonly backgroundColor: "THEME_COLORS.BACKGROUND";
|
|
4741
4670
|
};
|
|
4742
|
-
readonly useSafeAreaView: true;
|
|
4743
4671
|
};
|
|
4744
4672
|
readonly types: {};
|
|
4745
4673
|
}, {
|
|
4746
4674
|
readonly schemaVersion: 2;
|
|
4747
4675
|
readonly pattern: {
|
|
4748
|
-
readonly type: "
|
|
4749
|
-
readonly
|
|
4676
|
+
readonly type: "Onboard";
|
|
4677
|
+
readonly title: "title";
|
|
4678
|
+
readonly description: "description";
|
|
4679
|
+
readonly children: "node";
|
|
4750
4680
|
readonly attributes: {
|
|
4751
4681
|
readonly scrollable: "boolean";
|
|
4752
4682
|
readonly style: {
|
|
@@ -4785,14 +4715,12 @@ export declare const patterns: readonly [{
|
|
|
4785
4715
|
readonly right: "size";
|
|
4786
4716
|
readonly zIndex: "number";
|
|
4787
4717
|
};
|
|
4788
|
-
readonly title: "title";
|
|
4789
|
-
readonly description: "description";
|
|
4790
4718
|
};
|
|
4791
4719
|
};
|
|
4792
4720
|
readonly meta: {
|
|
4793
|
-
readonly desiredParent: readonly ["
|
|
4794
|
-
readonly label: "
|
|
4795
|
-
readonly description: "
|
|
4721
|
+
readonly desiredParent: readonly ["=OnboardProvider"];
|
|
4722
|
+
readonly label: "Onboard";
|
|
4723
|
+
readonly description: "Wraps the onboarding flow.";
|
|
4796
4724
|
readonly specialCategories: {
|
|
4797
4725
|
readonly padding: {
|
|
4798
4726
|
readonly label: "Padding";
|
|
@@ -4822,10 +4750,10 @@ export declare const patterns: readonly [{
|
|
|
4822
4750
|
readonly styles: {
|
|
4823
4751
|
readonly backgroundColor: {
|
|
4824
4752
|
readonly label: "Background Color";
|
|
4825
|
-
readonly description: "
|
|
4753
|
+
readonly description: "Background fill color.";
|
|
4826
4754
|
readonly category: "style";
|
|
4827
4755
|
readonly specialCategory: null;
|
|
4828
|
-
readonly sort:
|
|
4756
|
+
readonly sort: 20;
|
|
4829
4757
|
};
|
|
4830
4758
|
readonly borderRadius: {
|
|
4831
4759
|
readonly label: "Border Radius";
|
|
@@ -5094,24 +5022,26 @@ export declare const patterns: readonly [{
|
|
|
5094
5022
|
readonly sort: 26;
|
|
5095
5023
|
};
|
|
5096
5024
|
};
|
|
5025
|
+
readonly desiredChildren: readonly ["=OnboardItem"];
|
|
5097
5026
|
};
|
|
5098
5027
|
readonly defaults: {
|
|
5099
5028
|
readonly style: {
|
|
5100
|
-
readonly flexDirection: "
|
|
5029
|
+
readonly flexDirection: "row";
|
|
5101
5030
|
readonly position: "relative";
|
|
5102
5031
|
readonly zIndex: 1;
|
|
5103
5032
|
readonly alignSelf: "flex-start";
|
|
5104
5033
|
readonly flexGrow: 0;
|
|
5105
5034
|
readonly flexShrink: 0;
|
|
5106
|
-
readonly backgroundColor: "THEME_COLORS.BACKGROUND";
|
|
5107
5035
|
};
|
|
5108
5036
|
};
|
|
5109
5037
|
readonly types: {};
|
|
5110
5038
|
}, {
|
|
5111
5039
|
readonly schemaVersion: 2;
|
|
5112
5040
|
readonly pattern: {
|
|
5113
|
-
readonly type: "
|
|
5114
|
-
readonly
|
|
5041
|
+
readonly type: "OnboardButton";
|
|
5042
|
+
readonly title: "title";
|
|
5043
|
+
readonly description: "description";
|
|
5044
|
+
readonly children: "never";
|
|
5115
5045
|
readonly attributes: {
|
|
5116
5046
|
readonly scrollable: "boolean";
|
|
5117
5047
|
readonly style: {
|
|
@@ -5150,14 +5080,25 @@ export declare const patterns: readonly [{
|
|
|
5150
5080
|
readonly right: "size";
|
|
5151
5081
|
readonly zIndex: "number";
|
|
5152
5082
|
};
|
|
5153
|
-
readonly
|
|
5154
|
-
readonly
|
|
5083
|
+
readonly labelKey: "string";
|
|
5084
|
+
readonly button_text_color: "color";
|
|
5085
|
+
readonly animation: readonly ["simple-animation", "line-animation", "blur", "blur-animation", "blur-line-animation"];
|
|
5086
|
+
readonly animation_color: "color";
|
|
5087
|
+
readonly button_background_color: "color";
|
|
5088
|
+
readonly flex: "number";
|
|
5089
|
+
readonly events: "EventObject[]";
|
|
5090
|
+
};
|
|
5091
|
+
readonly defaults: {
|
|
5092
|
+
readonly style: {
|
|
5093
|
+
readonly height: "40@vs";
|
|
5094
|
+
readonly borderRadius: "12@s";
|
|
5095
|
+
};
|
|
5155
5096
|
};
|
|
5156
5097
|
};
|
|
5157
5098
|
readonly meta: {
|
|
5158
|
-
readonly desiredParent: readonly ["=
|
|
5159
|
-
readonly label: "Onboard";
|
|
5160
|
-
readonly description: "
|
|
5099
|
+
readonly desiredParent: readonly ["=OnboardButtons"];
|
|
5100
|
+
readonly label: "Onboard Button";
|
|
5101
|
+
readonly description: "Single action button for onboarding.";
|
|
5161
5102
|
readonly specialCategories: {
|
|
5162
5103
|
readonly padding: {
|
|
5163
5104
|
readonly label: "Padding";
|
|
@@ -5200,6 +5141,34 @@ export declare const patterns: readonly [{
|
|
|
5200
5141
|
readonly sort: 21;
|
|
5201
5142
|
readonly preferredScale: "s";
|
|
5202
5143
|
};
|
|
5144
|
+
readonly button_text_color: {
|
|
5145
|
+
readonly label: "Button Text Color";
|
|
5146
|
+
readonly description: "Text color of the button.";
|
|
5147
|
+
readonly category: "style";
|
|
5148
|
+
readonly specialCategory: null;
|
|
5149
|
+
readonly sort: 2;
|
|
5150
|
+
};
|
|
5151
|
+
readonly animation: {
|
|
5152
|
+
readonly label: "Animation";
|
|
5153
|
+
readonly description: "Animation style for the button.";
|
|
5154
|
+
readonly category: "style";
|
|
5155
|
+
readonly specialCategory: null;
|
|
5156
|
+
readonly sort: 3;
|
|
5157
|
+
};
|
|
5158
|
+
readonly animation_color: {
|
|
5159
|
+
readonly label: "Animation Color";
|
|
5160
|
+
readonly description: "Color used by the animation.";
|
|
5161
|
+
readonly category: "style";
|
|
5162
|
+
readonly specialCategory: null;
|
|
5163
|
+
readonly sort: 4;
|
|
5164
|
+
};
|
|
5165
|
+
readonly button_background_color: {
|
|
5166
|
+
readonly label: "Button Background Color";
|
|
5167
|
+
readonly description: "Background color of the button.";
|
|
5168
|
+
readonly category: "style";
|
|
5169
|
+
readonly specialCategory: null;
|
|
5170
|
+
readonly sort: 5;
|
|
5171
|
+
};
|
|
5203
5172
|
};
|
|
5204
5173
|
readonly attributes: {
|
|
5205
5174
|
readonly scrollable: {
|
|
@@ -5407,9 +5376,9 @@ export declare const patterns: readonly [{
|
|
|
5407
5376
|
};
|
|
5408
5377
|
readonly flex: {
|
|
5409
5378
|
readonly label: "Flex";
|
|
5410
|
-
readonly description: "Flex grow
|
|
5379
|
+
readonly description: "Flex grow value in layout.";
|
|
5411
5380
|
readonly category: "container";
|
|
5412
|
-
readonly specialCategory:
|
|
5381
|
+
readonly specialCategory: null;
|
|
5413
5382
|
readonly sort: 6;
|
|
5414
5383
|
};
|
|
5415
5384
|
readonly position: {
|
|
@@ -5458,25 +5427,49 @@ export declare const patterns: readonly [{
|
|
|
5458
5427
|
readonly specialCategory: null;
|
|
5459
5428
|
readonly sort: 26;
|
|
5460
5429
|
};
|
|
5430
|
+
readonly labelKey: {
|
|
5431
|
+
readonly label: "Label Key";
|
|
5432
|
+
readonly description: "Localization key for the button text.";
|
|
5433
|
+
readonly category: "other";
|
|
5434
|
+
readonly specialCategory: null;
|
|
5435
|
+
readonly sort: 1;
|
|
5436
|
+
};
|
|
5437
|
+
readonly events: {
|
|
5438
|
+
readonly label: "Events";
|
|
5439
|
+
readonly description: "List of events fired by the button.";
|
|
5440
|
+
readonly category: "other";
|
|
5441
|
+
readonly specialCategory: null;
|
|
5442
|
+
readonly sort: 7;
|
|
5443
|
+
};
|
|
5461
5444
|
};
|
|
5462
|
-
readonly desiredChildren: readonly ["=OnboardItem"];
|
|
5463
5445
|
};
|
|
5464
5446
|
readonly defaults: {
|
|
5465
5447
|
readonly style: {
|
|
5466
|
-
readonly flexDirection: "
|
|
5448
|
+
readonly flexDirection: "column";
|
|
5467
5449
|
readonly position: "relative";
|
|
5468
5450
|
readonly zIndex: 1;
|
|
5469
5451
|
readonly alignSelf: "flex-start";
|
|
5470
5452
|
readonly flexGrow: 0;
|
|
5471
5453
|
readonly flexShrink: 0;
|
|
5454
|
+
readonly height: "40@vs";
|
|
5455
|
+
readonly borderRadius: "12@s";
|
|
5456
|
+
};
|
|
5457
|
+
};
|
|
5458
|
+
readonly types: {
|
|
5459
|
+
readonly EventObject: {
|
|
5460
|
+
readonly type: readonly ["Permission", "Navigate"];
|
|
5461
|
+
readonly permission: readonly ["att", "notification", "rating", "GDPR", "null"];
|
|
5462
|
+
readonly navigate_to: "string";
|
|
5463
|
+
readonly targetIndex: "number";
|
|
5472
5464
|
};
|
|
5473
5465
|
};
|
|
5474
|
-
readonly types: {};
|
|
5475
5466
|
}, {
|
|
5476
5467
|
readonly schemaVersion: 2;
|
|
5477
5468
|
readonly pattern: {
|
|
5478
|
-
readonly type: "
|
|
5479
|
-
readonly
|
|
5469
|
+
readonly type: "OnboardButtons";
|
|
5470
|
+
readonly title: "title";
|
|
5471
|
+
readonly description: "description";
|
|
5472
|
+
readonly children: "node";
|
|
5480
5473
|
readonly attributes: {
|
|
5481
5474
|
readonly scrollable: "boolean";
|
|
5482
5475
|
readonly style: {
|
|
@@ -5515,27 +5508,30 @@ export declare const patterns: readonly [{
|
|
|
5515
5508
|
readonly right: "size";
|
|
5516
5509
|
readonly zIndex: "number";
|
|
5517
5510
|
};
|
|
5518
|
-
readonly
|
|
5519
|
-
readonly
|
|
5520
|
-
readonly
|
|
5521
|
-
readonly
|
|
5522
|
-
readonly
|
|
5523
|
-
readonly
|
|
5524
|
-
readonly
|
|
5525
|
-
readonly flex: "number";
|
|
5526
|
-
readonly events: "EventObject[]";
|
|
5511
|
+
readonly buttonType: readonly ["previous_button", "next_button", "skip_button"];
|
|
5512
|
+
readonly skipNumber: "number";
|
|
5513
|
+
readonly buttons_direction: readonly ["row", "column"];
|
|
5514
|
+
readonly forIndex: "number";
|
|
5515
|
+
readonly seperatorColor: "color";
|
|
5516
|
+
readonly condition: readonly ["carousel-index"];
|
|
5517
|
+
readonly conditionVariable: "number";
|
|
5527
5518
|
};
|
|
5528
5519
|
readonly defaults: {
|
|
5529
5520
|
readonly style: {
|
|
5530
|
-
readonly
|
|
5531
|
-
readonly
|
|
5521
|
+
readonly display: "flex";
|
|
5522
|
+
readonly flexDirection: "row";
|
|
5523
|
+
readonly gap: 12;
|
|
5524
|
+
readonly alignItems: "center";
|
|
5525
|
+
readonly justifyContent: "center";
|
|
5526
|
+
readonly marginVertical: "12@vs";
|
|
5527
|
+
readonly marginHorizontal: "24@s";
|
|
5532
5528
|
};
|
|
5533
5529
|
};
|
|
5534
5530
|
};
|
|
5535
5531
|
readonly meta: {
|
|
5536
|
-
readonly desiredParent: readonly ["=
|
|
5537
|
-
readonly label: "Onboard
|
|
5538
|
-
readonly description: "
|
|
5532
|
+
readonly desiredParent: readonly ["=OnboardItem"];
|
|
5533
|
+
readonly label: "Onboard Buttons";
|
|
5534
|
+
readonly description: "Wrapper for onboarding button set.";
|
|
5539
5535
|
readonly specialCategories: {
|
|
5540
5536
|
readonly padding: {
|
|
5541
5537
|
readonly label: "Padding";
|
|
@@ -5578,30 +5574,9 @@ export declare const patterns: readonly [{
|
|
|
5578
5574
|
readonly sort: 21;
|
|
5579
5575
|
readonly preferredScale: "s";
|
|
5580
5576
|
};
|
|
5581
|
-
readonly
|
|
5582
|
-
readonly label: "
|
|
5583
|
-
readonly description: "
|
|
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.";
|
|
5577
|
+
readonly seperatorColor: {
|
|
5578
|
+
readonly label: "Seperator Color";
|
|
5579
|
+
readonly description: "Color of the divider line.";
|
|
5605
5580
|
readonly category: "style";
|
|
5606
5581
|
readonly specialCategory: null;
|
|
5607
5582
|
readonly sort: 5;
|
|
@@ -5813,9 +5788,9 @@ export declare const patterns: readonly [{
|
|
|
5813
5788
|
};
|
|
5814
5789
|
readonly flex: {
|
|
5815
5790
|
readonly label: "Flex";
|
|
5816
|
-
readonly description: "Flex grow
|
|
5791
|
+
readonly description: "Flex grow factor (e.g. 1 fills available space).";
|
|
5817
5792
|
readonly category: "container";
|
|
5818
|
-
readonly specialCategory:
|
|
5793
|
+
readonly specialCategory: "size";
|
|
5819
5794
|
readonly sort: 6;
|
|
5820
5795
|
};
|
|
5821
5796
|
readonly position: {
|
|
@@ -5864,16 +5839,44 @@ export declare const patterns: readonly [{
|
|
|
5864
5839
|
readonly specialCategory: null;
|
|
5865
5840
|
readonly sort: 26;
|
|
5866
5841
|
};
|
|
5867
|
-
readonly
|
|
5868
|
-
readonly label: "
|
|
5869
|
-
readonly description: "
|
|
5842
|
+
readonly buttonType: {
|
|
5843
|
+
readonly label: "Button Type";
|
|
5844
|
+
readonly description: "Which onboard button to show.";
|
|
5870
5845
|
readonly category: "other";
|
|
5871
5846
|
readonly specialCategory: null;
|
|
5872
5847
|
readonly sort: 1;
|
|
5873
5848
|
};
|
|
5874
|
-
readonly
|
|
5875
|
-
readonly label: "
|
|
5876
|
-
readonly description: "
|
|
5849
|
+
readonly skipNumber: {
|
|
5850
|
+
readonly label: "Skip Number";
|
|
5851
|
+
readonly description: "Slide index to skip to.";
|
|
5852
|
+
readonly category: "other";
|
|
5853
|
+
readonly specialCategory: null;
|
|
5854
|
+
readonly sort: 2;
|
|
5855
|
+
};
|
|
5856
|
+
readonly buttons_direction: {
|
|
5857
|
+
readonly label: "Buttons Direction";
|
|
5858
|
+
readonly description: "Direction to lay out buttons.";
|
|
5859
|
+
readonly category: "container";
|
|
5860
|
+
readonly specialCategory: null;
|
|
5861
|
+
readonly sort: 3;
|
|
5862
|
+
};
|
|
5863
|
+
readonly forIndex: {
|
|
5864
|
+
readonly label: "For Index";
|
|
5865
|
+
readonly description: "Show only for this slide index.";
|
|
5866
|
+
readonly category: "other";
|
|
5867
|
+
readonly specialCategory: null;
|
|
5868
|
+
readonly sort: 4;
|
|
5869
|
+
};
|
|
5870
|
+
readonly condition: {
|
|
5871
|
+
readonly label: "Condition";
|
|
5872
|
+
readonly description: "Built-in condition to check.";
|
|
5873
|
+
readonly category: "other";
|
|
5874
|
+
readonly specialCategory: null;
|
|
5875
|
+
readonly sort: 6;
|
|
5876
|
+
};
|
|
5877
|
+
readonly conditionVariable: {
|
|
5878
|
+
readonly label: "Condition Variable";
|
|
5879
|
+
readonly description: "Value used when checking the condition.";
|
|
5877
5880
|
readonly category: "other";
|
|
5878
5881
|
readonly specialCategory: null;
|
|
5879
5882
|
readonly sort: 7;
|
|
@@ -5882,29 +5885,28 @@ export declare const patterns: readonly [{
|
|
|
5882
5885
|
};
|
|
5883
5886
|
readonly defaults: {
|
|
5884
5887
|
readonly style: {
|
|
5885
|
-
readonly flexDirection: "
|
|
5888
|
+
readonly flexDirection: "row";
|
|
5886
5889
|
readonly position: "relative";
|
|
5887
5890
|
readonly zIndex: 1;
|
|
5888
5891
|
readonly alignSelf: "flex-start";
|
|
5889
5892
|
readonly flexGrow: 0;
|
|
5890
5893
|
readonly flexShrink: 0;
|
|
5891
|
-
readonly
|
|
5892
|
-
readonly
|
|
5893
|
-
|
|
5894
|
-
|
|
5895
|
-
|
|
5896
|
-
|
|
5897
|
-
readonly type: readonly ["Permission", "Navigate"];
|
|
5898
|
-
readonly permission: readonly ["att", "notification", "rating", "GDPR", "null"];
|
|
5899
|
-
readonly navigate_to: "string";
|
|
5900
|
-
readonly targetIndex: "number";
|
|
5894
|
+
readonly display: "flex";
|
|
5895
|
+
readonly gap: 12;
|
|
5896
|
+
readonly alignItems: "center";
|
|
5897
|
+
readonly justifyContent: "center";
|
|
5898
|
+
readonly marginVertical: "12@vs";
|
|
5899
|
+
readonly marginHorizontal: "24@s";
|
|
5901
5900
|
};
|
|
5902
5901
|
};
|
|
5902
|
+
readonly types: {};
|
|
5903
5903
|
}, {
|
|
5904
5904
|
readonly schemaVersion: 2;
|
|
5905
5905
|
readonly pattern: {
|
|
5906
|
-
readonly type: "
|
|
5907
|
-
readonly
|
|
5906
|
+
readonly type: "OnboardDot";
|
|
5907
|
+
readonly title: "title";
|
|
5908
|
+
readonly description: "description";
|
|
5909
|
+
readonly children: "never";
|
|
5908
5910
|
readonly attributes: {
|
|
5909
5911
|
readonly scrollable: "boolean";
|
|
5910
5912
|
readonly style: {
|
|
@@ -5943,32 +5945,20 @@ export declare const patterns: readonly [{
|
|
|
5943
5945
|
readonly right: "size";
|
|
5944
5946
|
readonly zIndex: "number";
|
|
5945
5947
|
};
|
|
5946
|
-
readonly
|
|
5947
|
-
readonly
|
|
5948
|
-
readonly
|
|
5949
|
-
readonly
|
|
5950
|
-
readonly
|
|
5951
|
-
readonly
|
|
5952
|
-
readonly
|
|
5953
|
-
readonly
|
|
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
|
-
};
|
|
5948
|
+
readonly dotType: readonly ["expanding_dot", "normal_dot", "scaling_dot", "sliding_border", "sliding_dot", "liquid_like"];
|
|
5949
|
+
readonly dot_thickness: "size";
|
|
5950
|
+
readonly inactive_dot_opacity: "number";
|
|
5951
|
+
readonly inactive_dot_color: "color";
|
|
5952
|
+
readonly active_dot_color: "color";
|
|
5953
|
+
readonly flexDirection: "never";
|
|
5954
|
+
readonly alignItems: "never";
|
|
5955
|
+
readonly justifyContent: "never";
|
|
5966
5956
|
};
|
|
5967
5957
|
};
|
|
5968
5958
|
readonly meta: {
|
|
5969
|
-
readonly desiredParent: readonly ["
|
|
5970
|
-
readonly label: "Onboard
|
|
5971
|
-
readonly description: "
|
|
5959
|
+
readonly desiredParent: readonly [">OnboardProvider"];
|
|
5960
|
+
readonly label: "Onboard Dot";
|
|
5961
|
+
readonly description: "Renders onboarding progress dots.";
|
|
5972
5962
|
readonly specialCategories: {
|
|
5973
5963
|
readonly padding: {
|
|
5974
5964
|
readonly label: "Padding";
|
|
@@ -6011,9 +6001,37 @@ export declare const patterns: readonly [{
|
|
|
6011
6001
|
readonly sort: 21;
|
|
6012
6002
|
readonly preferredScale: "s";
|
|
6013
6003
|
};
|
|
6014
|
-
readonly
|
|
6015
|
-
readonly label: "
|
|
6016
|
-
readonly description: "
|
|
6004
|
+
readonly dotType: {
|
|
6005
|
+
readonly label: "Dot Type";
|
|
6006
|
+
readonly description: "Dot animation style.";
|
|
6007
|
+
readonly category: "style";
|
|
6008
|
+
readonly specialCategory: null;
|
|
6009
|
+
readonly sort: 1;
|
|
6010
|
+
};
|
|
6011
|
+
readonly inactive_dot_opacity: {
|
|
6012
|
+
readonly label: "Inactive Dot Opacity";
|
|
6013
|
+
readonly description: "Opacity for inactive dots.";
|
|
6014
|
+
readonly category: "style";
|
|
6015
|
+
readonly specialCategory: null;
|
|
6016
|
+
readonly sort: 3;
|
|
6017
|
+
};
|
|
6018
|
+
readonly inactive_dot_color: {
|
|
6019
|
+
readonly label: "Inactive Dot Color";
|
|
6020
|
+
readonly description: "Color of inactive dots.";
|
|
6021
|
+
readonly category: "style";
|
|
6022
|
+
readonly specialCategory: null;
|
|
6023
|
+
readonly sort: 4;
|
|
6024
|
+
};
|
|
6025
|
+
readonly dot_thickness: {
|
|
6026
|
+
readonly label: "Dot Thickness";
|
|
6027
|
+
readonly description: "Dot size/diameter.";
|
|
6028
|
+
readonly category: "style";
|
|
6029
|
+
readonly specialCategory: null;
|
|
6030
|
+
readonly sort: 2;
|
|
6031
|
+
};
|
|
6032
|
+
readonly active_dot_color: {
|
|
6033
|
+
readonly label: "Active Dot Color";
|
|
6034
|
+
readonly description: "Color of the active dot.";
|
|
6017
6035
|
readonly category: "style";
|
|
6018
6036
|
readonly specialCategory: null;
|
|
6019
6037
|
readonly sort: 5;
|
|
@@ -6276,48 +6294,6 @@ export declare const patterns: readonly [{
|
|
|
6276
6294
|
readonly specialCategory: null;
|
|
6277
6295
|
readonly sort: 26;
|
|
6278
6296
|
};
|
|
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
6297
|
};
|
|
6322
6298
|
};
|
|
6323
6299
|
readonly defaults: {
|
|
@@ -6328,23 +6304,32 @@ export declare const patterns: readonly [{
|
|
|
6328
6304
|
readonly alignSelf: "flex-start";
|
|
6329
6305
|
readonly flexGrow: 0;
|
|
6330
6306
|
readonly flexShrink: 0;
|
|
6331
|
-
readonly display: "flex";
|
|
6332
|
-
readonly gap: 12;
|
|
6333
6307
|
readonly alignItems: "center";
|
|
6334
6308
|
readonly justifyContent: "center";
|
|
6335
|
-
readonly
|
|
6336
|
-
readonly marginHorizontal: "24@s";
|
|
6309
|
+
readonly gap: "12@s";
|
|
6337
6310
|
};
|
|
6311
|
+
readonly dotType: "expanding_dot";
|
|
6312
|
+
readonly dot_thickness: 10;
|
|
6313
|
+
readonly inactive_dot_opacity: 0.3;
|
|
6314
|
+
readonly active_dot_color: "#007AFF";
|
|
6338
6315
|
};
|
|
6339
6316
|
readonly types: {};
|
|
6340
6317
|
}, {
|
|
6341
6318
|
readonly schemaVersion: 2;
|
|
6342
6319
|
readonly pattern: {
|
|
6343
|
-
readonly type: "
|
|
6344
|
-
readonly
|
|
6320
|
+
readonly type: "OnboardFooter";
|
|
6321
|
+
readonly title: "title";
|
|
6322
|
+
readonly description: "description";
|
|
6323
|
+
readonly children: "node";
|
|
6345
6324
|
readonly attributes: {
|
|
6346
|
-
readonly
|
|
6325
|
+
readonly adjustsFontSizeToFit: "boolean";
|
|
6326
|
+
readonly showEllipsis: "boolean";
|
|
6347
6327
|
readonly style: {
|
|
6328
|
+
readonly color: "color";
|
|
6329
|
+
readonly fontSize: "size";
|
|
6330
|
+
readonly fontFamily: "fontFamily";
|
|
6331
|
+
readonly fontWeight: "fontWeight";
|
|
6332
|
+
readonly textAlign: readonly ["left", "center", "right", "justify"];
|
|
6348
6333
|
readonly flexDirection: readonly ["row", "column"];
|
|
6349
6334
|
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
6350
6335
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
@@ -6380,934 +6365,63 @@ export declare const patterns: readonly [{
|
|
|
6380
6365
|
readonly right: "size";
|
|
6381
6366
|
readonly zIndex: "number";
|
|
6382
6367
|
};
|
|
6383
|
-
readonly
|
|
6384
|
-
readonly
|
|
6385
|
-
readonly
|
|
6386
|
-
readonly
|
|
6387
|
-
readonly
|
|
6388
|
-
readonly
|
|
6389
|
-
readonly
|
|
6390
|
-
readonly
|
|
6391
|
-
readonly alignItems: "never";
|
|
6392
|
-
readonly justifyContent: "never";
|
|
6368
|
+
readonly scrollable: "boolean";
|
|
6369
|
+
readonly textLocalizationKey: "string";
|
|
6370
|
+
readonly linkedWordFirstLocalizationKey: "string";
|
|
6371
|
+
readonly linkedWordFirstColor: "color";
|
|
6372
|
+
readonly linkedWordFirstPage: "string";
|
|
6373
|
+
readonly linkedWordSecondLocalizationKey: "string";
|
|
6374
|
+
readonly linkedWordSecondColor: "color";
|
|
6375
|
+
readonly linkedWordSecondPage: "string";
|
|
6393
6376
|
};
|
|
6394
|
-
|
|
6395
|
-
|
|
6396
|
-
|
|
6397
|
-
|
|
6398
|
-
|
|
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;
|
|
6377
|
+
readonly defaults: {
|
|
6378
|
+
readonly style: {
|
|
6379
|
+
readonly color: "THEME_COLORS.TEXT";
|
|
6380
|
+
readonly fontSize: "16@fs";
|
|
6381
|
+
readonly fontWeight: "400";
|
|
6423
6382
|
};
|
|
6424
6383
|
};
|
|
6384
|
+
};
|
|
6385
|
+
readonly meta: {
|
|
6386
|
+
readonly desiredParent: readonly [">OnboardItem"];
|
|
6387
|
+
readonly label: "Onboard Footer";
|
|
6388
|
+
readonly description: "Footer text with optional links.";
|
|
6425
6389
|
readonly styles: {
|
|
6426
|
-
readonly
|
|
6427
|
-
readonly label: "
|
|
6428
|
-
readonly description: "
|
|
6390
|
+
readonly color: {
|
|
6391
|
+
readonly label: "Color";
|
|
6392
|
+
readonly description: "Text color.";
|
|
6429
6393
|
readonly category: "style";
|
|
6430
6394
|
readonly specialCategory: null;
|
|
6431
|
-
readonly sort:
|
|
6395
|
+
readonly sort: 1;
|
|
6432
6396
|
};
|
|
6433
|
-
readonly
|
|
6434
|
-
readonly label: "
|
|
6435
|
-
readonly description: "
|
|
6397
|
+
readonly fontSize: {
|
|
6398
|
+
readonly label: "Font Size";
|
|
6399
|
+
readonly description: "Text size.";
|
|
6436
6400
|
readonly category: "style";
|
|
6437
6401
|
readonly specialCategory: null;
|
|
6438
|
-
readonly sort:
|
|
6402
|
+
readonly sort: 2;
|
|
6439
6403
|
readonly preferredScale: "s";
|
|
6440
6404
|
};
|
|
6441
|
-
readonly
|
|
6442
|
-
readonly label: "
|
|
6443
|
-
readonly description: "
|
|
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.";
|
|
6405
|
+
readonly fontFamily: {
|
|
6406
|
+
readonly label: "Font Family";
|
|
6407
|
+
readonly description: "Font family used for the text.";
|
|
6451
6408
|
readonly category: "style";
|
|
6452
6409
|
readonly specialCategory: null;
|
|
6453
6410
|
readonly sort: 3;
|
|
6454
6411
|
};
|
|
6455
|
-
readonly
|
|
6456
|
-
readonly label: "
|
|
6457
|
-
readonly description: "
|
|
6412
|
+
readonly fontWeight: {
|
|
6413
|
+
readonly label: "Font Weight";
|
|
6414
|
+
readonly description: "Text weight.";
|
|
6458
6415
|
readonly category: "style";
|
|
6459
6416
|
readonly specialCategory: null;
|
|
6460
6417
|
readonly sort: 4;
|
|
6461
6418
|
};
|
|
6462
|
-
readonly
|
|
6463
|
-
readonly label: "
|
|
6464
|
-
readonly description: "
|
|
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.";
|
|
6419
|
+
readonly textAlign: {
|
|
6420
|
+
readonly label: "Text Align";
|
|
6421
|
+
readonly description: "Text alignment.";
|
|
6472
6422
|
readonly category: "style";
|
|
6473
6423
|
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;
|
|
6869
|
-
};
|
|
6870
|
-
readonly borderRadius: {
|
|
6871
|
-
readonly label: "Border Radius";
|
|
6872
|
-
readonly description: "Corner rounding amount.";
|
|
6873
|
-
readonly category: "style";
|
|
6874
|
-
readonly specialCategory: null;
|
|
6875
|
-
readonly sort: 21;
|
|
6876
|
-
readonly preferredScale: "s";
|
|
6877
|
-
};
|
|
6878
|
-
readonly linkedWordFirstColor: {
|
|
6879
|
-
readonly label: "Linked Word First Color";
|
|
6880
|
-
readonly description: "Color of the first linked word.";
|
|
6881
|
-
readonly category: "style";
|
|
6882
|
-
readonly specialCategory: null;
|
|
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;
|
|
6891
|
-
};
|
|
6892
|
-
};
|
|
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
|
-
};
|
|
6908
|
-
readonly scrollable: {
|
|
6909
|
-
readonly label: "Scrollable";
|
|
6910
|
-
readonly description: "Turns scroll interaction on.";
|
|
6911
|
-
readonly category: "container";
|
|
6912
|
-
readonly specialCategory: null;
|
|
6913
|
-
readonly sort: -1;
|
|
6914
|
-
};
|
|
6915
|
-
readonly flexDirection: {
|
|
6916
|
-
readonly label: "Flex Direction";
|
|
6917
|
-
readonly description: "Sets row or column layout.";
|
|
6918
|
-
readonly category: "container";
|
|
6919
|
-
readonly specialCategory: null;
|
|
6920
|
-
readonly sort: 4;
|
|
6921
|
-
};
|
|
6922
|
-
readonly flexWrap: {
|
|
6923
|
-
readonly label: "Flex Wrap";
|
|
6924
|
-
readonly description: "Controls whether flex items wrap to multiple lines.";
|
|
6925
|
-
readonly category: "container";
|
|
6926
|
-
readonly specialCategory: null;
|
|
6927
|
-
readonly sort: 4.5;
|
|
6928
|
-
};
|
|
6929
|
-
readonly alignItems: {
|
|
6930
|
-
readonly label: "Align Items";
|
|
6931
|
-
readonly description: "Controls cross-axis alignment.";
|
|
6932
|
-
readonly category: "container";
|
|
6933
|
-
readonly specialCategory: null;
|
|
6934
|
-
readonly sort: 3;
|
|
6935
|
-
};
|
|
6936
|
-
readonly justifyContent: {
|
|
6937
|
-
readonly label: "Justify Content";
|
|
6938
|
-
readonly description: "Controls main-axis alignment.";
|
|
6939
|
-
readonly category: "container";
|
|
6940
|
-
readonly specialCategory: null;
|
|
6941
|
-
readonly sort: 5;
|
|
6942
|
-
};
|
|
6943
|
-
readonly gap: {
|
|
6944
|
-
readonly label: "Gap";
|
|
6945
|
-
readonly description: "Space between children.";
|
|
6946
|
-
readonly category: "container";
|
|
6947
|
-
readonly specialCategory: null;
|
|
6948
|
-
readonly sort: 10;
|
|
6949
|
-
readonly preferredScale: "s";
|
|
6950
|
-
};
|
|
6951
|
-
readonly padding: {
|
|
6952
|
-
readonly label: "Padding";
|
|
6953
|
-
readonly description: "Uniform padding on all sides.";
|
|
6954
|
-
readonly category: "container";
|
|
6955
|
-
readonly specialCategory: "padding";
|
|
6956
|
-
readonly sort: 6;
|
|
6957
|
-
readonly preferredScale: "s";
|
|
6958
|
-
};
|
|
6959
|
-
readonly paddingHorizontal: {
|
|
6960
|
-
readonly label: "Padding Horizontal";
|
|
6961
|
-
readonly description: "Left and right padding.";
|
|
6962
|
-
readonly category: "container";
|
|
6963
|
-
readonly specialCategory: "padding";
|
|
6964
|
-
readonly sort: 7;
|
|
6965
|
-
readonly preferredScale: "s";
|
|
6966
|
-
};
|
|
6967
|
-
readonly paddingVertical: {
|
|
6968
|
-
readonly label: "Padding Vertical";
|
|
6969
|
-
readonly description: "Top and bottom padding.";
|
|
6970
|
-
readonly category: "container";
|
|
6971
|
-
readonly specialCategory: "padding";
|
|
6972
|
-
readonly sort: 8;
|
|
6973
|
-
readonly preferredScale: "vs";
|
|
6974
|
-
};
|
|
6975
|
-
readonly paddingTop: {
|
|
6976
|
-
readonly label: "Padding Top";
|
|
6977
|
-
readonly description: "Top padding only.";
|
|
6978
|
-
readonly category: "container";
|
|
6979
|
-
readonly specialCategory: "padding";
|
|
6980
|
-
readonly sort: 9;
|
|
6981
|
-
readonly preferredScale: "vs";
|
|
6982
|
-
};
|
|
6983
|
-
readonly paddingBottom: {
|
|
6984
|
-
readonly label: "Padding Bottom";
|
|
6985
|
-
readonly description: "Bottom padding only.";
|
|
6986
|
-
readonly category: "container";
|
|
6987
|
-
readonly specialCategory: "padding";
|
|
6988
|
-
readonly sort: 10;
|
|
6989
|
-
readonly preferredScale: "vs";
|
|
6990
|
-
};
|
|
6991
|
-
readonly paddingLeft: {
|
|
6992
|
-
readonly label: "Padding Left";
|
|
6993
|
-
readonly description: "Left padding only.";
|
|
6994
|
-
readonly category: "container";
|
|
6995
|
-
readonly specialCategory: "padding";
|
|
6996
|
-
readonly sort: 11;
|
|
6997
|
-
readonly preferredScale: "s";
|
|
6998
|
-
};
|
|
6999
|
-
readonly paddingRight: {
|
|
7000
|
-
readonly label: "Padding Right";
|
|
7001
|
-
readonly description: "Right padding only.";
|
|
7002
|
-
readonly category: "container";
|
|
7003
|
-
readonly specialCategory: "padding";
|
|
7004
|
-
readonly sort: 12;
|
|
7005
|
-
readonly preferredScale: "s";
|
|
7006
|
-
};
|
|
7007
|
-
readonly margin: {
|
|
7008
|
-
readonly label: "Margin";
|
|
7009
|
-
readonly description: "Uniform margin on all sides.";
|
|
7010
|
-
readonly category: "container";
|
|
7011
|
-
readonly specialCategory: "margin";
|
|
7012
|
-
readonly sort: 13;
|
|
7013
|
-
readonly preferredScale: "s";
|
|
7014
|
-
};
|
|
7015
|
-
readonly marginHorizontal: {
|
|
7016
|
-
readonly label: "Margin Horizontal";
|
|
7017
|
-
readonly description: "Left and right margin.";
|
|
7018
|
-
readonly category: "container";
|
|
7019
|
-
readonly specialCategory: "margin";
|
|
7020
|
-
readonly sort: 14;
|
|
7021
|
-
readonly preferredScale: "s";
|
|
7022
|
-
};
|
|
7023
|
-
readonly marginVertical: {
|
|
7024
|
-
readonly label: "Margin Vertical";
|
|
7025
|
-
readonly description: "Top and bottom margin.";
|
|
7026
|
-
readonly category: "container";
|
|
7027
|
-
readonly specialCategory: "margin";
|
|
7028
|
-
readonly sort: 15;
|
|
7029
|
-
readonly preferredScale: "vs";
|
|
7030
|
-
};
|
|
7031
|
-
readonly marginTop: {
|
|
7032
|
-
readonly label: "Margin Top";
|
|
7033
|
-
readonly description: "Top margin only.";
|
|
7034
|
-
readonly category: "container";
|
|
7035
|
-
readonly specialCategory: "margin";
|
|
7036
|
-
readonly sort: 16;
|
|
7037
|
-
readonly preferredScale: "vs";
|
|
7038
|
-
};
|
|
7039
|
-
readonly marginBottom: {
|
|
7040
|
-
readonly label: "Margin Bottom";
|
|
7041
|
-
readonly description: "Bottom margin only.";
|
|
7042
|
-
readonly category: "container";
|
|
7043
|
-
readonly specialCategory: "margin";
|
|
7044
|
-
readonly sort: 17;
|
|
7045
|
-
readonly preferredScale: "vs";
|
|
7046
|
-
};
|
|
7047
|
-
readonly marginLeft: {
|
|
7048
|
-
readonly label: "Margin Left";
|
|
7049
|
-
readonly description: "Left margin only.";
|
|
7050
|
-
readonly category: "container";
|
|
7051
|
-
readonly specialCategory: "margin";
|
|
7052
|
-
readonly sort: 18;
|
|
7053
|
-
readonly preferredScale: "s";
|
|
7054
|
-
};
|
|
7055
|
-
readonly marginRight: {
|
|
7056
|
-
readonly label: "Margin Right";
|
|
7057
|
-
readonly description: "Right margin only.";
|
|
7058
|
-
readonly category: "container";
|
|
7059
|
-
readonly specialCategory: "margin";
|
|
7060
|
-
readonly sort: 19;
|
|
7061
|
-
readonly preferredScale: "s";
|
|
7062
|
-
};
|
|
7063
|
-
readonly width: {
|
|
7064
|
-
readonly label: "Width";
|
|
7065
|
-
readonly description: "Fixed width value.";
|
|
7066
|
-
readonly category: "container";
|
|
7067
|
-
readonly specialCategory: "size";
|
|
7068
|
-
readonly sort: 0;
|
|
7069
|
-
readonly preferredScale: "s";
|
|
7070
|
-
};
|
|
7071
|
-
readonly minWidth: {
|
|
7072
|
-
readonly label: "Min Width";
|
|
7073
|
-
readonly description: "Minimum width constraint.";
|
|
7074
|
-
readonly category: "container";
|
|
7075
|
-
readonly specialCategory: "size";
|
|
7076
|
-
readonly sort: 1;
|
|
7077
|
-
readonly preferredScale: "s";
|
|
7078
|
-
};
|
|
7079
|
-
readonly maxWidth: {
|
|
7080
|
-
readonly label: "Max Width";
|
|
7081
|
-
readonly description: "Maximum width constraint.";
|
|
7082
|
-
readonly category: "container";
|
|
7083
|
-
readonly specialCategory: "size";
|
|
7084
|
-
readonly sort: 2;
|
|
7085
|
-
readonly preferredScale: "s";
|
|
7086
|
-
};
|
|
7087
|
-
readonly height: {
|
|
7088
|
-
readonly label: "Height";
|
|
7089
|
-
readonly description: "Fixed height value.";
|
|
7090
|
-
readonly category: "container";
|
|
7091
|
-
readonly specialCategory: "size";
|
|
7092
|
-
readonly sort: 3;
|
|
7093
|
-
readonly preferredScale: "vs";
|
|
7094
|
-
};
|
|
7095
|
-
readonly minHeight: {
|
|
7096
|
-
readonly label: "Min Height";
|
|
7097
|
-
readonly description: "Minimum height constraint.";
|
|
7098
|
-
readonly category: "container";
|
|
7099
|
-
readonly specialCategory: "size";
|
|
7100
|
-
readonly sort: 4;
|
|
7101
|
-
readonly preferredScale: "vs";
|
|
7102
|
-
};
|
|
7103
|
-
readonly maxHeight: {
|
|
7104
|
-
readonly label: "Max Height";
|
|
7105
|
-
readonly description: "Maximum height constraint.";
|
|
7106
|
-
readonly category: "container";
|
|
7107
|
-
readonly specialCategory: "size";
|
|
7108
|
-
readonly sort: 5;
|
|
7109
|
-
readonly preferredScale: "vs";
|
|
7110
|
-
};
|
|
7111
|
-
readonly flex: {
|
|
7112
|
-
readonly label: "Flex";
|
|
7113
|
-
readonly description: "Flex grow factor (e.g. 1 fills available space).";
|
|
7114
|
-
readonly category: "container";
|
|
7115
|
-
readonly specialCategory: "size";
|
|
7116
|
-
readonly sort: 6;
|
|
7117
|
-
};
|
|
7118
|
-
readonly position: {
|
|
7119
|
-
readonly label: "Position";
|
|
7120
|
-
readonly description: "Sets layout positioning mode.";
|
|
7121
|
-
readonly category: "container";
|
|
7122
|
-
readonly specialCategory: null;
|
|
7123
|
-
readonly sort: 3;
|
|
7124
|
-
};
|
|
7125
|
-
readonly top: {
|
|
7126
|
-
readonly label: "Top";
|
|
7127
|
-
readonly description: "Offset from the top edge.";
|
|
7128
|
-
readonly category: "container";
|
|
7129
|
-
readonly specialCategory: "offset";
|
|
7130
|
-
readonly sort: 22;
|
|
7131
|
-
readonly preferredScale: "vs";
|
|
7132
|
-
};
|
|
7133
|
-
readonly bottom: {
|
|
7134
|
-
readonly label: "Bottom";
|
|
7135
|
-
readonly description: "Offset from the bottom edge.";
|
|
7136
|
-
readonly category: "container";
|
|
7137
|
-
readonly specialCategory: "offset";
|
|
7138
|
-
readonly sort: 23;
|
|
7139
|
-
readonly preferredScale: "vs";
|
|
7140
|
-
};
|
|
7141
|
-
readonly left: {
|
|
7142
|
-
readonly label: "Left";
|
|
7143
|
-
readonly description: "Offset from the left edge.";
|
|
7144
|
-
readonly category: "container";
|
|
7145
|
-
readonly specialCategory: "offset";
|
|
7146
|
-
readonly sort: 24;
|
|
7147
|
-
readonly preferredScale: "s";
|
|
7148
|
-
};
|
|
7149
|
-
readonly right: {
|
|
7150
|
-
readonly label: "Right";
|
|
7151
|
-
readonly description: "Offset from the right edge.";
|
|
7152
|
-
readonly category: "container";
|
|
7153
|
-
readonly specialCategory: "offset";
|
|
7154
|
-
readonly sort: 25;
|
|
7155
|
-
readonly preferredScale: "s";
|
|
7156
|
-
};
|
|
7157
|
-
readonly zIndex: {
|
|
7158
|
-
readonly label: "Z-Index";
|
|
7159
|
-
readonly description: "Controls stacking order.";
|
|
7160
|
-
readonly category: "container";
|
|
7161
|
-
readonly specialCategory: null;
|
|
7162
|
-
readonly sort: 26;
|
|
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
|
-
};
|
|
7225
|
-
};
|
|
7226
|
-
};
|
|
7227
|
-
readonly defaults: {
|
|
7228
|
-
readonly style: {
|
|
7229
|
-
readonly color: "THEME_COLORS.TEXT";
|
|
7230
|
-
readonly fontSize: "16@fs";
|
|
7231
|
-
readonly fontWeight: "400";
|
|
7232
|
-
readonly flexDirection: "row";
|
|
7233
|
-
readonly position: "relative";
|
|
7234
|
-
readonly zIndex: 1;
|
|
7235
|
-
readonly alignSelf: "flex-start";
|
|
7236
|
-
readonly flexGrow: 0;
|
|
7237
|
-
readonly flexShrink: 0;
|
|
7238
|
-
readonly flexWrap: "wrap";
|
|
7239
|
-
readonly alignItems: "center";
|
|
7240
|
-
readonly justifyContent: "center";
|
|
7241
|
-
readonly textAlign: "center";
|
|
7242
|
-
readonly paddingHorizontal: "24@s";
|
|
7243
|
-
};
|
|
7244
|
-
};
|
|
7245
|
-
readonly types: {};
|
|
7246
|
-
}, {
|
|
7247
|
-
readonly schemaVersion: 2;
|
|
7248
|
-
readonly pattern: {
|
|
7249
|
-
readonly type: "OnboardImage";
|
|
7250
|
-
readonly children: "node";
|
|
7251
|
-
readonly attributes: {
|
|
7252
|
-
readonly title: "title";
|
|
7253
|
-
readonly description: "description";
|
|
7254
|
-
readonly src: "string";
|
|
7255
|
-
readonly style: {
|
|
7256
|
-
readonly resizeMode: readonly ["cover", "contain", "stretch", "center"];
|
|
7257
|
-
readonly flexDirection: readonly ["row", "column"];
|
|
7258
|
-
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
7259
|
-
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
7260
|
-
readonly justifyContent: readonly ["flex-start", "center", "flex-end", "space-between", "space-around", "space-evenly"];
|
|
7261
|
-
readonly gap: "size";
|
|
7262
|
-
readonly padding: "size";
|
|
7263
|
-
readonly paddingHorizontal: "size";
|
|
7264
|
-
readonly paddingVertical: "size";
|
|
7265
|
-
readonly paddingTop: "size";
|
|
7266
|
-
readonly paddingBottom: "size";
|
|
7267
|
-
readonly paddingLeft: "size";
|
|
7268
|
-
readonly paddingRight: "size";
|
|
7269
|
-
readonly margin: "size";
|
|
7270
|
-
readonly marginHorizontal: "size";
|
|
7271
|
-
readonly marginVertical: "size";
|
|
7272
|
-
readonly marginTop: "size";
|
|
7273
|
-
readonly marginBottom: "size";
|
|
7274
|
-
readonly marginLeft: "size";
|
|
7275
|
-
readonly marginRight: "size";
|
|
7276
|
-
readonly backgroundColor: "color";
|
|
7277
|
-
readonly borderRadius: "size";
|
|
7278
|
-
readonly width: "size";
|
|
7279
|
-
readonly minWidth: "size";
|
|
7280
|
-
readonly maxWidth: "size";
|
|
7281
|
-
readonly height: "size";
|
|
7282
|
-
readonly minHeight: "size";
|
|
7283
|
-
readonly maxHeight: "size";
|
|
7284
|
-
readonly flex: "number";
|
|
7285
|
-
readonly position: readonly ["relative", "absolute"];
|
|
7286
|
-
readonly top: "size";
|
|
7287
|
-
readonly bottom: "size";
|
|
7288
|
-
readonly left: "size";
|
|
7289
|
-
readonly right: "size";
|
|
7290
|
-
readonly zIndex: "number";
|
|
7291
|
-
};
|
|
7292
|
-
readonly scrollable: "boolean";
|
|
7293
|
-
readonly video_url: "string";
|
|
7294
|
-
readonly lottie: "string";
|
|
7295
|
-
};
|
|
7296
|
-
readonly defaults: {
|
|
7297
|
-
readonly resizeMode: "contain";
|
|
7298
|
-
};
|
|
7299
|
-
};
|
|
7300
|
-
readonly meta: {
|
|
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;
|
|
6424
|
+
readonly sort: 5;
|
|
7311
6425
|
};
|
|
7312
6426
|
readonly backgroundColor: {
|
|
7313
6427
|
readonly label: "Background Color";
|
|
@@ -7324,15 +6438,36 @@ export declare const patterns: readonly [{
|
|
|
7324
6438
|
readonly sort: 21;
|
|
7325
6439
|
readonly preferredScale: "s";
|
|
7326
6440
|
};
|
|
6441
|
+
readonly linkedWordFirstColor: {
|
|
6442
|
+
readonly label: "Linked Word First Color";
|
|
6443
|
+
readonly description: "Color of the first linked word.";
|
|
6444
|
+
readonly category: "style";
|
|
6445
|
+
readonly specialCategory: null;
|
|
6446
|
+
readonly sort: 3;
|
|
6447
|
+
};
|
|
6448
|
+
readonly linkedWordSecondColor: {
|
|
6449
|
+
readonly label: "Linked Word Second Color";
|
|
6450
|
+
readonly description: "Color of the second linked word.";
|
|
6451
|
+
readonly category: "style";
|
|
6452
|
+
readonly specialCategory: null;
|
|
6453
|
+
readonly sort: 6;
|
|
6454
|
+
};
|
|
7327
6455
|
};
|
|
7328
6456
|
readonly attributes: {
|
|
7329
|
-
readonly
|
|
7330
|
-
readonly label: "
|
|
7331
|
-
readonly description: "
|
|
6457
|
+
readonly adjustsFontSizeToFit: {
|
|
6458
|
+
readonly label: "Adjust Font Size To Fit";
|
|
6459
|
+
readonly description: "Automatically reduces font size to fit the available space.";
|
|
7332
6460
|
readonly category: "other";
|
|
7333
6461
|
readonly specialCategory: null;
|
|
7334
6462
|
readonly sort: 1;
|
|
7335
6463
|
};
|
|
6464
|
+
readonly showEllipsis: {
|
|
6465
|
+
readonly label: "Show Ellipsis";
|
|
6466
|
+
readonly description: "If text overflows, show ellipsis (…); applied as single-line truncation.";
|
|
6467
|
+
readonly category: "other";
|
|
6468
|
+
readonly specialCategory: null;
|
|
6469
|
+
readonly sort: 2;
|
|
6470
|
+
};
|
|
7336
6471
|
readonly scrollable: {
|
|
7337
6472
|
readonly label: "Scrollable";
|
|
7338
6473
|
readonly description: "Turns scroll interaction on.";
|
|
@@ -7589,20 +6724,41 @@ export declare const patterns: readonly [{
|
|
|
7589
6724
|
readonly specialCategory: null;
|
|
7590
6725
|
readonly sort: 26;
|
|
7591
6726
|
};
|
|
7592
|
-
readonly
|
|
7593
|
-
readonly label: "
|
|
7594
|
-
readonly description: "
|
|
6727
|
+
readonly textLocalizationKey: {
|
|
6728
|
+
readonly label: "Text Localization Key";
|
|
6729
|
+
readonly description: "Localization key for the footer text.";
|
|
7595
6730
|
readonly category: "other";
|
|
7596
6731
|
readonly specialCategory: null;
|
|
7597
6732
|
readonly sort: 1;
|
|
7598
6733
|
};
|
|
7599
|
-
readonly
|
|
7600
|
-
readonly label: "
|
|
7601
|
-
readonly description: "
|
|
6734
|
+
readonly linkedWordFirstLocalizationKey: {
|
|
6735
|
+
readonly label: "Linked Word First Localization Key";
|
|
6736
|
+
readonly description: "Key for the first linked word.";
|
|
7602
6737
|
readonly category: "other";
|
|
7603
6738
|
readonly specialCategory: null;
|
|
7604
6739
|
readonly sort: 2;
|
|
7605
6740
|
};
|
|
6741
|
+
readonly linkedWordFirstPage: {
|
|
6742
|
+
readonly label: "Linked Word First Page";
|
|
6743
|
+
readonly description: "Page opened by the first link.";
|
|
6744
|
+
readonly category: "other";
|
|
6745
|
+
readonly specialCategory: null;
|
|
6746
|
+
readonly sort: 4;
|
|
6747
|
+
};
|
|
6748
|
+
readonly linkedWordSecondLocalizationKey: {
|
|
6749
|
+
readonly label: "Linked Word Second Localization Key";
|
|
6750
|
+
readonly description: "Key for the second linked word.";
|
|
6751
|
+
readonly category: "other";
|
|
6752
|
+
readonly specialCategory: null;
|
|
6753
|
+
readonly sort: 5;
|
|
6754
|
+
};
|
|
6755
|
+
readonly linkedWordSecondPage: {
|
|
6756
|
+
readonly label: "Linked Word Second Page";
|
|
6757
|
+
readonly description: "Page opened by the second link.";
|
|
6758
|
+
readonly category: "other";
|
|
6759
|
+
readonly specialCategory: null;
|
|
6760
|
+
readonly sort: 7;
|
|
6761
|
+
};
|
|
7606
6762
|
};
|
|
7607
6763
|
readonly specialCategories: {
|
|
7608
6764
|
readonly padding: {
|
|
@@ -7632,25 +6788,35 @@ export declare const patterns: readonly [{
|
|
|
7632
6788
|
};
|
|
7633
6789
|
};
|
|
7634
6790
|
readonly defaults: {
|
|
7635
|
-
readonly resizeMode: "contain";
|
|
7636
6791
|
readonly style: {
|
|
7637
|
-
readonly
|
|
6792
|
+
readonly color: "THEME_COLORS.TEXT";
|
|
6793
|
+
readonly fontSize: "16@fs";
|
|
6794
|
+
readonly fontWeight: "400";
|
|
6795
|
+
readonly flexDirection: "row";
|
|
7638
6796
|
readonly position: "relative";
|
|
7639
6797
|
readonly zIndex: 1;
|
|
7640
6798
|
readonly alignSelf: "flex-start";
|
|
7641
6799
|
readonly flexGrow: 0;
|
|
7642
6800
|
readonly flexShrink: 0;
|
|
6801
|
+
readonly flexWrap: "wrap";
|
|
6802
|
+
readonly alignItems: "center";
|
|
6803
|
+
readonly justifyContent: "center";
|
|
6804
|
+
readonly textAlign: "center";
|
|
6805
|
+
readonly paddingHorizontal: "24@s";
|
|
7643
6806
|
};
|
|
7644
6807
|
};
|
|
7645
6808
|
readonly types: {};
|
|
7646
6809
|
}, {
|
|
7647
6810
|
readonly schemaVersion: 2;
|
|
7648
6811
|
readonly pattern: {
|
|
7649
|
-
readonly type: "
|
|
6812
|
+
readonly type: "OnboardImage";
|
|
6813
|
+
readonly title: "title";
|
|
6814
|
+
readonly description: "description";
|
|
7650
6815
|
readonly children: "node";
|
|
7651
6816
|
readonly attributes: {
|
|
7652
|
-
readonly
|
|
6817
|
+
readonly src: "string";
|
|
7653
6818
|
readonly style: {
|
|
6819
|
+
readonly resizeMode: readonly ["cover", "contain", "stretch", "center"];
|
|
7654
6820
|
readonly flexDirection: readonly ["row", "column"];
|
|
7655
6821
|
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
7656
6822
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
@@ -7686,45 +6852,28 @@ export declare const patterns: readonly [{
|
|
|
7686
6852
|
readonly right: "size";
|
|
7687
6853
|
readonly zIndex: "number";
|
|
7688
6854
|
};
|
|
7689
|
-
readonly
|
|
7690
|
-
readonly
|
|
7691
|
-
readonly
|
|
7692
|
-
|
|
7693
|
-
|
|
7694
|
-
readonly
|
|
6855
|
+
readonly scrollable: "boolean";
|
|
6856
|
+
readonly video_url: "string";
|
|
6857
|
+
readonly lottie: "string";
|
|
6858
|
+
};
|
|
6859
|
+
readonly defaults: {
|
|
6860
|
+
readonly style: {
|
|
6861
|
+
readonly resizeMode: "contain";
|
|
6862
|
+
};
|
|
7695
6863
|
};
|
|
7696
6864
|
};
|
|
7697
6865
|
readonly meta: {
|
|
7698
|
-
readonly desiredParent: readonly ["
|
|
7699
|
-
readonly label: "Onboard
|
|
7700
|
-
readonly description: "
|
|
7701
|
-
readonly
|
|
7702
|
-
readonly
|
|
7703
|
-
readonly label: "
|
|
7704
|
-
readonly description: "
|
|
7705
|
-
readonly category: "
|
|
7706
|
-
readonly
|
|
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";
|
|
6866
|
+
readonly desiredParent: readonly [">OnboardProvider", ">OnboardItem", "!=Onboard"];
|
|
6867
|
+
readonly label: "Onboard Image";
|
|
6868
|
+
readonly description: "Onboarding hero image with media.";
|
|
6869
|
+
readonly styles: {
|
|
6870
|
+
readonly resizeMode: {
|
|
6871
|
+
readonly label: "Resize Mode";
|
|
6872
|
+
readonly description: "How the image fits the frame.";
|
|
6873
|
+
readonly category: "style";
|
|
6874
|
+
readonly specialCategory: null;
|
|
7724
6875
|
readonly sort: 4;
|
|
7725
6876
|
};
|
|
7726
|
-
};
|
|
7727
|
-
readonly styles: {
|
|
7728
6877
|
readonly backgroundColor: {
|
|
7729
6878
|
readonly label: "Background Color";
|
|
7730
6879
|
readonly description: "Background fill color.";
|
|
@@ -7742,6 +6891,13 @@ export declare const patterns: readonly [{
|
|
|
7742
6891
|
};
|
|
7743
6892
|
};
|
|
7744
6893
|
readonly attributes: {
|
|
6894
|
+
readonly src: {
|
|
6895
|
+
readonly label: "Src";
|
|
6896
|
+
readonly description: "Image source URL.";
|
|
6897
|
+
readonly category: "other";
|
|
6898
|
+
readonly specialCategory: null;
|
|
6899
|
+
readonly sort: 1;
|
|
6900
|
+
};
|
|
7745
6901
|
readonly scrollable: {
|
|
7746
6902
|
readonly label: "Scrollable";
|
|
7747
6903
|
readonly description: "Turns scroll interaction on.";
|
|
@@ -7751,10 +6907,10 @@ export declare const patterns: readonly [{
|
|
|
7751
6907
|
};
|
|
7752
6908
|
readonly flexDirection: {
|
|
7753
6909
|
readonly label: "Flex Direction";
|
|
7754
|
-
readonly description: "
|
|
6910
|
+
readonly description: "Sets row or column layout.";
|
|
7755
6911
|
readonly category: "container";
|
|
7756
6912
|
readonly specialCategory: null;
|
|
7757
|
-
readonly sort:
|
|
6913
|
+
readonly sort: 4;
|
|
7758
6914
|
};
|
|
7759
6915
|
readonly flexWrap: {
|
|
7760
6916
|
readonly label: "Flex Wrap";
|
|
@@ -7779,10 +6935,11 @@ export declare const patterns: readonly [{
|
|
|
7779
6935
|
};
|
|
7780
6936
|
readonly gap: {
|
|
7781
6937
|
readonly label: "Gap";
|
|
7782
|
-
readonly description: "Space between
|
|
6938
|
+
readonly description: "Space between children.";
|
|
7783
6939
|
readonly category: "container";
|
|
7784
6940
|
readonly specialCategory: null;
|
|
7785
|
-
readonly sort:
|
|
6941
|
+
readonly sort: 10;
|
|
6942
|
+
readonly preferredScale: "s";
|
|
7786
6943
|
};
|
|
7787
6944
|
readonly padding: {
|
|
7788
6945
|
readonly label: "Padding";
|
|
@@ -7797,7 +6954,8 @@ export declare const patterns: readonly [{
|
|
|
7797
6954
|
readonly description: "Left and right padding.";
|
|
7798
6955
|
readonly category: "container";
|
|
7799
6956
|
readonly specialCategory: "padding";
|
|
7800
|
-
readonly sort:
|
|
6957
|
+
readonly sort: 7;
|
|
6958
|
+
readonly preferredScale: "s";
|
|
7801
6959
|
};
|
|
7802
6960
|
readonly paddingVertical: {
|
|
7803
6961
|
readonly label: "Padding Vertical";
|
|
@@ -7996,33 +7154,66 @@ export declare const patterns: readonly [{
|
|
|
7996
7154
|
readonly specialCategory: null;
|
|
7997
7155
|
readonly sort: 26;
|
|
7998
7156
|
};
|
|
7999
|
-
readonly
|
|
8000
|
-
readonly label: "
|
|
8001
|
-
readonly description: "
|
|
8002
|
-
readonly category: "
|
|
7157
|
+
readonly video_url: {
|
|
7158
|
+
readonly label: "Video Url";
|
|
7159
|
+
readonly description: "URL for the onboarding video.";
|
|
7160
|
+
readonly category: "other";
|
|
7161
|
+
readonly specialCategory: null;
|
|
7162
|
+
readonly sort: 1;
|
|
7163
|
+
};
|
|
7164
|
+
readonly lottie: {
|
|
7165
|
+
readonly label: "Lottie";
|
|
7166
|
+
readonly description: "Path to the lottie animation.";
|
|
7167
|
+
readonly category: "other";
|
|
8003
7168
|
readonly specialCategory: null;
|
|
7169
|
+
readonly sort: 2;
|
|
7170
|
+
};
|
|
7171
|
+
};
|
|
7172
|
+
readonly specialCategories: {
|
|
7173
|
+
readonly padding: {
|
|
7174
|
+
readonly label: "Padding";
|
|
7175
|
+
readonly description: "Uniform padding on all sides.";
|
|
7176
|
+
readonly category: "container";
|
|
8004
7177
|
readonly sort: 1;
|
|
8005
7178
|
};
|
|
7179
|
+
readonly margin: {
|
|
7180
|
+
readonly label: "Margin";
|
|
7181
|
+
readonly description: "Uniform margin on all sides.";
|
|
7182
|
+
readonly category: "container";
|
|
7183
|
+
readonly sort: 2;
|
|
7184
|
+
};
|
|
7185
|
+
readonly size: {
|
|
7186
|
+
readonly label: "Size";
|
|
7187
|
+
readonly description: "Fixed dimensions.";
|
|
7188
|
+
readonly category: "container";
|
|
7189
|
+
readonly sort: 3;
|
|
7190
|
+
};
|
|
7191
|
+
readonly offset: {
|
|
7192
|
+
readonly label: "Offset";
|
|
7193
|
+
readonly description: "Absolute positioning offsets.";
|
|
7194
|
+
readonly category: "container";
|
|
7195
|
+
readonly sort: 4;
|
|
7196
|
+
};
|
|
8006
7197
|
};
|
|
8007
7198
|
};
|
|
8008
7199
|
readonly defaults: {
|
|
8009
7200
|
readonly style: {
|
|
7201
|
+
readonly resizeMode: "contain";
|
|
8010
7202
|
readonly flexDirection: "column";
|
|
8011
7203
|
readonly position: "relative";
|
|
8012
7204
|
readonly zIndex: 1;
|
|
8013
7205
|
readonly alignSelf: "flex-start";
|
|
8014
7206
|
readonly flexGrow: 0;
|
|
8015
7207
|
readonly flexShrink: 0;
|
|
8016
|
-
readonly gap: "16@vs";
|
|
8017
|
-
readonly paddingHorizontal: "24@s";
|
|
8018
7208
|
};
|
|
8019
|
-
readonly display: "flex";
|
|
8020
7209
|
};
|
|
8021
7210
|
readonly types: {};
|
|
8022
7211
|
}, {
|
|
8023
7212
|
readonly schemaVersion: 2;
|
|
8024
7213
|
readonly pattern: {
|
|
8025
|
-
readonly type: "
|
|
7214
|
+
readonly type: "OnboardItem";
|
|
7215
|
+
readonly title: "title";
|
|
7216
|
+
readonly description: "description";
|
|
8026
7217
|
readonly children: "node";
|
|
8027
7218
|
readonly attributes: {
|
|
8028
7219
|
readonly scrollable: "boolean";
|
|
@@ -8062,16 +7253,16 @@ export declare const patterns: readonly [{
|
|
|
8062
7253
|
readonly right: "size";
|
|
8063
7254
|
readonly zIndex: "number";
|
|
8064
7255
|
};
|
|
8065
|
-
readonly
|
|
8066
|
-
readonly
|
|
8067
|
-
readonly
|
|
8068
|
-
readonly
|
|
7256
|
+
readonly display: readonly ["flex", "block"];
|
|
7257
|
+
readonly gap: "size";
|
|
7258
|
+
readonly flexDirection: readonly ["row", "column"];
|
|
7259
|
+
readonly paddingHorizontal: "size";
|
|
8069
7260
|
};
|
|
8070
7261
|
};
|
|
8071
7262
|
readonly meta: {
|
|
8072
|
-
readonly desiredParent: readonly ["
|
|
8073
|
-
readonly label: "Onboard
|
|
8074
|
-
readonly description: "
|
|
7263
|
+
readonly desiredParent: readonly ["=Onboard"];
|
|
7264
|
+
readonly label: "Onboard Item";
|
|
7265
|
+
readonly description: "Single onboarding screen section.";
|
|
8075
7266
|
readonly specialCategories: {
|
|
8076
7267
|
readonly padding: {
|
|
8077
7268
|
readonly label: "Padding";
|
|
@@ -8125,10 +7316,10 @@ export declare const patterns: readonly [{
|
|
|
8125
7316
|
};
|
|
8126
7317
|
readonly flexDirection: {
|
|
8127
7318
|
readonly label: "Flex Direction";
|
|
8128
|
-
readonly description: "
|
|
7319
|
+
readonly description: "Order of child stacking.";
|
|
8129
7320
|
readonly category: "container";
|
|
8130
7321
|
readonly specialCategory: null;
|
|
8131
|
-
readonly sort:
|
|
7322
|
+
readonly sort: 3;
|
|
8132
7323
|
};
|
|
8133
7324
|
readonly flexWrap: {
|
|
8134
7325
|
readonly label: "Flex Wrap";
|
|
@@ -8153,11 +7344,10 @@ export declare const patterns: readonly [{
|
|
|
8153
7344
|
};
|
|
8154
7345
|
readonly gap: {
|
|
8155
7346
|
readonly label: "Gap";
|
|
8156
|
-
readonly description: "Space between
|
|
7347
|
+
readonly description: "Space between child blocks.";
|
|
8157
7348
|
readonly category: "container";
|
|
8158
7349
|
readonly specialCategory: null;
|
|
8159
|
-
readonly sort:
|
|
8160
|
-
readonly preferredScale: "s";
|
|
7350
|
+
readonly sort: 2;
|
|
8161
7351
|
};
|
|
8162
7352
|
readonly padding: {
|
|
8163
7353
|
readonly label: "Padding";
|
|
@@ -8172,8 +7362,7 @@ export declare const patterns: readonly [{
|
|
|
8172
7362
|
readonly description: "Left and right padding.";
|
|
8173
7363
|
readonly category: "container";
|
|
8174
7364
|
readonly specialCategory: "padding";
|
|
8175
|
-
readonly sort:
|
|
8176
|
-
readonly preferredScale: "s";
|
|
7365
|
+
readonly sort: 4;
|
|
8177
7366
|
};
|
|
8178
7367
|
readonly paddingVertical: {
|
|
8179
7368
|
readonly label: "Padding Vertical";
|
|
@@ -8185,31 +7374,35 @@ export declare const patterns: readonly [{
|
|
|
8185
7374
|
};
|
|
8186
7375
|
readonly paddingTop: {
|
|
8187
7376
|
readonly label: "Padding Top";
|
|
8188
|
-
readonly description: "Top padding
|
|
7377
|
+
readonly description: "Top padding only.";
|
|
8189
7378
|
readonly category: "container";
|
|
8190
7379
|
readonly specialCategory: "padding";
|
|
8191
|
-
readonly sort:
|
|
7380
|
+
readonly sort: 9;
|
|
7381
|
+
readonly preferredScale: "vs";
|
|
8192
7382
|
};
|
|
8193
7383
|
readonly paddingBottom: {
|
|
8194
7384
|
readonly label: "Padding Bottom";
|
|
8195
|
-
readonly description: "Bottom padding
|
|
7385
|
+
readonly description: "Bottom padding only.";
|
|
8196
7386
|
readonly category: "container";
|
|
8197
7387
|
readonly specialCategory: "padding";
|
|
8198
|
-
readonly sort:
|
|
7388
|
+
readonly sort: 10;
|
|
7389
|
+
readonly preferredScale: "vs";
|
|
8199
7390
|
};
|
|
8200
7391
|
readonly paddingLeft: {
|
|
8201
7392
|
readonly label: "Padding Left";
|
|
8202
|
-
readonly description: "Left padding
|
|
7393
|
+
readonly description: "Left padding only.";
|
|
8203
7394
|
readonly category: "container";
|
|
8204
7395
|
readonly specialCategory: "padding";
|
|
8205
|
-
readonly sort:
|
|
7396
|
+
readonly sort: 11;
|
|
7397
|
+
readonly preferredScale: "s";
|
|
8206
7398
|
};
|
|
8207
7399
|
readonly paddingRight: {
|
|
8208
7400
|
readonly label: "Padding Right";
|
|
8209
|
-
readonly description: "Right padding
|
|
7401
|
+
readonly description: "Right padding only.";
|
|
8210
7402
|
readonly category: "container";
|
|
8211
7403
|
readonly specialCategory: "padding";
|
|
8212
|
-
readonly sort:
|
|
7404
|
+
readonly sort: 12;
|
|
7405
|
+
readonly preferredScale: "s";
|
|
8213
7406
|
};
|
|
8214
7407
|
readonly margin: {
|
|
8215
7408
|
readonly label: "Margin";
|
|
@@ -8368,12 +7561,12 @@ export declare const patterns: readonly [{
|
|
|
8368
7561
|
readonly specialCategory: null;
|
|
8369
7562
|
readonly sort: 26;
|
|
8370
7563
|
};
|
|
8371
|
-
readonly
|
|
8372
|
-
readonly label: "
|
|
8373
|
-
readonly description: "Controls
|
|
8374
|
-
readonly category: "
|
|
7564
|
+
readonly display: {
|
|
7565
|
+
readonly label: "Display";
|
|
7566
|
+
readonly description: "Controls layout display mode.";
|
|
7567
|
+
readonly category: "container";
|
|
8375
7568
|
readonly specialCategory: null;
|
|
8376
|
-
readonly sort:
|
|
7569
|
+
readonly sort: 1;
|
|
8377
7570
|
};
|
|
8378
7571
|
};
|
|
8379
7572
|
};
|
|
@@ -8385,27 +7578,22 @@ export declare const patterns: readonly [{
|
|
|
8385
7578
|
readonly alignSelf: "flex-start";
|
|
8386
7579
|
readonly flexGrow: 0;
|
|
8387
7580
|
readonly flexShrink: 0;
|
|
8388
|
-
readonly
|
|
8389
|
-
readonly
|
|
7581
|
+
readonly gap: "16@vs";
|
|
7582
|
+
readonly paddingHorizontal: "24@s";
|
|
8390
7583
|
};
|
|
7584
|
+
readonly display: "flex";
|
|
8391
7585
|
};
|
|
8392
7586
|
readonly types: {};
|
|
8393
7587
|
}, {
|
|
8394
7588
|
readonly schemaVersion: 2;
|
|
8395
7589
|
readonly pattern: {
|
|
8396
|
-
readonly type: "
|
|
8397
|
-
readonly
|
|
7590
|
+
readonly type: "OnboardProvider";
|
|
7591
|
+
readonly title: "title";
|
|
7592
|
+
readonly description: "description";
|
|
7593
|
+
readonly children: "node";
|
|
8398
7594
|
readonly attributes: {
|
|
8399
|
-
readonly
|
|
8400
|
-
readonly description: "description";
|
|
8401
|
-
readonly adjustsFontSizeToFit: "boolean";
|
|
8402
|
-
readonly showEllipsis: "boolean";
|
|
7595
|
+
readonly scrollable: "boolean";
|
|
8403
7596
|
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"];
|
|
8409
7597
|
readonly flexDirection: readonly ["row", "column"];
|
|
8410
7598
|
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
8411
7599
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
@@ -8441,57 +7629,41 @@ export declare const patterns: readonly [{
|
|
|
8441
7629
|
readonly right: "size";
|
|
8442
7630
|
readonly zIndex: "number";
|
|
8443
7631
|
};
|
|
8444
|
-
readonly
|
|
8445
|
-
|
|
8446
|
-
readonly defaults: {
|
|
8447
|
-
readonly style: {
|
|
8448
|
-
readonly color: "THEME_COLORS.TEXT";
|
|
8449
|
-
readonly fontSize: "16@fs";
|
|
8450
|
-
readonly fontWeight: "400";
|
|
8451
|
-
};
|
|
7632
|
+
readonly theme: readonly ["light", "dark", "all"];
|
|
7633
|
+
readonly borderRadius: "never";
|
|
8452
7634
|
};
|
|
8453
7635
|
};
|
|
8454
7636
|
readonly meta: {
|
|
8455
|
-
readonly desiredParent: readonly ["
|
|
8456
|
-
readonly label: "Onboard
|
|
8457
|
-
readonly description: "
|
|
8458
|
-
readonly
|
|
8459
|
-
readonly
|
|
8460
|
-
readonly label: "
|
|
8461
|
-
readonly description: "
|
|
8462
|
-
readonly category: "
|
|
8463
|
-
readonly specialCategory: null;
|
|
7637
|
+
readonly desiredParent: readonly ["root"];
|
|
7638
|
+
readonly label: "Onboard Provider";
|
|
7639
|
+
readonly description: "Provides shared settings for onboarding.";
|
|
7640
|
+
readonly specialCategories: {
|
|
7641
|
+
readonly padding: {
|
|
7642
|
+
readonly label: "Padding";
|
|
7643
|
+
readonly description: "Uniform padding on all sides.";
|
|
7644
|
+
readonly category: "container";
|
|
8464
7645
|
readonly sort: 1;
|
|
8465
7646
|
};
|
|
8466
|
-
readonly
|
|
8467
|
-
readonly label: "
|
|
8468
|
-
readonly description: "
|
|
8469
|
-
readonly category: "
|
|
8470
|
-
readonly specialCategory: null;
|
|
7647
|
+
readonly margin: {
|
|
7648
|
+
readonly label: "Margin";
|
|
7649
|
+
readonly description: "Uniform margin on all sides.";
|
|
7650
|
+
readonly category: "container";
|
|
8471
7651
|
readonly sort: 2;
|
|
8472
|
-
readonly preferredScale: "s";
|
|
8473
7652
|
};
|
|
8474
|
-
readonly
|
|
8475
|
-
readonly label: "
|
|
8476
|
-
readonly description: "
|
|
8477
|
-
readonly category: "
|
|
8478
|
-
readonly specialCategory: null;
|
|
7653
|
+
readonly size: {
|
|
7654
|
+
readonly label: "Size";
|
|
7655
|
+
readonly description: "Fixed dimensions.";
|
|
7656
|
+
readonly category: "container";
|
|
8479
7657
|
readonly sort: 3;
|
|
8480
7658
|
};
|
|
8481
|
-
readonly
|
|
8482
|
-
readonly label: "
|
|
8483
|
-
readonly description: "
|
|
8484
|
-
readonly category: "
|
|
8485
|
-
readonly specialCategory: null;
|
|
7659
|
+
readonly offset: {
|
|
7660
|
+
readonly label: "Offset";
|
|
7661
|
+
readonly description: "Absolute positioning offsets.";
|
|
7662
|
+
readonly category: "container";
|
|
8486
7663
|
readonly sort: 4;
|
|
8487
7664
|
};
|
|
8488
|
-
|
|
8489
|
-
|
|
8490
|
-
readonly description: "Text alignment.";
|
|
8491
|
-
readonly category: "style";
|
|
8492
|
-
readonly specialCategory: null;
|
|
8493
|
-
readonly sort: 5;
|
|
8494
|
-
};
|
|
7665
|
+
};
|
|
7666
|
+
readonly styles: {
|
|
8495
7667
|
readonly backgroundColor: {
|
|
8496
7668
|
readonly label: "Background Color";
|
|
8497
7669
|
readonly description: "Background fill color.";
|
|
@@ -8509,20 +7681,6 @@ export declare const patterns: readonly [{
|
|
|
8509
7681
|
};
|
|
8510
7682
|
};
|
|
8511
7683
|
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
|
-
};
|
|
8526
7684
|
readonly scrollable: {
|
|
8527
7685
|
readonly label: "Scrollable";
|
|
8528
7686
|
readonly description: "Turns scroll interaction on.";
|
|
@@ -8592,35 +7750,31 @@ export declare const patterns: readonly [{
|
|
|
8592
7750
|
};
|
|
8593
7751
|
readonly paddingTop: {
|
|
8594
7752
|
readonly label: "Padding Top";
|
|
8595
|
-
readonly description: "Top padding
|
|
7753
|
+
readonly description: "Top padding for the provider.";
|
|
8596
7754
|
readonly category: "container";
|
|
8597
7755
|
readonly specialCategory: "padding";
|
|
8598
|
-
readonly sort:
|
|
8599
|
-
readonly preferredScale: "vs";
|
|
7756
|
+
readonly sort: 1;
|
|
8600
7757
|
};
|
|
8601
7758
|
readonly paddingBottom: {
|
|
8602
7759
|
readonly label: "Padding Bottom";
|
|
8603
|
-
readonly description: "Bottom padding
|
|
7760
|
+
readonly description: "Bottom padding for the provider.";
|
|
8604
7761
|
readonly category: "container";
|
|
8605
7762
|
readonly specialCategory: "padding";
|
|
8606
|
-
readonly sort:
|
|
8607
|
-
readonly preferredScale: "vs";
|
|
7763
|
+
readonly sort: 3;
|
|
8608
7764
|
};
|
|
8609
7765
|
readonly paddingLeft: {
|
|
8610
7766
|
readonly label: "Padding Left";
|
|
8611
|
-
readonly description: "Left padding
|
|
7767
|
+
readonly description: "Left padding for the provider.";
|
|
8612
7768
|
readonly category: "container";
|
|
8613
7769
|
readonly specialCategory: "padding";
|
|
8614
|
-
readonly sort:
|
|
8615
|
-
readonly preferredScale: "s";
|
|
7770
|
+
readonly sort: 4;
|
|
8616
7771
|
};
|
|
8617
7772
|
readonly paddingRight: {
|
|
8618
7773
|
readonly label: "Padding Right";
|
|
8619
|
-
readonly description: "Right padding
|
|
7774
|
+
readonly description: "Right padding for the provider.";
|
|
8620
7775
|
readonly category: "container";
|
|
8621
7776
|
readonly specialCategory: "padding";
|
|
8622
|
-
readonly sort:
|
|
8623
|
-
readonly preferredScale: "s";
|
|
7777
|
+
readonly sort: 2;
|
|
8624
7778
|
};
|
|
8625
7779
|
readonly margin: {
|
|
8626
7780
|
readonly label: "Margin";
|
|
@@ -8779,56 +7933,36 @@ export declare const patterns: readonly [{
|
|
|
8779
7933
|
readonly specialCategory: null;
|
|
8780
7934
|
readonly sort: 26;
|
|
8781
7935
|
};
|
|
8782
|
-
|
|
8783
|
-
|
|
8784
|
-
|
|
8785
|
-
readonly
|
|
8786
|
-
readonly
|
|
8787
|
-
readonly
|
|
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;
|
|
7936
|
+
readonly theme: {
|
|
7937
|
+
readonly label: "Theme";
|
|
7938
|
+
readonly description: "Controls which app theme(s) this onboarding is intended for.";
|
|
7939
|
+
readonly category: "other";
|
|
7940
|
+
readonly specialCategory: null;
|
|
7941
|
+
readonly sort: -10;
|
|
8807
7942
|
};
|
|
8808
7943
|
};
|
|
8809
7944
|
};
|
|
8810
7945
|
readonly defaults: {
|
|
8811
7946
|
readonly style: {
|
|
8812
|
-
readonly color: "THEME_COLORS.TEXT";
|
|
8813
|
-
readonly fontSize: "14@fs";
|
|
8814
|
-
readonly fontWeight: "600";
|
|
8815
7947
|
readonly flexDirection: "column";
|
|
8816
7948
|
readonly position: "relative";
|
|
8817
7949
|
readonly zIndex: 1;
|
|
8818
7950
|
readonly alignSelf: "flex-start";
|
|
8819
7951
|
readonly flexGrow: 0;
|
|
8820
7952
|
readonly flexShrink: 0;
|
|
7953
|
+
readonly width: "100%";
|
|
7954
|
+
readonly height: "100%";
|
|
8821
7955
|
};
|
|
8822
7956
|
};
|
|
8823
7957
|
readonly types: {};
|
|
8824
7958
|
}, {
|
|
8825
7959
|
readonly schemaVersion: 2;
|
|
8826
7960
|
readonly pattern: {
|
|
8827
|
-
readonly type: "
|
|
7961
|
+
readonly type: "OnboardSubtitle";
|
|
7962
|
+
readonly title: "title";
|
|
7963
|
+
readonly description: "description";
|
|
8828
7964
|
readonly children: "string";
|
|
8829
7965
|
readonly attributes: {
|
|
8830
|
-
readonly title: "title";
|
|
8831
|
-
readonly description: "description";
|
|
8832
7966
|
readonly adjustsFontSizeToFit: "boolean";
|
|
8833
7967
|
readonly showEllipsis: "boolean";
|
|
8834
7968
|
readonly style: {
|
|
@@ -8883,9 +8017,9 @@ export declare const patterns: readonly [{
|
|
|
8883
8017
|
};
|
|
8884
8018
|
};
|
|
8885
8019
|
readonly meta: {
|
|
8886
|
-
readonly desiredParent: readonly [">
|
|
8887
|
-
readonly label: "Onboard
|
|
8888
|
-
readonly description: "
|
|
8020
|
+
readonly desiredParent: readonly [">OnboardProvider", ">OnboardItem"];
|
|
8021
|
+
readonly label: "Onboard Subtitle";
|
|
8022
|
+
readonly description: "Subtitle text for an onboarding step.";
|
|
8889
8023
|
readonly styles: {
|
|
8890
8024
|
readonly color: {
|
|
8891
8025
|
readonly label: "Color";
|
|
@@ -9241,30 +8375,33 @@ export declare const patterns: readonly [{
|
|
|
9241
8375
|
readonly defaults: {
|
|
9242
8376
|
readonly style: {
|
|
9243
8377
|
readonly color: "THEME_COLORS.TEXT";
|
|
9244
|
-
readonly fontSize: "
|
|
9245
|
-
readonly fontWeight: "
|
|
8378
|
+
readonly fontSize: "14@fs";
|
|
8379
|
+
readonly fontWeight: "600";
|
|
9246
8380
|
readonly flexDirection: "column";
|
|
9247
8381
|
readonly position: "relative";
|
|
9248
8382
|
readonly zIndex: 1;
|
|
9249
8383
|
readonly alignSelf: "flex-start";
|
|
9250
8384
|
readonly flexGrow: 0;
|
|
9251
8385
|
readonly flexShrink: 0;
|
|
9252
|
-
readonly textAlign: "center";
|
|
9253
8386
|
};
|
|
9254
8387
|
};
|
|
9255
8388
|
readonly types: {};
|
|
9256
8389
|
}, {
|
|
9257
8390
|
readonly schemaVersion: 2;
|
|
9258
8391
|
readonly pattern: {
|
|
9259
|
-
readonly type: "
|
|
9260
|
-
readonly
|
|
8392
|
+
readonly type: "OnboardTitle";
|
|
8393
|
+
readonly title: "title";
|
|
8394
|
+
readonly description: "description";
|
|
8395
|
+
readonly children: "string";
|
|
9261
8396
|
readonly attributes: {
|
|
9262
|
-
readonly
|
|
9263
|
-
readonly
|
|
9264
|
-
readonly src: "string";
|
|
9265
|
-
readonly resizeMode: readonly ["cover", "contain", "stretch", "center"];
|
|
9266
|
-
readonly scrollable: "boolean";
|
|
8397
|
+
readonly adjustsFontSizeToFit: "boolean";
|
|
8398
|
+
readonly showEllipsis: "boolean";
|
|
9267
8399
|
readonly style: {
|
|
8400
|
+
readonly color: "color";
|
|
8401
|
+
readonly fontSize: "size";
|
|
8402
|
+
readonly fontFamily: "fontFamily";
|
|
8403
|
+
readonly fontWeight: "fontWeight";
|
|
8404
|
+
readonly textAlign: readonly ["left", "center", "right", "justify"];
|
|
9268
8405
|
readonly flexDirection: readonly ["row", "column"];
|
|
9269
8406
|
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
9270
8407
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
@@ -9300,32 +8437,57 @@ export declare const patterns: readonly [{
|
|
|
9300
8437
|
readonly right: "size";
|
|
9301
8438
|
readonly zIndex: "number";
|
|
9302
8439
|
};
|
|
8440
|
+
readonly scrollable: "boolean";
|
|
9303
8441
|
};
|
|
9304
8442
|
readonly defaults: {
|
|
9305
|
-
readonly resizeMode: "cover";
|
|
9306
8443
|
readonly style: {
|
|
9307
|
-
readonly
|
|
9308
|
-
readonly
|
|
9309
|
-
readonly
|
|
9310
|
-
readonly top: 0;
|
|
9311
|
-
readonly left: 0;
|
|
9312
|
-
readonly right: 0;
|
|
9313
|
-
readonly bottom: 0;
|
|
8444
|
+
readonly color: "THEME_COLORS.TEXT";
|
|
8445
|
+
readonly fontSize: "16@fs";
|
|
8446
|
+
readonly fontWeight: "400";
|
|
9314
8447
|
};
|
|
9315
8448
|
};
|
|
9316
8449
|
};
|
|
9317
8450
|
readonly meta: {
|
|
9318
|
-
readonly desiredParent: readonly [">
|
|
9319
|
-
readonly label: "
|
|
9320
|
-
readonly description: "
|
|
8451
|
+
readonly desiredParent: readonly [">OnboardItem", ">OnboardProvider"];
|
|
8452
|
+
readonly label: "Onboard Title";
|
|
8453
|
+
readonly description: "Title text for an onboarding step.";
|
|
9321
8454
|
readonly styles: {
|
|
9322
|
-
readonly
|
|
9323
|
-
readonly label: "
|
|
9324
|
-
readonly description: "
|
|
8455
|
+
readonly color: {
|
|
8456
|
+
readonly label: "Color";
|
|
8457
|
+
readonly description: "Text color.";
|
|
8458
|
+
readonly category: "style";
|
|
8459
|
+
readonly specialCategory: null;
|
|
8460
|
+
readonly sort: 1;
|
|
8461
|
+
};
|
|
8462
|
+
readonly fontSize: {
|
|
8463
|
+
readonly label: "Font Size";
|
|
8464
|
+
readonly description: "Text size.";
|
|
8465
|
+
readonly category: "style";
|
|
8466
|
+
readonly specialCategory: null;
|
|
8467
|
+
readonly sort: 2;
|
|
8468
|
+
readonly preferredScale: "s";
|
|
8469
|
+
};
|
|
8470
|
+
readonly fontFamily: {
|
|
8471
|
+
readonly label: "Font Family";
|
|
8472
|
+
readonly description: "Font family used for the text.";
|
|
8473
|
+
readonly category: "style";
|
|
8474
|
+
readonly specialCategory: null;
|
|
8475
|
+
readonly sort: 3;
|
|
8476
|
+
};
|
|
8477
|
+
readonly fontWeight: {
|
|
8478
|
+
readonly label: "Font Weight";
|
|
8479
|
+
readonly description: "Text weight.";
|
|
9325
8480
|
readonly category: "style";
|
|
9326
8481
|
readonly specialCategory: null;
|
|
9327
8482
|
readonly sort: 4;
|
|
9328
8483
|
};
|
|
8484
|
+
readonly textAlign: {
|
|
8485
|
+
readonly label: "Text Align";
|
|
8486
|
+
readonly description: "Text alignment.";
|
|
8487
|
+
readonly category: "style";
|
|
8488
|
+
readonly specialCategory: null;
|
|
8489
|
+
readonly sort: 5;
|
|
8490
|
+
};
|
|
9329
8491
|
readonly backgroundColor: {
|
|
9330
8492
|
readonly label: "Background Color";
|
|
9331
8493
|
readonly description: "Background fill color.";
|
|
@@ -9343,13 +8505,20 @@ export declare const patterns: readonly [{
|
|
|
9343
8505
|
};
|
|
9344
8506
|
};
|
|
9345
8507
|
readonly attributes: {
|
|
9346
|
-
readonly
|
|
9347
|
-
readonly label: "
|
|
9348
|
-
readonly description: "
|
|
8508
|
+
readonly adjustsFontSizeToFit: {
|
|
8509
|
+
readonly label: "Adjust Font Size To Fit";
|
|
8510
|
+
readonly description: "Automatically reduces font size to fit the available space.";
|
|
9349
8511
|
readonly category: "other";
|
|
9350
8512
|
readonly specialCategory: null;
|
|
9351
8513
|
readonly sort: 1;
|
|
9352
8514
|
};
|
|
8515
|
+
readonly showEllipsis: {
|
|
8516
|
+
readonly label: "Show Ellipsis";
|
|
8517
|
+
readonly description: "If text overflows, show ellipsis (…); applied as single-line truncation.";
|
|
8518
|
+
readonly category: "other";
|
|
8519
|
+
readonly specialCategory: null;
|
|
8520
|
+
readonly sort: 2;
|
|
8521
|
+
};
|
|
9353
8522
|
readonly scrollable: {
|
|
9354
8523
|
readonly label: "Scrollable";
|
|
9355
8524
|
readonly description: "Turns scroll interaction on.";
|
|
@@ -9635,42 +8804,32 @@ export declare const patterns: readonly [{
|
|
|
9635
8804
|
};
|
|
9636
8805
|
};
|
|
9637
8806
|
readonly defaults: {
|
|
9638
|
-
readonly resizeMode: "cover";
|
|
9639
8807
|
readonly style: {
|
|
9640
|
-
readonly
|
|
9641
|
-
readonly
|
|
9642
|
-
readonly
|
|
9643
|
-
readonly top: 0;
|
|
9644
|
-
readonly left: 0;
|
|
9645
|
-
readonly right: 0;
|
|
9646
|
-
readonly bottom: 0;
|
|
9647
|
-
readonly zIndex: 1;
|
|
8808
|
+
readonly color: "THEME_COLORS.TEXT";
|
|
8809
|
+
readonly fontSize: "24@fs";
|
|
8810
|
+
readonly fontWeight: "700";
|
|
9648
8811
|
readonly flexDirection: "column";
|
|
8812
|
+
readonly position: "relative";
|
|
8813
|
+
readonly zIndex: 1;
|
|
9649
8814
|
readonly alignSelf: "flex-start";
|
|
9650
8815
|
readonly flexGrow: 0;
|
|
9651
8816
|
readonly flexShrink: 0;
|
|
8817
|
+
readonly textAlign: "center";
|
|
9652
8818
|
};
|
|
9653
8819
|
};
|
|
9654
8820
|
readonly types: {};
|
|
9655
8821
|
}, {
|
|
9656
8822
|
readonly schemaVersion: 2;
|
|
9657
8823
|
readonly pattern: {
|
|
9658
|
-
readonly type: "
|
|
8824
|
+
readonly type: "PaywallBackground";
|
|
8825
|
+
readonly title: "title";
|
|
8826
|
+
readonly description: "description";
|
|
9659
8827
|
readonly children: "never";
|
|
9660
8828
|
readonly attributes: {
|
|
9661
|
-
readonly
|
|
9662
|
-
readonly
|
|
9663
|
-
readonly
|
|
9664
|
-
readonly size: "number";
|
|
9665
|
-
readonly strokeWidth: "number";
|
|
9666
|
-
readonly adjustsFontSizeToFit: "boolean";
|
|
9667
|
-
readonly showEllipsis: "boolean";
|
|
8829
|
+
readonly src: "string";
|
|
8830
|
+
readonly resizeMode: readonly ["cover", "contain", "stretch", "center"];
|
|
8831
|
+
readonly scrollable: "boolean";
|
|
9668
8832
|
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"];
|
|
9674
8833
|
readonly flexDirection: readonly ["row", "column"];
|
|
9675
8834
|
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
9676
8835
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
@@ -9706,57 +8865,32 @@ export declare const patterns: readonly [{
|
|
|
9706
8865
|
readonly right: "size";
|
|
9707
8866
|
readonly zIndex: "number";
|
|
9708
8867
|
};
|
|
9709
|
-
readonly scrollable: "boolean";
|
|
9710
8868
|
};
|
|
9711
8869
|
readonly defaults: {
|
|
8870
|
+
readonly resizeMode: "cover";
|
|
9712
8871
|
readonly style: {
|
|
9713
|
-
readonly
|
|
9714
|
-
readonly
|
|
9715
|
-
readonly
|
|
8872
|
+
readonly width: "100%";
|
|
8873
|
+
readonly height: "100%";
|
|
8874
|
+
readonly position: "absolute";
|
|
8875
|
+
readonly top: 0;
|
|
8876
|
+
readonly left: 0;
|
|
8877
|
+
readonly right: 0;
|
|
8878
|
+
readonly bottom: 0;
|
|
9716
8879
|
};
|
|
9717
8880
|
};
|
|
9718
8881
|
};
|
|
9719
8882
|
readonly meta: {
|
|
9720
8883
|
readonly desiredParent: readonly [">PaywallProvider"];
|
|
9721
|
-
readonly label: "Paywall
|
|
9722
|
-
readonly description: "Paywall
|
|
8884
|
+
readonly label: "Paywall Background";
|
|
8885
|
+
readonly description: "Paywall Background component.";
|
|
9723
8886
|
readonly styles: {
|
|
9724
|
-
readonly
|
|
9725
|
-
readonly label: "
|
|
9726
|
-
readonly description: "
|
|
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.";
|
|
8887
|
+
readonly resizeMode: {
|
|
8888
|
+
readonly label: "Resize Mode";
|
|
8889
|
+
readonly description: "How the image fits its container.";
|
|
9749
8890
|
readonly category: "style";
|
|
9750
8891
|
readonly specialCategory: null;
|
|
9751
8892
|
readonly sort: 4;
|
|
9752
8893
|
};
|
|
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
|
-
};
|
|
9760
8894
|
readonly backgroundColor: {
|
|
9761
8895
|
readonly label: "Background Color";
|
|
9762
8896
|
readonly description: "Background fill color.";
|
|
@@ -9774,41 +8908,13 @@ export declare const patterns: readonly [{
|
|
|
9774
8908
|
};
|
|
9775
8909
|
};
|
|
9776
8910
|
readonly attributes: {
|
|
9777
|
-
readonly
|
|
9778
|
-
readonly label: "
|
|
9779
|
-
readonly description: "
|
|
9780
|
-
readonly category: "other";
|
|
9781
|
-
readonly specialCategory: null;
|
|
9782
|
-
readonly sort: 1;
|
|
9783
|
-
};
|
|
9784
|
-
readonly size: {
|
|
9785
|
-
readonly label: "Size";
|
|
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;
|
|
9796
|
-
readonly sort: 3;
|
|
9797
|
-
};
|
|
9798
|
-
readonly adjustsFontSizeToFit: {
|
|
9799
|
-
readonly label: "Adjust Font Size To Fit";
|
|
9800
|
-
readonly description: "Automatically reduces font size to fit the available space.";
|
|
8911
|
+
readonly src: {
|
|
8912
|
+
readonly label: "Src";
|
|
8913
|
+
readonly description: "Image source URL.";
|
|
9801
8914
|
readonly category: "other";
|
|
9802
8915
|
readonly specialCategory: null;
|
|
9803
8916
|
readonly sort: 1;
|
|
9804
8917
|
};
|
|
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;
|
|
9811
|
-
};
|
|
9812
8918
|
readonly scrollable: {
|
|
9813
8919
|
readonly label: "Scrollable";
|
|
9814
8920
|
readonly description: "Turns scroll interaction on.";
|
|
@@ -10094,35 +9200,34 @@ export declare const patterns: readonly [{
|
|
|
10094
9200
|
};
|
|
10095
9201
|
};
|
|
10096
9202
|
readonly defaults: {
|
|
9203
|
+
readonly resizeMode: "cover";
|
|
10097
9204
|
readonly style: {
|
|
10098
|
-
readonly
|
|
10099
|
-
readonly
|
|
10100
|
-
readonly fontWeight: "400";
|
|
10101
|
-
readonly flexDirection: "row";
|
|
9205
|
+
readonly width: "100%";
|
|
9206
|
+
readonly height: "100%";
|
|
10102
9207
|
readonly position: "absolute";
|
|
9208
|
+
readonly top: 0;
|
|
9209
|
+
readonly left: 0;
|
|
9210
|
+
readonly right: 0;
|
|
9211
|
+
readonly bottom: 0;
|
|
10103
9212
|
readonly zIndex: 1;
|
|
9213
|
+
readonly flexDirection: "column";
|
|
10104
9214
|
readonly alignSelf: "flex-start";
|
|
10105
9215
|
readonly flexGrow: 0;
|
|
10106
9216
|
readonly flexShrink: 0;
|
|
10107
|
-
readonly top: "35@vs";
|
|
10108
|
-
readonly left: "24@s";
|
|
10109
|
-
readonly justifyContent: "center";
|
|
10110
|
-
readonly alignItems: "center";
|
|
10111
9217
|
};
|
|
10112
|
-
readonly iconType: "close";
|
|
10113
|
-
readonly strokeWidth: 1.5;
|
|
10114
|
-
readonly size: 24;
|
|
10115
9218
|
};
|
|
10116
9219
|
readonly types: {};
|
|
10117
9220
|
}, {
|
|
10118
9221
|
readonly schemaVersion: 2;
|
|
10119
9222
|
readonly pattern: {
|
|
10120
|
-
readonly type: "
|
|
9223
|
+
readonly type: "PaywallCloseButton";
|
|
9224
|
+
readonly title: "title";
|
|
9225
|
+
readonly description: "description";
|
|
10121
9226
|
readonly children: "never";
|
|
10122
9227
|
readonly attributes: {
|
|
10123
|
-
readonly
|
|
10124
|
-
readonly
|
|
10125
|
-
readonly
|
|
9228
|
+
readonly iconType: "iconType";
|
|
9229
|
+
readonly size: "number";
|
|
9230
|
+
readonly strokeWidth: "number";
|
|
10126
9231
|
readonly adjustsFontSizeToFit: "boolean";
|
|
10127
9232
|
readonly showEllipsis: "boolean";
|
|
10128
9233
|
readonly style: {
|
|
@@ -10177,17 +9282,84 @@ export declare const patterns: readonly [{
|
|
|
10177
9282
|
};
|
|
10178
9283
|
};
|
|
10179
9284
|
readonly meta: {
|
|
10180
|
-
readonly desiredParent: readonly ["
|
|
10181
|
-
readonly label: "Paywall
|
|
10182
|
-
readonly description: "
|
|
9285
|
+
readonly desiredParent: readonly [">PaywallProvider"];
|
|
9286
|
+
readonly label: "Paywall Close Button";
|
|
9287
|
+
readonly description: "Paywall Close Button component.";
|
|
9288
|
+
readonly styles: {
|
|
9289
|
+
readonly color: {
|
|
9290
|
+
readonly label: "Color";
|
|
9291
|
+
readonly description: "Text color.";
|
|
9292
|
+
readonly category: "style";
|
|
9293
|
+
readonly specialCategory: null;
|
|
9294
|
+
readonly sort: 1;
|
|
9295
|
+
};
|
|
9296
|
+
readonly fontSize: {
|
|
9297
|
+
readonly label: "Font Size";
|
|
9298
|
+
readonly description: "Text size.";
|
|
9299
|
+
readonly category: "style";
|
|
9300
|
+
readonly specialCategory: null;
|
|
9301
|
+
readonly sort: 2;
|
|
9302
|
+
readonly preferredScale: "s";
|
|
9303
|
+
};
|
|
9304
|
+
readonly fontFamily: {
|
|
9305
|
+
readonly label: "Font Family";
|
|
9306
|
+
readonly description: "Font family used for the text.";
|
|
9307
|
+
readonly category: "style";
|
|
9308
|
+
readonly specialCategory: null;
|
|
9309
|
+
readonly sort: 3;
|
|
9310
|
+
};
|
|
9311
|
+
readonly fontWeight: {
|
|
9312
|
+
readonly label: "Font Weight";
|
|
9313
|
+
readonly description: "Text weight.";
|
|
9314
|
+
readonly category: "style";
|
|
9315
|
+
readonly specialCategory: null;
|
|
9316
|
+
readonly sort: 4;
|
|
9317
|
+
};
|
|
9318
|
+
readonly textAlign: {
|
|
9319
|
+
readonly label: "Text Align";
|
|
9320
|
+
readonly description: "Text alignment.";
|
|
9321
|
+
readonly category: "style";
|
|
9322
|
+
readonly specialCategory: null;
|
|
9323
|
+
readonly sort: 5;
|
|
9324
|
+
};
|
|
9325
|
+
readonly backgroundColor: {
|
|
9326
|
+
readonly label: "Background Color";
|
|
9327
|
+
readonly description: "Background fill color.";
|
|
9328
|
+
readonly category: "style";
|
|
9329
|
+
readonly specialCategory: null;
|
|
9330
|
+
readonly sort: 20;
|
|
9331
|
+
};
|
|
9332
|
+
readonly borderRadius: {
|
|
9333
|
+
readonly label: "Border Radius";
|
|
9334
|
+
readonly description: "Corner rounding amount.";
|
|
9335
|
+
readonly category: "style";
|
|
9336
|
+
readonly specialCategory: null;
|
|
9337
|
+
readonly sort: 21;
|
|
9338
|
+
readonly preferredScale: "s";
|
|
9339
|
+
};
|
|
9340
|
+
};
|
|
10183
9341
|
readonly attributes: {
|
|
10184
|
-
readonly
|
|
10185
|
-
readonly label: "
|
|
10186
|
-
readonly description: "
|
|
9342
|
+
readonly iconType: {
|
|
9343
|
+
readonly label: "Icon";
|
|
9344
|
+
readonly description: "Which icon to render.";
|
|
10187
9345
|
readonly category: "other";
|
|
10188
9346
|
readonly specialCategory: null;
|
|
10189
9347
|
readonly sort: 1;
|
|
10190
9348
|
};
|
|
9349
|
+
readonly size: {
|
|
9350
|
+
readonly label: "Size";
|
|
9351
|
+
readonly description: "Icon size (px).";
|
|
9352
|
+
readonly category: "other";
|
|
9353
|
+
readonly specialCategory: null;
|
|
9354
|
+
readonly sort: 2;
|
|
9355
|
+
};
|
|
9356
|
+
readonly strokeWidth: {
|
|
9357
|
+
readonly label: "Stroke Width";
|
|
9358
|
+
readonly description: "SVG stroke width override (applied to the icon paths).";
|
|
9359
|
+
readonly category: "other";
|
|
9360
|
+
readonly specialCategory: null;
|
|
9361
|
+
readonly sort: 3;
|
|
9362
|
+
};
|
|
10191
9363
|
readonly adjustsFontSizeToFit: {
|
|
10192
9364
|
readonly label: "Adjust Font Size To Fit";
|
|
10193
9365
|
readonly description: "Automatically reduces font size to fit the available space.";
|
|
@@ -10459,59 +9631,6 @@ export declare const patterns: readonly [{
|
|
|
10459
9631
|
readonly sort: 26;
|
|
10460
9632
|
};
|
|
10461
9633
|
};
|
|
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";
|
|
10510
|
-
readonly specialCategory: null;
|
|
10511
|
-
readonly sort: 21;
|
|
10512
|
-
readonly preferredScale: "s";
|
|
10513
|
-
};
|
|
10514
|
-
};
|
|
10515
9634
|
readonly specialCategories: {
|
|
10516
9635
|
readonly padding: {
|
|
10517
9636
|
readonly label: "Padding";
|
|
@@ -10541,22 +9660,31 @@ export declare const patterns: readonly [{
|
|
|
10541
9660
|
};
|
|
10542
9661
|
readonly defaults: {
|
|
10543
9662
|
readonly style: {
|
|
10544
|
-
readonly color: "THEME_COLORS.TEXT";
|
|
10545
9663
|
readonly fontSize: "16@fs";
|
|
9664
|
+
readonly color: "THEME_COLORS.TEXT";
|
|
10546
9665
|
readonly fontWeight: "400";
|
|
10547
|
-
readonly flexDirection: "
|
|
10548
|
-
readonly position: "
|
|
9666
|
+
readonly flexDirection: "row";
|
|
9667
|
+
readonly position: "absolute";
|
|
10549
9668
|
readonly zIndex: 1;
|
|
10550
9669
|
readonly alignSelf: "flex-start";
|
|
10551
9670
|
readonly flexGrow: 0;
|
|
10552
9671
|
readonly flexShrink: 0;
|
|
9672
|
+
readonly top: "35@vs";
|
|
9673
|
+
readonly left: "24@s";
|
|
9674
|
+
readonly justifyContent: "center";
|
|
9675
|
+
readonly alignItems: "center";
|
|
10553
9676
|
};
|
|
9677
|
+
readonly iconType: "close";
|
|
9678
|
+
readonly strokeWidth: 1.5;
|
|
9679
|
+
readonly size: 24;
|
|
10554
9680
|
};
|
|
10555
9681
|
readonly types: {};
|
|
10556
9682
|
}, {
|
|
10557
9683
|
readonly schemaVersion: 2;
|
|
10558
9684
|
readonly pattern: {
|
|
10559
9685
|
readonly type: "PaywallOptions";
|
|
9686
|
+
readonly title: "title";
|
|
9687
|
+
readonly description: "description";
|
|
10560
9688
|
readonly children: "node";
|
|
10561
9689
|
readonly attributes: {
|
|
10562
9690
|
readonly scrollable: "boolean";
|
|
@@ -10596,8 +9724,6 @@ export declare const patterns: readonly [{
|
|
|
10596
9724
|
readonly right: "size";
|
|
10597
9725
|
readonly zIndex: "number";
|
|
10598
9726
|
};
|
|
10599
|
-
readonly title: "title";
|
|
10600
|
-
readonly description: "description";
|
|
10601
9727
|
};
|
|
10602
9728
|
};
|
|
10603
9729
|
readonly meta: {
|
|
@@ -10924,6 +10050,8 @@ export declare const patterns: readonly [{
|
|
|
10924
10050
|
readonly schemaVersion: 2;
|
|
10925
10051
|
readonly pattern: {
|
|
10926
10052
|
readonly type: "PaywallProvider";
|
|
10053
|
+
readonly title: "title";
|
|
10054
|
+
readonly description: "description";
|
|
10927
10055
|
readonly children: "node";
|
|
10928
10056
|
readonly attributes: {
|
|
10929
10057
|
readonly scrollable: "boolean";
|
|
@@ -10963,8 +10091,6 @@ export declare const patterns: readonly [{
|
|
|
10963
10091
|
readonly right: "size";
|
|
10964
10092
|
readonly zIndex: "number";
|
|
10965
10093
|
};
|
|
10966
|
-
readonly title: "title";
|
|
10967
|
-
readonly description: "description";
|
|
10968
10094
|
readonly delay: "number";
|
|
10969
10095
|
};
|
|
10970
10096
|
};
|
|
@@ -11302,10 +10428,10 @@ export declare const patterns: readonly [{
|
|
|
11302
10428
|
readonly schemaVersion: 2;
|
|
11303
10429
|
readonly pattern: {
|
|
11304
10430
|
readonly type: "PaywallSubscribeButton";
|
|
10431
|
+
readonly title: "title";
|
|
10432
|
+
readonly description: "description";
|
|
11305
10433
|
readonly children: "string";
|
|
11306
10434
|
readonly attributes: {
|
|
11307
|
-
readonly title: "title";
|
|
11308
|
-
readonly description: "description";
|
|
11309
10435
|
readonly style: {
|
|
11310
10436
|
readonly color: "color";
|
|
11311
10437
|
readonly fontSize: "size";
|
|
@@ -11700,6 +10826,8 @@ export declare const patterns: readonly [{
|
|
|
11700
10826
|
readonly schemaVersion: 2;
|
|
11701
10827
|
readonly pattern: {
|
|
11702
10828
|
readonly type: "RadioButton";
|
|
10829
|
+
readonly title: "title";
|
|
10830
|
+
readonly description: "description";
|
|
11703
10831
|
readonly children: "never";
|
|
11704
10832
|
readonly attributes: {
|
|
11705
10833
|
readonly scrollable: "boolean";
|
|
@@ -11739,8 +10867,6 @@ export declare const patterns: readonly [{
|
|
|
11739
10867
|
readonly right: "size";
|
|
11740
10868
|
readonly zIndex: "number";
|
|
11741
10869
|
};
|
|
11742
|
-
readonly title: "title";
|
|
11743
|
-
readonly description: "description";
|
|
11744
10870
|
readonly selected: "boolean";
|
|
11745
10871
|
readonly color: "color";
|
|
11746
10872
|
readonly size: "number";
|
|
@@ -12088,10 +11214,10 @@ export declare const patterns: readonly [{
|
|
|
12088
11214
|
readonly schemaVersion: 2;
|
|
12089
11215
|
readonly pattern: {
|
|
12090
11216
|
readonly type: "Separator";
|
|
11217
|
+
readonly title: "title";
|
|
11218
|
+
readonly description: "description";
|
|
12091
11219
|
readonly children: "never";
|
|
12092
11220
|
readonly attributes: {
|
|
12093
|
-
readonly title: "title";
|
|
12094
|
-
readonly description: "description";
|
|
12095
11221
|
readonly style: {
|
|
12096
11222
|
readonly backgroundColor: "color";
|
|
12097
11223
|
readonly width: "size";
|
|
@@ -12146,6 +11272,8 @@ export declare const patterns: readonly [{
|
|
|
12146
11272
|
readonly schemaVersion: 2;
|
|
12147
11273
|
readonly pattern: {
|
|
12148
11274
|
readonly type: "StatusBarColor";
|
|
11275
|
+
readonly title: "title";
|
|
11276
|
+
readonly description: "description";
|
|
12149
11277
|
readonly children: "never";
|
|
12150
11278
|
readonly attributes: {
|
|
12151
11279
|
readonly scrollable: "boolean";
|
|
@@ -12185,8 +11313,6 @@ export declare const patterns: readonly [{
|
|
|
12185
11313
|
readonly right: "size";
|
|
12186
11314
|
readonly zIndex: "number";
|
|
12187
11315
|
};
|
|
12188
|
-
readonly title: "title";
|
|
12189
|
-
readonly description: "description";
|
|
12190
11316
|
};
|
|
12191
11317
|
};
|
|
12192
11318
|
readonly meta: {
|
|
@@ -12511,6 +11637,8 @@ export declare const patterns: readonly [{
|
|
|
12511
11637
|
readonly schemaVersion: 2;
|
|
12512
11638
|
readonly pattern: {
|
|
12513
11639
|
readonly type: "Text";
|
|
11640
|
+
readonly title: "title";
|
|
11641
|
+
readonly description: "description";
|
|
12514
11642
|
readonly children: "string";
|
|
12515
11643
|
readonly attributes: {
|
|
12516
11644
|
readonly scrollable: "boolean";
|
|
@@ -12555,8 +11683,6 @@ export declare const patterns: readonly [{
|
|
|
12555
11683
|
readonly fontWeight: "fontWeight";
|
|
12556
11684
|
readonly textAlign: readonly ["left", "center", "right", "justify"];
|
|
12557
11685
|
};
|
|
12558
|
-
readonly title: "title";
|
|
12559
|
-
readonly description: "description";
|
|
12560
11686
|
readonly adjustsFontSizeToFit: "boolean";
|
|
12561
11687
|
readonly showEllipsis: "boolean";
|
|
12562
11688
|
};
|
|
@@ -12942,6 +12068,8 @@ export declare const patterns: readonly [{
|
|
|
12942
12068
|
readonly schemaVersion: 2;
|
|
12943
12069
|
readonly pattern: {
|
|
12944
12070
|
readonly type: "View";
|
|
12071
|
+
readonly title: "title";
|
|
12072
|
+
readonly description: "description";
|
|
12945
12073
|
readonly children: "node";
|
|
12946
12074
|
readonly attributes: {
|
|
12947
12075
|
readonly scrollable: "boolean";
|