@developer_tribe/react-builder 1.0.8 → 1.0.9
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/build-components/BIcon/BIconProps.generated.d.ts +3 -0
- package/dist/build-components/BackgroundImage/BackgroundImageProps.generated.d.ts +1 -0
- package/dist/build-components/Button/ButtonProps.generated.d.ts +1 -0
- package/dist/build-components/Carousel/CarouselProps.generated.d.ts +5 -0
- package/dist/build-components/CarouselButtons/CarouselButtonsProps.generated.d.ts +1 -0
- package/dist/build-components/CarouselDots/CarouselDotsProps.generated.d.ts +1 -0
- package/dist/build-components/CarouselItem/CarouselItemProps.generated.d.ts +1 -0
- package/dist/build-components/CarouselProvider/CarouselProviderProps.generated.d.ts +1 -0
- package/dist/build-components/Image/ImageProps.generated.d.ts +1 -0
- package/dist/build-components/Main/MainProps.generated.d.ts +1 -1
- package/dist/build-components/Onboard/OnboardProps.generated.d.ts +1 -0
- package/dist/build-components/OnboardButton/OnboardButtonProps.generated.d.ts +1 -0
- package/dist/build-components/OnboardButtons/OnboardButtonsProps.generated.d.ts +1 -0
- package/dist/build-components/OnboardDot/OnboardDotProps.generated.d.ts +1 -0
- package/dist/build-components/OnboardFooter/OnboardFooterProps.generated.d.ts +3 -0
- package/dist/build-components/OnboardImage/OnboardImageProps.generated.d.ts +1 -0
- package/dist/build-components/OnboardItem/OnboardItemProps.generated.d.ts +1 -0
- package/dist/build-components/OnboardProvider/OnboardProviderProps.generated.d.ts +3 -0
- package/dist/build-components/OnboardSubtitle/OnboardSubtitleProps.generated.d.ts +3 -0
- package/dist/build-components/OnboardTitle/OnboardTitleProps.generated.d.ts +3 -0
- package/dist/build-components/PaywallBackground/PaywallBackgroundProps.generated.d.ts +1 -1
- package/dist/build-components/PaywallCloseButton/PaywallCloseButtonProps.generated.d.ts +3 -1
- package/dist/build-components/PaywallOptions/PaywallOptionsProps.generated.d.ts +1 -1
- package/dist/build-components/PaywallProvider/PaywallContext.d.ts +12 -0
- package/dist/build-components/PaywallProvider/PaywallProviderProps.generated.d.ts +1 -1
- package/dist/build-components/PaywallSubscribeButton/PaywallSubscribeButtonProps.generated.d.ts +1 -0
- package/dist/build-components/RadioButton/RadioButtonProps.generated.d.ts +1 -1
- package/dist/build-components/Text/TextProps.generated.d.ts +3 -0
- package/dist/build-components/View/ViewProps.generated.d.ts +1 -0
- package/dist/build-components/patterns.generated.d.ts +372 -374
- package/dist/components/BuilderProvider.d.ts +2 -0
- package/dist/components/ParamsProvider.d.ts +5 -0
- package/dist/components/RenderErrorBoundary.d.ts +28 -0
- package/dist/hooks/useSyncHtmlThemeClass.d.ts +7 -0
- package/dist/index.cjs.js +5 -5
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.esm.js +3 -3
- package/dist/index.esm.js.map +1 -1
- package/dist/index.native.cjs.js +4 -4
- package/dist/index.native.cjs.js.map +1 -1
- package/dist/index.native.d.ts +1 -0
- package/dist/index.native.esm.js +4 -4
- package/dist/index.native.esm.js.map +1 -1
- package/dist/migrations/migratePipe.d.ts +14 -0
- package/dist/migrations/migrations/1.1.0_normalize_style_attributes.d.ts +2 -0
- package/dist/migrations/semver.d.ts +8 -0
- package/dist/migrations/types.d.ts +8 -0
- package/dist/mockOS/components/SubscriptionModal.d.ts +7 -0
- package/dist/mockOS/context/MockOSContextBase.d.ts +1 -0
- package/dist/mockOS/hooks/useMockIap.d.ts +3 -0
- package/dist/mockOS/index.d.ts +4 -0
- package/dist/mockOS/managers/mockOSIapManager.d.ts +6 -0
- package/dist/mockOS/managers/subscriptionManager.d.ts +10 -0
- package/dist/pages/ProjectDebug.d.ts +14 -0
- package/dist/pages/ProjectMigrationPage.d.ts +23 -0
- package/dist/pages/ProjectValidationPage.d.ts +15 -0
- package/dist/styles.css +1 -1
- package/dist/types/Device.d.ts +5 -0
- package/dist/utils/__special_exceptions.d.ts +7 -0
- package/dist/utils/getImage.d.ts +23 -0
- package/dist/utils/pasteNode.d.ts +15 -0
- package/dist/utils/patterns.d.ts +1 -2
- package/package.json +6 -2
- package/scripts/migrate-patterns-to-v2.mjs +131 -0
- package/scripts/migrate-samples-to-current.ts +79 -0
- package/scripts/prebuild/utils/createGeneratedProps.js +4 -5
- package/scripts/prebuild/utils/validateAllComponentsOrThrow.js +32 -21
- package/scripts/prebuild/utils/validatePatternJson.js +12 -10
- package/src/.DS_Store +0 -0
- package/src/AttributesEditor.tsx +41 -11
- package/src/RenderPage.tsx +55 -0
- package/src/assets/.DS_Store +0 -0
- package/src/assets/devices.json +91 -0
- package/src/assets/samples/carousel-sample.json +141 -29
- package/src/assets/samples/getSamples.ts +9 -0
- package/src/assets/samples/paywall-1.json +119 -71
- package/src/assets/samples/simple-1.json +28 -16
- package/src/assets/samples/simple-2.json +157 -82
- package/src/assets/samples/unmigrated-builder1.json +42 -0
- package/src/assets/samples/unvalidated-builder1.json +49 -0
- package/src/assets/samples/unvalidated-crash1.json +19 -0
- package/src/assets/samples/unvalidated-crashcomponent1.json +16 -0
- package/src/assets/samples/vpn-onboard-1.json +91 -51
- package/src/assets/samples/vpn-onboard-2.json +318 -278
- package/src/assets/samples/vpn-onboard-3.json +286 -252
- package/src/assets/samples/vpn-onboard-4.json +286 -252
- package/src/assets/samples/vpn-onboard-5.json +434 -374
- package/src/assets/samples/vpn-onboard-6.json +290 -250
- package/src/attributes-editor/Field.tsx +1 -1
- package/src/attributes-editor/LayoutPreviewPicker.tsx +5 -2
- package/src/build-components/BIcon/BIconProps.generated.ts +3 -0
- package/src/build-components/BIcon/pattern.json +12 -9
- package/src/build-components/BackgroundImage/BackgroundImage.tsx +3 -1
- package/src/build-components/BackgroundImage/BackgroundImageProps.generated.ts +1 -0
- package/src/build-components/BackgroundImage/pattern.json +25 -16
- package/src/build-components/Button/Button.tsx +26 -3
- package/src/build-components/Button/ButtonProps.generated.ts +1 -0
- package/src/build-components/Button/pattern.json +10 -6
- package/src/build-components/Carousel/CarouselProps.generated.ts +5 -0
- package/src/build-components/Carousel/pattern.json +19 -8
- package/src/build-components/CarouselButtons/CarouselButtonsProps.generated.ts +1 -0
- package/src/build-components/CarouselButtons/pattern.json +11 -5
- package/src/build-components/CarouselDots/CarouselDotsProps.generated.ts +1 -0
- package/src/build-components/CarouselDots/pattern.json +5 -4
- package/src/build-components/CarouselItem/CarouselItemProps.generated.ts +1 -0
- package/src/build-components/CarouselItem/pattern.json +5 -4
- package/src/build-components/CarouselProvider/CarouselProvider.tsx +44 -2
- package/src/build-components/CarouselProvider/CarouselProviderProps.generated.ts +1 -0
- package/src/build-components/Image/Image.tsx +2 -1
- package/src/build-components/Image/ImageProps.generated.ts +1 -0
- package/src/build-components/Image/pattern.json +11 -5
- package/src/build-components/Main/MainProps.generated.ts +1 -1
- package/src/build-components/Main/pattern.json +12 -9
- package/src/build-components/Onboard/OnboardProps.generated.ts +1 -0
- package/src/build-components/Onboard/pattern.json +14 -9
- package/src/build-components/OnboardButton/OnboardButtonProps.generated.ts +1 -0
- package/src/build-components/OnboardButton/pattern.json +5 -4
- package/src/build-components/OnboardButtons/OnboardButtonsProps.generated.ts +1 -0
- package/src/build-components/OnboardButtons/pattern.json +5 -4
- package/src/build-components/OnboardDot/OnboardDotProps.generated.ts +1 -0
- package/src/build-components/OnboardDot/pattern.json +5 -4
- package/src/build-components/OnboardFooter/OnboardFooterProps.generated.ts +3 -0
- package/src/build-components/OnboardFooter/pattern.json +8 -5
- package/src/build-components/OnboardImage/OnboardImageProps.generated.ts +1 -0
- package/src/build-components/OnboardImage/pattern.json +7 -4
- package/src/build-components/OnboardItem/OnboardItemProps.generated.ts +1 -0
- package/src/build-components/OnboardItem/pattern.json +18 -9
- package/src/build-components/OnboardProvider/OnboardProviderProps.generated.ts +3 -0
- package/src/build-components/OnboardProvider/pattern.json +21 -6
- package/src/build-components/OnboardSubtitle/OnboardSubtitleProps.generated.ts +3 -0
- package/src/build-components/OnboardSubtitle/pattern.json +10 -6
- package/src/build-components/OnboardTitle/OnboardTitleProps.generated.ts +3 -0
- package/src/build-components/OnboardTitle/pattern.json +11 -7
- package/src/build-components/PaywallBackground/PaywallBackgroundProps.generated.ts +1 -1
- package/src/build-components/PaywallBackground/pattern.json +5 -4
- package/src/build-components/PaywallCloseButton/PaywallCloseButton.tsx +6 -1
- package/src/build-components/PaywallCloseButton/PaywallCloseButtonProps.generated.ts +3 -1
- package/src/build-components/PaywallCloseButton/pattern.json +15 -12
- package/src/build-components/PaywallOptions/PaywallOptionButton.tsx +0 -1
- package/src/build-components/PaywallOptions/PaywallOptions.tsx +3 -2
- package/src/build-components/PaywallOptions/PaywallOptionsProps.generated.ts +1 -1
- package/src/build-components/PaywallOptions/pattern.json +14 -11
- package/src/build-components/PaywallProvider/PaywallContext.ts +25 -0
- package/src/build-components/PaywallProvider/PaywallProvider.tsx +102 -5
- package/src/build-components/PaywallProvider/PaywallProviderProps.generated.ts +1 -1
- package/src/build-components/PaywallProvider/pattern.json +11 -8
- package/src/build-components/PaywallSubscribeButton/PaywallSubscribeButton.tsx +7 -0
- package/src/build-components/PaywallSubscribeButton/PaywallSubscribeButtonProps.generated.ts +1 -0
- package/src/build-components/PaywallSubscribeButton/pattern.json +16 -13
- package/src/build-components/RadioButton/RadioButtonProps.generated.ts +1 -1
- package/src/build-components/RadioButton/pattern.json +5 -4
- package/src/build-components/Text/Text.tsx +107 -4
- package/src/build-components/Text/TextProps.generated.ts +3 -0
- package/src/build-components/Text/pattern.json +19 -4
- package/src/build-components/View/ViewProps.generated.ts +1 -0
- package/src/build-components/View/pattern.json +28 -13
- package/src/build-components/other.tsx +15 -0
- package/src/build-components/patterns.generated.ts +340 -235
- package/src/build-components/useNode.ts +22 -3
- package/src/components/Builder.tsx +20 -6
- package/src/components/BuilderButton.tsx +75 -38
- package/src/components/BuilderProvider.tsx +22 -2
- package/src/components/DeviceButton.tsx +12 -5
- package/src/components/EditorHeader.tsx +296 -38
- package/src/components/ParamsProvider.tsx +7 -0
- package/src/components/RenderErrorBoundary.tsx +200 -0
- package/src/hooks/useParams.ts +5 -1
- package/src/hooks/useSyncHtmlThemeClass.ts +19 -0
- package/src/index.native.ts +7 -0
- package/src/index.ts +8 -0
- package/src/migrations/migratePipe.ts +59 -0
- package/src/migrations/migrations/1.1.0_normalize_style_attributes.ts +80 -0
- package/src/migrations/semver.ts +24 -0
- package/src/migrations/types.ts +9 -0
- package/src/mockOS/components/PermissionModal.tsx +3 -2
- package/src/mockOS/components/SubscriptionModal.tsx +400 -0
- package/src/mockOS/context/MockOSContext.tsx +61 -10
- package/src/mockOS/context/MockOSContextBase.ts +1 -0
- package/src/mockOS/hooks/useMockIap.ts +11 -0
- package/src/mockOS/index.ts +7 -0
- package/src/mockOS/managers/mockOSIapManager.ts +10 -0
- package/src/mockOS/managers/subscriptionManager.ts +36 -0
- package/src/modals/IconPickerModal.tsx +1 -1
- package/src/pages/ProjectDebug.tsx +331 -0
- package/src/pages/ProjectMigrationPage.tsx +92 -0
- package/src/pages/ProjectPage.tsx +313 -161
- package/src/pages/ProjectValidationPage.tsx +54 -0
- package/src/styles/base/_global.scss +58 -11
- package/src/styles/components/_attributes-editor.scss +1 -1
- package/src/styles/components/_bottom-bar.scss +7 -4
- package/src/styles/components/_editor-shell.scss +126 -4
- package/src/styles/components/_mockos-router.scss +3 -2
- package/src/styles/components/_ui-components.scss +10 -5
- package/src/styles/foundation/_colors.scss +78 -11
- package/src/styles/foundation/_mixins.scss +4 -1
- package/src/styles/foundation/_sizes.scss +4 -2
- package/src/styles/index.scss +1 -0
- package/src/styles/layout/_builder.scss +61 -0
- package/src/styles/layout/_project-validation.scss +214 -0
- package/src/styles/modals/_add-component.scss +4 -2
- package/src/styles/modals/_color-modal.scss +4 -2
- package/src/styles/modals/_modal-shell.scss +3 -1
- package/src/types/Device.ts +5 -0
- package/src/utils/__special_exceptions.ts +88 -0
- package/src/utils/analyseNode.ts +8 -2
- package/src/utils/analyseNodeByPatterns.ts +43 -9
- package/src/utils/extractTextStyle.ts +19 -6
- package/src/utils/extractViewStyle.ts +68 -59
- package/src/utils/getImage.ts +76 -0
- package/src/utils/novaToJson.ts +2 -1
- package/src/utils/pasteNode.ts +172 -0
- package/src/utils/patterns.ts +4 -3
- package/dist/android.svg +0 -43
- package/dist/apple.svg +0 -16
- package/dist/background.jpg +0 -0
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
export declare const patterns: readonly [{
|
|
2
|
-
readonly schemaVersion:
|
|
3
|
-
readonly allowUnknownAttributes: false;
|
|
2
|
+
readonly schemaVersion: 2;
|
|
4
3
|
readonly pattern: {
|
|
5
4
|
readonly type: "BIcon";
|
|
6
5
|
readonly children: "never";
|
|
@@ -9,6 +8,8 @@ export declare const patterns: readonly [{
|
|
|
9
8
|
readonly fontSize: "size";
|
|
10
9
|
readonly fontWeight: readonly ["normal", "bold", "100", "200", "300", "400", "500", "600", "700", "800", "900"];
|
|
11
10
|
readonly textAlign: readonly ["left", "center", "right", "justify"];
|
|
11
|
+
readonly adjustsFontSizeToFit: "boolean";
|
|
12
|
+
readonly showEllipsis: "boolean";
|
|
12
13
|
readonly scrollable: "boolean";
|
|
13
14
|
readonly flexDirection: readonly ["row", "column"];
|
|
14
15
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
@@ -46,17 +47,12 @@ export declare const patterns: readonly [{
|
|
|
46
47
|
readonly size: "number";
|
|
47
48
|
readonly strokeWidth: "number";
|
|
48
49
|
};
|
|
49
|
-
readonly defaults: {
|
|
50
|
-
readonly iconType: "activity";
|
|
51
|
-
readonly fontSize: "16";
|
|
52
|
-
readonly strokeWidth: 1.5;
|
|
53
|
-
};
|
|
54
50
|
};
|
|
55
51
|
readonly meta: {
|
|
56
52
|
readonly desiredParent: readonly ["all"];
|
|
57
53
|
readonly label: "BIcon";
|
|
58
54
|
readonly description: "Renders an icon from the icon set.";
|
|
59
|
-
readonly
|
|
55
|
+
readonly styles: {
|
|
60
56
|
readonly color: {
|
|
61
57
|
readonly label: "Color";
|
|
62
58
|
readonly description: "Text color.";
|
|
@@ -86,6 +82,20 @@ export declare const patterns: readonly [{
|
|
|
86
82
|
readonly specialCategory: null;
|
|
87
83
|
readonly sort: 4;
|
|
88
84
|
};
|
|
85
|
+
readonly adjustsFontSizeToFit: {
|
|
86
|
+
readonly label: "Adjust Font Size To Fit";
|
|
87
|
+
readonly description: "Automatically reduces font size to fit the available space.";
|
|
88
|
+
readonly category: "style";
|
|
89
|
+
readonly specialCategory: null;
|
|
90
|
+
readonly sort: 5;
|
|
91
|
+
};
|
|
92
|
+
readonly showEllipsis: {
|
|
93
|
+
readonly label: "Show Ellipsis";
|
|
94
|
+
readonly description: "If text overflows, show ellipsis (…); applied as single-line truncation.";
|
|
95
|
+
readonly category: "style";
|
|
96
|
+
readonly specialCategory: null;
|
|
97
|
+
readonly sort: 6;
|
|
98
|
+
};
|
|
89
99
|
readonly scrollable: {
|
|
90
100
|
readonly label: "Scrollable";
|
|
91
101
|
readonly description: "Turns scroll interaction on.";
|
|
@@ -399,18 +409,19 @@ export declare const patterns: readonly [{
|
|
|
399
409
|
};
|
|
400
410
|
};
|
|
401
411
|
};
|
|
402
|
-
readonly types: {};
|
|
403
412
|
readonly defaults: {
|
|
413
|
+
readonly style: {
|
|
414
|
+
readonly flexDirection: "column";
|
|
415
|
+
readonly position: "relative";
|
|
416
|
+
readonly zIndex: 1;
|
|
417
|
+
readonly fontSize: "16";
|
|
418
|
+
};
|
|
404
419
|
readonly iconType: "activity";
|
|
405
|
-
readonly fontSize: "16";
|
|
406
420
|
readonly strokeWidth: 1.5;
|
|
407
|
-
readonly flexDirection: "column";
|
|
408
|
-
readonly position: "relative";
|
|
409
|
-
readonly zIndex: 1;
|
|
410
421
|
};
|
|
422
|
+
readonly types: {};
|
|
411
423
|
}, {
|
|
412
|
-
readonly schemaVersion:
|
|
413
|
-
readonly allowUnknownAttributes: false;
|
|
424
|
+
readonly schemaVersion: 2;
|
|
414
425
|
readonly pattern: {
|
|
415
426
|
readonly type: "BackgroundImage";
|
|
416
427
|
readonly children: "never";
|
|
@@ -451,17 +462,6 @@ export declare const patterns: readonly [{
|
|
|
451
462
|
readonly src: "string";
|
|
452
463
|
readonly resizeMode: readonly ["cover", "contain", "stretch", "center"];
|
|
453
464
|
};
|
|
454
|
-
readonly defaults: {
|
|
455
|
-
readonly resizeMode: "cover";
|
|
456
|
-
readonly width: "100%";
|
|
457
|
-
readonly height: "100%";
|
|
458
|
-
readonly position: "absolute";
|
|
459
|
-
readonly top: 0;
|
|
460
|
-
readonly left: 0;
|
|
461
|
-
readonly right: 0;
|
|
462
|
-
readonly bottom: 0;
|
|
463
|
-
readonly zIndex: 0;
|
|
464
|
-
};
|
|
465
465
|
};
|
|
466
466
|
readonly meta: {
|
|
467
467
|
readonly desiredParent: readonly ["all", "background"];
|
|
@@ -493,7 +493,7 @@ export declare const patterns: readonly [{
|
|
|
493
493
|
readonly sort: 4;
|
|
494
494
|
};
|
|
495
495
|
};
|
|
496
|
-
readonly
|
|
496
|
+
readonly styles: {
|
|
497
497
|
readonly scrollable: {
|
|
498
498
|
readonly label: "Scrollable";
|
|
499
499
|
readonly description: "Turns scroll interaction on.";
|
|
@@ -774,22 +774,23 @@ export declare const patterns: readonly [{
|
|
|
774
774
|
};
|
|
775
775
|
};
|
|
776
776
|
};
|
|
777
|
-
readonly types: {};
|
|
778
777
|
readonly defaults: {
|
|
778
|
+
readonly style: {
|
|
779
|
+
readonly flexDirection: "column";
|
|
780
|
+
readonly position: "absolute";
|
|
781
|
+
readonly zIndex: 0;
|
|
782
|
+
readonly width: "100%";
|
|
783
|
+
readonly height: "100%";
|
|
784
|
+
readonly top: 0;
|
|
785
|
+
readonly left: 0;
|
|
786
|
+
readonly right: 0;
|
|
787
|
+
readonly bottom: 0;
|
|
788
|
+
};
|
|
779
789
|
readonly resizeMode: "cover";
|
|
780
|
-
readonly width: "100%";
|
|
781
|
-
readonly height: "100%";
|
|
782
|
-
readonly position: "absolute";
|
|
783
|
-
readonly top: 0;
|
|
784
|
-
readonly left: 0;
|
|
785
|
-
readonly right: 0;
|
|
786
|
-
readonly bottom: 0;
|
|
787
|
-
readonly zIndex: 0;
|
|
788
|
-
readonly flexDirection: "column";
|
|
789
790
|
};
|
|
791
|
+
readonly types: {};
|
|
790
792
|
}, {
|
|
791
|
-
readonly schemaVersion:
|
|
792
|
-
readonly allowUnknownAttributes: false;
|
|
793
|
+
readonly schemaVersion: 2;
|
|
793
794
|
readonly pattern: {
|
|
794
795
|
readonly type: "Button";
|
|
795
796
|
readonly children: "string";
|
|
@@ -831,9 +832,6 @@ export declare const patterns: readonly [{
|
|
|
831
832
|
readonly fontSize: "size";
|
|
832
833
|
readonly fontWeight: readonly ["normal", "bold", "100", "200", "300", "400", "500", "600", "700", "800", "900"];
|
|
833
834
|
};
|
|
834
|
-
readonly defaults: {
|
|
835
|
-
readonly backgroundColor: "transparent";
|
|
836
|
-
};
|
|
837
835
|
};
|
|
838
836
|
readonly meta: {
|
|
839
837
|
readonly desiredParent: readonly ["all"];
|
|
@@ -865,7 +863,7 @@ export declare const patterns: readonly [{
|
|
|
865
863
|
readonly sort: 4;
|
|
866
864
|
};
|
|
867
865
|
};
|
|
868
|
-
readonly
|
|
866
|
+
readonly styles: {
|
|
869
867
|
readonly scrollable: {
|
|
870
868
|
readonly label: "Scrollable";
|
|
871
869
|
readonly description: "Turns scroll interaction on.";
|
|
@@ -1153,19 +1151,23 @@ export declare const patterns: readonly [{
|
|
|
1153
1151
|
};
|
|
1154
1152
|
};
|
|
1155
1153
|
};
|
|
1156
|
-
readonly types: {};
|
|
1157
1154
|
readonly defaults: {
|
|
1158
|
-
readonly
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1155
|
+
readonly style: {
|
|
1156
|
+
readonly flexDirection: "column";
|
|
1157
|
+
readonly position: "relative";
|
|
1158
|
+
readonly zIndex: 1;
|
|
1159
|
+
readonly display: "flex";
|
|
1160
|
+
readonly alignItems: "center";
|
|
1161
|
+
readonly justifyContent: "center";
|
|
1162
|
+
readonly backgroundColor: "transparent";
|
|
1163
|
+
};
|
|
1162
1164
|
};
|
|
1165
|
+
readonly types: {};
|
|
1163
1166
|
}, {
|
|
1164
|
-
readonly schemaVersion:
|
|
1165
|
-
readonly allowUnknownAttributes: false;
|
|
1167
|
+
readonly schemaVersion: 2;
|
|
1166
1168
|
readonly pattern: {
|
|
1167
1169
|
readonly type: "Carousel";
|
|
1168
|
-
readonly children: "
|
|
1170
|
+
readonly children: "node";
|
|
1169
1171
|
readonly attributes: {
|
|
1170
1172
|
readonly scrollable: "boolean";
|
|
1171
1173
|
readonly flexDirection: readonly ["row", "column"];
|
|
@@ -1200,9 +1202,9 @@ export declare const patterns: readonly [{
|
|
|
1200
1202
|
readonly left: "size";
|
|
1201
1203
|
readonly right: "size";
|
|
1202
1204
|
readonly zIndex: "number";
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
readonly
|
|
1205
|
+
readonly loop: "boolean";
|
|
1206
|
+
readonly dragFree: "boolean";
|
|
1207
|
+
readonly align: readonly ["start", "center", "end"];
|
|
1206
1208
|
};
|
|
1207
1209
|
};
|
|
1208
1210
|
readonly meta: {
|
|
@@ -1235,7 +1237,7 @@ export declare const patterns: readonly [{
|
|
|
1235
1237
|
readonly sort: 4;
|
|
1236
1238
|
};
|
|
1237
1239
|
};
|
|
1238
|
-
readonly
|
|
1240
|
+
readonly styles: {
|
|
1239
1241
|
readonly scrollable: {
|
|
1240
1242
|
readonly label: "Scrollable";
|
|
1241
1243
|
readonly description: "Turns scroll interaction on.";
|
|
@@ -1502,15 +1504,16 @@ export declare const patterns: readonly [{
|
|
|
1502
1504
|
};
|
|
1503
1505
|
};
|
|
1504
1506
|
};
|
|
1505
|
-
readonly types: {};
|
|
1506
1507
|
readonly defaults: {
|
|
1507
|
-
readonly
|
|
1508
|
-
|
|
1509
|
-
|
|
1508
|
+
readonly style: {
|
|
1509
|
+
readonly flexDirection: "row";
|
|
1510
|
+
readonly position: "relative";
|
|
1511
|
+
readonly zIndex: 1;
|
|
1512
|
+
};
|
|
1510
1513
|
};
|
|
1514
|
+
readonly types: {};
|
|
1511
1515
|
}, {
|
|
1512
|
-
readonly schemaVersion:
|
|
1513
|
-
readonly allowUnknownAttributes: false;
|
|
1516
|
+
readonly schemaVersion: 2;
|
|
1514
1517
|
readonly pattern: {
|
|
1515
1518
|
readonly type: "CarouselButtons";
|
|
1516
1519
|
readonly children: "never";
|
|
@@ -1551,11 +1554,6 @@ export declare const patterns: readonly [{
|
|
|
1551
1554
|
readonly buttonType: readonly ["previous_button", "next_button", "skip_button"];
|
|
1552
1555
|
readonly skipNumber: "number";
|
|
1553
1556
|
};
|
|
1554
|
-
readonly defaults: {
|
|
1555
|
-
readonly flexDirection: "column";
|
|
1556
|
-
readonly position: "relative";
|
|
1557
|
-
readonly zIndex: 1;
|
|
1558
|
-
};
|
|
1559
1557
|
};
|
|
1560
1558
|
readonly meta: {
|
|
1561
1559
|
readonly desiredParent: readonly [">OnboardProvider", ">CarouselProvider"];
|
|
@@ -1587,7 +1585,7 @@ export declare const patterns: readonly [{
|
|
|
1587
1585
|
readonly sort: 4;
|
|
1588
1586
|
};
|
|
1589
1587
|
};
|
|
1590
|
-
readonly
|
|
1588
|
+
readonly styles: {
|
|
1591
1589
|
readonly scrollable: {
|
|
1592
1590
|
readonly label: "Scrollable";
|
|
1593
1591
|
readonly description: "Turns scroll interaction on.";
|
|
@@ -1868,15 +1866,16 @@ export declare const patterns: readonly [{
|
|
|
1868
1866
|
};
|
|
1869
1867
|
};
|
|
1870
1868
|
};
|
|
1871
|
-
readonly types: {};
|
|
1872
1869
|
readonly defaults: {
|
|
1873
|
-
readonly
|
|
1874
|
-
|
|
1875
|
-
|
|
1870
|
+
readonly style: {
|
|
1871
|
+
readonly flexDirection: "column";
|
|
1872
|
+
readonly position: "relative";
|
|
1873
|
+
readonly zIndex: 1;
|
|
1874
|
+
};
|
|
1876
1875
|
};
|
|
1876
|
+
readonly types: {};
|
|
1877
1877
|
}, {
|
|
1878
|
-
readonly schemaVersion:
|
|
1879
|
-
readonly allowUnknownAttributes: false;
|
|
1878
|
+
readonly schemaVersion: 2;
|
|
1880
1879
|
readonly pattern: {
|
|
1881
1880
|
readonly type: "CarouselDots";
|
|
1882
1881
|
readonly children: "never";
|
|
@@ -1916,11 +1915,6 @@ export declare const patterns: readonly [{
|
|
|
1916
1915
|
readonly zIndex: "number";
|
|
1917
1916
|
readonly dotType: readonly ["expanding_dot", "normal_dot", "scaling_dot", "sliding_border", "sliding_dot", "liquid_like"];
|
|
1918
1917
|
};
|
|
1919
|
-
readonly defaults: {
|
|
1920
|
-
readonly flexDirection: "column";
|
|
1921
|
-
readonly position: "relative";
|
|
1922
|
-
readonly zIndex: 1;
|
|
1923
|
-
};
|
|
1924
1918
|
};
|
|
1925
1919
|
readonly meta: {
|
|
1926
1920
|
readonly desiredParent: readonly [">CarouselProvider"];
|
|
@@ -1952,7 +1946,7 @@ export declare const patterns: readonly [{
|
|
|
1952
1946
|
readonly sort: 4;
|
|
1953
1947
|
};
|
|
1954
1948
|
};
|
|
1955
|
-
readonly
|
|
1949
|
+
readonly styles: {
|
|
1956
1950
|
readonly scrollable: {
|
|
1957
1951
|
readonly label: "Scrollable";
|
|
1958
1952
|
readonly description: "Turns scroll interaction on.";
|
|
@@ -2226,15 +2220,16 @@ export declare const patterns: readonly [{
|
|
|
2226
2220
|
};
|
|
2227
2221
|
};
|
|
2228
2222
|
};
|
|
2229
|
-
readonly types: {};
|
|
2230
2223
|
readonly defaults: {
|
|
2231
|
-
readonly
|
|
2232
|
-
|
|
2233
|
-
|
|
2224
|
+
readonly style: {
|
|
2225
|
+
readonly flexDirection: "column";
|
|
2226
|
+
readonly position: "relative";
|
|
2227
|
+
readonly zIndex: 1;
|
|
2228
|
+
};
|
|
2234
2229
|
};
|
|
2230
|
+
readonly types: {};
|
|
2235
2231
|
}, {
|
|
2236
|
-
readonly schemaVersion:
|
|
2237
|
-
readonly allowUnknownAttributes: false;
|
|
2232
|
+
readonly schemaVersion: 2;
|
|
2238
2233
|
readonly pattern: {
|
|
2239
2234
|
readonly type: "CarouselItem";
|
|
2240
2235
|
readonly children: "node";
|
|
@@ -2273,11 +2268,6 @@ export declare const patterns: readonly [{
|
|
|
2273
2268
|
readonly right: "size";
|
|
2274
2269
|
readonly zIndex: "number";
|
|
2275
2270
|
};
|
|
2276
|
-
readonly defaults: {
|
|
2277
|
-
readonly flexDirection: "column";
|
|
2278
|
-
readonly position: "relative";
|
|
2279
|
-
readonly zIndex: 1;
|
|
2280
|
-
};
|
|
2281
2271
|
};
|
|
2282
2272
|
readonly meta: {
|
|
2283
2273
|
readonly desiredParent: readonly ["=Carousel"];
|
|
@@ -2309,7 +2299,7 @@ export declare const patterns: readonly [{
|
|
|
2309
2299
|
readonly sort: 4;
|
|
2310
2300
|
};
|
|
2311
2301
|
};
|
|
2312
|
-
readonly
|
|
2302
|
+
readonly styles: {
|
|
2313
2303
|
readonly scrollable: {
|
|
2314
2304
|
readonly label: "Scrollable";
|
|
2315
2305
|
readonly description: "Turns scroll interaction on.";
|
|
@@ -2576,15 +2566,16 @@ export declare const patterns: readonly [{
|
|
|
2576
2566
|
};
|
|
2577
2567
|
};
|
|
2578
2568
|
};
|
|
2579
|
-
readonly types: {};
|
|
2580
2569
|
readonly defaults: {
|
|
2581
|
-
readonly
|
|
2582
|
-
|
|
2583
|
-
|
|
2570
|
+
readonly style: {
|
|
2571
|
+
readonly flexDirection: "column";
|
|
2572
|
+
readonly position: "relative";
|
|
2573
|
+
readonly zIndex: 1;
|
|
2574
|
+
};
|
|
2584
2575
|
};
|
|
2576
|
+
readonly types: {};
|
|
2585
2577
|
}, {
|
|
2586
2578
|
readonly schemaVersion: 1;
|
|
2587
|
-
readonly allowUnknownAttributes: false;
|
|
2588
2579
|
readonly pattern: {
|
|
2589
2580
|
readonly type: "CarouselProvider";
|
|
2590
2581
|
readonly children: "node";
|
|
@@ -2623,11 +2614,6 @@ export declare const patterns: readonly [{
|
|
|
2623
2614
|
readonly right: "size";
|
|
2624
2615
|
readonly zIndex: "number";
|
|
2625
2616
|
};
|
|
2626
|
-
readonly defaults: {
|
|
2627
|
-
readonly flexDirection: "column";
|
|
2628
|
-
readonly position: "relative";
|
|
2629
|
-
readonly zIndex: 1;
|
|
2630
|
-
};
|
|
2631
2617
|
};
|
|
2632
2618
|
readonly meta: {
|
|
2633
2619
|
readonly desiredParent: readonly ["root", ">View"];
|
|
@@ -2659,7 +2645,7 @@ export declare const patterns: readonly [{
|
|
|
2659
2645
|
readonly sort: 4;
|
|
2660
2646
|
};
|
|
2661
2647
|
};
|
|
2662
|
-
readonly
|
|
2648
|
+
readonly styles: {
|
|
2663
2649
|
readonly scrollable: {
|
|
2664
2650
|
readonly label: "Scrollable";
|
|
2665
2651
|
readonly description: "Turns scroll interaction on.";
|
|
@@ -2925,16 +2911,19 @@ export declare const patterns: readonly [{
|
|
|
2925
2911
|
readonly sort: 26;
|
|
2926
2912
|
};
|
|
2927
2913
|
};
|
|
2914
|
+
readonly attributes: {};
|
|
2928
2915
|
};
|
|
2929
|
-
readonly types: {};
|
|
2930
2916
|
readonly defaults: {
|
|
2931
|
-
readonly
|
|
2932
|
-
|
|
2933
|
-
|
|
2917
|
+
readonly style: {
|
|
2918
|
+
readonly flexDirection: "column";
|
|
2919
|
+
readonly position: "relative";
|
|
2920
|
+
readonly zIndex: 1;
|
|
2921
|
+
};
|
|
2934
2922
|
};
|
|
2935
|
-
}, {
|
|
2936
|
-
readonly schemaVersion: 1;
|
|
2937
2923
|
readonly allowUnknownAttributes: false;
|
|
2924
|
+
readonly types: {};
|
|
2925
|
+
}, {
|
|
2926
|
+
readonly schemaVersion: 2;
|
|
2938
2927
|
readonly pattern: {
|
|
2939
2928
|
readonly type: "Image";
|
|
2940
2929
|
readonly children: "never";
|
|
@@ -2975,11 +2964,6 @@ export declare const patterns: readonly [{
|
|
|
2975
2964
|
readonly src: "string";
|
|
2976
2965
|
readonly resizeMode: readonly ["cover", "contain", "stretch", "center"];
|
|
2977
2966
|
};
|
|
2978
|
-
readonly defaults: {
|
|
2979
|
-
readonly flexDirection: "column";
|
|
2980
|
-
readonly position: "relative";
|
|
2981
|
-
readonly zIndex: 1;
|
|
2982
|
-
};
|
|
2983
2967
|
};
|
|
2984
2968
|
readonly meta: {
|
|
2985
2969
|
readonly desiredParent: readonly ["all"];
|
|
@@ -3011,7 +2995,7 @@ export declare const patterns: readonly [{
|
|
|
3011
2995
|
readonly sort: 4;
|
|
3012
2996
|
};
|
|
3013
2997
|
};
|
|
3014
|
-
readonly
|
|
2998
|
+
readonly styles: {
|
|
3015
2999
|
readonly scrollable: {
|
|
3016
3000
|
readonly label: "Scrollable";
|
|
3017
3001
|
readonly description: "Turns scroll interaction on.";
|
|
@@ -3290,18 +3274,19 @@ export declare const patterns: readonly [{
|
|
|
3290
3274
|
};
|
|
3291
3275
|
};
|
|
3292
3276
|
};
|
|
3293
|
-
readonly types: {};
|
|
3294
3277
|
readonly defaults: {
|
|
3295
|
-
readonly
|
|
3296
|
-
|
|
3297
|
-
|
|
3278
|
+
readonly style: {
|
|
3279
|
+
readonly flexDirection: "column";
|
|
3280
|
+
readonly position: "relative";
|
|
3281
|
+
readonly zIndex: 1;
|
|
3282
|
+
};
|
|
3298
3283
|
};
|
|
3284
|
+
readonly types: {};
|
|
3299
3285
|
}, {
|
|
3300
|
-
readonly schemaVersion:
|
|
3301
|
-
readonly allowUnknownAttributes: true;
|
|
3286
|
+
readonly schemaVersion: 2;
|
|
3302
3287
|
readonly pattern: {
|
|
3303
3288
|
readonly type: "Main";
|
|
3304
|
-
readonly children:
|
|
3289
|
+
readonly children: "node";
|
|
3305
3290
|
readonly attributes: {
|
|
3306
3291
|
readonly scrollable: "boolean";
|
|
3307
3292
|
readonly flexDirection: readonly ["row", "column"];
|
|
@@ -3338,11 +3323,6 @@ export declare const patterns: readonly [{
|
|
|
3338
3323
|
readonly zIndex: "number";
|
|
3339
3324
|
readonly useSafeAreaView: "boolean";
|
|
3340
3325
|
};
|
|
3341
|
-
readonly defaults: {
|
|
3342
|
-
readonly flexDirection: "column";
|
|
3343
|
-
readonly position: "relative";
|
|
3344
|
-
readonly zIndex: 1;
|
|
3345
|
-
};
|
|
3346
3326
|
};
|
|
3347
3327
|
readonly meta: {
|
|
3348
3328
|
readonly desiredParent: readonly ["root"];
|
|
@@ -3374,7 +3354,7 @@ export declare const patterns: readonly [{
|
|
|
3374
3354
|
readonly sort: 4;
|
|
3375
3355
|
};
|
|
3376
3356
|
};
|
|
3377
|
-
readonly
|
|
3357
|
+
readonly styles: {
|
|
3378
3358
|
readonly scrollable: {
|
|
3379
3359
|
readonly label: "Scrollable";
|
|
3380
3360
|
readonly description: "Turns scroll interaction on.";
|
|
@@ -3651,18 +3631,19 @@ export declare const patterns: readonly [{
|
|
|
3651
3631
|
readonly hideAllAttributes: true;
|
|
3652
3632
|
};
|
|
3653
3633
|
readonly defaults: {
|
|
3654
|
-
readonly
|
|
3655
|
-
|
|
3656
|
-
|
|
3634
|
+
readonly style: {
|
|
3635
|
+
readonly flexDirection: "column";
|
|
3636
|
+
readonly position: "relative";
|
|
3637
|
+
readonly zIndex: 1;
|
|
3638
|
+
readonly width: "100%";
|
|
3639
|
+
readonly height: "100%";
|
|
3640
|
+
readonly flex: 1;
|
|
3641
|
+
};
|
|
3657
3642
|
readonly useSafeAreaView: true;
|
|
3658
|
-
readonly width: "100%";
|
|
3659
|
-
readonly height: "100%";
|
|
3660
|
-
readonly flex: 1;
|
|
3661
3643
|
};
|
|
3662
3644
|
readonly types: {};
|
|
3663
3645
|
}, {
|
|
3664
|
-
readonly schemaVersion:
|
|
3665
|
-
readonly allowUnknownAttributes: false;
|
|
3646
|
+
readonly schemaVersion: 2;
|
|
3666
3647
|
readonly pattern: {
|
|
3667
3648
|
readonly type: "Onboard";
|
|
3668
3649
|
readonly children: "node";
|
|
@@ -3701,9 +3682,6 @@ export declare const patterns: readonly [{
|
|
|
3701
3682
|
readonly right: "size";
|
|
3702
3683
|
readonly zIndex: "number";
|
|
3703
3684
|
};
|
|
3704
|
-
readonly defaults: {
|
|
3705
|
-
readonly flexDirection: "row";
|
|
3706
|
-
};
|
|
3707
3685
|
};
|
|
3708
3686
|
readonly meta: {
|
|
3709
3687
|
readonly desiredParent: readonly ["=OnboardProvider"];
|
|
@@ -3735,7 +3713,7 @@ export declare const patterns: readonly [{
|
|
|
3735
3713
|
readonly sort: 4;
|
|
3736
3714
|
};
|
|
3737
3715
|
};
|
|
3738
|
-
readonly
|
|
3716
|
+
readonly styles: {
|
|
3739
3717
|
readonly scrollable: {
|
|
3740
3718
|
readonly label: "Scrollable";
|
|
3741
3719
|
readonly description: "Turns scroll interaction on.";
|
|
@@ -4003,15 +3981,16 @@ export declare const patterns: readonly [{
|
|
|
4003
3981
|
};
|
|
4004
3982
|
readonly desiredChildren: readonly ["=OnboardItem"];
|
|
4005
3983
|
};
|
|
4006
|
-
readonly types: {};
|
|
4007
3984
|
readonly defaults: {
|
|
4008
|
-
readonly
|
|
4009
|
-
|
|
4010
|
-
|
|
3985
|
+
readonly style: {
|
|
3986
|
+
readonly flexDirection: "row";
|
|
3987
|
+
readonly position: "relative";
|
|
3988
|
+
readonly zIndex: 1;
|
|
3989
|
+
};
|
|
4011
3990
|
};
|
|
3991
|
+
readonly types: {};
|
|
4012
3992
|
}, {
|
|
4013
|
-
readonly schemaVersion:
|
|
4014
|
-
readonly allowUnknownAttributes: false;
|
|
3993
|
+
readonly schemaVersion: 2;
|
|
4015
3994
|
readonly pattern: {
|
|
4016
3995
|
readonly type: "OnboardButton";
|
|
4017
3996
|
readonly children: "never";
|
|
@@ -4056,11 +4035,6 @@ export declare const patterns: readonly [{
|
|
|
4056
4035
|
readonly button_background_color: "color";
|
|
4057
4036
|
readonly events: "EventObject[]";
|
|
4058
4037
|
};
|
|
4059
|
-
readonly defaults: {
|
|
4060
|
-
readonly flexDirection: "column";
|
|
4061
|
-
readonly position: "relative";
|
|
4062
|
-
readonly zIndex: 1;
|
|
4063
|
-
};
|
|
4064
4038
|
};
|
|
4065
4039
|
readonly meta: {
|
|
4066
4040
|
readonly desiredParent: readonly ["=OnboardButtons"];
|
|
@@ -4092,7 +4066,7 @@ export declare const patterns: readonly [{
|
|
|
4092
4066
|
readonly sort: 4;
|
|
4093
4067
|
};
|
|
4094
4068
|
};
|
|
4095
|
-
readonly
|
|
4069
|
+
readonly styles: {
|
|
4096
4070
|
readonly scrollable: {
|
|
4097
4071
|
readonly label: "Scrollable";
|
|
4098
4072
|
readonly description: "Turns scroll interaction on.";
|
|
@@ -4401,6 +4375,13 @@ export declare const patterns: readonly [{
|
|
|
4401
4375
|
};
|
|
4402
4376
|
};
|
|
4403
4377
|
};
|
|
4378
|
+
readonly defaults: {
|
|
4379
|
+
readonly style: {
|
|
4380
|
+
readonly flexDirection: "column";
|
|
4381
|
+
readonly position: "relative";
|
|
4382
|
+
readonly zIndex: 1;
|
|
4383
|
+
};
|
|
4384
|
+
};
|
|
4404
4385
|
readonly types: {
|
|
4405
4386
|
readonly EventObject: {
|
|
4406
4387
|
readonly type: readonly ["Permission", "Navigate"];
|
|
@@ -4409,14 +4390,8 @@ export declare const patterns: readonly [{
|
|
|
4409
4390
|
readonly targetIndex: "number";
|
|
4410
4391
|
};
|
|
4411
4392
|
};
|
|
4412
|
-
readonly defaults: {
|
|
4413
|
-
readonly flexDirection: "column";
|
|
4414
|
-
readonly position: "relative";
|
|
4415
|
-
readonly zIndex: 1;
|
|
4416
|
-
};
|
|
4417
4393
|
}, {
|
|
4418
|
-
readonly schemaVersion:
|
|
4419
|
-
readonly allowUnknownAttributes: false;
|
|
4394
|
+
readonly schemaVersion: 2;
|
|
4420
4395
|
readonly pattern: {
|
|
4421
4396
|
readonly type: "OnboardButtons";
|
|
4422
4397
|
readonly children: "node";
|
|
@@ -4462,11 +4437,6 @@ export declare const patterns: readonly [{
|
|
|
4462
4437
|
readonly condition: readonly ["carousel-index"];
|
|
4463
4438
|
readonly conditionVariable: "number";
|
|
4464
4439
|
};
|
|
4465
|
-
readonly defaults: {
|
|
4466
|
-
readonly flexDirection: "column";
|
|
4467
|
-
readonly position: "relative";
|
|
4468
|
-
readonly zIndex: 1;
|
|
4469
|
-
};
|
|
4470
4440
|
};
|
|
4471
4441
|
readonly meta: {
|
|
4472
4442
|
readonly desiredParent: readonly ["=OnboardItem"];
|
|
@@ -4498,7 +4468,7 @@ export declare const patterns: readonly [{
|
|
|
4498
4468
|
readonly sort: 4;
|
|
4499
4469
|
};
|
|
4500
4470
|
};
|
|
4501
|
-
readonly
|
|
4471
|
+
readonly styles: {
|
|
4502
4472
|
readonly scrollable: {
|
|
4503
4473
|
readonly label: "Scrollable";
|
|
4504
4474
|
readonly description: "Turns scroll interaction on.";
|
|
@@ -4814,15 +4784,16 @@ export declare const patterns: readonly [{
|
|
|
4814
4784
|
};
|
|
4815
4785
|
};
|
|
4816
4786
|
};
|
|
4817
|
-
readonly types: {};
|
|
4818
4787
|
readonly defaults: {
|
|
4819
|
-
readonly
|
|
4820
|
-
|
|
4821
|
-
|
|
4788
|
+
readonly style: {
|
|
4789
|
+
readonly flexDirection: "column";
|
|
4790
|
+
readonly position: "relative";
|
|
4791
|
+
readonly zIndex: 1;
|
|
4792
|
+
};
|
|
4822
4793
|
};
|
|
4794
|
+
readonly types: {};
|
|
4823
4795
|
}, {
|
|
4824
|
-
readonly schemaVersion:
|
|
4825
|
-
readonly allowUnknownAttributes: false;
|
|
4796
|
+
readonly schemaVersion: 2;
|
|
4826
4797
|
readonly pattern: {
|
|
4827
4798
|
readonly type: "OnboardDot";
|
|
4828
4799
|
readonly children: "never";
|
|
@@ -4865,11 +4836,6 @@ export declare const patterns: readonly [{
|
|
|
4865
4836
|
readonly expanding_dot_width: "size";
|
|
4866
4837
|
readonly active_dot_color: "color";
|
|
4867
4838
|
};
|
|
4868
|
-
readonly defaults: {
|
|
4869
|
-
readonly flexDirection: "column";
|
|
4870
|
-
readonly position: "relative";
|
|
4871
|
-
readonly zIndex: 1;
|
|
4872
|
-
};
|
|
4873
4839
|
};
|
|
4874
4840
|
readonly meta: {
|
|
4875
4841
|
readonly desiredParent: readonly [">OnboardProvider"];
|
|
@@ -4901,7 +4867,7 @@ export declare const patterns: readonly [{
|
|
|
4901
4867
|
readonly sort: 4;
|
|
4902
4868
|
};
|
|
4903
4869
|
};
|
|
4904
|
-
readonly
|
|
4870
|
+
readonly styles: {
|
|
4905
4871
|
readonly scrollable: {
|
|
4906
4872
|
readonly label: "Scrollable";
|
|
4907
4873
|
readonly description: "Turns scroll interaction on.";
|
|
@@ -5196,15 +5162,16 @@ export declare const patterns: readonly [{
|
|
|
5196
5162
|
};
|
|
5197
5163
|
};
|
|
5198
5164
|
};
|
|
5199
|
-
readonly types: {};
|
|
5200
5165
|
readonly defaults: {
|
|
5201
|
-
readonly
|
|
5202
|
-
|
|
5203
|
-
|
|
5166
|
+
readonly style: {
|
|
5167
|
+
readonly flexDirection: "column";
|
|
5168
|
+
readonly position: "relative";
|
|
5169
|
+
readonly zIndex: 1;
|
|
5170
|
+
};
|
|
5204
5171
|
};
|
|
5172
|
+
readonly types: {};
|
|
5205
5173
|
}, {
|
|
5206
|
-
readonly schemaVersion:
|
|
5207
|
-
readonly allowUnknownAttributes: false;
|
|
5174
|
+
readonly schemaVersion: 2;
|
|
5208
5175
|
readonly pattern: {
|
|
5209
5176
|
readonly type: "OnboardFooter";
|
|
5210
5177
|
readonly children: "node";
|
|
@@ -5213,6 +5180,8 @@ export declare const patterns: readonly [{
|
|
|
5213
5180
|
readonly fontSize: "size";
|
|
5214
5181
|
readonly fontWeight: readonly ["normal", "bold", "100", "200", "300", "400", "500", "600", "700", "800", "900"];
|
|
5215
5182
|
readonly textAlign: readonly ["left", "center", "right", "justify"];
|
|
5183
|
+
readonly adjustsFontSizeToFit: "boolean";
|
|
5184
|
+
readonly showEllipsis: "boolean";
|
|
5216
5185
|
readonly scrollable: "boolean";
|
|
5217
5186
|
readonly flexDirection: readonly ["row", "column"];
|
|
5218
5187
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
@@ -5254,17 +5223,12 @@ export declare const patterns: readonly [{
|
|
|
5254
5223
|
readonly linkedWordSecondColor: "color";
|
|
5255
5224
|
readonly linkedWordSecondPage: "string";
|
|
5256
5225
|
};
|
|
5257
|
-
readonly defaults: {
|
|
5258
|
-
readonly flexDirection: "column";
|
|
5259
|
-
readonly position: "relative";
|
|
5260
|
-
readonly zIndex: 1;
|
|
5261
|
-
};
|
|
5262
5226
|
};
|
|
5263
5227
|
readonly meta: {
|
|
5264
5228
|
readonly desiredParent: readonly [">OnboardItem"];
|
|
5265
5229
|
readonly label: "Onboard Footer";
|
|
5266
5230
|
readonly description: "Footer text with optional links.";
|
|
5267
|
-
readonly
|
|
5231
|
+
readonly styles: {
|
|
5268
5232
|
readonly color: {
|
|
5269
5233
|
readonly label: "Color";
|
|
5270
5234
|
readonly description: "Text color.";
|
|
@@ -5294,6 +5258,20 @@ export declare const patterns: readonly [{
|
|
|
5294
5258
|
readonly specialCategory: null;
|
|
5295
5259
|
readonly sort: 4;
|
|
5296
5260
|
};
|
|
5261
|
+
readonly adjustsFontSizeToFit: {
|
|
5262
|
+
readonly label: "Adjust Font Size To Fit";
|
|
5263
|
+
readonly description: "Automatically reduces font size to fit the available space.";
|
|
5264
|
+
readonly category: "style";
|
|
5265
|
+
readonly specialCategory: null;
|
|
5266
|
+
readonly sort: 5;
|
|
5267
|
+
};
|
|
5268
|
+
readonly showEllipsis: {
|
|
5269
|
+
readonly label: "Show Ellipsis";
|
|
5270
|
+
readonly description: "If text overflows, show ellipsis (…); applied as single-line truncation.";
|
|
5271
|
+
readonly category: "style";
|
|
5272
|
+
readonly specialCategory: null;
|
|
5273
|
+
readonly sort: 6;
|
|
5274
|
+
};
|
|
5297
5275
|
readonly scrollable: {
|
|
5298
5276
|
readonly label: "Scrollable";
|
|
5299
5277
|
readonly description: "Turns scroll interaction on.";
|
|
@@ -5636,15 +5614,16 @@ export declare const patterns: readonly [{
|
|
|
5636
5614
|
};
|
|
5637
5615
|
};
|
|
5638
5616
|
readonly defaults: {
|
|
5639
|
-
readonly
|
|
5640
|
-
|
|
5641
|
-
|
|
5642
|
-
|
|
5617
|
+
readonly style: {
|
|
5618
|
+
readonly flexDirection: "column";
|
|
5619
|
+
readonly position: "relative";
|
|
5620
|
+
readonly zIndex: 1;
|
|
5621
|
+
readonly paddingHorizontal: "24@s";
|
|
5622
|
+
};
|
|
5643
5623
|
};
|
|
5644
5624
|
readonly types: {};
|
|
5645
5625
|
}, {
|
|
5646
|
-
readonly schemaVersion:
|
|
5647
|
-
readonly allowUnknownAttributes: false;
|
|
5626
|
+
readonly schemaVersion: 2;
|
|
5648
5627
|
readonly pattern: {
|
|
5649
5628
|
readonly type: "OnboardImage";
|
|
5650
5629
|
readonly children: "node";
|
|
@@ -5687,17 +5666,12 @@ export declare const patterns: readonly [{
|
|
|
5687
5666
|
readonly video_url: "string";
|
|
5688
5667
|
readonly lottie: "string";
|
|
5689
5668
|
};
|
|
5690
|
-
readonly defaults: {
|
|
5691
|
-
readonly flexDirection: "column";
|
|
5692
|
-
readonly position: "relative";
|
|
5693
|
-
readonly zIndex: 1;
|
|
5694
|
-
};
|
|
5695
5669
|
};
|
|
5696
5670
|
readonly meta: {
|
|
5697
5671
|
readonly desiredParent: readonly [">OnboardProvider", ">OnboardItem", "!=Onboard"];
|
|
5698
5672
|
readonly label: "Onboard Image";
|
|
5699
5673
|
readonly description: "Onboarding hero image with media.";
|
|
5700
|
-
readonly
|
|
5674
|
+
readonly styles: {
|
|
5701
5675
|
readonly src: {
|
|
5702
5676
|
readonly label: "Src";
|
|
5703
5677
|
readonly description: "Image source URL.";
|
|
@@ -6018,15 +5992,16 @@ export declare const patterns: readonly [{
|
|
|
6018
5992
|
};
|
|
6019
5993
|
};
|
|
6020
5994
|
};
|
|
6021
|
-
readonly types: {};
|
|
6022
5995
|
readonly defaults: {
|
|
6023
|
-
readonly
|
|
6024
|
-
|
|
6025
|
-
|
|
5996
|
+
readonly style: {
|
|
5997
|
+
readonly flexDirection: "column";
|
|
5998
|
+
readonly position: "relative";
|
|
5999
|
+
readonly zIndex: 1;
|
|
6000
|
+
};
|
|
6026
6001
|
};
|
|
6002
|
+
readonly types: {};
|
|
6027
6003
|
}, {
|
|
6028
|
-
readonly schemaVersion:
|
|
6029
|
-
readonly allowUnknownAttributes: false;
|
|
6004
|
+
readonly schemaVersion: 2;
|
|
6030
6005
|
readonly pattern: {
|
|
6031
6006
|
readonly type: "OnboardItem";
|
|
6032
6007
|
readonly children: "node";
|
|
@@ -6066,11 +6041,6 @@ export declare const patterns: readonly [{
|
|
|
6066
6041
|
readonly zIndex: "number";
|
|
6067
6042
|
readonly display: readonly ["flex", "block"];
|
|
6068
6043
|
};
|
|
6069
|
-
readonly defaults: {
|
|
6070
|
-
readonly flexDirection: "column";
|
|
6071
|
-
readonly position: "relative";
|
|
6072
|
-
readonly zIndex: 1;
|
|
6073
|
-
};
|
|
6074
6044
|
};
|
|
6075
6045
|
readonly meta: {
|
|
6076
6046
|
readonly desiredParent: readonly ["=Onboard"];
|
|
@@ -6102,7 +6072,7 @@ export declare const patterns: readonly [{
|
|
|
6102
6072
|
readonly sort: 4;
|
|
6103
6073
|
};
|
|
6104
6074
|
};
|
|
6105
|
-
readonly
|
|
6075
|
+
readonly styles: {
|
|
6106
6076
|
readonly scrollable: {
|
|
6107
6077
|
readonly label: "Scrollable";
|
|
6108
6078
|
readonly description: "Turns scroll interaction on.";
|
|
@@ -6375,17 +6345,18 @@ export declare const patterns: readonly [{
|
|
|
6375
6345
|
};
|
|
6376
6346
|
};
|
|
6377
6347
|
readonly defaults: {
|
|
6378
|
-
readonly
|
|
6379
|
-
|
|
6380
|
-
|
|
6381
|
-
|
|
6348
|
+
readonly style: {
|
|
6349
|
+
readonly flexDirection: "column";
|
|
6350
|
+
readonly position: "relative";
|
|
6351
|
+
readonly zIndex: 1;
|
|
6352
|
+
readonly gap: "16@vs";
|
|
6353
|
+
readonly paddingHorizontal: "24@s";
|
|
6354
|
+
};
|
|
6382
6355
|
readonly display: "flex";
|
|
6383
|
-
readonly paddingHorizontal: "24@s";
|
|
6384
6356
|
};
|
|
6385
6357
|
readonly types: {};
|
|
6386
6358
|
}, {
|
|
6387
|
-
readonly schemaVersion:
|
|
6388
|
-
readonly allowUnknownAttributes: false;
|
|
6359
|
+
readonly schemaVersion: 2;
|
|
6389
6360
|
readonly pattern: {
|
|
6390
6361
|
readonly type: "OnboardProvider";
|
|
6391
6362
|
readonly children: "node";
|
|
@@ -6423,11 +6394,7 @@ export declare const patterns: readonly [{
|
|
|
6423
6394
|
readonly left: "size";
|
|
6424
6395
|
readonly right: "size";
|
|
6425
6396
|
readonly zIndex: "number";
|
|
6426
|
-
|
|
6427
|
-
readonly defaults: {
|
|
6428
|
-
readonly flexDirection: "column";
|
|
6429
|
-
readonly position: "relative";
|
|
6430
|
-
readonly zIndex: 1;
|
|
6397
|
+
readonly theme: readonly ["light", "dark", "all"];
|
|
6431
6398
|
};
|
|
6432
6399
|
};
|
|
6433
6400
|
readonly meta: {
|
|
@@ -6460,7 +6427,7 @@ export declare const patterns: readonly [{
|
|
|
6460
6427
|
readonly sort: 4;
|
|
6461
6428
|
};
|
|
6462
6429
|
};
|
|
6463
|
-
readonly
|
|
6430
|
+
readonly styles: {
|
|
6464
6431
|
readonly scrollable: {
|
|
6465
6432
|
readonly label: "Scrollable";
|
|
6466
6433
|
readonly description: "Turns scroll interaction on.";
|
|
@@ -6721,19 +6688,27 @@ export declare const patterns: readonly [{
|
|
|
6721
6688
|
readonly specialCategory: null;
|
|
6722
6689
|
readonly sort: 26;
|
|
6723
6690
|
};
|
|
6691
|
+
readonly theme: {
|
|
6692
|
+
readonly label: "Theme";
|
|
6693
|
+
readonly description: "Controls which app theme(s) this onboarding is intended for.";
|
|
6694
|
+
readonly category: "other";
|
|
6695
|
+
readonly specialCategory: null;
|
|
6696
|
+
readonly sort: -10;
|
|
6697
|
+
};
|
|
6724
6698
|
};
|
|
6725
6699
|
};
|
|
6726
6700
|
readonly defaults: {
|
|
6727
|
-
readonly
|
|
6728
|
-
|
|
6729
|
-
|
|
6730
|
-
|
|
6731
|
-
|
|
6701
|
+
readonly style: {
|
|
6702
|
+
readonly flexDirection: "column";
|
|
6703
|
+
readonly position: "relative";
|
|
6704
|
+
readonly zIndex: 1;
|
|
6705
|
+
readonly width: "100%";
|
|
6706
|
+
readonly height: "100%";
|
|
6707
|
+
};
|
|
6732
6708
|
};
|
|
6733
6709
|
readonly types: {};
|
|
6734
6710
|
}, {
|
|
6735
|
-
readonly schemaVersion:
|
|
6736
|
-
readonly allowUnknownAttributes: false;
|
|
6711
|
+
readonly schemaVersion: 2;
|
|
6737
6712
|
readonly pattern: {
|
|
6738
6713
|
readonly type: "OnboardSubtitle";
|
|
6739
6714
|
readonly children: "string";
|
|
@@ -6742,6 +6717,8 @@ export declare const patterns: readonly [{
|
|
|
6742
6717
|
readonly fontSize: "size";
|
|
6743
6718
|
readonly fontWeight: readonly ["normal", "bold", "100", "200", "300", "400", "500", "600", "700", "800", "900"];
|
|
6744
6719
|
readonly textAlign: readonly ["left", "center", "right", "justify"];
|
|
6720
|
+
readonly adjustsFontSizeToFit: "boolean";
|
|
6721
|
+
readonly showEllipsis: "boolean";
|
|
6745
6722
|
readonly scrollable: "boolean";
|
|
6746
6723
|
readonly flexDirection: readonly ["row", "column"];
|
|
6747
6724
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
@@ -6776,17 +6753,12 @@ export declare const patterns: readonly [{
|
|
|
6776
6753
|
readonly right: "size";
|
|
6777
6754
|
readonly zIndex: "number";
|
|
6778
6755
|
};
|
|
6779
|
-
readonly defaults: {
|
|
6780
|
-
readonly flexDirection: "column";
|
|
6781
|
-
readonly position: "relative";
|
|
6782
|
-
readonly zIndex: 1;
|
|
6783
|
-
};
|
|
6784
6756
|
};
|
|
6785
6757
|
readonly meta: {
|
|
6786
6758
|
readonly desiredParent: readonly [">OnboardProvider", ">OnboardItem"];
|
|
6787
6759
|
readonly label: "Onboard Subtitle";
|
|
6788
6760
|
readonly description: "Subtitle text for an onboarding step.";
|
|
6789
|
-
readonly
|
|
6761
|
+
readonly styles: {
|
|
6790
6762
|
readonly color: {
|
|
6791
6763
|
readonly label: "Color";
|
|
6792
6764
|
readonly description: "Text color.";
|
|
@@ -6816,6 +6788,20 @@ export declare const patterns: readonly [{
|
|
|
6816
6788
|
readonly specialCategory: null;
|
|
6817
6789
|
readonly sort: 4;
|
|
6818
6790
|
};
|
|
6791
|
+
readonly adjustsFontSizeToFit: {
|
|
6792
|
+
readonly label: "Adjust Font Size To Fit";
|
|
6793
|
+
readonly description: "Automatically reduces font size to fit the available space.";
|
|
6794
|
+
readonly category: "style";
|
|
6795
|
+
readonly specialCategory: null;
|
|
6796
|
+
readonly sort: 5;
|
|
6797
|
+
};
|
|
6798
|
+
readonly showEllipsis: {
|
|
6799
|
+
readonly label: "Show Ellipsis";
|
|
6800
|
+
readonly description: "If text overflows, show ellipsis (…); applied as single-line truncation.";
|
|
6801
|
+
readonly category: "style";
|
|
6802
|
+
readonly specialCategory: null;
|
|
6803
|
+
readonly sort: 6;
|
|
6804
|
+
};
|
|
6819
6805
|
readonly scrollable: {
|
|
6820
6806
|
readonly label: "Scrollable";
|
|
6821
6807
|
readonly description: "Turns scroll interaction on.";
|
|
@@ -7109,16 +7095,17 @@ export declare const patterns: readonly [{
|
|
|
7109
7095
|
};
|
|
7110
7096
|
};
|
|
7111
7097
|
readonly defaults: {
|
|
7112
|
-
readonly
|
|
7113
|
-
|
|
7114
|
-
|
|
7115
|
-
|
|
7116
|
-
|
|
7098
|
+
readonly style: {
|
|
7099
|
+
readonly flexDirection: "column";
|
|
7100
|
+
readonly position: "relative";
|
|
7101
|
+
readonly zIndex: 1;
|
|
7102
|
+
readonly fontSize: "14@fs";
|
|
7103
|
+
readonly fontWeight: "600";
|
|
7104
|
+
};
|
|
7117
7105
|
};
|
|
7118
7106
|
readonly types: {};
|
|
7119
7107
|
}, {
|
|
7120
|
-
readonly schemaVersion:
|
|
7121
|
-
readonly allowUnknownAttributes: false;
|
|
7108
|
+
readonly schemaVersion: 2;
|
|
7122
7109
|
readonly pattern: {
|
|
7123
7110
|
readonly type: "OnboardTitle";
|
|
7124
7111
|
readonly children: "string";
|
|
@@ -7127,6 +7114,8 @@ export declare const patterns: readonly [{
|
|
|
7127
7114
|
readonly fontSize: "size";
|
|
7128
7115
|
readonly fontWeight: readonly ["normal", "bold", "100", "200", "300", "400", "500", "600", "700", "800", "900"];
|
|
7129
7116
|
readonly textAlign: readonly ["left", "center", "right", "justify"];
|
|
7117
|
+
readonly adjustsFontSizeToFit: "boolean";
|
|
7118
|
+
readonly showEllipsis: "boolean";
|
|
7130
7119
|
readonly scrollable: "boolean";
|
|
7131
7120
|
readonly flexDirection: readonly ["row", "column"];
|
|
7132
7121
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
@@ -7161,17 +7150,12 @@ export declare const patterns: readonly [{
|
|
|
7161
7150
|
readonly right: "size";
|
|
7162
7151
|
readonly zIndex: "number";
|
|
7163
7152
|
};
|
|
7164
|
-
readonly defaults: {
|
|
7165
|
-
readonly flexDirection: "column";
|
|
7166
|
-
readonly position: "relative";
|
|
7167
|
-
readonly zIndex: 1;
|
|
7168
|
-
};
|
|
7169
7153
|
};
|
|
7170
7154
|
readonly meta: {
|
|
7171
7155
|
readonly desiredParent: readonly [">OnboardItem", ">OnboardProvider"];
|
|
7172
7156
|
readonly label: "Onboard Title";
|
|
7173
7157
|
readonly description: "Title text for an onboarding step.";
|
|
7174
|
-
readonly
|
|
7158
|
+
readonly styles: {
|
|
7175
7159
|
readonly color: {
|
|
7176
7160
|
readonly label: "Color";
|
|
7177
7161
|
readonly description: "Text color.";
|
|
@@ -7201,6 +7185,20 @@ export declare const patterns: readonly [{
|
|
|
7201
7185
|
readonly specialCategory: null;
|
|
7202
7186
|
readonly sort: 4;
|
|
7203
7187
|
};
|
|
7188
|
+
readonly adjustsFontSizeToFit: {
|
|
7189
|
+
readonly label: "Adjust Font Size To Fit";
|
|
7190
|
+
readonly description: "Automatically reduces font size to fit the available space.";
|
|
7191
|
+
readonly category: "style";
|
|
7192
|
+
readonly specialCategory: null;
|
|
7193
|
+
readonly sort: 5;
|
|
7194
|
+
};
|
|
7195
|
+
readonly showEllipsis: {
|
|
7196
|
+
readonly label: "Show Ellipsis";
|
|
7197
|
+
readonly description: "If text overflows, show ellipsis (…); applied as single-line truncation.";
|
|
7198
|
+
readonly category: "style";
|
|
7199
|
+
readonly specialCategory: null;
|
|
7200
|
+
readonly sort: 6;
|
|
7201
|
+
};
|
|
7204
7202
|
readonly scrollable: {
|
|
7205
7203
|
readonly label: "Scrollable";
|
|
7206
7204
|
readonly description: "Turns scroll interaction on.";
|
|
@@ -7494,17 +7492,18 @@ export declare const patterns: readonly [{
|
|
|
7494
7492
|
};
|
|
7495
7493
|
};
|
|
7496
7494
|
readonly defaults: {
|
|
7497
|
-
readonly
|
|
7498
|
-
|
|
7499
|
-
|
|
7500
|
-
|
|
7501
|
-
|
|
7502
|
-
|
|
7495
|
+
readonly style: {
|
|
7496
|
+
readonly flexDirection: "column";
|
|
7497
|
+
readonly position: "relative";
|
|
7498
|
+
readonly zIndex: 1;
|
|
7499
|
+
readonly fontSize: "24@fs";
|
|
7500
|
+
readonly fontWeight: "700";
|
|
7501
|
+
readonly textAlign: "center";
|
|
7502
|
+
};
|
|
7503
7503
|
};
|
|
7504
7504
|
readonly types: {};
|
|
7505
7505
|
}, {
|
|
7506
|
-
readonly schemaVersion:
|
|
7507
|
-
readonly allowUnknownAttributes: true;
|
|
7506
|
+
readonly schemaVersion: 2;
|
|
7508
7507
|
readonly pattern: {
|
|
7509
7508
|
readonly type: "PaywallBackground";
|
|
7510
7509
|
readonly children: "never";
|
|
@@ -7543,11 +7542,6 @@ export declare const patterns: readonly [{
|
|
|
7543
7542
|
readonly right: "size";
|
|
7544
7543
|
readonly zIndex: "number";
|
|
7545
7544
|
};
|
|
7546
|
-
readonly defaults: {
|
|
7547
|
-
readonly flexDirection: "column";
|
|
7548
|
-
readonly position: "relative";
|
|
7549
|
-
readonly zIndex: 1;
|
|
7550
|
-
};
|
|
7551
7545
|
};
|
|
7552
7546
|
readonly meta: {
|
|
7553
7547
|
readonly desiredParent: readonly [">PaywallProvider"];
|
|
@@ -7579,7 +7573,7 @@ export declare const patterns: readonly [{
|
|
|
7579
7573
|
readonly sort: 4;
|
|
7580
7574
|
};
|
|
7581
7575
|
};
|
|
7582
|
-
readonly
|
|
7576
|
+
readonly styles: {
|
|
7583
7577
|
readonly scrollable: {
|
|
7584
7578
|
readonly label: "Scrollable";
|
|
7585
7579
|
readonly description: "Turns scroll interaction on.";
|
|
@@ -7846,15 +7840,16 @@ export declare const patterns: readonly [{
|
|
|
7846
7840
|
};
|
|
7847
7841
|
};
|
|
7848
7842
|
};
|
|
7849
|
-
readonly types: {};
|
|
7850
7843
|
readonly defaults: {
|
|
7851
|
-
readonly
|
|
7852
|
-
|
|
7853
|
-
|
|
7844
|
+
readonly style: {
|
|
7845
|
+
readonly flexDirection: "column";
|
|
7846
|
+
readonly position: "relative";
|
|
7847
|
+
readonly zIndex: 1;
|
|
7848
|
+
};
|
|
7854
7849
|
};
|
|
7850
|
+
readonly types: {};
|
|
7855
7851
|
}, {
|
|
7856
|
-
readonly schemaVersion:
|
|
7857
|
-
readonly allowUnknownAttributes: true;
|
|
7852
|
+
readonly schemaVersion: 2;
|
|
7858
7853
|
readonly pattern: {
|
|
7859
7854
|
readonly type: "PaywallCloseButton";
|
|
7860
7855
|
readonly children: "never";
|
|
@@ -7866,6 +7861,8 @@ export declare const patterns: readonly [{
|
|
|
7866
7861
|
readonly fontSize: "size";
|
|
7867
7862
|
readonly fontWeight: readonly ["normal", "bold", "100", "200", "300", "400", "500", "600", "700", "800", "900"];
|
|
7868
7863
|
readonly textAlign: readonly ["left", "center", "right", "justify"];
|
|
7864
|
+
readonly adjustsFontSizeToFit: "boolean";
|
|
7865
|
+
readonly showEllipsis: "boolean";
|
|
7869
7866
|
readonly scrollable: "boolean";
|
|
7870
7867
|
readonly flexDirection: readonly ["row", "column"];
|
|
7871
7868
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
@@ -7900,19 +7897,12 @@ export declare const patterns: readonly [{
|
|
|
7900
7897
|
readonly right: "size";
|
|
7901
7898
|
readonly zIndex: "number";
|
|
7902
7899
|
};
|
|
7903
|
-
readonly defaults: {
|
|
7904
|
-
readonly iconType: "close";
|
|
7905
|
-
readonly size: 24;
|
|
7906
|
-
readonly flexDirection: "row";
|
|
7907
|
-
readonly justifyContent: "center";
|
|
7908
|
-
readonly alignItems: "center";
|
|
7909
|
-
};
|
|
7910
7900
|
};
|
|
7911
7901
|
readonly meta: {
|
|
7912
7902
|
readonly desiredParent: readonly [">PaywallProvider"];
|
|
7913
7903
|
readonly label: "Paywall Close Button";
|
|
7914
7904
|
readonly description: "Paywall Close Button component.";
|
|
7915
|
-
readonly
|
|
7905
|
+
readonly styles: {
|
|
7916
7906
|
readonly iconType: {
|
|
7917
7907
|
readonly label: "Icon";
|
|
7918
7908
|
readonly description: "Which icon to render.";
|
|
@@ -7963,6 +7953,20 @@ export declare const patterns: readonly [{
|
|
|
7963
7953
|
readonly specialCategory: null;
|
|
7964
7954
|
readonly sort: 4;
|
|
7965
7955
|
};
|
|
7956
|
+
readonly adjustsFontSizeToFit: {
|
|
7957
|
+
readonly label: "Adjust Font Size To Fit";
|
|
7958
|
+
readonly description: "Automatically reduces font size to fit the available space.";
|
|
7959
|
+
readonly category: "style";
|
|
7960
|
+
readonly specialCategory: null;
|
|
7961
|
+
readonly sort: 5;
|
|
7962
|
+
};
|
|
7963
|
+
readonly showEllipsis: {
|
|
7964
|
+
readonly label: "Show Ellipsis";
|
|
7965
|
+
readonly description: "If text overflows, show ellipsis (…); applied as single-line truncation.";
|
|
7966
|
+
readonly category: "style";
|
|
7967
|
+
readonly specialCategory: null;
|
|
7968
|
+
readonly sort: 6;
|
|
7969
|
+
};
|
|
7966
7970
|
readonly scrollable: {
|
|
7967
7971
|
readonly label: "Scrollable";
|
|
7968
7972
|
readonly description: "Turns scroll interaction on.";
|
|
@@ -8255,24 +8259,25 @@ export declare const patterns: readonly [{
|
|
|
8255
8259
|
};
|
|
8256
8260
|
};
|
|
8257
8261
|
};
|
|
8258
|
-
readonly types: {};
|
|
8259
8262
|
readonly defaults: {
|
|
8260
8263
|
readonly iconType: "close";
|
|
8261
|
-
readonly size: 24;
|
|
8262
|
-
readonly flexDirection: "row";
|
|
8263
|
-
readonly justifyContent: "center";
|
|
8264
|
-
readonly alignItems: "center";
|
|
8265
|
-
readonly fontSize: "16";
|
|
8266
8264
|
readonly strokeWidth: 1.5;
|
|
8267
|
-
readonly
|
|
8268
|
-
|
|
8265
|
+
readonly style: {
|
|
8266
|
+
readonly fontSize: "16";
|
|
8267
|
+
readonly flexDirection: "row";
|
|
8268
|
+
readonly position: "relative";
|
|
8269
|
+
readonly zIndex: 1;
|
|
8270
|
+
readonly justifyContent: "center";
|
|
8271
|
+
readonly alignItems: "center";
|
|
8272
|
+
};
|
|
8273
|
+
readonly size: 24;
|
|
8269
8274
|
};
|
|
8275
|
+
readonly types: {};
|
|
8270
8276
|
}, {
|
|
8271
|
-
readonly schemaVersion:
|
|
8272
|
-
readonly allowUnknownAttributes: true;
|
|
8277
|
+
readonly schemaVersion: 2;
|
|
8273
8278
|
readonly pattern: {
|
|
8274
8279
|
readonly type: "PaywallOptions";
|
|
8275
|
-
readonly children:
|
|
8280
|
+
readonly children: "node";
|
|
8276
8281
|
readonly attributes: {
|
|
8277
8282
|
readonly scrollable: "boolean";
|
|
8278
8283
|
readonly flexDirection: readonly ["row", "column"];
|
|
@@ -8308,12 +8313,6 @@ export declare const patterns: readonly [{
|
|
|
8308
8313
|
readonly right: "size";
|
|
8309
8314
|
readonly zIndex: "number";
|
|
8310
8315
|
};
|
|
8311
|
-
readonly defaults: {
|
|
8312
|
-
readonly flexDirection: "row";
|
|
8313
|
-
readonly justifyContent: "space-between";
|
|
8314
|
-
readonly alignItems: "center";
|
|
8315
|
-
readonly minHeight: "60px";
|
|
8316
|
-
};
|
|
8317
8316
|
};
|
|
8318
8317
|
readonly meta: {
|
|
8319
8318
|
readonly desiredParent: readonly [">PaywallProvider"];
|
|
@@ -8345,7 +8344,7 @@ export declare const patterns: readonly [{
|
|
|
8345
8344
|
readonly sort: 4;
|
|
8346
8345
|
};
|
|
8347
8346
|
};
|
|
8348
|
-
readonly
|
|
8347
|
+
readonly styles: {
|
|
8349
8348
|
readonly scrollable: {
|
|
8350
8349
|
readonly label: "Scrollable";
|
|
8351
8350
|
readonly description: "Turns scroll interaction on.";
|
|
@@ -8612,21 +8611,22 @@ export declare const patterns: readonly [{
|
|
|
8612
8611
|
};
|
|
8613
8612
|
};
|
|
8614
8613
|
};
|
|
8615
|
-
readonly types: {};
|
|
8616
8614
|
readonly defaults: {
|
|
8617
|
-
readonly
|
|
8618
|
-
|
|
8619
|
-
|
|
8620
|
-
|
|
8621
|
-
|
|
8622
|
-
|
|
8615
|
+
readonly style: {
|
|
8616
|
+
readonly flexDirection: "row";
|
|
8617
|
+
readonly position: "relative";
|
|
8618
|
+
readonly zIndex: 1;
|
|
8619
|
+
readonly justifyContent: "space-between";
|
|
8620
|
+
readonly alignItems: "center";
|
|
8621
|
+
readonly minHeight: "60px";
|
|
8622
|
+
};
|
|
8623
8623
|
};
|
|
8624
|
+
readonly types: {};
|
|
8624
8625
|
}, {
|
|
8625
|
-
readonly schemaVersion:
|
|
8626
|
-
readonly allowUnknownAttributes: true;
|
|
8626
|
+
readonly schemaVersion: 2;
|
|
8627
8627
|
readonly pattern: {
|
|
8628
8628
|
readonly type: "PaywallProvider";
|
|
8629
|
-
readonly children:
|
|
8629
|
+
readonly children: "node";
|
|
8630
8630
|
readonly attributes: {
|
|
8631
8631
|
readonly scrollable: "boolean";
|
|
8632
8632
|
readonly flexDirection: readonly ["row", "column"];
|
|
@@ -8662,11 +8662,6 @@ export declare const patterns: readonly [{
|
|
|
8662
8662
|
readonly right: "size";
|
|
8663
8663
|
readonly zIndex: "number";
|
|
8664
8664
|
};
|
|
8665
|
-
readonly defaults: {
|
|
8666
|
-
readonly flexDirection: "column";
|
|
8667
|
-
readonly position: "relative";
|
|
8668
|
-
readonly zIndex: 1;
|
|
8669
|
-
};
|
|
8670
8665
|
};
|
|
8671
8666
|
readonly meta: {
|
|
8672
8667
|
readonly desiredParent: readonly ["all"];
|
|
@@ -8698,7 +8693,7 @@ export declare const patterns: readonly [{
|
|
|
8698
8693
|
readonly sort: 4;
|
|
8699
8694
|
};
|
|
8700
8695
|
};
|
|
8701
|
-
readonly
|
|
8696
|
+
readonly styles: {
|
|
8702
8697
|
readonly scrollable: {
|
|
8703
8698
|
readonly label: "Scrollable";
|
|
8704
8699
|
readonly description: "Turns scroll interaction on.";
|
|
@@ -8970,16 +8965,17 @@ export declare const patterns: readonly [{
|
|
|
8970
8965
|
};
|
|
8971
8966
|
};
|
|
8972
8967
|
readonly defaults: {
|
|
8973
|
-
readonly
|
|
8974
|
-
|
|
8975
|
-
|
|
8976
|
-
|
|
8977
|
-
|
|
8968
|
+
readonly style: {
|
|
8969
|
+
readonly flexDirection: "column";
|
|
8970
|
+
readonly position: "relative";
|
|
8971
|
+
readonly zIndex: 1;
|
|
8972
|
+
readonly width: "100%";
|
|
8973
|
+
readonly height: "100%";
|
|
8974
|
+
};
|
|
8978
8975
|
};
|
|
8979
8976
|
readonly types: {};
|
|
8980
8977
|
}, {
|
|
8981
|
-
readonly schemaVersion:
|
|
8982
|
-
readonly allowUnknownAttributes: false;
|
|
8978
|
+
readonly schemaVersion: 2;
|
|
8983
8979
|
readonly pattern: {
|
|
8984
8980
|
readonly type: "PaywallSubscribeButton";
|
|
8985
8981
|
readonly children: "string";
|
|
@@ -9021,17 +9017,12 @@ export declare const patterns: readonly [{
|
|
|
9021
9017
|
readonly right: "size";
|
|
9022
9018
|
readonly zIndex: "number";
|
|
9023
9019
|
};
|
|
9024
|
-
readonly defaults: {
|
|
9025
|
-
readonly flexDirection: "column";
|
|
9026
|
-
readonly position: "relative";
|
|
9027
|
-
readonly zIndex: 1;
|
|
9028
|
-
};
|
|
9029
9020
|
};
|
|
9030
9021
|
readonly meta: {
|
|
9031
9022
|
readonly desiredParent: readonly [">PaywallProvider"];
|
|
9032
9023
|
readonly label: "Paywall Subscribe Button";
|
|
9033
9024
|
readonly description: "Paywall subscribe call-to-action button. Extends Button.";
|
|
9034
|
-
readonly
|
|
9025
|
+
readonly styles: {
|
|
9035
9026
|
readonly color: {
|
|
9036
9027
|
readonly label: "Color";
|
|
9037
9028
|
readonly description: "Text color of the button.";
|
|
@@ -9346,23 +9337,25 @@ export declare const patterns: readonly [{
|
|
|
9346
9337
|
};
|
|
9347
9338
|
};
|
|
9348
9339
|
readonly defaults: {
|
|
9349
|
-
readonly
|
|
9350
|
-
|
|
9351
|
-
|
|
9352
|
-
|
|
9353
|
-
|
|
9354
|
-
|
|
9355
|
-
|
|
9356
|
-
|
|
9357
|
-
|
|
9358
|
-
|
|
9359
|
-
|
|
9360
|
-
|
|
9340
|
+
readonly style: {
|
|
9341
|
+
readonly display: "flex";
|
|
9342
|
+
readonly alignItems: "center";
|
|
9343
|
+
readonly justifyContent: "center";
|
|
9344
|
+
readonly backgroundColor: "#6495ED";
|
|
9345
|
+
readonly flexDirection: "column";
|
|
9346
|
+
readonly position: "relative";
|
|
9347
|
+
readonly zIndex: 1;
|
|
9348
|
+
readonly paddingHorizontal: "20@s";
|
|
9349
|
+
readonly paddingVertical: "12@vs";
|
|
9350
|
+
readonly borderRadius: "12@s";
|
|
9351
|
+
readonly color: "#FFFFFF";
|
|
9352
|
+
readonly fontSize: "16@fs";
|
|
9353
|
+
readonly fontWeight: "700";
|
|
9354
|
+
};
|
|
9361
9355
|
};
|
|
9362
9356
|
readonly types: {};
|
|
9363
9357
|
}, {
|
|
9364
|
-
readonly schemaVersion:
|
|
9365
|
-
readonly allowUnknownAttributes: true;
|
|
9358
|
+
readonly schemaVersion: 2;
|
|
9366
9359
|
readonly pattern: {
|
|
9367
9360
|
readonly type: "RadioButton";
|
|
9368
9361
|
readonly children: "never";
|
|
@@ -9404,11 +9397,6 @@ export declare const patterns: readonly [{
|
|
|
9404
9397
|
readonly color: "color";
|
|
9405
9398
|
readonly size: "number";
|
|
9406
9399
|
};
|
|
9407
|
-
readonly defaults: {
|
|
9408
|
-
readonly flexDirection: "column";
|
|
9409
|
-
readonly position: "relative";
|
|
9410
|
-
readonly zIndex: 1;
|
|
9411
|
-
};
|
|
9412
9400
|
};
|
|
9413
9401
|
readonly meta: {
|
|
9414
9402
|
readonly desiredParent: readonly ["all"];
|
|
@@ -9440,7 +9428,7 @@ export declare const patterns: readonly [{
|
|
|
9440
9428
|
readonly sort: 4;
|
|
9441
9429
|
};
|
|
9442
9430
|
};
|
|
9443
|
-
readonly
|
|
9431
|
+
readonly styles: {
|
|
9444
9432
|
readonly scrollable: {
|
|
9445
9433
|
readonly label: "Scrollable";
|
|
9446
9434
|
readonly description: "Turns scroll interaction on.";
|
|
@@ -9728,15 +9716,16 @@ export declare const patterns: readonly [{
|
|
|
9728
9716
|
};
|
|
9729
9717
|
};
|
|
9730
9718
|
};
|
|
9731
|
-
readonly types: {};
|
|
9732
9719
|
readonly defaults: {
|
|
9733
|
-
readonly
|
|
9734
|
-
|
|
9735
|
-
|
|
9720
|
+
readonly style: {
|
|
9721
|
+
readonly flexDirection: "column";
|
|
9722
|
+
readonly position: "relative";
|
|
9723
|
+
readonly zIndex: 1;
|
|
9724
|
+
};
|
|
9736
9725
|
};
|
|
9726
|
+
readonly types: {};
|
|
9737
9727
|
}, {
|
|
9738
|
-
readonly schemaVersion:
|
|
9739
|
-
readonly allowUnknownAttributes: false;
|
|
9728
|
+
readonly schemaVersion: 2;
|
|
9740
9729
|
readonly pattern: {
|
|
9741
9730
|
readonly type: "Text";
|
|
9742
9731
|
readonly children: "string";
|
|
@@ -9778,11 +9767,8 @@ export declare const patterns: readonly [{
|
|
|
9778
9767
|
readonly fontSize: "size";
|
|
9779
9768
|
readonly fontWeight: readonly ["normal", "bold", "100", "200", "300", "400", "500", "600", "700", "800", "900"];
|
|
9780
9769
|
readonly textAlign: readonly ["left", "center", "right", "justify"];
|
|
9781
|
-
|
|
9782
|
-
|
|
9783
|
-
readonly flexDirection: "column";
|
|
9784
|
-
readonly position: "relative";
|
|
9785
|
-
readonly zIndex: 1;
|
|
9770
|
+
readonly adjustsFontSizeToFit: "boolean";
|
|
9771
|
+
readonly showEllipsis: "boolean";
|
|
9786
9772
|
};
|
|
9787
9773
|
};
|
|
9788
9774
|
readonly meta: {
|
|
@@ -9815,7 +9801,7 @@ export declare const patterns: readonly [{
|
|
|
9815
9801
|
readonly sort: 4;
|
|
9816
9802
|
};
|
|
9817
9803
|
};
|
|
9818
|
-
readonly
|
|
9804
|
+
readonly styles: {
|
|
9819
9805
|
readonly scrollable: {
|
|
9820
9806
|
readonly label: "Scrollable";
|
|
9821
9807
|
readonly description: "Turns scroll interaction on.";
|
|
@@ -10109,20 +10095,35 @@ export declare const patterns: readonly [{
|
|
|
10109
10095
|
readonly specialCategory: null;
|
|
10110
10096
|
readonly sort: 4;
|
|
10111
10097
|
};
|
|
10098
|
+
readonly adjustsFontSizeToFit: {
|
|
10099
|
+
readonly label: "Adjust Font Size To Fit";
|
|
10100
|
+
readonly description: "Automatically reduces font size to fit the available space.";
|
|
10101
|
+
readonly category: "style";
|
|
10102
|
+
readonly specialCategory: null;
|
|
10103
|
+
readonly sort: 5;
|
|
10104
|
+
};
|
|
10105
|
+
readonly showEllipsis: {
|
|
10106
|
+
readonly label: "Show Ellipsis";
|
|
10107
|
+
readonly description: "If text overflows, show ellipsis (…); applied as single-line truncation.";
|
|
10108
|
+
readonly category: "style";
|
|
10109
|
+
readonly specialCategory: null;
|
|
10110
|
+
readonly sort: 6;
|
|
10111
|
+
};
|
|
10112
10112
|
};
|
|
10113
10113
|
};
|
|
10114
|
-
readonly types: {};
|
|
10115
10114
|
readonly defaults: {
|
|
10116
|
-
readonly
|
|
10117
|
-
|
|
10118
|
-
|
|
10115
|
+
readonly style: {
|
|
10116
|
+
readonly flexDirection: "column";
|
|
10117
|
+
readonly position: "relative";
|
|
10118
|
+
readonly zIndex: 1;
|
|
10119
|
+
};
|
|
10119
10120
|
};
|
|
10121
|
+
readonly types: {};
|
|
10120
10122
|
}, {
|
|
10121
|
-
readonly schemaVersion:
|
|
10122
|
-
readonly allowUnknownAttributes: false;
|
|
10123
|
+
readonly schemaVersion: 2;
|
|
10123
10124
|
readonly pattern: {
|
|
10124
10125
|
readonly type: "View";
|
|
10125
|
-
readonly children:
|
|
10126
|
+
readonly children: "node";
|
|
10126
10127
|
readonly attributes: {
|
|
10127
10128
|
readonly scrollable: "boolean";
|
|
10128
10129
|
readonly flexDirection: readonly ["row", "column"];
|
|
@@ -10158,11 +10159,6 @@ export declare const patterns: readonly [{
|
|
|
10158
10159
|
readonly right: "size";
|
|
10159
10160
|
readonly zIndex: "number";
|
|
10160
10161
|
};
|
|
10161
|
-
readonly defaults: {
|
|
10162
|
-
readonly flexDirection: "column";
|
|
10163
|
-
readonly position: "relative";
|
|
10164
|
-
readonly zIndex: 1;
|
|
10165
|
-
};
|
|
10166
10162
|
};
|
|
10167
10163
|
readonly meta: {
|
|
10168
10164
|
readonly desiredParent: readonly ["all"];
|
|
@@ -10194,7 +10190,7 @@ export declare const patterns: readonly [{
|
|
|
10194
10190
|
readonly sort: 4;
|
|
10195
10191
|
};
|
|
10196
10192
|
};
|
|
10197
|
-
readonly
|
|
10193
|
+
readonly styles: {
|
|
10198
10194
|
readonly scrollable: {
|
|
10199
10195
|
readonly label: "Scrollable";
|
|
10200
10196
|
readonly description: "Turns scroll interaction on.";
|
|
@@ -10462,8 +10458,10 @@ export declare const patterns: readonly [{
|
|
|
10462
10458
|
};
|
|
10463
10459
|
};
|
|
10464
10460
|
readonly defaults: {
|
|
10465
|
-
readonly
|
|
10466
|
-
|
|
10467
|
-
|
|
10461
|
+
readonly style: {
|
|
10462
|
+
readonly flexDirection: "column";
|
|
10463
|
+
readonly position: "relative";
|
|
10464
|
+
readonly zIndex: 1;
|
|
10465
|
+
};
|
|
10468
10466
|
};
|
|
10469
10467
|
}];
|