@developer_tribe/react-builder 1.2.46 → 1.2.48
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/Field.d.ts +3 -1
- package/dist/attributes-editor/attributesEditorModelTypes.d.ts +3 -0
- package/dist/attributes-editor/useAttributesEditorModel.d.ts +1 -1
- package/dist/build-components/FormSubmitButton/FormSubmitButtonProps.generated.d.ts +8 -3
- package/dist/build-components/GlobalProvider/GlobalContext.d.ts +28 -0
- package/dist/build-components/GlobalProvider/GlobalProvider.d.ts +5 -0
- package/dist/build-components/GlobalProvider/GlobalProviderProps.generated.d.ts +60 -0
- package/dist/build-components/GlobalProvider/globalProviderUtils.d.ts +28 -0
- package/dist/build-components/GlobalProvider/useGlobalNavigation.d.ts +19 -0
- package/dist/build-components/GlobalProvider/useGlobalProviderLogic.d.ts +15 -0
- package/dist/build-components/OnboardButton/OnboardButtonProps.generated.d.ts +8 -3
- package/dist/build-components/OnboardProvider/OnboardProviderProps.generated.d.ts +2 -0
- package/dist/build-components/PaywallProvider/PaywallProviderProps.generated.d.ts +2 -0
- package/dist/build-components/SystemButton/SystemButtonProps.generated.d.ts +8 -3
- package/dist/build-components/SystemButton/usePlacementButtonEvents.d.ts +15 -2
- package/dist/build-components/TermsProvider/TermsProvider.d.ts +5 -0
- package/dist/build-components/TermsProvider/TermsProviderProps.generated.d.ts +55 -0
- package/dist/build-components/index.d.ts +3 -1
- package/dist/build-components/patterns.generated.d.ts +2128 -1333
- package/dist/components/DeviceButton.d.ts +2 -1
- package/dist/index.cjs.js +3 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +3 -3
- package/dist/index.esm.js.map +1 -1
- package/dist/index.web.cjs.js +3 -3
- package/dist/index.web.cjs.js.map +1 -1
- package/dist/index.web.d.ts +5 -1
- package/dist/index.web.esm.js +3 -3
- package/dist/index.web.esm.js.map +1 -1
- package/dist/modals/PromptManagerModal.d.ts +5 -1
- package/dist/store.d.ts +65 -0
- package/dist/styles.css +1 -1
- package/dist/utils/nodeTree.d.ts +18 -0
- package/package.json +1 -1
- package/scripts/.DS_Store +0 -0
- package/scripts/prebuild/utils/validateAllComponentsOrThrow.js +68 -4
- package/src/.DS_Store +0 -0
- package/src/assets/meta.json +1 -1
- package/src/assets/prompt-scheme-onboard.generated.ts +1 -1
- package/src/assets/prompt-scheme-paywall.generated.ts +1 -1
- package/src/assets/samples/getSamples.ts +2 -0
- package/src/assets/samples/global-onboard-flow.json +735 -0
- package/src/assets/samples/terms-and-privacy-no-form.json +1 -1
- package/src/assets/samples/terms-and-privacy.json +1 -1
- package/src/attributes-editor/AttributesEditorView.tsx +3 -0
- package/src/attributes-editor/Field.tsx +144 -2
- package/src/attributes-editor/attributesEditorModelTypes.ts +3 -0
- package/src/attributes-editor/useAttributesEditorModel.ts +8 -0
- package/src/build-components/FormCheckbox/FormCheckbox.tsx +3 -3
- package/src/build-components/FormSubmitButton/FormSubmitButton.tsx +6 -0
- package/src/build-components/FormSubmitButton/FormSubmitButtonProps.generated.ts +26 -3
- package/src/build-components/GlobalProvider/GlobalContext.ts +48 -0
- package/src/build-components/GlobalProvider/GlobalProvider.tsx +51 -0
- package/src/build-components/GlobalProvider/GlobalProviderProps.generated.ts +78 -0
- package/src/build-components/GlobalProvider/globalProviderUtils.ts +204 -0
- package/src/build-components/GlobalProvider/pattern.json +55 -0
- package/src/build-components/GlobalProvider/useGlobalNavigation.ts +65 -0
- package/src/build-components/GlobalProvider/useGlobalProviderLogic.ts +172 -0
- package/src/build-components/OnboardButton/OnboardButton.tsx +8 -1
- package/src/build-components/OnboardButton/OnboardButtonProps.generated.ts +26 -3
- package/src/build-components/OnboardButton/pattern.json +5 -3
- package/src/build-components/OnboardProvider/OnboardProviderProps.generated.ts +12 -0
- package/src/build-components/OnboardProvider/pattern.json +9 -1
- package/src/build-components/PaywallProvider/PaywallProviderProps.generated.ts +12 -0
- package/src/build-components/PaywallProvider/pattern.json +9 -1
- package/src/build-components/RenderNode.generated.tsx +10 -0
- package/src/build-components/SystemButton/SystemButton.tsx +6 -0
- package/src/build-components/SystemButton/SystemButtonProps.generated.ts +26 -3
- package/src/build-components/SystemButton/pattern.json +5 -3
- package/src/build-components/SystemButton/usePlacementButtonEvents.ts +51 -27
- package/src/build-components/TermsProvider/TermsProvider.tsx +45 -0
- package/src/build-components/TermsProvider/TermsProviderProps.generated.ts +82 -0
- package/src/build-components/TermsProvider/pattern.json +35 -0
- package/src/build-components/index.ts +10 -0
- package/src/build-components/patterns.generated.ts +2290 -1399
- package/src/components/AttributesEditorPanel.tsx +1 -0
- package/src/components/BottomBar.tsx +134 -14
- package/src/components/DeviceButton.tsx +81 -22
- package/src/components/EditorHeader.tsx +3 -2
- package/src/index.web.ts +32 -1
- package/src/modals/CreateDeviceModal.tsx +12 -2
- package/src/modals/DeviceSelectorModal.tsx +3 -1
- package/src/modals/PromptManagerModal.tsx +228 -38
- package/src/patterns/event-constants.json +19 -0
- package/src/store.ts +85 -0
- package/src/styles/components/_bottom-bar.scss +79 -0
- package/src/styles/components/_editor-shell.scss +235 -9
- package/src/styles/components/_global-provider.scss +131 -0
- package/src/styles/index.scss +1 -0
- package/src/styles/modals/_device-selector.scss +2 -2
- package/src/styles/modals/_prompt-manager-modal.scss +75 -5
- package/src/utils/analyseNodeByPatterns.ts +5 -2
- package/src/utils/nodeTree.ts +115 -0
- package/src/assets/.DS_Store +0 -0
|
@@ -5384,11 +5384,13 @@ export declare const patterns: readonly [{
|
|
|
5384
5384
|
};
|
|
5385
5385
|
readonly types: {
|
|
5386
5386
|
readonly EventObject: {
|
|
5387
|
-
readonly type: readonly ["Permission", "Navigate", "Placement"];
|
|
5388
|
-
readonly permission: "
|
|
5387
|
+
readonly type: readonly ["Permission", "Navigate", "Placement", "SetCondition"];
|
|
5388
|
+
readonly permission: readonly ["notification", "camera", "microphone", "location", "photos", "contacts", "att", "rating", "GDPR"];
|
|
5389
5389
|
readonly navigate_to: "string";
|
|
5390
5390
|
readonly targetIndex: "number";
|
|
5391
|
-
readonly placementKey: "
|
|
5391
|
+
readonly placementKey: readonly ["terms", "onboard", "paywall", "subscription", "home"];
|
|
5392
|
+
readonly conditionKey: readonly ["termsAccepted"];
|
|
5393
|
+
readonly value: "boolean";
|
|
5392
5394
|
};
|
|
5393
5395
|
};
|
|
5394
5396
|
readonly meta: {
|
|
@@ -5776,10 +5778,10 @@ export declare const patterns: readonly [{
|
|
|
5776
5778
|
}, {
|
|
5777
5779
|
readonly schemaVersion: 2;
|
|
5778
5780
|
readonly pattern: {
|
|
5779
|
-
readonly type: "
|
|
5781
|
+
readonly type: "GlobalProvider";
|
|
5780
5782
|
readonly title: "title";
|
|
5781
5783
|
readonly description: "description";
|
|
5782
|
-
readonly children: "
|
|
5784
|
+
readonly children: "node";
|
|
5783
5785
|
readonly attributes: {
|
|
5784
5786
|
readonly scrollable: "boolean";
|
|
5785
5787
|
readonly styles: {
|
|
@@ -5817,17 +5819,17 @@ export declare const patterns: readonly [{
|
|
|
5817
5819
|
readonly left: "size";
|
|
5818
5820
|
readonly right: "size";
|
|
5819
5821
|
readonly zIndex: "number";
|
|
5820
|
-
readonly resizeMode: readonly ["cover", "contain", "stretch", "center"];
|
|
5821
5822
|
};
|
|
5822
5823
|
readonly testID: "string";
|
|
5823
|
-
readonly
|
|
5824
|
-
readonly
|
|
5824
|
+
readonly initialPage: "string";
|
|
5825
|
+
readonly persistProgress: "boolean";
|
|
5826
|
+
readonly skipConditions: "SkipConditionEntry[]";
|
|
5825
5827
|
};
|
|
5826
5828
|
};
|
|
5827
5829
|
readonly meta: {
|
|
5828
|
-
readonly desiredParent: readonly ["
|
|
5829
|
-
readonly label: "
|
|
5830
|
-
readonly description: "
|
|
5830
|
+
readonly desiredParent: readonly ["root"];
|
|
5831
|
+
readonly label: "Global Provider";
|
|
5832
|
+
readonly description: "Top-level provider that manages multi-page flow (Terms → Onboard → Paywall). Each direct child is treated as a page.";
|
|
5831
5833
|
readonly specialCategories: {
|
|
5832
5834
|
readonly padding: {
|
|
5833
5835
|
readonly label: "Padding";
|
|
@@ -6128,30 +6130,29 @@ export declare const patterns: readonly [{
|
|
|
6128
6130
|
readonly sort: 26;
|
|
6129
6131
|
};
|
|
6130
6132
|
};
|
|
6131
|
-
readonly
|
|
6132
|
-
readonly label: "
|
|
6133
|
-
readonly description: "
|
|
6133
|
+
readonly initialPage: {
|
|
6134
|
+
readonly label: "Initial Page Key";
|
|
6135
|
+
readonly description: "The page key to show first. Defaults to the first child.";
|
|
6134
6136
|
readonly category: "other";
|
|
6135
6137
|
readonly specialCategory: null;
|
|
6136
6138
|
readonly sort: 1;
|
|
6137
6139
|
};
|
|
6138
|
-
readonly
|
|
6139
|
-
readonly label: "
|
|
6140
|
-
readonly description: "
|
|
6140
|
+
readonly persistProgress: {
|
|
6141
|
+
readonly label: "Persist Progress";
|
|
6142
|
+
readonly description: "Save current page and conditions to localStorage so the user continues from where they left off.";
|
|
6141
6143
|
readonly category: "other";
|
|
6142
6144
|
readonly specialCategory: null;
|
|
6143
6145
|
readonly sort: 2;
|
|
6144
6146
|
};
|
|
6145
|
-
|
|
6146
|
-
|
|
6147
|
-
|
|
6148
|
-
readonly
|
|
6149
|
-
readonly description: "How the image fits the frame.";
|
|
6150
|
-
readonly category: "style";
|
|
6147
|
+
readonly skipConditions: {
|
|
6148
|
+
readonly label: "Skip Conditions";
|
|
6149
|
+
readonly description: "List of page skip rules. Each entry maps a pageKey to a conditionKey: when conditions[conditionKey] is true, that page is skipped on navigate.";
|
|
6150
|
+
readonly category: "other";
|
|
6151
6151
|
readonly specialCategory: null;
|
|
6152
|
-
readonly sort:
|
|
6152
|
+
readonly sort: 3;
|
|
6153
6153
|
};
|
|
6154
6154
|
};
|
|
6155
|
+
readonly styles: {};
|
|
6155
6156
|
};
|
|
6156
6157
|
readonly defaults: {
|
|
6157
6158
|
readonly styles: {
|
|
@@ -6161,18 +6162,22 @@ export declare const patterns: readonly [{
|
|
|
6161
6162
|
readonly alignSelf: "flex-start";
|
|
6162
6163
|
readonly flexGrow: 0;
|
|
6163
6164
|
readonly flexShrink: 0;
|
|
6164
|
-
readonly
|
|
6165
|
+
readonly flex: 1;
|
|
6166
|
+
};
|
|
6167
|
+
};
|
|
6168
|
+
readonly types: {
|
|
6169
|
+
readonly SkipConditionEntry: {
|
|
6170
|
+
readonly pageKey: "string";
|
|
6171
|
+
readonly conditionKey: "string";
|
|
6165
6172
|
};
|
|
6166
|
-
readonly fetchStrategy: "normal";
|
|
6167
6173
|
};
|
|
6168
|
-
readonly types: {};
|
|
6169
6174
|
}, {
|
|
6170
6175
|
readonly schemaVersion: 2;
|
|
6171
6176
|
readonly pattern: {
|
|
6172
|
-
readonly type: "
|
|
6177
|
+
readonly type: "Image";
|
|
6173
6178
|
readonly title: "title";
|
|
6174
6179
|
readonly description: "description";
|
|
6175
|
-
readonly children: "
|
|
6180
|
+
readonly children: "never";
|
|
6176
6181
|
readonly attributes: {
|
|
6177
6182
|
readonly scrollable: "boolean";
|
|
6178
6183
|
readonly styles: {
|
|
@@ -6210,15 +6215,17 @@ export declare const patterns: readonly [{
|
|
|
6210
6215
|
readonly left: "size";
|
|
6211
6216
|
readonly right: "size";
|
|
6212
6217
|
readonly zIndex: "number";
|
|
6218
|
+
readonly resizeMode: readonly ["cover", "contain", "stretch", "center"];
|
|
6213
6219
|
};
|
|
6214
6220
|
readonly testID: "string";
|
|
6215
|
-
readonly
|
|
6221
|
+
readonly src: "string";
|
|
6222
|
+
readonly fetchStrategy: readonly ["highIfItsAppLaunch", "normal", "lazy", "none"];
|
|
6216
6223
|
};
|
|
6217
6224
|
};
|
|
6218
6225
|
readonly meta: {
|
|
6219
|
-
readonly desiredParent: readonly ["
|
|
6220
|
-
readonly label: "
|
|
6221
|
-
readonly description: "
|
|
6226
|
+
readonly desiredParent: readonly ["all"];
|
|
6227
|
+
readonly label: "Image";
|
|
6228
|
+
readonly description: "Shows an image or graphic.";
|
|
6222
6229
|
readonly specialCategories: {
|
|
6223
6230
|
readonly padding: {
|
|
6224
6231
|
readonly label: "Padding";
|
|
@@ -6519,17 +6526,30 @@ export declare const patterns: readonly [{
|
|
|
6519
6526
|
readonly sort: 26;
|
|
6520
6527
|
};
|
|
6521
6528
|
};
|
|
6522
|
-
readonly
|
|
6523
|
-
readonly label: "
|
|
6524
|
-
readonly description: "
|
|
6525
|
-
readonly category: "
|
|
6529
|
+
readonly src: {
|
|
6530
|
+
readonly label: "Src";
|
|
6531
|
+
readonly description: "Image source URL.";
|
|
6532
|
+
readonly category: "other";
|
|
6526
6533
|
readonly specialCategory: null;
|
|
6527
6534
|
readonly sort: 1;
|
|
6528
|
-
|
|
6535
|
+
};
|
|
6536
|
+
readonly fetchStrategy: {
|
|
6537
|
+
readonly label: "Fetch Strategy";
|
|
6538
|
+
readonly description: "highIfItsAppLaunch ilk başta yükleniyor eğer app_launch placeholder'i ile gelirse\nnormal sonra bütün hepsi toplanıp prefetch ediniyor\nlazy builder açılır açılmaz\nnone ise os'a bırakıldı";
|
|
6539
|
+
readonly category: "other";
|
|
6540
|
+
readonly specialCategory: null;
|
|
6541
|
+
readonly sort: 2;
|
|
6542
|
+
};
|
|
6543
|
+
};
|
|
6544
|
+
readonly styles: {
|
|
6545
|
+
readonly resizeMode: {
|
|
6546
|
+
readonly label: "Resize Mode";
|
|
6547
|
+
readonly description: "How the image fits the frame.";
|
|
6548
|
+
readonly category: "style";
|
|
6549
|
+
readonly specialCategory: null;
|
|
6550
|
+
readonly sort: 4;
|
|
6529
6551
|
};
|
|
6530
6552
|
};
|
|
6531
|
-
readonly hideAllAttributes: true;
|
|
6532
|
-
readonly styles: {};
|
|
6533
6553
|
};
|
|
6534
6554
|
readonly defaults: {
|
|
6535
6555
|
readonly styles: {
|
|
@@ -6539,59 +6559,15 @@ export declare const patterns: readonly [{
|
|
|
6539
6559
|
readonly alignSelf: "flex-start";
|
|
6540
6560
|
readonly flexGrow: 0;
|
|
6541
6561
|
readonly flexShrink: 0;
|
|
6542
|
-
readonly
|
|
6543
|
-
readonly height: "100%";
|
|
6544
|
-
readonly flex: 1;
|
|
6562
|
+
readonly resizeMode: "contain";
|
|
6545
6563
|
};
|
|
6546
|
-
readonly
|
|
6564
|
+
readonly fetchStrategy: "normal";
|
|
6547
6565
|
};
|
|
6548
6566
|
readonly types: {};
|
|
6549
6567
|
}, {
|
|
6550
6568
|
readonly schemaVersion: 2;
|
|
6551
6569
|
readonly pattern: {
|
|
6552
|
-
readonly type: "
|
|
6553
|
-
readonly title: "title";
|
|
6554
|
-
readonly description: "description";
|
|
6555
|
-
readonly children: "never";
|
|
6556
|
-
readonly attributes: {
|
|
6557
|
-
readonly styles: {
|
|
6558
|
-
readonly backgroundColor: "color";
|
|
6559
|
-
};
|
|
6560
|
-
readonly translucent: "boolean";
|
|
6561
|
-
};
|
|
6562
|
-
};
|
|
6563
|
-
readonly meta: {
|
|
6564
|
-
readonly desiredParent: readonly ["all"];
|
|
6565
|
-
readonly label: "Navigation Bar Color";
|
|
6566
|
-
readonly description: "Sets the OS navigation bar background color.";
|
|
6567
|
-
readonly styles: {
|
|
6568
|
-
readonly backgroundColor: {
|
|
6569
|
-
readonly label: "Background Color";
|
|
6570
|
-
readonly description: "Navigation bar background color.";
|
|
6571
|
-
readonly category: "style";
|
|
6572
|
-
readonly specialCategory: null;
|
|
6573
|
-
readonly sort: 1;
|
|
6574
|
-
};
|
|
6575
|
-
};
|
|
6576
|
-
readonly attributes: {
|
|
6577
|
-
readonly translucent: {
|
|
6578
|
-
readonly label: "Translucent";
|
|
6579
|
-
readonly description: "Sets the navigation bar to translucent.";
|
|
6580
|
-
readonly category: "style";
|
|
6581
|
-
readonly specialCategory: null;
|
|
6582
|
-
readonly sort: 2;
|
|
6583
|
-
};
|
|
6584
|
-
};
|
|
6585
|
-
};
|
|
6586
|
-
readonly defaults: {
|
|
6587
|
-
readonly styles: {
|
|
6588
|
-
readonly backgroundColor: "THEME_COLORS.BACKGROUND";
|
|
6589
|
-
};
|
|
6590
|
-
};
|
|
6591
|
-
}, {
|
|
6592
|
-
readonly schemaVersion: 2;
|
|
6593
|
-
readonly pattern: {
|
|
6594
|
-
readonly type: "Onboard";
|
|
6570
|
+
readonly type: "Main";
|
|
6595
6571
|
readonly title: "title";
|
|
6596
6572
|
readonly description: "description";
|
|
6597
6573
|
readonly children: "node";
|
|
@@ -6634,12 +6610,13 @@ export declare const patterns: readonly [{
|
|
|
6634
6610
|
readonly zIndex: "number";
|
|
6635
6611
|
};
|
|
6636
6612
|
readonly testID: "string";
|
|
6613
|
+
readonly useSafeAreaView: "boolean";
|
|
6637
6614
|
};
|
|
6638
6615
|
};
|
|
6639
6616
|
readonly meta: {
|
|
6640
|
-
readonly desiredParent: readonly ["
|
|
6641
|
-
readonly label: "
|
|
6642
|
-
readonly description: "
|
|
6617
|
+
readonly desiredParent: readonly ["root"];
|
|
6618
|
+
readonly label: "Main";
|
|
6619
|
+
readonly description: "Top-level screen wrapper (safe area, base layout).";
|
|
6643
6620
|
readonly specialCategories: {
|
|
6644
6621
|
readonly padding: {
|
|
6645
6622
|
readonly label: "Padding";
|
|
@@ -6940,41 +6917,85 @@ export declare const patterns: readonly [{
|
|
|
6940
6917
|
readonly sort: 26;
|
|
6941
6918
|
};
|
|
6942
6919
|
};
|
|
6920
|
+
readonly useSafeAreaView: {
|
|
6921
|
+
readonly label: "Use Safe Area View";
|
|
6922
|
+
readonly description: "Wraps content with a safe-area-aware container (when supported by the target).";
|
|
6923
|
+
readonly category: "container";
|
|
6924
|
+
readonly specialCategory: null;
|
|
6925
|
+
readonly sort: 1;
|
|
6926
|
+
readonly forceVisible: true;
|
|
6927
|
+
};
|
|
6943
6928
|
};
|
|
6944
|
-
readonly
|
|
6929
|
+
readonly hideAllAttributes: true;
|
|
6945
6930
|
readonly styles: {};
|
|
6946
6931
|
};
|
|
6947
6932
|
readonly defaults: {
|
|
6948
6933
|
readonly styles: {
|
|
6949
|
-
readonly flexDirection: "
|
|
6934
|
+
readonly flexDirection: "column";
|
|
6950
6935
|
readonly position: "relative";
|
|
6951
6936
|
readonly zIndex: 1;
|
|
6952
6937
|
readonly alignSelf: "flex-start";
|
|
6953
6938
|
readonly flexGrow: 0;
|
|
6954
6939
|
readonly flexShrink: 0;
|
|
6940
|
+
readonly width: "100%";
|
|
6941
|
+
readonly height: "100%";
|
|
6942
|
+
readonly flex: 1;
|
|
6955
6943
|
};
|
|
6944
|
+
readonly useSafeAreaView: true;
|
|
6956
6945
|
};
|
|
6957
6946
|
readonly types: {};
|
|
6958
6947
|
}, {
|
|
6959
6948
|
readonly schemaVersion: 2;
|
|
6960
6949
|
readonly pattern: {
|
|
6961
|
-
readonly type: "
|
|
6950
|
+
readonly type: "NavigationBarColor";
|
|
6962
6951
|
readonly title: "title";
|
|
6963
6952
|
readonly description: "description";
|
|
6964
6953
|
readonly children: "never";
|
|
6965
6954
|
readonly attributes: {
|
|
6966
|
-
readonly labelKey: "string";
|
|
6967
|
-
readonly events: "EventObject[]";
|
|
6968
|
-
readonly testID: readonly ["onboardSkip", "onboardNext"];
|
|
6969
6955
|
readonly styles: {
|
|
6970
|
-
readonly color: "color";
|
|
6971
6956
|
readonly backgroundColor: "color";
|
|
6972
|
-
|
|
6973
|
-
|
|
6974
|
-
|
|
6975
|
-
|
|
6976
|
-
|
|
6977
|
-
|
|
6957
|
+
};
|
|
6958
|
+
readonly translucent: "boolean";
|
|
6959
|
+
};
|
|
6960
|
+
};
|
|
6961
|
+
readonly meta: {
|
|
6962
|
+
readonly desiredParent: readonly ["all"];
|
|
6963
|
+
readonly label: "Navigation Bar Color";
|
|
6964
|
+
readonly description: "Sets the OS navigation bar background color.";
|
|
6965
|
+
readonly styles: {
|
|
6966
|
+
readonly backgroundColor: {
|
|
6967
|
+
readonly label: "Background Color";
|
|
6968
|
+
readonly description: "Navigation bar background color.";
|
|
6969
|
+
readonly category: "style";
|
|
6970
|
+
readonly specialCategory: null;
|
|
6971
|
+
readonly sort: 1;
|
|
6972
|
+
};
|
|
6973
|
+
};
|
|
6974
|
+
readonly attributes: {
|
|
6975
|
+
readonly translucent: {
|
|
6976
|
+
readonly label: "Translucent";
|
|
6977
|
+
readonly description: "Sets the navigation bar to translucent.";
|
|
6978
|
+
readonly category: "style";
|
|
6979
|
+
readonly specialCategory: null;
|
|
6980
|
+
readonly sort: 2;
|
|
6981
|
+
};
|
|
6982
|
+
};
|
|
6983
|
+
};
|
|
6984
|
+
readonly defaults: {
|
|
6985
|
+
readonly styles: {
|
|
6986
|
+
readonly backgroundColor: "THEME_COLORS.BACKGROUND";
|
|
6987
|
+
};
|
|
6988
|
+
};
|
|
6989
|
+
}, {
|
|
6990
|
+
readonly schemaVersion: 2;
|
|
6991
|
+
readonly pattern: {
|
|
6992
|
+
readonly type: "Onboard";
|
|
6993
|
+
readonly title: "title";
|
|
6994
|
+
readonly description: "description";
|
|
6995
|
+
readonly children: "node";
|
|
6996
|
+
readonly attributes: {
|
|
6997
|
+
readonly scrollable: "boolean";
|
|
6998
|
+
readonly styles: {
|
|
6978
6999
|
readonly flexDirection: readonly ["row", "column"];
|
|
6979
7000
|
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
6980
7001
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
@@ -6994,9 +7015,12 @@ export declare const patterns: readonly [{
|
|
|
6994
7015
|
readonly marginBottom: "size";
|
|
6995
7016
|
readonly marginLeft: "size";
|
|
6996
7017
|
readonly marginRight: "size";
|
|
7018
|
+
readonly backgroundColor: "color";
|
|
7019
|
+
readonly borderRadius: "size";
|
|
6997
7020
|
readonly width: "size";
|
|
6998
7021
|
readonly minWidth: "size";
|
|
6999
7022
|
readonly maxWidth: "size";
|
|
7023
|
+
readonly height: "size";
|
|
7000
7024
|
readonly minHeight: "size";
|
|
7001
7025
|
readonly maxHeight: "size";
|
|
7002
7026
|
readonly flex: "number";
|
|
@@ -7007,76 +7031,40 @@ export declare const patterns: readonly [{
|
|
|
7007
7031
|
readonly right: "size";
|
|
7008
7032
|
readonly zIndex: "number";
|
|
7009
7033
|
};
|
|
7010
|
-
readonly
|
|
7011
|
-
readonly numberOfLines: "number";
|
|
7012
|
-
readonly translateCounter: "number";
|
|
7013
|
-
readonly scrollable: "boolean";
|
|
7014
|
-
readonly animation: readonly ["simple-animation", "line-animation", "blur", "blur-animation", "blur-line-animation"];
|
|
7015
|
-
readonly animation_color: "color";
|
|
7016
|
-
};
|
|
7017
|
-
};
|
|
7018
|
-
readonly defaults: {
|
|
7019
|
-
readonly attributes: {
|
|
7020
|
-
readonly labelKey: "Button";
|
|
7021
|
-
};
|
|
7022
|
-
readonly styles: {
|
|
7023
|
-
readonly height: "40@vs";
|
|
7024
|
-
readonly borderRadius: "12@s";
|
|
7025
|
-
readonly backgroundColor: "THEME_COLORS.SYSTEM_BUTTON_BACKGROUND";
|
|
7026
|
-
readonly color: "THEME_COLORS.ONBOARD_BUTTON_PRIMARY_TEXT";
|
|
7027
|
-
readonly fontSize: "16@fs";
|
|
7028
|
-
readonly fontWeight: "400";
|
|
7029
|
-
readonly flexDirection: "column";
|
|
7030
|
-
readonly position: "relative";
|
|
7031
|
-
readonly zIndex: 1;
|
|
7032
|
-
readonly alignSelf: "flex-start";
|
|
7033
|
-
readonly flexGrow: 0;
|
|
7034
|
-
readonly flexShrink: 0;
|
|
7035
|
-
};
|
|
7036
|
-
readonly translateCounter: 1;
|
|
7037
|
-
readonly numberOfLines: 1;
|
|
7038
|
-
};
|
|
7039
|
-
readonly types: {
|
|
7040
|
-
readonly EventObject: {
|
|
7041
|
-
readonly type: readonly ["Permission", "Navigate", "Placement"];
|
|
7042
|
-
readonly permission: "string";
|
|
7043
|
-
readonly navigate_to: "string";
|
|
7044
|
-
readonly targetIndex: "number";
|
|
7045
|
-
readonly placementKey: "string";
|
|
7034
|
+
readonly testID: "string";
|
|
7046
7035
|
};
|
|
7047
7036
|
};
|
|
7048
7037
|
readonly meta: {
|
|
7049
|
-
readonly
|
|
7050
|
-
readonly
|
|
7051
|
-
readonly
|
|
7052
|
-
|
|
7053
|
-
|
|
7054
|
-
readonly
|
|
7055
|
-
readonly
|
|
7056
|
-
readonly
|
|
7038
|
+
readonly desiredParent: readonly ["=OnboardProvider"];
|
|
7039
|
+
readonly label: "Onboard";
|
|
7040
|
+
readonly description: "Wraps the onboarding flow.";
|
|
7041
|
+
readonly specialCategories: {
|
|
7042
|
+
readonly padding: {
|
|
7043
|
+
readonly label: "Padding";
|
|
7044
|
+
readonly description: "Uniform padding on all sides.";
|
|
7045
|
+
readonly category: "container";
|
|
7057
7046
|
readonly sort: 1;
|
|
7058
7047
|
};
|
|
7059
|
-
readonly
|
|
7060
|
-
readonly label: "
|
|
7061
|
-
readonly description: "
|
|
7062
|
-
readonly category: "
|
|
7063
|
-
readonly
|
|
7064
|
-
readonly sort: 7;
|
|
7048
|
+
readonly margin: {
|
|
7049
|
+
readonly label: "Margin";
|
|
7050
|
+
readonly description: "Uniform margin on all sides.";
|
|
7051
|
+
readonly category: "container";
|
|
7052
|
+
readonly sort: 2;
|
|
7065
7053
|
};
|
|
7066
|
-
readonly
|
|
7067
|
-
readonly label: "
|
|
7068
|
-
readonly description: "
|
|
7069
|
-
readonly category: "
|
|
7070
|
-
readonly
|
|
7071
|
-
readonly sort: 1;
|
|
7054
|
+
readonly size: {
|
|
7055
|
+
readonly label: "Size";
|
|
7056
|
+
readonly description: "Fixed dimensions.";
|
|
7057
|
+
readonly category: "container";
|
|
7058
|
+
readonly sort: 3;
|
|
7072
7059
|
};
|
|
7073
|
-
readonly
|
|
7074
|
-
readonly label: "
|
|
7075
|
-
readonly description: "
|
|
7076
|
-
readonly category: "
|
|
7077
|
-
readonly
|
|
7078
|
-
readonly sort: 2;
|
|
7060
|
+
readonly offset: {
|
|
7061
|
+
readonly label: "Offset";
|
|
7062
|
+
readonly description: "Absolute positioning offsets.";
|
|
7063
|
+
readonly category: "container";
|
|
7064
|
+
readonly sort: 4;
|
|
7079
7065
|
};
|
|
7066
|
+
};
|
|
7067
|
+
readonly attributes: {
|
|
7080
7068
|
readonly scrollable: {
|
|
7081
7069
|
readonly label: "Scrollable";
|
|
7082
7070
|
readonly description: "Turns scroll interaction on.";
|
|
@@ -7349,105 +7337,42 @@ export declare const patterns: readonly [{
|
|
|
7349
7337
|
readonly specialCategory: null;
|
|
7350
7338
|
readonly sort: 26;
|
|
7351
7339
|
};
|
|
7352
|
-
readonly color: {
|
|
7353
|
-
readonly label: "Color";
|
|
7354
|
-
readonly description: "Text color.";
|
|
7355
|
-
readonly category: "style";
|
|
7356
|
-
readonly specialCategory: null;
|
|
7357
|
-
readonly sort: 1;
|
|
7358
|
-
};
|
|
7359
|
-
};
|
|
7360
|
-
readonly animation: {
|
|
7361
|
-
readonly label: "Animation";
|
|
7362
|
-
readonly description: "Animation style for the button.";
|
|
7363
|
-
readonly category: "style";
|
|
7364
|
-
readonly specialCategory: null;
|
|
7365
|
-
readonly sort: 3;
|
|
7366
|
-
};
|
|
7367
|
-
readonly animation_color: {
|
|
7368
|
-
readonly label: "Animation Color";
|
|
7369
|
-
readonly description: "Color used by the animation.";
|
|
7370
|
-
readonly category: "style";
|
|
7371
|
-
readonly specialCategory: null;
|
|
7372
|
-
readonly sort: 4;
|
|
7373
7340
|
};
|
|
7374
7341
|
};
|
|
7375
|
-
readonly
|
|
7342
|
+
readonly desiredChildren: readonly ["=OnboardItem"];
|
|
7343
|
+
readonly styles: {};
|
|
7344
|
+
};
|
|
7345
|
+
readonly defaults: {
|
|
7376
7346
|
readonly styles: {
|
|
7377
|
-
readonly
|
|
7378
|
-
|
|
7379
|
-
|
|
7380
|
-
|
|
7381
|
-
|
|
7382
|
-
|
|
7383
|
-
};
|
|
7384
|
-
readonly fontSize: {
|
|
7385
|
-
readonly label: "Font Size";
|
|
7386
|
-
readonly description: "Text size.";
|
|
7387
|
-
readonly category: "style";
|
|
7388
|
-
readonly specialCategory: null;
|
|
7389
|
-
readonly sort: 2;
|
|
7390
|
-
readonly preferredScale: "f";
|
|
7391
|
-
};
|
|
7392
|
-
readonly fontFamily: {
|
|
7393
|
-
readonly label: "Font Family";
|
|
7394
|
-
readonly description: "Font family used for the text.";
|
|
7395
|
-
readonly category: "style";
|
|
7396
|
-
readonly specialCategory: null;
|
|
7397
|
-
readonly sort: 3;
|
|
7398
|
-
};
|
|
7399
|
-
readonly fontWeight: {
|
|
7400
|
-
readonly label: "Font Weight";
|
|
7401
|
-
readonly description: "Text weight.";
|
|
7402
|
-
readonly category: "style";
|
|
7403
|
-
readonly specialCategory: null;
|
|
7404
|
-
readonly sort: 4;
|
|
7405
|
-
};
|
|
7406
|
-
readonly textAlign: {
|
|
7407
|
-
readonly label: "Text Align";
|
|
7408
|
-
readonly description: "Text alignment.";
|
|
7409
|
-
readonly category: "style";
|
|
7410
|
-
readonly specialCategory: null;
|
|
7411
|
-
readonly sort: 5;
|
|
7412
|
-
};
|
|
7413
|
-
};
|
|
7414
|
-
readonly specialCategories: {
|
|
7415
|
-
readonly padding: {
|
|
7416
|
-
readonly label: "Padding";
|
|
7417
|
-
readonly description: "Uniform padding on all sides.";
|
|
7418
|
-
readonly category: "container";
|
|
7419
|
-
readonly sort: 1;
|
|
7420
|
-
};
|
|
7421
|
-
readonly margin: {
|
|
7422
|
-
readonly label: "Margin";
|
|
7423
|
-
readonly description: "Uniform margin on all sides.";
|
|
7424
|
-
readonly category: "container";
|
|
7425
|
-
readonly sort: 2;
|
|
7426
|
-
};
|
|
7427
|
-
readonly size: {
|
|
7428
|
-
readonly label: "Size";
|
|
7429
|
-
readonly description: "Fixed dimensions.";
|
|
7430
|
-
readonly category: "container";
|
|
7431
|
-
readonly sort: 3;
|
|
7432
|
-
};
|
|
7433
|
-
readonly offset: {
|
|
7434
|
-
readonly label: "Offset";
|
|
7435
|
-
readonly description: "Absolute positioning offsets.";
|
|
7436
|
-
readonly category: "container";
|
|
7437
|
-
readonly sort: 4;
|
|
7438
|
-
};
|
|
7347
|
+
readonly flexDirection: "row";
|
|
7348
|
+
readonly position: "relative";
|
|
7349
|
+
readonly zIndex: 1;
|
|
7350
|
+
readonly alignSelf: "flex-start";
|
|
7351
|
+
readonly flexGrow: 0;
|
|
7352
|
+
readonly flexShrink: 0;
|
|
7439
7353
|
};
|
|
7440
7354
|
};
|
|
7355
|
+
readonly types: {};
|
|
7441
7356
|
}, {
|
|
7442
7357
|
readonly schemaVersion: 2;
|
|
7443
7358
|
readonly pattern: {
|
|
7444
|
-
readonly type: "
|
|
7359
|
+
readonly type: "OnboardButton";
|
|
7445
7360
|
readonly title: "title";
|
|
7446
7361
|
readonly description: "description";
|
|
7447
|
-
readonly children: "
|
|
7362
|
+
readonly children: "never";
|
|
7448
7363
|
readonly attributes: {
|
|
7449
|
-
readonly
|
|
7364
|
+
readonly labelKey: "string";
|
|
7365
|
+
readonly events: "EventObject[]";
|
|
7366
|
+
readonly testID: readonly ["onboardSkip", "onboardNext"];
|
|
7450
7367
|
readonly styles: {
|
|
7368
|
+
readonly color: "color";
|
|
7369
|
+
readonly backgroundColor: "color";
|
|
7370
|
+
readonly height: "size";
|
|
7371
|
+
readonly borderRadius: "size";
|
|
7372
|
+
readonly fontSize: "size";
|
|
7373
|
+
readonly fontWeight: "fontWeight";
|
|
7374
|
+
readonly fontFamily: "fontFamily";
|
|
7375
|
+
readonly textAlign: "string";
|
|
7451
7376
|
readonly flexDirection: readonly ["row", "column"];
|
|
7452
7377
|
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
7453
7378
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
@@ -7467,12 +7392,9 @@ export declare const patterns: readonly [{
|
|
|
7467
7392
|
readonly marginBottom: "size";
|
|
7468
7393
|
readonly marginLeft: "size";
|
|
7469
7394
|
readonly marginRight: "size";
|
|
7470
|
-
readonly backgroundColor: "color";
|
|
7471
|
-
readonly borderRadius: "size";
|
|
7472
7395
|
readonly width: "size";
|
|
7473
7396
|
readonly minWidth: "size";
|
|
7474
7397
|
readonly maxWidth: "size";
|
|
7475
|
-
readonly height: "size";
|
|
7476
7398
|
readonly minHeight: "size";
|
|
7477
7399
|
readonly maxHeight: "size";
|
|
7478
7400
|
readonly flex: "number";
|
|
@@ -7483,47 +7405,78 @@ export declare const patterns: readonly [{
|
|
|
7483
7405
|
readonly right: "size";
|
|
7484
7406
|
readonly zIndex: "number";
|
|
7485
7407
|
};
|
|
7486
|
-
readonly
|
|
7487
|
-
readonly
|
|
7488
|
-
readonly
|
|
7489
|
-
readonly
|
|
7490
|
-
readonly
|
|
7491
|
-
readonly
|
|
7492
|
-
|
|
7493
|
-
|
|
7408
|
+
readonly adjustsFontSizeToFit: "boolean";
|
|
7409
|
+
readonly numberOfLines: "number";
|
|
7410
|
+
readonly translateCounter: "number";
|
|
7411
|
+
readonly scrollable: "boolean";
|
|
7412
|
+
readonly animation: readonly ["simple-animation", "line-animation", "blur", "blur-animation", "blur-line-animation"];
|
|
7413
|
+
readonly animation_color: "color";
|
|
7414
|
+
};
|
|
7415
|
+
};
|
|
7416
|
+
readonly defaults: {
|
|
7417
|
+
readonly attributes: {
|
|
7418
|
+
readonly labelKey: "Button";
|
|
7419
|
+
};
|
|
7420
|
+
readonly styles: {
|
|
7421
|
+
readonly height: "40@vs";
|
|
7422
|
+
readonly borderRadius: "12@s";
|
|
7423
|
+
readonly backgroundColor: "THEME_COLORS.SYSTEM_BUTTON_BACKGROUND";
|
|
7424
|
+
readonly color: "THEME_COLORS.ONBOARD_BUTTON_PRIMARY_TEXT";
|
|
7425
|
+
readonly fontSize: "16@fs";
|
|
7426
|
+
readonly fontWeight: "400";
|
|
7427
|
+
readonly flexDirection: "column";
|
|
7428
|
+
readonly position: "relative";
|
|
7429
|
+
readonly zIndex: 1;
|
|
7430
|
+
readonly alignSelf: "flex-start";
|
|
7431
|
+
readonly flexGrow: 0;
|
|
7432
|
+
readonly flexShrink: 0;
|
|
7433
|
+
};
|
|
7434
|
+
readonly translateCounter: 1;
|
|
7435
|
+
readonly numberOfLines: 1;
|
|
7436
|
+
};
|
|
7437
|
+
readonly types: {
|
|
7438
|
+
readonly EventObject: {
|
|
7439
|
+
readonly type: readonly ["Permission", "Navigate", "Placement", "SetCondition"];
|
|
7440
|
+
readonly permission: readonly ["notification", "camera", "microphone", "location", "photos", "contacts", "att", "rating", "GDPR"];
|
|
7441
|
+
readonly navigate_to: "string";
|
|
7442
|
+
readonly targetIndex: "number";
|
|
7443
|
+
readonly placementKey: readonly ["terms", "onboard", "paywall", "subscription", "home"];
|
|
7444
|
+
readonly conditionKey: readonly ["termsAccepted"];
|
|
7445
|
+
readonly value: "boolean";
|
|
7494
7446
|
};
|
|
7495
7447
|
};
|
|
7496
7448
|
readonly meta: {
|
|
7497
|
-
readonly
|
|
7498
|
-
readonly
|
|
7499
|
-
readonly
|
|
7500
|
-
|
|
7501
|
-
|
|
7502
|
-
readonly
|
|
7503
|
-
readonly
|
|
7504
|
-
readonly
|
|
7449
|
+
readonly label: "Onboard Button";
|
|
7450
|
+
readonly description: "Single action button for onboard.";
|
|
7451
|
+
readonly attributes: {
|
|
7452
|
+
readonly labelKey: {
|
|
7453
|
+
readonly label: "Label Key";
|
|
7454
|
+
readonly description: "Localization key for the button text.";
|
|
7455
|
+
readonly category: "other";
|
|
7456
|
+
readonly specialCategory: null;
|
|
7505
7457
|
readonly sort: 1;
|
|
7506
7458
|
};
|
|
7507
|
-
readonly
|
|
7508
|
-
readonly label: "
|
|
7509
|
-
readonly description: "
|
|
7510
|
-
readonly category: "
|
|
7511
|
-
readonly
|
|
7459
|
+
readonly events: {
|
|
7460
|
+
readonly label: "Events";
|
|
7461
|
+
readonly description: "List of events fired by the button.";
|
|
7462
|
+
readonly category: "other";
|
|
7463
|
+
readonly specialCategory: null;
|
|
7464
|
+
readonly sort: 7;
|
|
7512
7465
|
};
|
|
7513
|
-
readonly
|
|
7514
|
-
readonly label: "Size";
|
|
7515
|
-
readonly description: "
|
|
7516
|
-
readonly category: "
|
|
7517
|
-
readonly
|
|
7466
|
+
readonly adjustsFontSizeToFit: {
|
|
7467
|
+
readonly label: "Adjust Font Size To Fit";
|
|
7468
|
+
readonly description: "Automatically reduces font size to fit the available space.";
|
|
7469
|
+
readonly category: "other";
|
|
7470
|
+
readonly specialCategory: null;
|
|
7471
|
+
readonly sort: 1;
|
|
7518
7472
|
};
|
|
7519
|
-
readonly
|
|
7520
|
-
readonly label: "
|
|
7521
|
-
readonly description: "
|
|
7522
|
-
readonly category: "
|
|
7523
|
-
readonly
|
|
7473
|
+
readonly showEllipsis: {
|
|
7474
|
+
readonly label: "Show Ellipsis";
|
|
7475
|
+
readonly description: "If text overflows, show ellipsis (…); applied as single-line truncation.";
|
|
7476
|
+
readonly category: "other";
|
|
7477
|
+
readonly specialCategory: null;
|
|
7478
|
+
readonly sort: 2;
|
|
7524
7479
|
};
|
|
7525
|
-
};
|
|
7526
|
-
readonly attributes: {
|
|
7527
7480
|
readonly scrollable: {
|
|
7528
7481
|
readonly label: "Scrollable";
|
|
7529
7482
|
readonly description: "Turns scroll interaction on.";
|
|
@@ -7796,83 +7749,102 @@ export declare const patterns: readonly [{
|
|
|
7796
7749
|
readonly specialCategory: null;
|
|
7797
7750
|
readonly sort: 26;
|
|
7798
7751
|
};
|
|
7752
|
+
readonly color: {
|
|
7753
|
+
readonly label: "Color";
|
|
7754
|
+
readonly description: "Text color.";
|
|
7755
|
+
readonly category: "style";
|
|
7756
|
+
readonly specialCategory: null;
|
|
7757
|
+
readonly sort: 1;
|
|
7758
|
+
};
|
|
7799
7759
|
};
|
|
7800
|
-
readonly
|
|
7801
|
-
readonly label: "
|
|
7802
|
-
readonly description: "
|
|
7760
|
+
readonly animation: {
|
|
7761
|
+
readonly label: "Animation";
|
|
7762
|
+
readonly description: "Animation style for the button.";
|
|
7803
7763
|
readonly category: "style";
|
|
7804
7764
|
readonly specialCategory: null;
|
|
7805
|
-
readonly sort:
|
|
7765
|
+
readonly sort: 3;
|
|
7806
7766
|
};
|
|
7807
|
-
readonly
|
|
7808
|
-
readonly label: "
|
|
7809
|
-
readonly description: "
|
|
7810
|
-
readonly category: "
|
|
7767
|
+
readonly animation_color: {
|
|
7768
|
+
readonly label: "Animation Color";
|
|
7769
|
+
readonly description: "Color used by the animation.";
|
|
7770
|
+
readonly category: "style";
|
|
7771
|
+
readonly specialCategory: null;
|
|
7772
|
+
readonly sort: 4;
|
|
7773
|
+
};
|
|
7774
|
+
};
|
|
7775
|
+
readonly desiredParent: readonly ["=OnboardButtons"];
|
|
7776
|
+
readonly styles: {
|
|
7777
|
+
readonly color: {
|
|
7778
|
+
readonly label: "Color";
|
|
7779
|
+
readonly description: "Text color.";
|
|
7780
|
+
readonly category: "style";
|
|
7811
7781
|
readonly specialCategory: null;
|
|
7812
7782
|
readonly sort: 1;
|
|
7813
7783
|
};
|
|
7814
|
-
readonly
|
|
7815
|
-
readonly label: "
|
|
7816
|
-
readonly description: "
|
|
7817
|
-
readonly category: "
|
|
7784
|
+
readonly fontSize: {
|
|
7785
|
+
readonly label: "Font Size";
|
|
7786
|
+
readonly description: "Text size.";
|
|
7787
|
+
readonly category: "style";
|
|
7818
7788
|
readonly specialCategory: null;
|
|
7819
7789
|
readonly sort: 2;
|
|
7790
|
+
readonly preferredScale: "f";
|
|
7820
7791
|
};
|
|
7821
|
-
readonly
|
|
7822
|
-
readonly label: "
|
|
7823
|
-
readonly description: "
|
|
7824
|
-
readonly category: "
|
|
7792
|
+
readonly fontFamily: {
|
|
7793
|
+
readonly label: "Font Family";
|
|
7794
|
+
readonly description: "Font family used for the text.";
|
|
7795
|
+
readonly category: "style";
|
|
7825
7796
|
readonly specialCategory: null;
|
|
7826
7797
|
readonly sort: 3;
|
|
7827
7798
|
};
|
|
7828
|
-
readonly
|
|
7829
|
-
readonly label: "
|
|
7830
|
-
readonly description: "
|
|
7831
|
-
readonly category: "
|
|
7799
|
+
readonly fontWeight: {
|
|
7800
|
+
readonly label: "Font Weight";
|
|
7801
|
+
readonly description: "Text weight.";
|
|
7802
|
+
readonly category: "style";
|
|
7832
7803
|
readonly specialCategory: null;
|
|
7833
7804
|
readonly sort: 4;
|
|
7834
7805
|
};
|
|
7835
|
-
readonly
|
|
7836
|
-
readonly label: "
|
|
7837
|
-
readonly description: "
|
|
7838
|
-
readonly category: "
|
|
7839
|
-
readonly specialCategory: null;
|
|
7840
|
-
readonly sort: 6;
|
|
7841
|
-
};
|
|
7842
|
-
readonly conditionVariable: {
|
|
7843
|
-
readonly label: "Condition Variable";
|
|
7844
|
-
readonly description: "Value used when checking the condition.";
|
|
7845
|
-
readonly category: "other";
|
|
7806
|
+
readonly textAlign: {
|
|
7807
|
+
readonly label: "Text Align";
|
|
7808
|
+
readonly description: "Text alignment.";
|
|
7809
|
+
readonly category: "style";
|
|
7846
7810
|
readonly specialCategory: null;
|
|
7847
|
-
readonly sort:
|
|
7811
|
+
readonly sort: 5;
|
|
7848
7812
|
};
|
|
7849
7813
|
};
|
|
7850
|
-
readonly
|
|
7851
|
-
|
|
7852
|
-
|
|
7853
|
-
|
|
7854
|
-
|
|
7855
|
-
|
|
7856
|
-
|
|
7857
|
-
readonly
|
|
7858
|
-
|
|
7859
|
-
|
|
7860
|
-
|
|
7861
|
-
|
|
7862
|
-
|
|
7863
|
-
readonly
|
|
7864
|
-
|
|
7865
|
-
|
|
7814
|
+
readonly specialCategories: {
|
|
7815
|
+
readonly padding: {
|
|
7816
|
+
readonly label: "Padding";
|
|
7817
|
+
readonly description: "Uniform padding on all sides.";
|
|
7818
|
+
readonly category: "container";
|
|
7819
|
+
readonly sort: 1;
|
|
7820
|
+
};
|
|
7821
|
+
readonly margin: {
|
|
7822
|
+
readonly label: "Margin";
|
|
7823
|
+
readonly description: "Uniform margin on all sides.";
|
|
7824
|
+
readonly category: "container";
|
|
7825
|
+
readonly sort: 2;
|
|
7826
|
+
};
|
|
7827
|
+
readonly size: {
|
|
7828
|
+
readonly label: "Size";
|
|
7829
|
+
readonly description: "Fixed dimensions.";
|
|
7830
|
+
readonly category: "container";
|
|
7831
|
+
readonly sort: 3;
|
|
7832
|
+
};
|
|
7833
|
+
readonly offset: {
|
|
7834
|
+
readonly label: "Offset";
|
|
7835
|
+
readonly description: "Absolute positioning offsets.";
|
|
7836
|
+
readonly category: "container";
|
|
7837
|
+
readonly sort: 4;
|
|
7838
|
+
};
|
|
7866
7839
|
};
|
|
7867
7840
|
};
|
|
7868
|
-
readonly types: {};
|
|
7869
7841
|
}, {
|
|
7870
7842
|
readonly schemaVersion: 2;
|
|
7871
7843
|
readonly pattern: {
|
|
7872
|
-
readonly type: "
|
|
7844
|
+
readonly type: "OnboardButtons";
|
|
7873
7845
|
readonly title: "title";
|
|
7874
7846
|
readonly description: "description";
|
|
7875
|
-
readonly children: "
|
|
7847
|
+
readonly children: "node";
|
|
7876
7848
|
readonly attributes: {
|
|
7877
7849
|
readonly scrollable: "boolean";
|
|
7878
7850
|
readonly styles: {
|
|
@@ -7912,20 +7884,19 @@ export declare const patterns: readonly [{
|
|
|
7912
7884
|
readonly zIndex: "number";
|
|
7913
7885
|
};
|
|
7914
7886
|
readonly testID: "string";
|
|
7915
|
-
readonly
|
|
7916
|
-
readonly
|
|
7917
|
-
readonly
|
|
7918
|
-
readonly
|
|
7919
|
-
readonly
|
|
7920
|
-
readonly
|
|
7921
|
-
readonly
|
|
7922
|
-
readonly active_dot_color: "color";
|
|
7887
|
+
readonly buttonType: readonly ["previous_button", "next_button", "skip_button"];
|
|
7888
|
+
readonly skipNumber: "number";
|
|
7889
|
+
readonly buttons_direction: readonly ["row", "column"];
|
|
7890
|
+
readonly forIndex: "number";
|
|
7891
|
+
readonly seperatorColor: "color";
|
|
7892
|
+
readonly condition: readonly ["carousel-index"];
|
|
7893
|
+
readonly conditionVariable: "number";
|
|
7923
7894
|
};
|
|
7924
7895
|
};
|
|
7925
7896
|
readonly meta: {
|
|
7926
|
-
readonly desiredParent: readonly ["
|
|
7927
|
-
readonly label: "Onboard
|
|
7928
|
-
readonly description: "
|
|
7897
|
+
readonly desiredParent: readonly ["=OnboardItem"];
|
|
7898
|
+
readonly label: "Onboard Buttons";
|
|
7899
|
+
readonly description: "Wrapper for onboarding button set.";
|
|
7929
7900
|
readonly specialCategories: {
|
|
7930
7901
|
readonly padding: {
|
|
7931
7902
|
readonly label: "Padding";
|
|
@@ -8226,40 +8197,54 @@ export declare const patterns: readonly [{
|
|
|
8226
8197
|
readonly sort: 26;
|
|
8227
8198
|
};
|
|
8228
8199
|
};
|
|
8229
|
-
readonly
|
|
8230
|
-
readonly label: "
|
|
8231
|
-
readonly description: "
|
|
8200
|
+
readonly seperatorColor: {
|
|
8201
|
+
readonly label: "Seperator Color";
|
|
8202
|
+
readonly description: "Color of the divider line.";
|
|
8232
8203
|
readonly category: "style";
|
|
8233
8204
|
readonly specialCategory: null;
|
|
8205
|
+
readonly sort: 5;
|
|
8206
|
+
};
|
|
8207
|
+
readonly buttonType: {
|
|
8208
|
+
readonly label: "Button Type";
|
|
8209
|
+
readonly description: "Which onboard button to show.";
|
|
8210
|
+
readonly category: "other";
|
|
8211
|
+
readonly specialCategory: null;
|
|
8234
8212
|
readonly sort: 1;
|
|
8235
8213
|
};
|
|
8236
|
-
readonly
|
|
8237
|
-
readonly label: "
|
|
8238
|
-
readonly description: "
|
|
8239
|
-
readonly category: "
|
|
8214
|
+
readonly skipNumber: {
|
|
8215
|
+
readonly label: "Skip Number";
|
|
8216
|
+
readonly description: "Slide index to skip to.";
|
|
8217
|
+
readonly category: "other";
|
|
8240
8218
|
readonly specialCategory: null;
|
|
8241
8219
|
readonly sort: 2;
|
|
8242
8220
|
};
|
|
8243
|
-
readonly
|
|
8244
|
-
readonly label: "
|
|
8245
|
-
readonly description: "
|
|
8246
|
-
readonly category: "
|
|
8221
|
+
readonly buttons_direction: {
|
|
8222
|
+
readonly label: "Buttons Direction";
|
|
8223
|
+
readonly description: "Direction to lay out buttons.";
|
|
8224
|
+
readonly category: "container";
|
|
8247
8225
|
readonly specialCategory: null;
|
|
8248
8226
|
readonly sort: 3;
|
|
8249
8227
|
};
|
|
8250
|
-
readonly
|
|
8251
|
-
readonly label: "
|
|
8252
|
-
readonly description: "
|
|
8253
|
-
readonly category: "
|
|
8228
|
+
readonly forIndex: {
|
|
8229
|
+
readonly label: "For Index";
|
|
8230
|
+
readonly description: "Show only for this slide index.";
|
|
8231
|
+
readonly category: "other";
|
|
8254
8232
|
readonly specialCategory: null;
|
|
8255
8233
|
readonly sort: 4;
|
|
8256
8234
|
};
|
|
8257
|
-
readonly
|
|
8258
|
-
readonly label: "
|
|
8259
|
-
readonly description: "
|
|
8260
|
-
readonly category: "
|
|
8235
|
+
readonly condition: {
|
|
8236
|
+
readonly label: "Condition";
|
|
8237
|
+
readonly description: "Built-in condition to check.";
|
|
8238
|
+
readonly category: "other";
|
|
8261
8239
|
readonly specialCategory: null;
|
|
8262
|
-
readonly sort:
|
|
8240
|
+
readonly sort: 6;
|
|
8241
|
+
};
|
|
8242
|
+
readonly conditionVariable: {
|
|
8243
|
+
readonly label: "Condition Variable";
|
|
8244
|
+
readonly description: "Value used when checking the condition.";
|
|
8245
|
+
readonly category: "other";
|
|
8246
|
+
readonly specialCategory: null;
|
|
8247
|
+
readonly sort: 7;
|
|
8263
8248
|
};
|
|
8264
8249
|
};
|
|
8265
8250
|
readonly styles: {};
|
|
@@ -8272,34 +8257,25 @@ export declare const patterns: readonly [{
|
|
|
8272
8257
|
readonly alignSelf: "flex-start";
|
|
8273
8258
|
readonly flexGrow: 0;
|
|
8274
8259
|
readonly flexShrink: 0;
|
|
8260
|
+
readonly display: "flex";
|
|
8261
|
+
readonly gap: 12;
|
|
8275
8262
|
readonly alignItems: "center";
|
|
8276
8263
|
readonly justifyContent: "center";
|
|
8277
|
-
readonly
|
|
8264
|
+
readonly marginVertical: "12@vs";
|
|
8265
|
+
readonly marginHorizontal: "24@s";
|
|
8278
8266
|
};
|
|
8279
|
-
readonly dotType: "expanding_dot";
|
|
8280
|
-
readonly dot_thickness: 10;
|
|
8281
|
-
readonly inactive_dot_opacity: 0.3;
|
|
8282
|
-
readonly active_dot_color: "STATIC_COLORS.ONBOARD_DOT_ACTIVE";
|
|
8283
|
-
readonly inactive_dot_color: "THEME_COLORS.BACKGROUND";
|
|
8284
8267
|
};
|
|
8285
8268
|
readonly types: {};
|
|
8286
8269
|
}, {
|
|
8287
8270
|
readonly schemaVersion: 2;
|
|
8288
8271
|
readonly pattern: {
|
|
8289
|
-
readonly type: "
|
|
8272
|
+
readonly type: "OnboardDot";
|
|
8290
8273
|
readonly title: "title";
|
|
8291
8274
|
readonly description: "description";
|
|
8292
8275
|
readonly children: "never";
|
|
8293
8276
|
readonly attributes: {
|
|
8294
|
-
readonly
|
|
8295
|
-
readonly numberOfLines: "number";
|
|
8296
|
-
readonly translateCounter: "number";
|
|
8277
|
+
readonly scrollable: "boolean";
|
|
8297
8278
|
readonly styles: {
|
|
8298
|
-
readonly color: "color";
|
|
8299
|
-
readonly fontSize: "size";
|
|
8300
|
-
readonly fontFamily: "fontFamily";
|
|
8301
|
-
readonly fontWeight: "fontWeight";
|
|
8302
|
-
readonly textAlign: "string";
|
|
8303
8279
|
readonly flexDirection: readonly ["row", "column"];
|
|
8304
8280
|
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
8305
8281
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
@@ -8335,74 +8311,48 @@ export declare const patterns: readonly [{
|
|
|
8335
8311
|
readonly right: "size";
|
|
8336
8312
|
readonly zIndex: "number";
|
|
8337
8313
|
};
|
|
8338
|
-
readonly scrollable: "boolean";
|
|
8339
8314
|
readonly testID: "string";
|
|
8340
|
-
readonly
|
|
8341
|
-
readonly
|
|
8342
|
-
readonly
|
|
8343
|
-
readonly
|
|
8344
|
-
readonly
|
|
8345
|
-
readonly
|
|
8346
|
-
readonly
|
|
8315
|
+
readonly dotType: readonly ["expanding_dot", "normal_dot", "scaling_dot", "sliding_border", "sliding_dot", "liquid_like"];
|
|
8316
|
+
readonly flexDirection: "never";
|
|
8317
|
+
readonly alignItems: "never";
|
|
8318
|
+
readonly justifyContent: "never";
|
|
8319
|
+
readonly dot_thickness: "size";
|
|
8320
|
+
readonly inactive_dot_opacity: "number";
|
|
8321
|
+
readonly inactive_dot_color: "color";
|
|
8322
|
+
readonly active_dot_color: "color";
|
|
8347
8323
|
};
|
|
8348
8324
|
};
|
|
8349
8325
|
readonly meta: {
|
|
8350
|
-
readonly desiredParent: readonly [">
|
|
8351
|
-
readonly label: "Onboard
|
|
8352
|
-
readonly description: "
|
|
8353
|
-
readonly
|
|
8354
|
-
readonly
|
|
8355
|
-
readonly label: "
|
|
8356
|
-
readonly description: "
|
|
8357
|
-
readonly category: "
|
|
8358
|
-
readonly specialCategory: null;
|
|
8326
|
+
readonly desiredParent: readonly [">OnboardProvider"];
|
|
8327
|
+
readonly label: "Onboard Dot";
|
|
8328
|
+
readonly description: "Renders onboarding progress dots.";
|
|
8329
|
+
readonly specialCategories: {
|
|
8330
|
+
readonly padding: {
|
|
8331
|
+
readonly label: "Padding";
|
|
8332
|
+
readonly description: "Uniform padding on all sides.";
|
|
8333
|
+
readonly category: "container";
|
|
8359
8334
|
readonly sort: 1;
|
|
8360
8335
|
};
|
|
8361
|
-
readonly
|
|
8362
|
-
readonly label: "
|
|
8363
|
-
readonly description: "
|
|
8364
|
-
readonly category: "
|
|
8365
|
-
readonly specialCategory: null;
|
|
8336
|
+
readonly margin: {
|
|
8337
|
+
readonly label: "Margin";
|
|
8338
|
+
readonly description: "Uniform margin on all sides.";
|
|
8339
|
+
readonly category: "container";
|
|
8366
8340
|
readonly sort: 2;
|
|
8367
|
-
readonly preferredScale: "f";
|
|
8368
8341
|
};
|
|
8369
|
-
readonly
|
|
8370
|
-
readonly label: "
|
|
8371
|
-
readonly description: "
|
|
8372
|
-
readonly category: "
|
|
8373
|
-
readonly specialCategory: null;
|
|
8342
|
+
readonly size: {
|
|
8343
|
+
readonly label: "Size";
|
|
8344
|
+
readonly description: "Fixed dimensions.";
|
|
8345
|
+
readonly category: "container";
|
|
8374
8346
|
readonly sort: 3;
|
|
8375
8347
|
};
|
|
8376
|
-
readonly
|
|
8377
|
-
readonly label: "
|
|
8378
|
-
readonly description: "
|
|
8379
|
-
readonly category: "
|
|
8380
|
-
readonly specialCategory: null;
|
|
8348
|
+
readonly offset: {
|
|
8349
|
+
readonly label: "Offset";
|
|
8350
|
+
readonly description: "Absolute positioning offsets.";
|
|
8351
|
+
readonly category: "container";
|
|
8381
8352
|
readonly sort: 4;
|
|
8382
8353
|
};
|
|
8383
|
-
readonly textAlign: {
|
|
8384
|
-
readonly label: "Text Align";
|
|
8385
|
-
readonly description: "Text alignment.";
|
|
8386
|
-
readonly category: "style";
|
|
8387
|
-
readonly specialCategory: null;
|
|
8388
|
-
readonly sort: 5;
|
|
8389
|
-
};
|
|
8390
8354
|
};
|
|
8391
8355
|
readonly attributes: {
|
|
8392
|
-
readonly adjustsFontSizeToFit: {
|
|
8393
|
-
readonly label: "Adjust Font Size To Fit";
|
|
8394
|
-
readonly description: "Automatically reduces font size to fit the available space.";
|
|
8395
|
-
readonly category: "other";
|
|
8396
|
-
readonly specialCategory: null;
|
|
8397
|
-
readonly sort: 1;
|
|
8398
|
-
};
|
|
8399
|
-
readonly showEllipsis: {
|
|
8400
|
-
readonly label: "Show Ellipsis";
|
|
8401
|
-
readonly description: "If text overflows, show ellipsis (…); applied as single-line truncation.";
|
|
8402
|
-
readonly category: "other";
|
|
8403
|
-
readonly specialCategory: null;
|
|
8404
|
-
readonly sort: 2;
|
|
8405
|
-
};
|
|
8406
8356
|
readonly scrollable: {
|
|
8407
8357
|
readonly label: "Scrollable";
|
|
8408
8358
|
readonly description: "Turns scroll interaction on.";
|
|
@@ -8676,117 +8626,80 @@ export declare const patterns: readonly [{
|
|
|
8676
8626
|
readonly sort: 26;
|
|
8677
8627
|
};
|
|
8678
8628
|
};
|
|
8679
|
-
readonly
|
|
8680
|
-
readonly label: "
|
|
8681
|
-
readonly description: "
|
|
8682
|
-
readonly category: "
|
|
8629
|
+
readonly dotType: {
|
|
8630
|
+
readonly label: "Dot Type";
|
|
8631
|
+
readonly description: "Dot animation style.";
|
|
8632
|
+
readonly category: "style";
|
|
8683
8633
|
readonly specialCategory: null;
|
|
8684
8634
|
readonly sort: 1;
|
|
8685
8635
|
};
|
|
8686
|
-
readonly
|
|
8687
|
-
readonly label: "
|
|
8688
|
-
readonly description: "
|
|
8689
|
-
readonly category: "
|
|
8636
|
+
readonly dot_thickness: {
|
|
8637
|
+
readonly label: "Dot Thickness";
|
|
8638
|
+
readonly description: "Dot size/diameter.";
|
|
8639
|
+
readonly category: "style";
|
|
8690
8640
|
readonly specialCategory: null;
|
|
8691
8641
|
readonly sort: 2;
|
|
8692
8642
|
};
|
|
8693
|
-
readonly
|
|
8694
|
-
readonly label: "
|
|
8695
|
-
readonly description: "
|
|
8696
|
-
readonly category: "
|
|
8643
|
+
readonly inactive_dot_opacity: {
|
|
8644
|
+
readonly label: "Inactive Dot Opacity";
|
|
8645
|
+
readonly description: "Opacity for inactive dots.";
|
|
8646
|
+
readonly category: "style";
|
|
8697
8647
|
readonly specialCategory: null;
|
|
8698
8648
|
readonly sort: 3;
|
|
8699
8649
|
};
|
|
8700
|
-
readonly
|
|
8701
|
-
readonly label: "
|
|
8702
|
-
readonly description: "
|
|
8703
|
-
readonly category: "
|
|
8650
|
+
readonly inactive_dot_color: {
|
|
8651
|
+
readonly label: "Inactive Dot Color";
|
|
8652
|
+
readonly description: "Color of inactive dots.";
|
|
8653
|
+
readonly category: "style";
|
|
8704
8654
|
readonly specialCategory: null;
|
|
8705
8655
|
readonly sort: 4;
|
|
8706
8656
|
};
|
|
8707
|
-
readonly
|
|
8708
|
-
readonly label: "
|
|
8709
|
-
readonly description: "
|
|
8710
|
-
readonly category: "
|
|
8657
|
+
readonly active_dot_color: {
|
|
8658
|
+
readonly label: "Active Dot Color";
|
|
8659
|
+
readonly description: "Color of the active dot.";
|
|
8660
|
+
readonly category: "style";
|
|
8711
8661
|
readonly specialCategory: null;
|
|
8712
8662
|
readonly sort: 5;
|
|
8713
8663
|
};
|
|
8714
|
-
readonly linkedWordSecondColor: {
|
|
8715
|
-
readonly label: "Linked Word Second Color";
|
|
8716
|
-
readonly description: "Color of the second linked word.";
|
|
8717
|
-
readonly category: "other";
|
|
8718
|
-
readonly specialCategory: null;
|
|
8719
|
-
readonly sort: 6;
|
|
8720
|
-
};
|
|
8721
|
-
readonly linkedWordSecondPage: {
|
|
8722
|
-
readonly label: "Linked Word Second Page";
|
|
8723
|
-
readonly description: "Page opened by the second link.";
|
|
8724
|
-
readonly category: "other";
|
|
8725
|
-
readonly specialCategory: null;
|
|
8726
|
-
readonly sort: 7;
|
|
8727
|
-
};
|
|
8728
|
-
};
|
|
8729
|
-
readonly specialCategories: {
|
|
8730
|
-
readonly padding: {
|
|
8731
|
-
readonly label: "Padding";
|
|
8732
|
-
readonly description: "Uniform padding on all sides.";
|
|
8733
|
-
readonly category: "container";
|
|
8734
|
-
readonly sort: 1;
|
|
8735
|
-
};
|
|
8736
|
-
readonly margin: {
|
|
8737
|
-
readonly label: "Margin";
|
|
8738
|
-
readonly description: "Uniform margin on all sides.";
|
|
8739
|
-
readonly category: "container";
|
|
8740
|
-
readonly sort: 2;
|
|
8741
|
-
};
|
|
8742
|
-
readonly size: {
|
|
8743
|
-
readonly label: "Size";
|
|
8744
|
-
readonly description: "Fixed dimensions.";
|
|
8745
|
-
readonly category: "container";
|
|
8746
|
-
readonly sort: 3;
|
|
8747
|
-
};
|
|
8748
|
-
readonly offset: {
|
|
8749
|
-
readonly label: "Offset";
|
|
8750
|
-
readonly description: "Absolute positioning offsets.";
|
|
8751
|
-
readonly category: "container";
|
|
8752
|
-
readonly sort: 4;
|
|
8753
|
-
};
|
|
8754
8664
|
};
|
|
8665
|
+
readonly styles: {};
|
|
8755
8666
|
};
|
|
8756
8667
|
readonly defaults: {
|
|
8757
|
-
readonly translateCounter: 1;
|
|
8758
|
-
readonly numberOfLines: 1;
|
|
8759
8668
|
readonly styles: {
|
|
8760
|
-
readonly color: "THEME_COLORS.TEXT";
|
|
8761
|
-
readonly fontSize: "16@fs";
|
|
8762
|
-
readonly fontWeight: "400";
|
|
8763
8669
|
readonly flexDirection: "row";
|
|
8764
8670
|
readonly position: "relative";
|
|
8765
8671
|
readonly zIndex: 1;
|
|
8766
8672
|
readonly alignSelf: "flex-start";
|
|
8767
8673
|
readonly flexGrow: 0;
|
|
8768
8674
|
readonly flexShrink: 0;
|
|
8769
|
-
readonly minHeight: "50@vs";
|
|
8770
|
-
readonly flexWrap: "wrap";
|
|
8771
8675
|
readonly alignItems: "center";
|
|
8772
8676
|
readonly justifyContent: "center";
|
|
8773
|
-
readonly
|
|
8774
|
-
readonly paddingHorizontal: "16@s";
|
|
8677
|
+
readonly gap: "12@s";
|
|
8775
8678
|
};
|
|
8679
|
+
readonly dotType: "expanding_dot";
|
|
8680
|
+
readonly dot_thickness: 10;
|
|
8681
|
+
readonly inactive_dot_opacity: 0.3;
|
|
8682
|
+
readonly active_dot_color: "STATIC_COLORS.ONBOARD_DOT_ACTIVE";
|
|
8683
|
+
readonly inactive_dot_color: "THEME_COLORS.BACKGROUND";
|
|
8776
8684
|
};
|
|
8777
8685
|
readonly types: {};
|
|
8778
8686
|
}, {
|
|
8779
8687
|
readonly schemaVersion: 2;
|
|
8780
8688
|
readonly pattern: {
|
|
8781
|
-
readonly type: "
|
|
8689
|
+
readonly type: "OnboardFooter";
|
|
8782
8690
|
readonly title: "title";
|
|
8783
8691
|
readonly description: "description";
|
|
8784
|
-
readonly children: "
|
|
8692
|
+
readonly children: "never";
|
|
8785
8693
|
readonly attributes: {
|
|
8786
|
-
readonly
|
|
8787
|
-
readonly
|
|
8694
|
+
readonly adjustsFontSizeToFit: "boolean";
|
|
8695
|
+
readonly numberOfLines: "number";
|
|
8696
|
+
readonly translateCounter: "number";
|
|
8788
8697
|
readonly styles: {
|
|
8789
|
-
readonly
|
|
8698
|
+
readonly color: "color";
|
|
8699
|
+
readonly fontSize: "size";
|
|
8700
|
+
readonly fontFamily: "fontFamily";
|
|
8701
|
+
readonly fontWeight: "fontWeight";
|
|
8702
|
+
readonly textAlign: "string";
|
|
8790
8703
|
readonly flexDirection: readonly ["row", "column"];
|
|
8791
8704
|
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
8792
8705
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
@@ -8824,34 +8737,68 @@ export declare const patterns: readonly [{
|
|
|
8824
8737
|
};
|
|
8825
8738
|
readonly scrollable: "boolean";
|
|
8826
8739
|
readonly testID: "string";
|
|
8827
|
-
readonly
|
|
8828
|
-
readonly
|
|
8740
|
+
readonly textLocalizationKey: "string";
|
|
8741
|
+
readonly linkedWordFirstLocalizationKey: "string";
|
|
8742
|
+
readonly linkedWordFirstColor: "color";
|
|
8743
|
+
readonly linkedWordFirstPage: "string";
|
|
8744
|
+
readonly linkedWordSecondLocalizationKey: "string";
|
|
8745
|
+
readonly linkedWordSecondColor: "color";
|
|
8746
|
+
readonly linkedWordSecondPage: "string";
|
|
8829
8747
|
};
|
|
8830
8748
|
};
|
|
8831
8749
|
readonly meta: {
|
|
8832
|
-
readonly desiredParent: readonly [">
|
|
8833
|
-
readonly label: "Onboard
|
|
8834
|
-
readonly description: "
|
|
8750
|
+
readonly desiredParent: readonly [">OnboardItem"];
|
|
8751
|
+
readonly label: "Onboard Footer";
|
|
8752
|
+
readonly description: "Footer text with optional links.";
|
|
8835
8753
|
readonly styles: {
|
|
8836
|
-
readonly
|
|
8837
|
-
readonly label: "
|
|
8838
|
-
readonly description: "
|
|
8754
|
+
readonly color: {
|
|
8755
|
+
readonly label: "Color";
|
|
8756
|
+
readonly description: "Text color.";
|
|
8757
|
+
readonly category: "style";
|
|
8758
|
+
readonly specialCategory: null;
|
|
8759
|
+
readonly sort: 1;
|
|
8760
|
+
};
|
|
8761
|
+
readonly fontSize: {
|
|
8762
|
+
readonly label: "Font Size";
|
|
8763
|
+
readonly description: "Text size.";
|
|
8764
|
+
readonly category: "style";
|
|
8765
|
+
readonly specialCategory: null;
|
|
8766
|
+
readonly sort: 2;
|
|
8767
|
+
readonly preferredScale: "f";
|
|
8768
|
+
};
|
|
8769
|
+
readonly fontFamily: {
|
|
8770
|
+
readonly label: "Font Family";
|
|
8771
|
+
readonly description: "Font family used for the text.";
|
|
8772
|
+
readonly category: "style";
|
|
8773
|
+
readonly specialCategory: null;
|
|
8774
|
+
readonly sort: 3;
|
|
8775
|
+
};
|
|
8776
|
+
readonly fontWeight: {
|
|
8777
|
+
readonly label: "Font Weight";
|
|
8778
|
+
readonly description: "Text weight.";
|
|
8839
8779
|
readonly category: "style";
|
|
8840
8780
|
readonly specialCategory: null;
|
|
8841
8781
|
readonly sort: 4;
|
|
8842
8782
|
};
|
|
8783
|
+
readonly textAlign: {
|
|
8784
|
+
readonly label: "Text Align";
|
|
8785
|
+
readonly description: "Text alignment.";
|
|
8786
|
+
readonly category: "style";
|
|
8787
|
+
readonly specialCategory: null;
|
|
8788
|
+
readonly sort: 5;
|
|
8789
|
+
};
|
|
8843
8790
|
};
|
|
8844
8791
|
readonly attributes: {
|
|
8845
|
-
readonly
|
|
8846
|
-
readonly label: "
|
|
8847
|
-
readonly description: "
|
|
8792
|
+
readonly adjustsFontSizeToFit: {
|
|
8793
|
+
readonly label: "Adjust Font Size To Fit";
|
|
8794
|
+
readonly description: "Automatically reduces font size to fit the available space.";
|
|
8848
8795
|
readonly category: "other";
|
|
8849
8796
|
readonly specialCategory: null;
|
|
8850
8797
|
readonly sort: 1;
|
|
8851
8798
|
};
|
|
8852
|
-
readonly
|
|
8853
|
-
readonly label: "
|
|
8854
|
-
readonly description: "
|
|
8799
|
+
readonly showEllipsis: {
|
|
8800
|
+
readonly label: "Show Ellipsis";
|
|
8801
|
+
readonly description: "If text overflows, show ellipsis (…); applied as single-line truncation.";
|
|
8855
8802
|
readonly category: "other";
|
|
8856
8803
|
readonly specialCategory: null;
|
|
8857
8804
|
readonly sort: 2;
|
|
@@ -9129,20 +9076,55 @@ export declare const patterns: readonly [{
|
|
|
9129
9076
|
readonly sort: 26;
|
|
9130
9077
|
};
|
|
9131
9078
|
};
|
|
9132
|
-
readonly
|
|
9133
|
-
readonly label: "
|
|
9134
|
-
readonly description: "
|
|
9079
|
+
readonly textLocalizationKey: {
|
|
9080
|
+
readonly label: "Text Localization Key";
|
|
9081
|
+
readonly description: "Localization key for the footer text.";
|
|
9135
9082
|
readonly category: "other";
|
|
9136
9083
|
readonly specialCategory: null;
|
|
9137
9084
|
readonly sort: 1;
|
|
9138
9085
|
};
|
|
9139
|
-
readonly
|
|
9140
|
-
readonly label: "
|
|
9141
|
-
readonly description: "
|
|
9086
|
+
readonly linkedWordFirstLocalizationKey: {
|
|
9087
|
+
readonly label: "Linked Word First Localization Key";
|
|
9088
|
+
readonly description: "Key for the first linked word.";
|
|
9142
9089
|
readonly category: "other";
|
|
9143
9090
|
readonly specialCategory: null;
|
|
9144
9091
|
readonly sort: 2;
|
|
9145
9092
|
};
|
|
9093
|
+
readonly linkedWordFirstColor: {
|
|
9094
|
+
readonly label: "Linked Word First Color";
|
|
9095
|
+
readonly description: "Color of the first linked word.";
|
|
9096
|
+
readonly category: "other";
|
|
9097
|
+
readonly specialCategory: null;
|
|
9098
|
+
readonly sort: 3;
|
|
9099
|
+
};
|
|
9100
|
+
readonly linkedWordFirstPage: {
|
|
9101
|
+
readonly label: "Linked Word First Page";
|
|
9102
|
+
readonly description: "Page opened by the first link.";
|
|
9103
|
+
readonly category: "other";
|
|
9104
|
+
readonly specialCategory: null;
|
|
9105
|
+
readonly sort: 4;
|
|
9106
|
+
};
|
|
9107
|
+
readonly linkedWordSecondLocalizationKey: {
|
|
9108
|
+
readonly label: "Linked Word Second Localization Key";
|
|
9109
|
+
readonly description: "Key for the second linked word.";
|
|
9110
|
+
readonly category: "other";
|
|
9111
|
+
readonly specialCategory: null;
|
|
9112
|
+
readonly sort: 5;
|
|
9113
|
+
};
|
|
9114
|
+
readonly linkedWordSecondColor: {
|
|
9115
|
+
readonly label: "Linked Word Second Color";
|
|
9116
|
+
readonly description: "Color of the second linked word.";
|
|
9117
|
+
readonly category: "other";
|
|
9118
|
+
readonly specialCategory: null;
|
|
9119
|
+
readonly sort: 6;
|
|
9120
|
+
};
|
|
9121
|
+
readonly linkedWordSecondPage: {
|
|
9122
|
+
readonly label: "Linked Word Second Page";
|
|
9123
|
+
readonly description: "Page opened by the second link.";
|
|
9124
|
+
readonly category: "other";
|
|
9125
|
+
readonly specialCategory: null;
|
|
9126
|
+
readonly sort: 7;
|
|
9127
|
+
};
|
|
9146
9128
|
};
|
|
9147
9129
|
readonly specialCategories: {
|
|
9148
9130
|
readonly padding: {
|
|
@@ -9172,28 +9154,39 @@ export declare const patterns: readonly [{
|
|
|
9172
9154
|
};
|
|
9173
9155
|
};
|
|
9174
9156
|
readonly defaults: {
|
|
9175
|
-
readonly
|
|
9157
|
+
readonly translateCounter: 1;
|
|
9158
|
+
readonly numberOfLines: 1;
|
|
9176
9159
|
readonly styles: {
|
|
9177
|
-
readonly
|
|
9178
|
-
readonly
|
|
9160
|
+
readonly color: "THEME_COLORS.TEXT";
|
|
9161
|
+
readonly fontSize: "16@fs";
|
|
9162
|
+
readonly fontWeight: "400";
|
|
9163
|
+
readonly flexDirection: "row";
|
|
9179
9164
|
readonly position: "relative";
|
|
9180
9165
|
readonly zIndex: 1;
|
|
9181
9166
|
readonly alignSelf: "flex-start";
|
|
9182
9167
|
readonly flexGrow: 0;
|
|
9183
9168
|
readonly flexShrink: 0;
|
|
9184
|
-
|
|
9169
|
+
readonly minHeight: "50@vs";
|
|
9170
|
+
readonly flexWrap: "wrap";
|
|
9171
|
+
readonly alignItems: "center";
|
|
9172
|
+
readonly justifyContent: "center";
|
|
9173
|
+
readonly textAlign: "center";
|
|
9174
|
+
readonly paddingHorizontal: "16@s";
|
|
9175
|
+
};
|
|
9185
9176
|
};
|
|
9186
9177
|
readonly types: {};
|
|
9187
9178
|
}, {
|
|
9188
9179
|
readonly schemaVersion: 2;
|
|
9189
9180
|
readonly pattern: {
|
|
9190
|
-
readonly type: "
|
|
9181
|
+
readonly type: "OnboardImage";
|
|
9191
9182
|
readonly title: "title";
|
|
9192
9183
|
readonly description: "description";
|
|
9193
9184
|
readonly children: "node";
|
|
9194
9185
|
readonly attributes: {
|
|
9195
|
-
readonly
|
|
9186
|
+
readonly src: "string";
|
|
9187
|
+
readonly fetchStrategy: readonly ["highIfItsAppLaunch", "normal", "lazy", "none"];
|
|
9196
9188
|
readonly styles: {
|
|
9189
|
+
readonly resizeMode: readonly ["cover", "contain", "stretch", "center"];
|
|
9197
9190
|
readonly flexDirection: readonly ["row", "column"];
|
|
9198
9191
|
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
9199
9192
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
@@ -9229,41 +9222,40 @@ export declare const patterns: readonly [{
|
|
|
9229
9222
|
readonly right: "size";
|
|
9230
9223
|
readonly zIndex: "number";
|
|
9231
9224
|
};
|
|
9225
|
+
readonly scrollable: "boolean";
|
|
9232
9226
|
readonly testID: "string";
|
|
9233
|
-
readonly
|
|
9227
|
+
readonly video_url: "string";
|
|
9228
|
+
readonly lottie: "string";
|
|
9234
9229
|
};
|
|
9235
9230
|
};
|
|
9236
9231
|
readonly meta: {
|
|
9237
|
-
readonly desiredParent: readonly ["
|
|
9238
|
-
readonly label: "Onboard
|
|
9239
|
-
readonly description: "
|
|
9240
|
-
readonly
|
|
9241
|
-
readonly
|
|
9242
|
-
readonly label: "
|
|
9243
|
-
readonly description: "
|
|
9244
|
-
readonly category: "
|
|
9245
|
-
readonly
|
|
9246
|
-
};
|
|
9247
|
-
readonly margin: {
|
|
9248
|
-
readonly label: "Margin";
|
|
9249
|
-
readonly description: "Uniform margin on all sides.";
|
|
9250
|
-
readonly category: "container";
|
|
9251
|
-
readonly sort: 2;
|
|
9252
|
-
};
|
|
9253
|
-
readonly size: {
|
|
9254
|
-
readonly label: "Size";
|
|
9255
|
-
readonly description: "Fixed dimensions.";
|
|
9256
|
-
readonly category: "container";
|
|
9257
|
-
readonly sort: 3;
|
|
9258
|
-
};
|
|
9259
|
-
readonly offset: {
|
|
9260
|
-
readonly label: "Offset";
|
|
9261
|
-
readonly description: "Absolute positioning offsets.";
|
|
9262
|
-
readonly category: "container";
|
|
9232
|
+
readonly desiredParent: readonly [">OnboardProvider", ">OnboardItem", "!=Onboard"];
|
|
9233
|
+
readonly label: "Onboard Image";
|
|
9234
|
+
readonly description: "Onboarding hero image with media.";
|
|
9235
|
+
readonly styles: {
|
|
9236
|
+
readonly resizeMode: {
|
|
9237
|
+
readonly label: "Resize Mode";
|
|
9238
|
+
readonly description: "How the image fits the frame.";
|
|
9239
|
+
readonly category: "style";
|
|
9240
|
+
readonly specialCategory: null;
|
|
9263
9241
|
readonly sort: 4;
|
|
9264
9242
|
};
|
|
9265
9243
|
};
|
|
9266
9244
|
readonly attributes: {
|
|
9245
|
+
readonly src: {
|
|
9246
|
+
readonly label: "Src";
|
|
9247
|
+
readonly description: "Image source URL.";
|
|
9248
|
+
readonly category: "other";
|
|
9249
|
+
readonly specialCategory: null;
|
|
9250
|
+
readonly sort: 1;
|
|
9251
|
+
};
|
|
9252
|
+
readonly fetchStrategy: {
|
|
9253
|
+
readonly label: "Fetch Strategy";
|
|
9254
|
+
readonly description: "highIfItsAppLaunch ilk başta yükleniyor eğer app_launch placeholder'i ile gelirse\nnormal sonra bütün hepsi toplanıp prefetch ediniyor\nlazy builder açılır açılmaz\nnone ise os'a bırakıldı";
|
|
9255
|
+
readonly category: "other";
|
|
9256
|
+
readonly specialCategory: null;
|
|
9257
|
+
readonly sort: 2;
|
|
9258
|
+
};
|
|
9267
9259
|
readonly scrollable: {
|
|
9268
9260
|
readonly label: "Scrollable";
|
|
9269
9261
|
readonly description: "Turns scroll interaction on.";
|
|
@@ -9289,10 +9281,10 @@ export declare const patterns: readonly [{
|
|
|
9289
9281
|
};
|
|
9290
9282
|
readonly flexDirection: {
|
|
9291
9283
|
readonly label: "Flex Direction";
|
|
9292
|
-
readonly description: "
|
|
9284
|
+
readonly description: "Sets row or column layout.";
|
|
9293
9285
|
readonly category: "container";
|
|
9294
9286
|
readonly specialCategory: null;
|
|
9295
|
-
readonly sort:
|
|
9287
|
+
readonly sort: 4;
|
|
9296
9288
|
};
|
|
9297
9289
|
readonly flexWrap: {
|
|
9298
9290
|
readonly label: "Flex Wrap";
|
|
@@ -9317,10 +9309,11 @@ export declare const patterns: readonly [{
|
|
|
9317
9309
|
};
|
|
9318
9310
|
readonly gap: {
|
|
9319
9311
|
readonly label: "Gap";
|
|
9320
|
-
readonly description: "Space between
|
|
9312
|
+
readonly description: "Space between children.";
|
|
9321
9313
|
readonly category: "container";
|
|
9322
9314
|
readonly specialCategory: null;
|
|
9323
|
-
readonly sort:
|
|
9315
|
+
readonly sort: 10;
|
|
9316
|
+
readonly preferredScale: "s";
|
|
9324
9317
|
};
|
|
9325
9318
|
readonly padding: {
|
|
9326
9319
|
readonly label: "Padding";
|
|
@@ -9335,7 +9328,8 @@ export declare const patterns: readonly [{
|
|
|
9335
9328
|
readonly description: "Left and right padding.";
|
|
9336
9329
|
readonly category: "container";
|
|
9337
9330
|
readonly specialCategory: "padding";
|
|
9338
|
-
readonly sort:
|
|
9331
|
+
readonly sort: 7;
|
|
9332
|
+
readonly preferredScale: "s";
|
|
9339
9333
|
};
|
|
9340
9334
|
readonly paddingVertical: {
|
|
9341
9335
|
readonly label: "Padding Vertical";
|
|
@@ -9535,34 +9529,65 @@ export declare const patterns: readonly [{
|
|
|
9535
9529
|
readonly sort: 26;
|
|
9536
9530
|
};
|
|
9537
9531
|
};
|
|
9538
|
-
readonly
|
|
9539
|
-
readonly label: "
|
|
9540
|
-
readonly description: "
|
|
9541
|
-
readonly category: "
|
|
9532
|
+
readonly video_url: {
|
|
9533
|
+
readonly label: "Video Url";
|
|
9534
|
+
readonly description: "URL for the onboarding video.";
|
|
9535
|
+
readonly category: "other";
|
|
9542
9536
|
readonly specialCategory: null;
|
|
9543
9537
|
readonly sort: 1;
|
|
9544
9538
|
};
|
|
9539
|
+
readonly lottie: {
|
|
9540
|
+
readonly label: "Lottie";
|
|
9541
|
+
readonly description: "Path to the lottie animation.";
|
|
9542
|
+
readonly category: "other";
|
|
9543
|
+
readonly specialCategory: null;
|
|
9544
|
+
readonly sort: 2;
|
|
9545
|
+
};
|
|
9546
|
+
};
|
|
9547
|
+
readonly specialCategories: {
|
|
9548
|
+
readonly padding: {
|
|
9549
|
+
readonly label: "Padding";
|
|
9550
|
+
readonly description: "Uniform padding on all sides.";
|
|
9551
|
+
readonly category: "container";
|
|
9552
|
+
readonly sort: 1;
|
|
9553
|
+
};
|
|
9554
|
+
readonly margin: {
|
|
9555
|
+
readonly label: "Margin";
|
|
9556
|
+
readonly description: "Uniform margin on all sides.";
|
|
9557
|
+
readonly category: "container";
|
|
9558
|
+
readonly sort: 2;
|
|
9559
|
+
};
|
|
9560
|
+
readonly size: {
|
|
9561
|
+
readonly label: "Size";
|
|
9562
|
+
readonly description: "Fixed dimensions.";
|
|
9563
|
+
readonly category: "container";
|
|
9564
|
+
readonly sort: 3;
|
|
9565
|
+
};
|
|
9566
|
+
readonly offset: {
|
|
9567
|
+
readonly label: "Offset";
|
|
9568
|
+
readonly description: "Absolute positioning offsets.";
|
|
9569
|
+
readonly category: "container";
|
|
9570
|
+
readonly sort: 4;
|
|
9571
|
+
};
|
|
9545
9572
|
};
|
|
9546
|
-
readonly styles: {};
|
|
9547
9573
|
};
|
|
9548
9574
|
readonly defaults: {
|
|
9575
|
+
readonly fetchStrategy: "normal";
|
|
9549
9576
|
readonly styles: {
|
|
9577
|
+
readonly resizeMode: "contain";
|
|
9550
9578
|
readonly flexDirection: "column";
|
|
9551
9579
|
readonly position: "relative";
|
|
9552
9580
|
readonly zIndex: 1;
|
|
9553
9581
|
readonly alignSelf: "flex-start";
|
|
9554
9582
|
readonly flexGrow: 0;
|
|
9555
9583
|
readonly flexShrink: 0;
|
|
9556
|
-
readonly gap: "16@vs";
|
|
9557
|
-
readonly paddingHorizontal: "24@s";
|
|
9558
9584
|
};
|
|
9559
|
-
readonly display: "flex";
|
|
9560
9585
|
};
|
|
9561
9586
|
readonly types: {};
|
|
9562
9587
|
}, {
|
|
9563
9588
|
readonly schemaVersion: 2;
|
|
9564
9589
|
readonly pattern: {
|
|
9565
|
-
readonly type: "
|
|
9590
|
+
readonly type: "OnboardItem";
|
|
9566
9591
|
readonly title: "title";
|
|
9567
9592
|
readonly description: "description";
|
|
9568
9593
|
readonly children: "node";
|
|
@@ -9605,14 +9630,13 @@ export declare const patterns: readonly [{
|
|
|
9605
9630
|
readonly zIndex: "number";
|
|
9606
9631
|
};
|
|
9607
9632
|
readonly testID: "string";
|
|
9608
|
-
readonly
|
|
9609
|
-
readonly borderRadius: "never";
|
|
9633
|
+
readonly display: readonly ["flex", "block"];
|
|
9610
9634
|
};
|
|
9611
9635
|
};
|
|
9612
9636
|
readonly meta: {
|
|
9613
|
-
readonly desiredParent: readonly ["
|
|
9614
|
-
readonly label: "Onboard
|
|
9615
|
-
readonly description: "
|
|
9637
|
+
readonly desiredParent: readonly ["=Onboard"];
|
|
9638
|
+
readonly label: "Onboard Item";
|
|
9639
|
+
readonly description: "Single onboarding screen section.";
|
|
9616
9640
|
readonly specialCategories: {
|
|
9617
9641
|
readonly padding: {
|
|
9618
9642
|
readonly label: "Padding";
|
|
@@ -9665,10 +9689,10 @@ export declare const patterns: readonly [{
|
|
|
9665
9689
|
};
|
|
9666
9690
|
readonly flexDirection: {
|
|
9667
9691
|
readonly label: "Flex Direction";
|
|
9668
|
-
readonly description: "
|
|
9692
|
+
readonly description: "Order of child stacking.";
|
|
9669
9693
|
readonly category: "container";
|
|
9670
9694
|
readonly specialCategory: null;
|
|
9671
|
-
readonly sort:
|
|
9695
|
+
readonly sort: 3;
|
|
9672
9696
|
};
|
|
9673
9697
|
readonly flexWrap: {
|
|
9674
9698
|
readonly label: "Flex Wrap";
|
|
@@ -9693,11 +9717,10 @@ export declare const patterns: readonly [{
|
|
|
9693
9717
|
};
|
|
9694
9718
|
readonly gap: {
|
|
9695
9719
|
readonly label: "Gap";
|
|
9696
|
-
readonly description: "Space between
|
|
9720
|
+
readonly description: "Space between child blocks.";
|
|
9697
9721
|
readonly category: "container";
|
|
9698
9722
|
readonly specialCategory: null;
|
|
9699
|
-
readonly sort:
|
|
9700
|
-
readonly preferredScale: "s";
|
|
9723
|
+
readonly sort: 2;
|
|
9701
9724
|
};
|
|
9702
9725
|
readonly padding: {
|
|
9703
9726
|
readonly label: "Padding";
|
|
@@ -9712,8 +9735,7 @@ export declare const patterns: readonly [{
|
|
|
9712
9735
|
readonly description: "Left and right padding.";
|
|
9713
9736
|
readonly category: "container";
|
|
9714
9737
|
readonly specialCategory: "padding";
|
|
9715
|
-
readonly sort:
|
|
9716
|
-
readonly preferredScale: "s";
|
|
9738
|
+
readonly sort: 4;
|
|
9717
9739
|
};
|
|
9718
9740
|
readonly paddingVertical: {
|
|
9719
9741
|
readonly label: "Padding Vertical";
|
|
@@ -9725,31 +9747,35 @@ export declare const patterns: readonly [{
|
|
|
9725
9747
|
};
|
|
9726
9748
|
readonly paddingTop: {
|
|
9727
9749
|
readonly label: "Padding Top";
|
|
9728
|
-
readonly description: "Top padding
|
|
9750
|
+
readonly description: "Top padding only.";
|
|
9729
9751
|
readonly category: "container";
|
|
9730
9752
|
readonly specialCategory: "padding";
|
|
9731
|
-
readonly sort:
|
|
9753
|
+
readonly sort: 9;
|
|
9754
|
+
readonly preferredScale: "vs";
|
|
9732
9755
|
};
|
|
9733
9756
|
readonly paddingBottom: {
|
|
9734
9757
|
readonly label: "Padding Bottom";
|
|
9735
|
-
readonly description: "Bottom padding
|
|
9758
|
+
readonly description: "Bottom padding only.";
|
|
9736
9759
|
readonly category: "container";
|
|
9737
9760
|
readonly specialCategory: "padding";
|
|
9738
|
-
readonly sort:
|
|
9761
|
+
readonly sort: 10;
|
|
9762
|
+
readonly preferredScale: "vs";
|
|
9739
9763
|
};
|
|
9740
9764
|
readonly paddingLeft: {
|
|
9741
9765
|
readonly label: "Padding Left";
|
|
9742
|
-
readonly description: "Left padding
|
|
9766
|
+
readonly description: "Left padding only.";
|
|
9743
9767
|
readonly category: "container";
|
|
9744
9768
|
readonly specialCategory: "padding";
|
|
9745
|
-
readonly sort:
|
|
9769
|
+
readonly sort: 11;
|
|
9770
|
+
readonly preferredScale: "s";
|
|
9746
9771
|
};
|
|
9747
9772
|
readonly paddingRight: {
|
|
9748
9773
|
readonly label: "Padding Right";
|
|
9749
|
-
readonly description: "Right padding
|
|
9774
|
+
readonly description: "Right padding only.";
|
|
9750
9775
|
readonly category: "container";
|
|
9751
9776
|
readonly specialCategory: "padding";
|
|
9752
|
-
readonly sort:
|
|
9777
|
+
readonly sort: 12;
|
|
9778
|
+
readonly preferredScale: "s";
|
|
9753
9779
|
};
|
|
9754
9780
|
readonly margin: {
|
|
9755
9781
|
readonly label: "Margin";
|
|
@@ -9909,12 +9935,12 @@ export declare const patterns: readonly [{
|
|
|
9909
9935
|
readonly sort: 26;
|
|
9910
9936
|
};
|
|
9911
9937
|
};
|
|
9912
|
-
readonly
|
|
9913
|
-
readonly label: "
|
|
9914
|
-
readonly description: "Controls
|
|
9915
|
-
readonly category: "
|
|
9938
|
+
readonly display: {
|
|
9939
|
+
readonly label: "Display";
|
|
9940
|
+
readonly description: "Controls layout display mode.";
|
|
9941
|
+
readonly category: "container";
|
|
9916
9942
|
readonly specialCategory: null;
|
|
9917
|
-
readonly sort:
|
|
9943
|
+
readonly sort: 1;
|
|
9918
9944
|
};
|
|
9919
9945
|
};
|
|
9920
9946
|
readonly styles: {};
|
|
@@ -9927,28 +9953,22 @@ export declare const patterns: readonly [{
|
|
|
9927
9953
|
readonly alignSelf: "flex-start";
|
|
9928
9954
|
readonly flexGrow: 0;
|
|
9929
9955
|
readonly flexShrink: 0;
|
|
9930
|
-
readonly
|
|
9931
|
-
readonly
|
|
9956
|
+
readonly gap: "16@vs";
|
|
9957
|
+
readonly paddingHorizontal: "24@s";
|
|
9932
9958
|
};
|
|
9959
|
+
readonly display: "flex";
|
|
9933
9960
|
};
|
|
9934
9961
|
readonly types: {};
|
|
9935
9962
|
}, {
|
|
9936
9963
|
readonly schemaVersion: 2;
|
|
9937
9964
|
readonly pattern: {
|
|
9938
|
-
readonly type: "
|
|
9965
|
+
readonly type: "OnboardProvider";
|
|
9939
9966
|
readonly title: "title";
|
|
9940
9967
|
readonly description: "description";
|
|
9941
|
-
readonly children: "
|
|
9968
|
+
readonly children: "node";
|
|
9942
9969
|
readonly attributes: {
|
|
9943
|
-
readonly
|
|
9944
|
-
readonly numberOfLines: "number";
|
|
9945
|
-
readonly translateCounter: "number";
|
|
9970
|
+
readonly scrollable: "boolean";
|
|
9946
9971
|
readonly styles: {
|
|
9947
|
-
readonly color: "color";
|
|
9948
|
-
readonly fontSize: "size";
|
|
9949
|
-
readonly fontFamily: "fontFamily";
|
|
9950
|
-
readonly fontWeight: "fontWeight";
|
|
9951
|
-
readonly textAlign: "string";
|
|
9952
9972
|
readonly flexDirection: readonly ["row", "column"];
|
|
9953
9973
|
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
9954
9974
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
@@ -9984,67 +10004,43 @@ export declare const patterns: readonly [{
|
|
|
9984
10004
|
readonly right: "size";
|
|
9985
10005
|
readonly zIndex: "number";
|
|
9986
10006
|
};
|
|
9987
|
-
readonly scrollable: "boolean";
|
|
9988
10007
|
readonly testID: "string";
|
|
10008
|
+
readonly theme: readonly ["light", "dark", "all"];
|
|
10009
|
+
readonly borderRadius: "never";
|
|
10010
|
+
readonly animation: readonly ["default", "fade", "fade_from_bottom", "fade_from_right", "reveal_from_bottom", "scale_from_center", "slide_from_right", "slide_from_left", "slide_from_bottom", "none"];
|
|
9989
10011
|
};
|
|
9990
10012
|
};
|
|
9991
10013
|
readonly meta: {
|
|
9992
|
-
readonly desiredParent: readonly ["
|
|
9993
|
-
readonly label: "Onboard
|
|
9994
|
-
readonly description: "
|
|
9995
|
-
readonly
|
|
9996
|
-
readonly
|
|
9997
|
-
readonly label: "
|
|
9998
|
-
readonly description: "
|
|
9999
|
-
readonly category: "
|
|
10000
|
-
readonly specialCategory: null;
|
|
10014
|
+
readonly desiredParent: readonly ["root"];
|
|
10015
|
+
readonly label: "Onboard Provider";
|
|
10016
|
+
readonly description: "Provides shared settings for onboard.";
|
|
10017
|
+
readonly specialCategories: {
|
|
10018
|
+
readonly padding: {
|
|
10019
|
+
readonly label: "Padding";
|
|
10020
|
+
readonly description: "Uniform padding on all sides.";
|
|
10021
|
+
readonly category: "container";
|
|
10001
10022
|
readonly sort: 1;
|
|
10002
10023
|
};
|
|
10003
|
-
readonly
|
|
10004
|
-
readonly label: "
|
|
10005
|
-
readonly description: "
|
|
10006
|
-
readonly category: "
|
|
10007
|
-
readonly specialCategory: null;
|
|
10024
|
+
readonly margin: {
|
|
10025
|
+
readonly label: "Margin";
|
|
10026
|
+
readonly description: "Uniform margin on all sides.";
|
|
10027
|
+
readonly category: "container";
|
|
10008
10028
|
readonly sort: 2;
|
|
10009
|
-
readonly preferredScale: "f";
|
|
10010
10029
|
};
|
|
10011
|
-
readonly
|
|
10012
|
-
readonly label: "
|
|
10013
|
-
readonly description: "
|
|
10014
|
-
readonly category: "
|
|
10015
|
-
readonly specialCategory: null;
|
|
10030
|
+
readonly size: {
|
|
10031
|
+
readonly label: "Size";
|
|
10032
|
+
readonly description: "Fixed dimensions.";
|
|
10033
|
+
readonly category: "container";
|
|
10016
10034
|
readonly sort: 3;
|
|
10017
10035
|
};
|
|
10018
|
-
readonly
|
|
10019
|
-
readonly label: "
|
|
10020
|
-
readonly description: "
|
|
10021
|
-
readonly category: "
|
|
10022
|
-
readonly specialCategory: null;
|
|
10036
|
+
readonly offset: {
|
|
10037
|
+
readonly label: "Offset";
|
|
10038
|
+
readonly description: "Absolute positioning offsets.";
|
|
10039
|
+
readonly category: "container";
|
|
10023
10040
|
readonly sort: 4;
|
|
10024
10041
|
};
|
|
10025
|
-
readonly textAlign: {
|
|
10026
|
-
readonly label: "Text Align";
|
|
10027
|
-
readonly description: "Text alignment.";
|
|
10028
|
-
readonly category: "style";
|
|
10029
|
-
readonly specialCategory: null;
|
|
10030
|
-
readonly sort: 5;
|
|
10031
|
-
};
|
|
10032
10042
|
};
|
|
10033
10043
|
readonly attributes: {
|
|
10034
|
-
readonly adjustsFontSizeToFit: {
|
|
10035
|
-
readonly label: "Adjust Font Size To Fit";
|
|
10036
|
-
readonly description: "Automatically reduces font size to fit the available space.";
|
|
10037
|
-
readonly category: "other";
|
|
10038
|
-
readonly specialCategory: null;
|
|
10039
|
-
readonly sort: 1;
|
|
10040
|
-
};
|
|
10041
|
-
readonly showEllipsis: {
|
|
10042
|
-
readonly label: "Show Ellipsis";
|
|
10043
|
-
readonly description: "If text overflows, show ellipsis (…); applied as single-line truncation.";
|
|
10044
|
-
readonly category: "other";
|
|
10045
|
-
readonly specialCategory: null;
|
|
10046
|
-
readonly sort: 2;
|
|
10047
|
-
};
|
|
10048
10044
|
readonly scrollable: {
|
|
10049
10045
|
readonly label: "Scrollable";
|
|
10050
10046
|
readonly description: "Turns scroll interaction on.";
|
|
@@ -10130,35 +10126,31 @@ export declare const patterns: readonly [{
|
|
|
10130
10126
|
};
|
|
10131
10127
|
readonly paddingTop: {
|
|
10132
10128
|
readonly label: "Padding Top";
|
|
10133
|
-
readonly description: "Top padding
|
|
10129
|
+
readonly description: "Top padding for the provider.";
|
|
10134
10130
|
readonly category: "container";
|
|
10135
10131
|
readonly specialCategory: "padding";
|
|
10136
|
-
readonly sort:
|
|
10137
|
-
readonly preferredScale: "vs";
|
|
10132
|
+
readonly sort: 1;
|
|
10138
10133
|
};
|
|
10139
10134
|
readonly paddingBottom: {
|
|
10140
10135
|
readonly label: "Padding Bottom";
|
|
10141
|
-
readonly description: "Bottom padding
|
|
10136
|
+
readonly description: "Bottom padding for the provider.";
|
|
10142
10137
|
readonly category: "container";
|
|
10143
10138
|
readonly specialCategory: "padding";
|
|
10144
|
-
readonly sort:
|
|
10145
|
-
readonly preferredScale: "vs";
|
|
10139
|
+
readonly sort: 3;
|
|
10146
10140
|
};
|
|
10147
10141
|
readonly paddingLeft: {
|
|
10148
10142
|
readonly label: "Padding Left";
|
|
10149
|
-
readonly description: "Left padding
|
|
10143
|
+
readonly description: "Left padding for the provider.";
|
|
10150
10144
|
readonly category: "container";
|
|
10151
10145
|
readonly specialCategory: "padding";
|
|
10152
|
-
readonly sort:
|
|
10153
|
-
readonly preferredScale: "s";
|
|
10146
|
+
readonly sort: 4;
|
|
10154
10147
|
};
|
|
10155
10148
|
readonly paddingRight: {
|
|
10156
10149
|
readonly label: "Padding Right";
|
|
10157
|
-
readonly description: "Right padding
|
|
10150
|
+
readonly description: "Right padding for the provider.";
|
|
10158
10151
|
readonly category: "container";
|
|
10159
10152
|
readonly specialCategory: "padding";
|
|
10160
|
-
readonly sort:
|
|
10161
|
-
readonly preferredScale: "s";
|
|
10153
|
+
readonly sort: 2;
|
|
10162
10154
|
};
|
|
10163
10155
|
readonly margin: {
|
|
10164
10156
|
readonly label: "Margin";
|
|
@@ -10318,54 +10310,40 @@ export declare const patterns: readonly [{
|
|
|
10318
10310
|
readonly sort: 26;
|
|
10319
10311
|
};
|
|
10320
10312
|
};
|
|
10321
|
-
|
|
10322
|
-
|
|
10323
|
-
|
|
10324
|
-
readonly
|
|
10325
|
-
readonly
|
|
10326
|
-
readonly
|
|
10327
|
-
readonly sort: 1;
|
|
10313
|
+
readonly theme: {
|
|
10314
|
+
readonly label: "Theme";
|
|
10315
|
+
readonly description: "Controls which app theme(s) this onboarding is intended for.";
|
|
10316
|
+
readonly category: "other";
|
|
10317
|
+
readonly specialCategory: null;
|
|
10318
|
+
readonly sort: -10;
|
|
10328
10319
|
};
|
|
10329
|
-
readonly
|
|
10330
|
-
readonly label: "
|
|
10331
|
-
readonly description: "
|
|
10332
|
-
readonly category: "
|
|
10320
|
+
readonly animation: {
|
|
10321
|
+
readonly label: "Page transition animation";
|
|
10322
|
+
readonly description: "When this component is a GlobalProvider page: animation used when navigating to this screen.";
|
|
10323
|
+
readonly category: "other";
|
|
10324
|
+
readonly specialCategory: null;
|
|
10333
10325
|
readonly sort: 2;
|
|
10334
10326
|
};
|
|
10335
|
-
readonly size: {
|
|
10336
|
-
readonly label: "Size";
|
|
10337
|
-
readonly description: "Fixed dimensions.";
|
|
10338
|
-
readonly category: "container";
|
|
10339
|
-
readonly sort: 3;
|
|
10340
|
-
};
|
|
10341
|
-
readonly offset: {
|
|
10342
|
-
readonly label: "Offset";
|
|
10343
|
-
readonly description: "Absolute positioning offsets.";
|
|
10344
|
-
readonly category: "container";
|
|
10345
|
-
readonly sort: 4;
|
|
10346
|
-
};
|
|
10347
10327
|
};
|
|
10328
|
+
readonly styles: {};
|
|
10348
10329
|
};
|
|
10349
10330
|
readonly defaults: {
|
|
10350
|
-
readonly translateCounter: 1;
|
|
10351
|
-
readonly numberOfLines: 1;
|
|
10352
10331
|
readonly styles: {
|
|
10353
|
-
readonly color: "THEME_COLORS.TEXT";
|
|
10354
|
-
readonly fontSize: "14@fs";
|
|
10355
|
-
readonly fontWeight: "600";
|
|
10356
10332
|
readonly flexDirection: "column";
|
|
10357
10333
|
readonly position: "relative";
|
|
10358
10334
|
readonly zIndex: 1;
|
|
10359
10335
|
readonly alignSelf: "flex-start";
|
|
10360
10336
|
readonly flexGrow: 0;
|
|
10361
10337
|
readonly flexShrink: 0;
|
|
10338
|
+
readonly width: "100%";
|
|
10339
|
+
readonly height: "100%";
|
|
10362
10340
|
};
|
|
10363
10341
|
};
|
|
10364
10342
|
readonly types: {};
|
|
10365
10343
|
}, {
|
|
10366
10344
|
readonly schemaVersion: 2;
|
|
10367
10345
|
readonly pattern: {
|
|
10368
|
-
readonly type: "
|
|
10346
|
+
readonly type: "OnboardSubtitle";
|
|
10369
10347
|
readonly title: "title";
|
|
10370
10348
|
readonly description: "description";
|
|
10371
10349
|
readonly children: "string";
|
|
@@ -10419,9 +10397,9 @@ export declare const patterns: readonly [{
|
|
|
10419
10397
|
};
|
|
10420
10398
|
};
|
|
10421
10399
|
readonly meta: {
|
|
10422
|
-
readonly desiredParent: readonly [">
|
|
10423
|
-
readonly label: "Onboard
|
|
10424
|
-
readonly description: "
|
|
10400
|
+
readonly desiredParent: readonly [">OnboardProvider", ">OnboardItem"];
|
|
10401
|
+
readonly label: "Onboard Subtitle";
|
|
10402
|
+
readonly description: "Subtitle text for an onboarding step.";
|
|
10425
10403
|
readonly styles: {
|
|
10426
10404
|
readonly color: {
|
|
10427
10405
|
readonly label: "Color";
|
|
@@ -10781,30 +10759,34 @@ export declare const patterns: readonly [{
|
|
|
10781
10759
|
readonly numberOfLines: 1;
|
|
10782
10760
|
readonly styles: {
|
|
10783
10761
|
readonly color: "THEME_COLORS.TEXT";
|
|
10784
|
-
readonly fontSize: "
|
|
10785
|
-
readonly fontWeight: "
|
|
10762
|
+
readonly fontSize: "14@fs";
|
|
10763
|
+
readonly fontWeight: "600";
|
|
10786
10764
|
readonly flexDirection: "column";
|
|
10787
10765
|
readonly position: "relative";
|
|
10788
10766
|
readonly zIndex: 1;
|
|
10789
10767
|
readonly alignSelf: "flex-start";
|
|
10790
10768
|
readonly flexGrow: 0;
|
|
10791
10769
|
readonly flexShrink: 0;
|
|
10792
|
-
readonly textAlign: "center";
|
|
10793
10770
|
};
|
|
10794
10771
|
};
|
|
10795
10772
|
readonly types: {};
|
|
10796
10773
|
}, {
|
|
10797
10774
|
readonly schemaVersion: 2;
|
|
10798
10775
|
readonly pattern: {
|
|
10799
|
-
readonly type: "
|
|
10776
|
+
readonly type: "OnboardTitle";
|
|
10800
10777
|
readonly title: "title";
|
|
10801
10778
|
readonly description: "description";
|
|
10802
|
-
readonly children: "
|
|
10779
|
+
readonly children: "string";
|
|
10803
10780
|
readonly attributes: {
|
|
10804
|
-
readonly
|
|
10805
|
-
readonly
|
|
10806
|
-
readonly
|
|
10781
|
+
readonly adjustsFontSizeToFit: "boolean";
|
|
10782
|
+
readonly numberOfLines: "number";
|
|
10783
|
+
readonly translateCounter: "number";
|
|
10807
10784
|
readonly styles: {
|
|
10785
|
+
readonly color: "color";
|
|
10786
|
+
readonly fontSize: "size";
|
|
10787
|
+
readonly fontFamily: "fontFamily";
|
|
10788
|
+
readonly fontWeight: "fontWeight";
|
|
10789
|
+
readonly textAlign: "string";
|
|
10808
10790
|
readonly flexDirection: readonly ["row", "column"];
|
|
10809
10791
|
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
10810
10792
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
@@ -10840,28 +10822,66 @@ export declare const patterns: readonly [{
|
|
|
10840
10822
|
readonly right: "size";
|
|
10841
10823
|
readonly zIndex: "number";
|
|
10842
10824
|
};
|
|
10825
|
+
readonly scrollable: "boolean";
|
|
10843
10826
|
readonly testID: "string";
|
|
10844
10827
|
};
|
|
10845
10828
|
};
|
|
10846
10829
|
readonly meta: {
|
|
10847
|
-
readonly desiredParent: readonly [">
|
|
10848
|
-
readonly label: "
|
|
10849
|
-
readonly description: "
|
|
10850
|
-
readonly styles: {
|
|
10830
|
+
readonly desiredParent: readonly [">OnboardItem", ">OnboardProvider"];
|
|
10831
|
+
readonly label: "Onboard Title";
|
|
10832
|
+
readonly description: "Title text for an onboarding step.";
|
|
10833
|
+
readonly styles: {
|
|
10834
|
+
readonly color: {
|
|
10835
|
+
readonly label: "Color";
|
|
10836
|
+
readonly description: "Text color.";
|
|
10837
|
+
readonly category: "style";
|
|
10838
|
+
readonly specialCategory: null;
|
|
10839
|
+
readonly sort: 1;
|
|
10840
|
+
};
|
|
10841
|
+
readonly fontSize: {
|
|
10842
|
+
readonly label: "Font Size";
|
|
10843
|
+
readonly description: "Text size.";
|
|
10844
|
+
readonly category: "style";
|
|
10845
|
+
readonly specialCategory: null;
|
|
10846
|
+
readonly sort: 2;
|
|
10847
|
+
readonly preferredScale: "f";
|
|
10848
|
+
};
|
|
10849
|
+
readonly fontFamily: {
|
|
10850
|
+
readonly label: "Font Family";
|
|
10851
|
+
readonly description: "Font family used for the text.";
|
|
10852
|
+
readonly category: "style";
|
|
10853
|
+
readonly specialCategory: null;
|
|
10854
|
+
readonly sort: 3;
|
|
10855
|
+
};
|
|
10856
|
+
readonly fontWeight: {
|
|
10857
|
+
readonly label: "Font Weight";
|
|
10858
|
+
readonly description: "Text weight.";
|
|
10859
|
+
readonly category: "style";
|
|
10860
|
+
readonly specialCategory: null;
|
|
10861
|
+
readonly sort: 4;
|
|
10862
|
+
};
|
|
10863
|
+
readonly textAlign: {
|
|
10864
|
+
readonly label: "Text Align";
|
|
10865
|
+
readonly description: "Text alignment.";
|
|
10866
|
+
readonly category: "style";
|
|
10867
|
+
readonly specialCategory: null;
|
|
10868
|
+
readonly sort: 5;
|
|
10869
|
+
};
|
|
10870
|
+
};
|
|
10851
10871
|
readonly attributes: {
|
|
10852
|
-
readonly
|
|
10853
|
-
readonly label: "
|
|
10854
|
-
readonly description: "
|
|
10872
|
+
readonly adjustsFontSizeToFit: {
|
|
10873
|
+
readonly label: "Adjust Font Size To Fit";
|
|
10874
|
+
readonly description: "Automatically reduces font size to fit the available space.";
|
|
10855
10875
|
readonly category: "other";
|
|
10856
10876
|
readonly specialCategory: null;
|
|
10857
10877
|
readonly sort: 1;
|
|
10858
10878
|
};
|
|
10859
|
-
readonly
|
|
10860
|
-
readonly label: "
|
|
10861
|
-
readonly description: "
|
|
10879
|
+
readonly showEllipsis: {
|
|
10880
|
+
readonly label: "Show Ellipsis";
|
|
10881
|
+
readonly description: "If text overflows, show ellipsis (…); applied as single-line truncation.";
|
|
10862
10882
|
readonly category: "other";
|
|
10863
10883
|
readonly specialCategory: null;
|
|
10864
|
-
readonly sort:
|
|
10884
|
+
readonly sort: 2;
|
|
10865
10885
|
};
|
|
10866
10886
|
readonly scrollable: {
|
|
10867
10887
|
readonly label: "Scrollable";
|
|
@@ -11165,43 +11185,34 @@ export declare const patterns: readonly [{
|
|
|
11165
11185
|
};
|
|
11166
11186
|
};
|
|
11167
11187
|
readonly defaults: {
|
|
11168
|
-
readonly
|
|
11188
|
+
readonly translateCounter: 1;
|
|
11189
|
+
readonly numberOfLines: 1;
|
|
11169
11190
|
readonly styles: {
|
|
11170
|
-
readonly
|
|
11171
|
-
readonly
|
|
11172
|
-
readonly
|
|
11173
|
-
readonly top: 0;
|
|
11174
|
-
readonly left: 0;
|
|
11175
|
-
readonly right: 0;
|
|
11176
|
-
readonly bottom: 0;
|
|
11177
|
-
readonly zIndex: 1;
|
|
11191
|
+
readonly color: "THEME_COLORS.TEXT";
|
|
11192
|
+
readonly fontSize: "24@fs";
|
|
11193
|
+
readonly fontWeight: "700";
|
|
11178
11194
|
readonly flexDirection: "column";
|
|
11195
|
+
readonly position: "relative";
|
|
11196
|
+
readonly zIndex: 1;
|
|
11179
11197
|
readonly alignSelf: "flex-start";
|
|
11180
11198
|
readonly flexGrow: 0;
|
|
11181
11199
|
readonly flexShrink: 0;
|
|
11200
|
+
readonly textAlign: "center";
|
|
11182
11201
|
};
|
|
11183
11202
|
};
|
|
11184
11203
|
readonly types: {};
|
|
11185
11204
|
}, {
|
|
11186
11205
|
readonly schemaVersion: 2;
|
|
11187
11206
|
readonly pattern: {
|
|
11188
|
-
readonly type: "
|
|
11207
|
+
readonly type: "PaywallBackground";
|
|
11189
11208
|
readonly title: "title";
|
|
11190
11209
|
readonly description: "description";
|
|
11191
11210
|
readonly children: "never";
|
|
11192
11211
|
readonly attributes: {
|
|
11193
|
-
readonly
|
|
11194
|
-
readonly
|
|
11195
|
-
readonly
|
|
11196
|
-
readonly adjustsFontSizeToFit: "boolean";
|
|
11197
|
-
readonly numberOfLines: "number";
|
|
11198
|
-
readonly translateCounter: "number";
|
|
11212
|
+
readonly src: "string";
|
|
11213
|
+
readonly resizeMode: readonly ["cover", "contain", "stretch", "center"];
|
|
11214
|
+
readonly scrollable: "boolean";
|
|
11199
11215
|
readonly styles: {
|
|
11200
|
-
readonly color: "color";
|
|
11201
|
-
readonly fontSize: "size";
|
|
11202
|
-
readonly fontFamily: "fontFamily";
|
|
11203
|
-
readonly fontWeight: "fontWeight";
|
|
11204
|
-
readonly textAlign: "string";
|
|
11205
11216
|
readonly flexDirection: readonly ["row", "column"];
|
|
11206
11217
|
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
11207
11218
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
@@ -11237,92 +11248,33 @@ export declare const patterns: readonly [{
|
|
|
11237
11248
|
readonly right: "size";
|
|
11238
11249
|
readonly zIndex: "number";
|
|
11239
11250
|
};
|
|
11240
|
-
readonly scrollable: "boolean";
|
|
11241
11251
|
readonly testID: "string";
|
|
11242
11252
|
};
|
|
11243
11253
|
};
|
|
11244
11254
|
readonly meta: {
|
|
11245
11255
|
readonly desiredParent: readonly [">PaywallProvider"];
|
|
11246
|
-
readonly label: "Paywall
|
|
11247
|
-
readonly description: "Paywall
|
|
11248
|
-
readonly styles: {
|
|
11249
|
-
readonly color: {
|
|
11250
|
-
readonly label: "Color";
|
|
11251
|
-
readonly description: "Text color.";
|
|
11252
|
-
readonly category: "style";
|
|
11253
|
-
readonly specialCategory: null;
|
|
11254
|
-
readonly sort: 1;
|
|
11255
|
-
};
|
|
11256
|
-
readonly fontSize: {
|
|
11257
|
-
readonly label: "Font Size";
|
|
11258
|
-
readonly description: "Text size.";
|
|
11259
|
-
readonly category: "style";
|
|
11260
|
-
readonly specialCategory: null;
|
|
11261
|
-
readonly sort: 2;
|
|
11262
|
-
readonly preferredScale: "f";
|
|
11263
|
-
};
|
|
11264
|
-
readonly fontFamily: {
|
|
11265
|
-
readonly label: "Font Family";
|
|
11266
|
-
readonly description: "Font family used for the text.";
|
|
11267
|
-
readonly category: "style";
|
|
11268
|
-
readonly specialCategory: null;
|
|
11269
|
-
readonly sort: 3;
|
|
11270
|
-
};
|
|
11271
|
-
readonly fontWeight: {
|
|
11272
|
-
readonly label: "Font Weight";
|
|
11273
|
-
readonly description: "Text weight.";
|
|
11274
|
-
readonly category: "style";
|
|
11275
|
-
readonly specialCategory: null;
|
|
11276
|
-
readonly sort: 4;
|
|
11277
|
-
};
|
|
11278
|
-
readonly textAlign: {
|
|
11279
|
-
readonly label: "Text Align";
|
|
11280
|
-
readonly description: "Text alignment.";
|
|
11281
|
-
readonly category: "style";
|
|
11282
|
-
readonly specialCategory: null;
|
|
11283
|
-
readonly sort: 5;
|
|
11284
|
-
};
|
|
11285
|
-
};
|
|
11256
|
+
readonly label: "Paywall Background";
|
|
11257
|
+
readonly description: "Paywall Background component.";
|
|
11258
|
+
readonly styles: {};
|
|
11286
11259
|
readonly attributes: {
|
|
11287
|
-
readonly
|
|
11288
|
-
readonly label: "
|
|
11289
|
-
readonly description: "
|
|
11260
|
+
readonly src: {
|
|
11261
|
+
readonly label: "Src";
|
|
11262
|
+
readonly description: "Image source URL.";
|
|
11290
11263
|
readonly category: "other";
|
|
11291
11264
|
readonly specialCategory: null;
|
|
11292
11265
|
readonly sort: 1;
|
|
11293
11266
|
};
|
|
11294
|
-
readonly
|
|
11295
|
-
readonly label: "
|
|
11296
|
-
readonly description: "
|
|
11267
|
+
readonly resizeMode: {
|
|
11268
|
+
readonly label: "Resize Mode";
|
|
11269
|
+
readonly description: "How the image fits its container.";
|
|
11297
11270
|
readonly category: "other";
|
|
11298
11271
|
readonly specialCategory: null;
|
|
11299
|
-
readonly sort:
|
|
11272
|
+
readonly sort: 4;
|
|
11300
11273
|
};
|
|
11301
|
-
readonly
|
|
11302
|
-
readonly label: "
|
|
11303
|
-
readonly description: "
|
|
11304
|
-
readonly category: "
|
|
11305
|
-
readonly specialCategory: null;
|
|
11306
|
-
readonly sort: 3;
|
|
11307
|
-
};
|
|
11308
|
-
readonly adjustsFontSizeToFit: {
|
|
11309
|
-
readonly label: "Adjust Font Size To Fit";
|
|
11310
|
-
readonly description: "Automatically reduces font size to fit the available space.";
|
|
11311
|
-
readonly category: "other";
|
|
11312
|
-
readonly specialCategory: null;
|
|
11313
|
-
readonly sort: 1;
|
|
11314
|
-
};
|
|
11315
|
-
readonly showEllipsis: {
|
|
11316
|
-
readonly label: "Show Ellipsis";
|
|
11317
|
-
readonly description: "If text overflows, show ellipsis (…); applied as single-line truncation.";
|
|
11318
|
-
readonly category: "other";
|
|
11319
|
-
readonly specialCategory: null;
|
|
11320
|
-
readonly sort: 2;
|
|
11321
|
-
};
|
|
11322
|
-
readonly scrollable: {
|
|
11323
|
-
readonly label: "Scrollable";
|
|
11324
|
-
readonly description: "Turns scroll interaction on.";
|
|
11325
|
-
readonly category: "container";
|
|
11274
|
+
readonly scrollable: {
|
|
11275
|
+
readonly label: "Scrollable";
|
|
11276
|
+
readonly description: "Turns scroll interaction on.";
|
|
11277
|
+
readonly category: "container";
|
|
11326
11278
|
readonly specialCategory: null;
|
|
11327
11279
|
readonly sort: -1;
|
|
11328
11280
|
};
|
|
@@ -11621,37 +11573,34 @@ export declare const patterns: readonly [{
|
|
|
11621
11573
|
};
|
|
11622
11574
|
};
|
|
11623
11575
|
readonly defaults: {
|
|
11624
|
-
readonly
|
|
11625
|
-
readonly strokeWidth: 1.5;
|
|
11576
|
+
readonly resizeMode: "cover";
|
|
11626
11577
|
readonly styles: {
|
|
11627
|
-
readonly
|
|
11628
|
-
readonly
|
|
11629
|
-
readonly fontWeight: "400";
|
|
11630
|
-
readonly flexDirection: "row";
|
|
11578
|
+
readonly width: "100%";
|
|
11579
|
+
readonly height: "100%";
|
|
11631
11580
|
readonly position: "absolute";
|
|
11581
|
+
readonly top: 0;
|
|
11582
|
+
readonly left: 0;
|
|
11583
|
+
readonly right: 0;
|
|
11584
|
+
readonly bottom: 0;
|
|
11632
11585
|
readonly zIndex: 1;
|
|
11586
|
+
readonly flexDirection: "column";
|
|
11633
11587
|
readonly alignSelf: "flex-start";
|
|
11634
11588
|
readonly flexGrow: 0;
|
|
11635
11589
|
readonly flexShrink: 0;
|
|
11636
|
-
readonly top: "35@vs";
|
|
11637
|
-
readonly left: "24@s";
|
|
11638
|
-
readonly justifyContent: "center";
|
|
11639
|
-
readonly alignItems: "center";
|
|
11640
11590
|
};
|
|
11641
|
-
readonly translateCounter: 1;
|
|
11642
|
-
readonly numberOfLines: 1;
|
|
11643
|
-
readonly testID: "paywall-close-button";
|
|
11644
|
-
readonly size: 24;
|
|
11645
11591
|
};
|
|
11646
11592
|
readonly types: {};
|
|
11647
11593
|
}, {
|
|
11648
11594
|
readonly schemaVersion: 2;
|
|
11649
11595
|
readonly pattern: {
|
|
11650
|
-
readonly type: "
|
|
11596
|
+
readonly type: "PaywallCloseButton";
|
|
11651
11597
|
readonly title: "title";
|
|
11652
11598
|
readonly description: "description";
|
|
11653
11599
|
readonly children: "never";
|
|
11654
11600
|
readonly attributes: {
|
|
11601
|
+
readonly iconType: "iconType";
|
|
11602
|
+
readonly size: "number";
|
|
11603
|
+
readonly strokeWidth: "number";
|
|
11655
11604
|
readonly adjustsFontSizeToFit: "boolean";
|
|
11656
11605
|
readonly numberOfLines: "number";
|
|
11657
11606
|
readonly translateCounter: "number";
|
|
@@ -11698,19 +11647,12 @@ export declare const patterns: readonly [{
|
|
|
11698
11647
|
};
|
|
11699
11648
|
readonly scrollable: "boolean";
|
|
11700
11649
|
readonly testID: "string";
|
|
11701
|
-
readonly textLocalizationKey: "string";
|
|
11702
|
-
readonly linkedWordFirstLocalizationKey: "string";
|
|
11703
|
-
readonly linkedWordFirstColor: "color";
|
|
11704
|
-
readonly linkedWordFirstPage: "string";
|
|
11705
|
-
readonly linkedWordSecondLocalizationKey: "string";
|
|
11706
|
-
readonly linkedWordSecondColor: "color";
|
|
11707
|
-
readonly linkedWordSecondPage: "string";
|
|
11708
11650
|
};
|
|
11709
11651
|
};
|
|
11710
11652
|
readonly meta: {
|
|
11711
11653
|
readonly desiredParent: readonly [">PaywallProvider"];
|
|
11712
|
-
readonly label: "Paywall
|
|
11713
|
-
readonly description: "
|
|
11654
|
+
readonly label: "Paywall Close Button";
|
|
11655
|
+
readonly description: "Paywall Close Button component.";
|
|
11714
11656
|
readonly styles: {
|
|
11715
11657
|
readonly color: {
|
|
11716
11658
|
readonly label: "Color";
|
|
@@ -11750,6 +11692,27 @@ export declare const patterns: readonly [{
|
|
|
11750
11692
|
};
|
|
11751
11693
|
};
|
|
11752
11694
|
readonly attributes: {
|
|
11695
|
+
readonly iconType: {
|
|
11696
|
+
readonly label: "Icon";
|
|
11697
|
+
readonly description: "Which icon to render.";
|
|
11698
|
+
readonly category: "other";
|
|
11699
|
+
readonly specialCategory: null;
|
|
11700
|
+
readonly sort: 1;
|
|
11701
|
+
};
|
|
11702
|
+
readonly size: {
|
|
11703
|
+
readonly label: "Size";
|
|
11704
|
+
readonly description: "Icon size (px).";
|
|
11705
|
+
readonly category: "other";
|
|
11706
|
+
readonly specialCategory: null;
|
|
11707
|
+
readonly sort: 2;
|
|
11708
|
+
};
|
|
11709
|
+
readonly strokeWidth: {
|
|
11710
|
+
readonly label: "Stroke Width";
|
|
11711
|
+
readonly description: "SVG stroke width override (applied to the icon paths).";
|
|
11712
|
+
readonly category: "other";
|
|
11713
|
+
readonly specialCategory: null;
|
|
11714
|
+
readonly sort: 3;
|
|
11715
|
+
};
|
|
11753
11716
|
readonly adjustsFontSizeToFit: {
|
|
11754
11717
|
readonly label: "Adjust Font Size To Fit";
|
|
11755
11718
|
readonly description: "Automatically reduces font size to fit the available space.";
|
|
@@ -12037,55 +12000,6 @@ export declare const patterns: readonly [{
|
|
|
12037
12000
|
readonly sort: 26;
|
|
12038
12001
|
};
|
|
12039
12002
|
};
|
|
12040
|
-
readonly textLocalizationKey: {
|
|
12041
|
-
readonly label: "Text Localization Key";
|
|
12042
|
-
readonly description: "Localization key for the footer text.";
|
|
12043
|
-
readonly category: "other";
|
|
12044
|
-
readonly specialCategory: null;
|
|
12045
|
-
readonly sort: 1;
|
|
12046
|
-
};
|
|
12047
|
-
readonly linkedWordFirstLocalizationKey: {
|
|
12048
|
-
readonly label: "Linked Word First Localization Key";
|
|
12049
|
-
readonly description: "Key for the first linked word.";
|
|
12050
|
-
readonly category: "other";
|
|
12051
|
-
readonly specialCategory: null;
|
|
12052
|
-
readonly sort: 2;
|
|
12053
|
-
};
|
|
12054
|
-
readonly linkedWordFirstColor: {
|
|
12055
|
-
readonly label: "Linked Word First Color";
|
|
12056
|
-
readonly description: "Color of the first linked word.";
|
|
12057
|
-
readonly category: "other";
|
|
12058
|
-
readonly specialCategory: null;
|
|
12059
|
-
readonly sort: 3;
|
|
12060
|
-
};
|
|
12061
|
-
readonly linkedWordFirstPage: {
|
|
12062
|
-
readonly label: "Linked Word First Page";
|
|
12063
|
-
readonly description: "Page opened by the first link.";
|
|
12064
|
-
readonly category: "other";
|
|
12065
|
-
readonly specialCategory: null;
|
|
12066
|
-
readonly sort: 4;
|
|
12067
|
-
};
|
|
12068
|
-
readonly linkedWordSecondLocalizationKey: {
|
|
12069
|
-
readonly label: "Linked Word Second Localization Key";
|
|
12070
|
-
readonly description: "Key for the second linked word.";
|
|
12071
|
-
readonly category: "other";
|
|
12072
|
-
readonly specialCategory: null;
|
|
12073
|
-
readonly sort: 5;
|
|
12074
|
-
};
|
|
12075
|
-
readonly linkedWordSecondColor: {
|
|
12076
|
-
readonly label: "Linked Word Second Color";
|
|
12077
|
-
readonly description: "Color of the second linked word.";
|
|
12078
|
-
readonly category: "other";
|
|
12079
|
-
readonly specialCategory: null;
|
|
12080
|
-
readonly sort: 6;
|
|
12081
|
-
};
|
|
12082
|
-
readonly linkedWordSecondPage: {
|
|
12083
|
-
readonly label: "Linked Word Second Page";
|
|
12084
|
-
readonly description: "Page opened by the second link.";
|
|
12085
|
-
readonly category: "other";
|
|
12086
|
-
readonly specialCategory: null;
|
|
12087
|
-
readonly sort: 7;
|
|
12088
|
-
};
|
|
12089
12003
|
};
|
|
12090
12004
|
readonly specialCategories: {
|
|
12091
12005
|
readonly padding: {
|
|
@@ -12115,37 +12029,46 @@ export declare const patterns: readonly [{
|
|
|
12115
12029
|
};
|
|
12116
12030
|
};
|
|
12117
12031
|
readonly defaults: {
|
|
12118
|
-
readonly
|
|
12119
|
-
readonly
|
|
12032
|
+
readonly iconType: "close";
|
|
12033
|
+
readonly strokeWidth: 1.5;
|
|
12120
12034
|
readonly styles: {
|
|
12121
|
-
readonly color: "THEME_COLORS.TEXT";
|
|
12122
12035
|
readonly fontSize: "16@fs";
|
|
12036
|
+
readonly color: "THEME_COLORS.TEXT";
|
|
12123
12037
|
readonly fontWeight: "400";
|
|
12124
12038
|
readonly flexDirection: "row";
|
|
12125
|
-
readonly position: "
|
|
12039
|
+
readonly position: "absolute";
|
|
12126
12040
|
readonly zIndex: 1;
|
|
12127
12041
|
readonly alignSelf: "flex-start";
|
|
12128
12042
|
readonly flexGrow: 0;
|
|
12129
12043
|
readonly flexShrink: 0;
|
|
12130
|
-
readonly
|
|
12131
|
-
readonly
|
|
12132
|
-
readonly alignItems: "center";
|
|
12044
|
+
readonly top: "35@vs";
|
|
12045
|
+
readonly left: "24@s";
|
|
12133
12046
|
readonly justifyContent: "center";
|
|
12134
|
-
readonly
|
|
12135
|
-
readonly paddingHorizontal: "16@s";
|
|
12047
|
+
readonly alignItems: "center";
|
|
12136
12048
|
};
|
|
12049
|
+
readonly translateCounter: 1;
|
|
12050
|
+
readonly numberOfLines: 1;
|
|
12051
|
+
readonly testID: "paywall-close-button";
|
|
12052
|
+
readonly size: 24;
|
|
12137
12053
|
};
|
|
12138
12054
|
readonly types: {};
|
|
12139
12055
|
}, {
|
|
12140
12056
|
readonly schemaVersion: 2;
|
|
12141
12057
|
readonly pattern: {
|
|
12142
|
-
readonly type: "
|
|
12058
|
+
readonly type: "PaywallFooter";
|
|
12143
12059
|
readonly title: "title";
|
|
12144
12060
|
readonly description: "description";
|
|
12145
|
-
readonly children: "
|
|
12061
|
+
readonly children: "never";
|
|
12146
12062
|
readonly attributes: {
|
|
12147
|
-
readonly
|
|
12063
|
+
readonly adjustsFontSizeToFit: "boolean";
|
|
12064
|
+
readonly numberOfLines: "number";
|
|
12065
|
+
readonly translateCounter: "number";
|
|
12148
12066
|
readonly styles: {
|
|
12067
|
+
readonly color: "color";
|
|
12068
|
+
readonly fontSize: "size";
|
|
12069
|
+
readonly fontFamily: "fontFamily";
|
|
12070
|
+
readonly fontWeight: "fontWeight";
|
|
12071
|
+
readonly textAlign: "string";
|
|
12149
12072
|
readonly flexDirection: readonly ["row", "column"];
|
|
12150
12073
|
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
12151
12074
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
@@ -12181,40 +12104,74 @@ export declare const patterns: readonly [{
|
|
|
12181
12104
|
readonly right: "size";
|
|
12182
12105
|
readonly zIndex: "number";
|
|
12183
12106
|
};
|
|
12107
|
+
readonly scrollable: "boolean";
|
|
12184
12108
|
readonly testID: "string";
|
|
12109
|
+
readonly textLocalizationKey: "string";
|
|
12110
|
+
readonly linkedWordFirstLocalizationKey: "string";
|
|
12111
|
+
readonly linkedWordFirstColor: "color";
|
|
12112
|
+
readonly linkedWordFirstPage: "string";
|
|
12113
|
+
readonly linkedWordSecondLocalizationKey: "string";
|
|
12114
|
+
readonly linkedWordSecondColor: "color";
|
|
12115
|
+
readonly linkedWordSecondPage: "string";
|
|
12185
12116
|
};
|
|
12186
12117
|
};
|
|
12187
12118
|
readonly meta: {
|
|
12188
12119
|
readonly desiredParent: readonly [">PaywallProvider"];
|
|
12189
|
-
readonly label: "Paywall
|
|
12190
|
-
readonly description: "
|
|
12191
|
-
readonly
|
|
12192
|
-
readonly
|
|
12193
|
-
readonly label: "
|
|
12194
|
-
readonly description: "
|
|
12195
|
-
readonly category: "
|
|
12120
|
+
readonly label: "Paywall Footer";
|
|
12121
|
+
readonly description: "Footer text with optional links for paywall screens.";
|
|
12122
|
+
readonly styles: {
|
|
12123
|
+
readonly color: {
|
|
12124
|
+
readonly label: "Color";
|
|
12125
|
+
readonly description: "Text color.";
|
|
12126
|
+
readonly category: "style";
|
|
12127
|
+
readonly specialCategory: null;
|
|
12196
12128
|
readonly sort: 1;
|
|
12197
12129
|
};
|
|
12198
|
-
readonly
|
|
12199
|
-
readonly label: "
|
|
12200
|
-
readonly description: "
|
|
12201
|
-
readonly category: "
|
|
12130
|
+
readonly fontSize: {
|
|
12131
|
+
readonly label: "Font Size";
|
|
12132
|
+
readonly description: "Text size.";
|
|
12133
|
+
readonly category: "style";
|
|
12134
|
+
readonly specialCategory: null;
|
|
12202
12135
|
readonly sort: 2;
|
|
12136
|
+
readonly preferredScale: "f";
|
|
12203
12137
|
};
|
|
12204
|
-
readonly
|
|
12205
|
-
readonly label: "
|
|
12206
|
-
readonly description: "
|
|
12207
|
-
readonly category: "
|
|
12138
|
+
readonly fontFamily: {
|
|
12139
|
+
readonly label: "Font Family";
|
|
12140
|
+
readonly description: "Font family used for the text.";
|
|
12141
|
+
readonly category: "style";
|
|
12142
|
+
readonly specialCategory: null;
|
|
12208
12143
|
readonly sort: 3;
|
|
12209
12144
|
};
|
|
12210
|
-
readonly
|
|
12211
|
-
readonly label: "
|
|
12212
|
-
readonly description: "
|
|
12213
|
-
readonly category: "
|
|
12145
|
+
readonly fontWeight: {
|
|
12146
|
+
readonly label: "Font Weight";
|
|
12147
|
+
readonly description: "Text weight.";
|
|
12148
|
+
readonly category: "style";
|
|
12149
|
+
readonly specialCategory: null;
|
|
12214
12150
|
readonly sort: 4;
|
|
12215
12151
|
};
|
|
12152
|
+
readonly textAlign: {
|
|
12153
|
+
readonly label: "Text Align";
|
|
12154
|
+
readonly description: "Text alignment.";
|
|
12155
|
+
readonly category: "style";
|
|
12156
|
+
readonly specialCategory: null;
|
|
12157
|
+
readonly sort: 5;
|
|
12158
|
+
};
|
|
12216
12159
|
};
|
|
12217
12160
|
readonly attributes: {
|
|
12161
|
+
readonly adjustsFontSizeToFit: {
|
|
12162
|
+
readonly label: "Adjust Font Size To Fit";
|
|
12163
|
+
readonly description: "Automatically reduces font size to fit the available space.";
|
|
12164
|
+
readonly category: "other";
|
|
12165
|
+
readonly specialCategory: null;
|
|
12166
|
+
readonly sort: 1;
|
|
12167
|
+
};
|
|
12168
|
+
readonly showEllipsis: {
|
|
12169
|
+
readonly label: "Show Ellipsis";
|
|
12170
|
+
readonly description: "If text overflows, show ellipsis (…); applied as single-line truncation.";
|
|
12171
|
+
readonly category: "other";
|
|
12172
|
+
readonly specialCategory: null;
|
|
12173
|
+
readonly sort: 2;
|
|
12174
|
+
};
|
|
12218
12175
|
readonly scrollable: {
|
|
12219
12176
|
readonly label: "Scrollable";
|
|
12220
12177
|
readonly description: "Turns scroll interaction on.";
|
|
@@ -12488,28 +12445,110 @@ export declare const patterns: readonly [{
|
|
|
12488
12445
|
readonly sort: 26;
|
|
12489
12446
|
};
|
|
12490
12447
|
};
|
|
12491
|
-
|
|
12492
|
-
|
|
12493
|
-
|
|
12494
|
-
|
|
12495
|
-
|
|
12496
|
-
|
|
12497
|
-
|
|
12498
|
-
readonly
|
|
12499
|
-
|
|
12500
|
-
|
|
12501
|
-
|
|
12502
|
-
|
|
12503
|
-
|
|
12504
|
-
|
|
12505
|
-
|
|
12506
|
-
|
|
12507
|
-
|
|
12508
|
-
|
|
12509
|
-
|
|
12510
|
-
|
|
12511
|
-
|
|
12512
|
-
|
|
12448
|
+
readonly textLocalizationKey: {
|
|
12449
|
+
readonly label: "Text Localization Key";
|
|
12450
|
+
readonly description: "Localization key for the footer text.";
|
|
12451
|
+
readonly category: "other";
|
|
12452
|
+
readonly specialCategory: null;
|
|
12453
|
+
readonly sort: 1;
|
|
12454
|
+
};
|
|
12455
|
+
readonly linkedWordFirstLocalizationKey: {
|
|
12456
|
+
readonly label: "Linked Word First Localization Key";
|
|
12457
|
+
readonly description: "Key for the first linked word.";
|
|
12458
|
+
readonly category: "other";
|
|
12459
|
+
readonly specialCategory: null;
|
|
12460
|
+
readonly sort: 2;
|
|
12461
|
+
};
|
|
12462
|
+
readonly linkedWordFirstColor: {
|
|
12463
|
+
readonly label: "Linked Word First Color";
|
|
12464
|
+
readonly description: "Color of the first linked word.";
|
|
12465
|
+
readonly category: "other";
|
|
12466
|
+
readonly specialCategory: null;
|
|
12467
|
+
readonly sort: 3;
|
|
12468
|
+
};
|
|
12469
|
+
readonly linkedWordFirstPage: {
|
|
12470
|
+
readonly label: "Linked Word First Page";
|
|
12471
|
+
readonly description: "Page opened by the first link.";
|
|
12472
|
+
readonly category: "other";
|
|
12473
|
+
readonly specialCategory: null;
|
|
12474
|
+
readonly sort: 4;
|
|
12475
|
+
};
|
|
12476
|
+
readonly linkedWordSecondLocalizationKey: {
|
|
12477
|
+
readonly label: "Linked Word Second Localization Key";
|
|
12478
|
+
readonly description: "Key for the second linked word.";
|
|
12479
|
+
readonly category: "other";
|
|
12480
|
+
readonly specialCategory: null;
|
|
12481
|
+
readonly sort: 5;
|
|
12482
|
+
};
|
|
12483
|
+
readonly linkedWordSecondColor: {
|
|
12484
|
+
readonly label: "Linked Word Second Color";
|
|
12485
|
+
readonly description: "Color of the second linked word.";
|
|
12486
|
+
readonly category: "other";
|
|
12487
|
+
readonly specialCategory: null;
|
|
12488
|
+
readonly sort: 6;
|
|
12489
|
+
};
|
|
12490
|
+
readonly linkedWordSecondPage: {
|
|
12491
|
+
readonly label: "Linked Word Second Page";
|
|
12492
|
+
readonly description: "Page opened by the second link.";
|
|
12493
|
+
readonly category: "other";
|
|
12494
|
+
readonly specialCategory: null;
|
|
12495
|
+
readonly sort: 7;
|
|
12496
|
+
};
|
|
12497
|
+
};
|
|
12498
|
+
readonly specialCategories: {
|
|
12499
|
+
readonly padding: {
|
|
12500
|
+
readonly label: "Padding";
|
|
12501
|
+
readonly description: "Uniform padding on all sides.";
|
|
12502
|
+
readonly category: "container";
|
|
12503
|
+
readonly sort: 1;
|
|
12504
|
+
};
|
|
12505
|
+
readonly margin: {
|
|
12506
|
+
readonly label: "Margin";
|
|
12507
|
+
readonly description: "Uniform margin on all sides.";
|
|
12508
|
+
readonly category: "container";
|
|
12509
|
+
readonly sort: 2;
|
|
12510
|
+
};
|
|
12511
|
+
readonly size: {
|
|
12512
|
+
readonly label: "Size";
|
|
12513
|
+
readonly description: "Fixed dimensions.";
|
|
12514
|
+
readonly category: "container";
|
|
12515
|
+
readonly sort: 3;
|
|
12516
|
+
};
|
|
12517
|
+
readonly offset: {
|
|
12518
|
+
readonly label: "Offset";
|
|
12519
|
+
readonly description: "Absolute positioning offsets.";
|
|
12520
|
+
readonly category: "container";
|
|
12521
|
+
readonly sort: 4;
|
|
12522
|
+
};
|
|
12523
|
+
};
|
|
12524
|
+
};
|
|
12525
|
+
readonly defaults: {
|
|
12526
|
+
readonly translateCounter: 1;
|
|
12527
|
+
readonly numberOfLines: 1;
|
|
12528
|
+
readonly styles: {
|
|
12529
|
+
readonly color: "THEME_COLORS.TEXT";
|
|
12530
|
+
readonly fontSize: "16@fs";
|
|
12531
|
+
readonly fontWeight: "400";
|
|
12532
|
+
readonly flexDirection: "row";
|
|
12533
|
+
readonly position: "relative";
|
|
12534
|
+
readonly zIndex: 1;
|
|
12535
|
+
readonly alignSelf: "flex-start";
|
|
12536
|
+
readonly flexGrow: 0;
|
|
12537
|
+
readonly flexShrink: 0;
|
|
12538
|
+
readonly minHeight: "50@vs";
|
|
12539
|
+
readonly flexWrap: "wrap";
|
|
12540
|
+
readonly alignItems: "center";
|
|
12541
|
+
readonly justifyContent: "center";
|
|
12542
|
+
readonly textAlign: "center";
|
|
12543
|
+
readonly paddingHorizontal: "16@s";
|
|
12544
|
+
};
|
|
12545
|
+
};
|
|
12546
|
+
readonly types: {};
|
|
12547
|
+
}, {
|
|
12548
|
+
readonly schemaVersion: 2;
|
|
12549
|
+
readonly pattern: {
|
|
12550
|
+
readonly type: "PaywallOptions";
|
|
12551
|
+
readonly title: "title";
|
|
12513
12552
|
readonly description: "description";
|
|
12514
12553
|
readonly children: "node";
|
|
12515
12554
|
readonly attributes: {
|
|
@@ -12551,13 +12590,12 @@ export declare const patterns: readonly [{
|
|
|
12551
12590
|
readonly zIndex: "number";
|
|
12552
12591
|
};
|
|
12553
12592
|
readonly testID: "string";
|
|
12554
|
-
readonly delay: "number";
|
|
12555
12593
|
};
|
|
12556
12594
|
};
|
|
12557
12595
|
readonly meta: {
|
|
12558
|
-
readonly desiredParent: readonly ["
|
|
12559
|
-
readonly label: "Paywall
|
|
12560
|
-
readonly description: "
|
|
12596
|
+
readonly desiredParent: readonly [">PaywallProvider"];
|
|
12597
|
+
readonly label: "Paywall Options";
|
|
12598
|
+
readonly description: "Paywall options selector component.";
|
|
12561
12599
|
readonly specialCategories: {
|
|
12562
12600
|
readonly padding: {
|
|
12563
12601
|
readonly label: "Padding";
|
|
@@ -12858,45 +12896,33 @@ export declare const patterns: readonly [{
|
|
|
12858
12896
|
readonly sort: 26;
|
|
12859
12897
|
};
|
|
12860
12898
|
};
|
|
12861
|
-
readonly delay: {
|
|
12862
|
-
readonly label: "Back Delay (ms)";
|
|
12863
|
-
readonly description: "Milliseconds before the paywall can be dismissed via back/close.";
|
|
12864
|
-
readonly category: "other";
|
|
12865
|
-
readonly specialCategory: null;
|
|
12866
|
-
readonly sort: 1;
|
|
12867
|
-
};
|
|
12868
|
-
};
|
|
12869
|
-
readonly mockableFeatures: {
|
|
12870
|
-
readonly products: true;
|
|
12871
|
-
readonly benefits: true;
|
|
12872
12899
|
};
|
|
12873
12900
|
readonly styles: {};
|
|
12874
12901
|
};
|
|
12875
12902
|
readonly defaults: {
|
|
12876
12903
|
readonly styles: {
|
|
12877
|
-
readonly flexDirection: "
|
|
12904
|
+
readonly flexDirection: "row";
|
|
12878
12905
|
readonly position: "relative";
|
|
12879
12906
|
readonly zIndex: 1;
|
|
12880
12907
|
readonly alignSelf: "flex-start";
|
|
12881
12908
|
readonly flexGrow: 0;
|
|
12882
12909
|
readonly flexShrink: 0;
|
|
12883
|
-
readonly
|
|
12884
|
-
readonly
|
|
12910
|
+
readonly justifyContent: "space-between";
|
|
12911
|
+
readonly alignItems: "center";
|
|
12912
|
+
readonly minHeight: "60px";
|
|
12885
12913
|
};
|
|
12886
12914
|
};
|
|
12887
12915
|
readonly types: {};
|
|
12888
12916
|
}, {
|
|
12889
12917
|
readonly schemaVersion: 2;
|
|
12890
12918
|
readonly pattern: {
|
|
12891
|
-
readonly type: "
|
|
12919
|
+
readonly type: "PaywallProvider";
|
|
12892
12920
|
readonly title: "title";
|
|
12893
12921
|
readonly description: "description";
|
|
12894
|
-
readonly children: "
|
|
12922
|
+
readonly children: "node";
|
|
12895
12923
|
readonly attributes: {
|
|
12924
|
+
readonly scrollable: "boolean";
|
|
12896
12925
|
readonly styles: {
|
|
12897
|
-
readonly color: "color";
|
|
12898
|
-
readonly fontSize: "size";
|
|
12899
|
-
readonly fontWeight: readonly ["normal", "bold", "100", "200", "300", "400", "500", "600", "700", "800", "900"];
|
|
12900
12926
|
readonly flexDirection: readonly ["row", "column"];
|
|
12901
12927
|
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
12902
12928
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
@@ -12932,37 +12958,15 @@ export declare const patterns: readonly [{
|
|
|
12932
12958
|
readonly right: "size";
|
|
12933
12959
|
readonly zIndex: "number";
|
|
12934
12960
|
};
|
|
12935
|
-
readonly scrollable: "boolean";
|
|
12936
12961
|
readonly testID: "string";
|
|
12962
|
+
readonly delay: "number";
|
|
12963
|
+
readonly animation: readonly ["default", "fade", "fade_from_bottom", "fade_from_right", "reveal_from_bottom", "scale_from_center", "slide_from_right", "slide_from_left", "slide_from_bottom", "none"];
|
|
12937
12964
|
};
|
|
12938
12965
|
};
|
|
12939
12966
|
readonly meta: {
|
|
12940
|
-
readonly desiredParent: readonly ["
|
|
12941
|
-
readonly label: "Paywall
|
|
12942
|
-
readonly description: "
|
|
12943
|
-
readonly styles: {
|
|
12944
|
-
readonly color: {
|
|
12945
|
-
readonly label: "Color";
|
|
12946
|
-
readonly description: "Text color of the button.";
|
|
12947
|
-
readonly category: "style";
|
|
12948
|
-
readonly specialCategory: null;
|
|
12949
|
-
readonly sort: 1;
|
|
12950
|
-
};
|
|
12951
|
-
readonly fontSize: {
|
|
12952
|
-
readonly label: "Font Size";
|
|
12953
|
-
readonly description: "Text size of the button.";
|
|
12954
|
-
readonly category: "style";
|
|
12955
|
-
readonly specialCategory: null;
|
|
12956
|
-
readonly sort: 2;
|
|
12957
|
-
};
|
|
12958
|
-
readonly fontWeight: {
|
|
12959
|
-
readonly label: "Font Weight";
|
|
12960
|
-
readonly description: "Text weight of the button.";
|
|
12961
|
-
readonly category: "style";
|
|
12962
|
-
readonly specialCategory: null;
|
|
12963
|
-
readonly sort: 3;
|
|
12964
|
-
};
|
|
12965
|
-
};
|
|
12967
|
+
readonly desiredParent: readonly ["all"];
|
|
12968
|
+
readonly label: "Paywall Provider";
|
|
12969
|
+
readonly description: "Provider/wrapper for paywall screen components.";
|
|
12966
12970
|
readonly specialCategories: {
|
|
12967
12971
|
readonly padding: {
|
|
12968
12972
|
readonly label: "Padding";
|
|
@@ -13263,46 +13267,52 @@ export declare const patterns: readonly [{
|
|
|
13263
13267
|
readonly sort: 26;
|
|
13264
13268
|
};
|
|
13265
13269
|
};
|
|
13270
|
+
readonly delay: {
|
|
13271
|
+
readonly label: "Back Delay (ms)";
|
|
13272
|
+
readonly description: "Milliseconds before the paywall can be dismissed via back/close.";
|
|
13273
|
+
readonly category: "other";
|
|
13274
|
+
readonly specialCategory: null;
|
|
13275
|
+
readonly sort: 1;
|
|
13276
|
+
};
|
|
13277
|
+
readonly animation: {
|
|
13278
|
+
readonly label: "Page transition animation";
|
|
13279
|
+
readonly description: "When this component is a GlobalProvider page: animation used when navigating to this screen.";
|
|
13280
|
+
readonly category: "other";
|
|
13281
|
+
readonly specialCategory: null;
|
|
13282
|
+
readonly sort: 2;
|
|
13283
|
+
};
|
|
13284
|
+
};
|
|
13285
|
+
readonly mockableFeatures: {
|
|
13286
|
+
readonly products: true;
|
|
13287
|
+
readonly benefits: true;
|
|
13266
13288
|
};
|
|
13289
|
+
readonly styles: {};
|
|
13267
13290
|
};
|
|
13268
13291
|
readonly defaults: {
|
|
13269
13292
|
readonly styles: {
|
|
13270
|
-
readonly display: "flex";
|
|
13271
|
-
readonly alignItems: "center";
|
|
13272
|
-
readonly justifyContent: "center";
|
|
13273
|
-
readonly backgroundColor: "#6495ED";
|
|
13274
13293
|
readonly flexDirection: "column";
|
|
13275
13294
|
readonly position: "relative";
|
|
13276
13295
|
readonly zIndex: 1;
|
|
13277
13296
|
readonly alignSelf: "flex-start";
|
|
13278
13297
|
readonly flexGrow: 0;
|
|
13279
13298
|
readonly flexShrink: 0;
|
|
13280
|
-
readonly
|
|
13281
|
-
readonly
|
|
13282
|
-
readonly borderRadius: "12@s";
|
|
13283
|
-
readonly color: "#FFFFFF";
|
|
13284
|
-
readonly fontSize: "16@fs";
|
|
13285
|
-
readonly fontWeight: "700";
|
|
13299
|
+
readonly width: "100%";
|
|
13300
|
+
readonly height: "100%";
|
|
13286
13301
|
};
|
|
13287
13302
|
};
|
|
13288
13303
|
readonly types: {};
|
|
13289
13304
|
}, {
|
|
13290
13305
|
readonly schemaVersion: 2;
|
|
13291
13306
|
readonly pattern: {
|
|
13292
|
-
readonly type: "
|
|
13307
|
+
readonly type: "PaywallSubscribeButton";
|
|
13293
13308
|
readonly title: "title";
|
|
13294
13309
|
readonly description: "description";
|
|
13295
13310
|
readonly children: "string";
|
|
13296
13311
|
readonly attributes: {
|
|
13297
|
-
readonly adjustsFontSizeToFit: "boolean";
|
|
13298
|
-
readonly numberOfLines: "number";
|
|
13299
|
-
readonly translateCounter: "number";
|
|
13300
13312
|
readonly styles: {
|
|
13301
13313
|
readonly color: "color";
|
|
13302
13314
|
readonly fontSize: "size";
|
|
13303
|
-
readonly
|
|
13304
|
-
readonly fontWeight: "fontWeight";
|
|
13305
|
-
readonly textAlign: "string";
|
|
13315
|
+
readonly fontWeight: readonly ["normal", "bold", "100", "200", "300", "400", "500", "600", "700", "800", "900"];
|
|
13306
13316
|
readonly flexDirection: readonly ["row", "column"];
|
|
13307
13317
|
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
13308
13318
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
@@ -13337,78 +13347,65 @@ export declare const patterns: readonly [{
|
|
|
13337
13347
|
readonly left: "size";
|
|
13338
13348
|
readonly right: "size";
|
|
13339
13349
|
readonly zIndex: "number";
|
|
13340
|
-
readonly textDecorationLine: readonly ["none", "underline", "line-through"];
|
|
13341
13350
|
};
|
|
13342
13351
|
readonly scrollable: "boolean";
|
|
13343
13352
|
readonly testID: "string";
|
|
13344
|
-
readonly showOriginalPricePossible: "boolean";
|
|
13345
|
-
readonly hideIfItsNotDiscount: "boolean";
|
|
13346
13353
|
};
|
|
13347
13354
|
};
|
|
13348
13355
|
readonly meta: {
|
|
13349
13356
|
readonly desiredParent: readonly [">PaywallProvider"];
|
|
13350
|
-
readonly label: "
|
|
13351
|
-
readonly description: "
|
|
13357
|
+
readonly label: "Paywall Subscribe Button";
|
|
13358
|
+
readonly description: "Paywall subscribe call-to-action button. Extends Button.";
|
|
13352
13359
|
readonly styles: {
|
|
13353
13360
|
readonly color: {
|
|
13354
13361
|
readonly label: "Color";
|
|
13355
|
-
readonly description: "Text color.";
|
|
13362
|
+
readonly description: "Text color of the button.";
|
|
13356
13363
|
readonly category: "style";
|
|
13357
13364
|
readonly specialCategory: null;
|
|
13358
13365
|
readonly sort: 1;
|
|
13359
13366
|
};
|
|
13360
13367
|
readonly fontSize: {
|
|
13361
13368
|
readonly label: "Font Size";
|
|
13362
|
-
readonly description: "Text size.";
|
|
13369
|
+
readonly description: "Text size of the button.";
|
|
13363
13370
|
readonly category: "style";
|
|
13364
13371
|
readonly specialCategory: null;
|
|
13365
13372
|
readonly sort: 2;
|
|
13366
|
-
readonly preferredScale: "f";
|
|
13367
|
-
};
|
|
13368
|
-
readonly fontFamily: {
|
|
13369
|
-
readonly label: "Font Family";
|
|
13370
|
-
readonly description: "Font family used for the text.";
|
|
13371
|
-
readonly category: "style";
|
|
13372
|
-
readonly specialCategory: null;
|
|
13373
|
-
readonly sort: 3;
|
|
13374
13373
|
};
|
|
13375
13374
|
readonly fontWeight: {
|
|
13376
13375
|
readonly label: "Font Weight";
|
|
13377
|
-
readonly description: "Text weight.";
|
|
13378
|
-
readonly category: "style";
|
|
13379
|
-
readonly specialCategory: null;
|
|
13380
|
-
readonly sort: 4;
|
|
13381
|
-
};
|
|
13382
|
-
readonly textAlign: {
|
|
13383
|
-
readonly label: "Text Align";
|
|
13384
|
-
readonly description: "Text alignment.";
|
|
13385
|
-
readonly category: "style";
|
|
13386
|
-
readonly specialCategory: null;
|
|
13387
|
-
readonly sort: 5;
|
|
13388
|
-
};
|
|
13389
|
-
readonly textDecorationLine: {
|
|
13390
|
-
readonly label: "Text Decoration";
|
|
13391
|
-
readonly description: "Text decoration line style (e.g. line-through for strikethrough).";
|
|
13376
|
+
readonly description: "Text weight of the button.";
|
|
13392
13377
|
readonly category: "style";
|
|
13393
13378
|
readonly specialCategory: null;
|
|
13394
|
-
readonly sort:
|
|
13379
|
+
readonly sort: 3;
|
|
13395
13380
|
};
|
|
13396
13381
|
};
|
|
13397
|
-
readonly
|
|
13398
|
-
readonly
|
|
13399
|
-
readonly label: "
|
|
13400
|
-
readonly description: "
|
|
13401
|
-
readonly category: "
|
|
13402
|
-
readonly specialCategory: null;
|
|
13382
|
+
readonly specialCategories: {
|
|
13383
|
+
readonly padding: {
|
|
13384
|
+
readonly label: "Padding";
|
|
13385
|
+
readonly description: "Uniform padding on all sides.";
|
|
13386
|
+
readonly category: "container";
|
|
13403
13387
|
readonly sort: 1;
|
|
13404
13388
|
};
|
|
13405
|
-
readonly
|
|
13406
|
-
readonly label: "
|
|
13407
|
-
readonly description: "
|
|
13408
|
-
readonly category: "
|
|
13409
|
-
readonly specialCategory: null;
|
|
13389
|
+
readonly margin: {
|
|
13390
|
+
readonly label: "Margin";
|
|
13391
|
+
readonly description: "Uniform margin on all sides.";
|
|
13392
|
+
readonly category: "container";
|
|
13410
13393
|
readonly sort: 2;
|
|
13411
13394
|
};
|
|
13395
|
+
readonly size: {
|
|
13396
|
+
readonly label: "Size";
|
|
13397
|
+
readonly description: "Fixed dimensions.";
|
|
13398
|
+
readonly category: "container";
|
|
13399
|
+
readonly sort: 3;
|
|
13400
|
+
};
|
|
13401
|
+
readonly offset: {
|
|
13402
|
+
readonly label: "Offset";
|
|
13403
|
+
readonly description: "Absolute positioning offsets.";
|
|
13404
|
+
readonly category: "container";
|
|
13405
|
+
readonly sort: 4;
|
|
13406
|
+
};
|
|
13407
|
+
};
|
|
13408
|
+
readonly attributes: {
|
|
13412
13409
|
readonly scrollable: {
|
|
13413
13410
|
readonly label: "Scrollable";
|
|
13414
13411
|
readonly description: "Turns scroll interaction on.";
|
|
@@ -13682,70 +13679,35 @@ export declare const patterns: readonly [{
|
|
|
13682
13679
|
readonly sort: 26;
|
|
13683
13680
|
};
|
|
13684
13681
|
};
|
|
13685
|
-
readonly showOriginalPricePossible: {
|
|
13686
|
-
readonly label: "Show Original Price Possible";
|
|
13687
|
-
readonly description: "When enabled, shows the original price if available.";
|
|
13688
|
-
readonly category: "other";
|
|
13689
|
-
readonly specialCategory: null;
|
|
13690
|
-
readonly sort: 1;
|
|
13691
|
-
};
|
|
13692
|
-
readonly hideIfItsNotDiscount: {
|
|
13693
|
-
readonly label: "Hide If No Discount";
|
|
13694
|
-
readonly description: "Hides this element when there is no active discount/promo.";
|
|
13695
|
-
readonly category: "other";
|
|
13696
|
-
readonly specialCategory: null;
|
|
13697
|
-
readonly sort: 2;
|
|
13698
|
-
};
|
|
13699
|
-
};
|
|
13700
|
-
readonly specialCategories: {
|
|
13701
|
-
readonly padding: {
|
|
13702
|
-
readonly label: "Padding";
|
|
13703
|
-
readonly description: "Uniform padding on all sides.";
|
|
13704
|
-
readonly category: "container";
|
|
13705
|
-
readonly sort: 1;
|
|
13706
|
-
};
|
|
13707
|
-
readonly margin: {
|
|
13708
|
-
readonly label: "Margin";
|
|
13709
|
-
readonly description: "Uniform margin on all sides.";
|
|
13710
|
-
readonly category: "container";
|
|
13711
|
-
readonly sort: 2;
|
|
13712
|
-
};
|
|
13713
|
-
readonly size: {
|
|
13714
|
-
readonly label: "Size";
|
|
13715
|
-
readonly description: "Fixed dimensions.";
|
|
13716
|
-
readonly category: "container";
|
|
13717
|
-
readonly sort: 3;
|
|
13718
|
-
};
|
|
13719
|
-
readonly offset: {
|
|
13720
|
-
readonly label: "Offset";
|
|
13721
|
-
readonly description: "Absolute positioning offsets.";
|
|
13722
|
-
readonly category: "container";
|
|
13723
|
-
readonly sort: 4;
|
|
13724
|
-
};
|
|
13725
13682
|
};
|
|
13726
13683
|
};
|
|
13727
13684
|
readonly defaults: {
|
|
13728
|
-
readonly translateCounter: 1;
|
|
13729
|
-
readonly numberOfLines: 1;
|
|
13730
13685
|
readonly styles: {
|
|
13731
|
-
readonly
|
|
13732
|
-
readonly
|
|
13733
|
-
readonly
|
|
13686
|
+
readonly display: "flex";
|
|
13687
|
+
readonly alignItems: "center";
|
|
13688
|
+
readonly justifyContent: "center";
|
|
13689
|
+
readonly backgroundColor: "#6495ED";
|
|
13734
13690
|
readonly flexDirection: "column";
|
|
13735
13691
|
readonly position: "relative";
|
|
13736
13692
|
readonly zIndex: 1;
|
|
13737
13693
|
readonly alignSelf: "flex-start";
|
|
13738
13694
|
readonly flexGrow: 0;
|
|
13739
13695
|
readonly flexShrink: 0;
|
|
13696
|
+
readonly paddingHorizontal: "20@s";
|
|
13697
|
+
readonly paddingVertical: "12@vs";
|
|
13698
|
+
readonly borderRadius: "12@s";
|
|
13699
|
+
readonly color: "#FFFFFF";
|
|
13700
|
+
readonly fontSize: "16@fs";
|
|
13701
|
+
readonly fontWeight: "700";
|
|
13740
13702
|
};
|
|
13741
13703
|
};
|
|
13742
13704
|
readonly types: {};
|
|
13743
13705
|
}, {
|
|
13744
13706
|
readonly schemaVersion: 2;
|
|
13745
13707
|
readonly pattern: {
|
|
13746
|
-
readonly type: "
|
|
13708
|
+
readonly type: "PriceTag";
|
|
13747
13709
|
readonly title: "title";
|
|
13748
|
-
readonly description: "
|
|
13710
|
+
readonly description: "description";
|
|
13749
13711
|
readonly children: "string";
|
|
13750
13712
|
readonly attributes: {
|
|
13751
13713
|
readonly adjustsFontSizeToFit: "boolean";
|
|
@@ -13791,15 +13753,18 @@ export declare const patterns: readonly [{
|
|
|
13791
13753
|
readonly left: "size";
|
|
13792
13754
|
readonly right: "size";
|
|
13793
13755
|
readonly zIndex: "number";
|
|
13756
|
+
readonly textDecorationLine: readonly ["none", "underline", "line-through"];
|
|
13794
13757
|
};
|
|
13795
13758
|
readonly scrollable: "boolean";
|
|
13796
13759
|
readonly testID: "string";
|
|
13760
|
+
readonly showOriginalPricePossible: "boolean";
|
|
13761
|
+
readonly hideIfItsNotDiscount: "boolean";
|
|
13797
13762
|
};
|
|
13798
13763
|
};
|
|
13799
13764
|
readonly meta: {
|
|
13800
13765
|
readonly desiredParent: readonly [">PaywallProvider"];
|
|
13801
|
-
readonly label: "
|
|
13802
|
-
readonly description: "Displays
|
|
13766
|
+
readonly label: "Price Tag";
|
|
13767
|
+
readonly description: "Displays a price tag text. Extends Text.";
|
|
13803
13768
|
readonly styles: {
|
|
13804
13769
|
readonly color: {
|
|
13805
13770
|
readonly label: "Color";
|
|
@@ -13837,6 +13802,13 @@ export declare const patterns: readonly [{
|
|
|
13837
13802
|
readonly specialCategory: null;
|
|
13838
13803
|
readonly sort: 5;
|
|
13839
13804
|
};
|
|
13805
|
+
readonly textDecorationLine: {
|
|
13806
|
+
readonly label: "Text Decoration";
|
|
13807
|
+
readonly description: "Text decoration line style (e.g. line-through for strikethrough).";
|
|
13808
|
+
readonly category: "style";
|
|
13809
|
+
readonly specialCategory: null;
|
|
13810
|
+
readonly sort: 6;
|
|
13811
|
+
};
|
|
13840
13812
|
};
|
|
13841
13813
|
readonly attributes: {
|
|
13842
13814
|
readonly adjustsFontSizeToFit: {
|
|
@@ -14126,6 +14098,20 @@ export declare const patterns: readonly [{
|
|
|
14126
14098
|
readonly sort: 26;
|
|
14127
14099
|
};
|
|
14128
14100
|
};
|
|
14101
|
+
readonly showOriginalPricePossible: {
|
|
14102
|
+
readonly label: "Show Original Price Possible";
|
|
14103
|
+
readonly description: "When enabled, shows the original price if available.";
|
|
14104
|
+
readonly category: "other";
|
|
14105
|
+
readonly specialCategory: null;
|
|
14106
|
+
readonly sort: 1;
|
|
14107
|
+
};
|
|
14108
|
+
readonly hideIfItsNotDiscount: {
|
|
14109
|
+
readonly label: "Hide If No Discount";
|
|
14110
|
+
readonly description: "Hides this element when there is no active discount/promo.";
|
|
14111
|
+
readonly category: "other";
|
|
14112
|
+
readonly specialCategory: null;
|
|
14113
|
+
readonly sort: 2;
|
|
14114
|
+
};
|
|
14129
14115
|
};
|
|
14130
14116
|
readonly specialCategories: {
|
|
14131
14117
|
readonly padding: {
|
|
@@ -14155,28 +14141,27 @@ export declare const patterns: readonly [{
|
|
|
14155
14141
|
};
|
|
14156
14142
|
};
|
|
14157
14143
|
readonly defaults: {
|
|
14158
|
-
readonly translateCounter:
|
|
14144
|
+
readonly translateCounter: 1;
|
|
14159
14145
|
readonly numberOfLines: 1;
|
|
14160
14146
|
readonly styles: {
|
|
14161
|
-
readonly color: "
|
|
14162
|
-
readonly fontSize: "
|
|
14163
|
-
readonly fontWeight: "
|
|
14147
|
+
readonly color: "THEME_COLORS.TEXT";
|
|
14148
|
+
readonly fontSize: "16@fs";
|
|
14149
|
+
readonly fontWeight: "700";
|
|
14164
14150
|
readonly flexDirection: "column";
|
|
14165
14151
|
readonly position: "relative";
|
|
14166
14152
|
readonly zIndex: 1;
|
|
14167
14153
|
readonly alignSelf: "flex-start";
|
|
14168
14154
|
readonly flexGrow: 0;
|
|
14169
14155
|
readonly flexShrink: 0;
|
|
14170
|
-
readonly textAlign: "center";
|
|
14171
14156
|
};
|
|
14172
14157
|
};
|
|
14173
14158
|
readonly types: {};
|
|
14174
14159
|
}, {
|
|
14175
14160
|
readonly schemaVersion: 2;
|
|
14176
14161
|
readonly pattern: {
|
|
14177
|
-
readonly type: "
|
|
14162
|
+
readonly type: "Pricing";
|
|
14178
14163
|
readonly title: "title";
|
|
14179
|
-
readonly description: "base.builder.paywall.
|
|
14164
|
+
readonly description: "base.builder.paywall.pricing.default.text";
|
|
14180
14165
|
readonly children: "string";
|
|
14181
14166
|
readonly attributes: {
|
|
14182
14167
|
readonly adjustsFontSizeToFit: "boolean";
|
|
@@ -14229,8 +14214,8 @@ export declare const patterns: readonly [{
|
|
|
14229
14214
|
};
|
|
14230
14215
|
readonly meta: {
|
|
14231
14216
|
readonly desiredParent: readonly [">PaywallProvider"];
|
|
14232
|
-
readonly label: "
|
|
14233
|
-
readonly description: "Displays
|
|
14217
|
+
readonly label: "Pricing";
|
|
14218
|
+
readonly description: "Displays pricing details (e.g. promo/trial breakdown). Extends Text.";
|
|
14234
14219
|
readonly styles: {
|
|
14235
14220
|
readonly color: {
|
|
14236
14221
|
readonly label: "Color";
|
|
@@ -14589,9 +14574,9 @@ export declare const patterns: readonly [{
|
|
|
14589
14574
|
readonly translateCounter: 2;
|
|
14590
14575
|
readonly numberOfLines: 1;
|
|
14591
14576
|
readonly styles: {
|
|
14592
|
-
readonly color: "
|
|
14577
|
+
readonly color: "rgba(255,255,255,0.6)";
|
|
14593
14578
|
readonly fontSize: "12@fs";
|
|
14594
|
-
readonly fontWeight: "
|
|
14579
|
+
readonly fontWeight: "400";
|
|
14595
14580
|
readonly flexDirection: "column";
|
|
14596
14581
|
readonly position: "relative";
|
|
14597
14582
|
readonly zIndex: 1;
|
|
@@ -14605,13 +14590,20 @@ export declare const patterns: readonly [{
|
|
|
14605
14590
|
}, {
|
|
14606
14591
|
readonly schemaVersion: 2;
|
|
14607
14592
|
readonly pattern: {
|
|
14608
|
-
readonly type: "
|
|
14593
|
+
readonly type: "Promo";
|
|
14609
14594
|
readonly title: "title";
|
|
14610
|
-
readonly description: "
|
|
14611
|
-
readonly children: "
|
|
14595
|
+
readonly description: "base.builder.paywall.promo.default.text";
|
|
14596
|
+
readonly children: "string";
|
|
14612
14597
|
readonly attributes: {
|
|
14613
|
-
readonly
|
|
14598
|
+
readonly adjustsFontSizeToFit: "boolean";
|
|
14599
|
+
readonly numberOfLines: "number";
|
|
14600
|
+
readonly translateCounter: "number";
|
|
14614
14601
|
readonly styles: {
|
|
14602
|
+
readonly color: "color";
|
|
14603
|
+
readonly fontSize: "size";
|
|
14604
|
+
readonly fontFamily: "fontFamily";
|
|
14605
|
+
readonly fontWeight: "fontWeight";
|
|
14606
|
+
readonly textAlign: "string";
|
|
14615
14607
|
readonly flexDirection: readonly ["row", "column"];
|
|
14616
14608
|
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
14617
14609
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
@@ -14647,43 +14639,67 @@ export declare const patterns: readonly [{
|
|
|
14647
14639
|
readonly right: "size";
|
|
14648
14640
|
readonly zIndex: "number";
|
|
14649
14641
|
};
|
|
14642
|
+
readonly scrollable: "boolean";
|
|
14650
14643
|
readonly testID: "string";
|
|
14651
|
-
readonly selected: "boolean";
|
|
14652
|
-
readonly color: "color";
|
|
14653
|
-
readonly size: "number";
|
|
14654
14644
|
};
|
|
14655
14645
|
};
|
|
14656
14646
|
readonly meta: {
|
|
14657
|
-
readonly desiredParent: readonly ["
|
|
14658
|
-
readonly label: "
|
|
14659
|
-
readonly description: "
|
|
14660
|
-
readonly
|
|
14661
|
-
readonly
|
|
14662
|
-
readonly label: "
|
|
14663
|
-
readonly description: "
|
|
14664
|
-
readonly category: "
|
|
14647
|
+
readonly desiredParent: readonly [">PaywallProvider"];
|
|
14648
|
+
readonly label: "Promo";
|
|
14649
|
+
readonly description: "Displays promotional badge/text (e.g. discount percentage). Extends Text.";
|
|
14650
|
+
readonly styles: {
|
|
14651
|
+
readonly color: {
|
|
14652
|
+
readonly label: "Color";
|
|
14653
|
+
readonly description: "Text color.";
|
|
14654
|
+
readonly category: "style";
|
|
14655
|
+
readonly specialCategory: null;
|
|
14665
14656
|
readonly sort: 1;
|
|
14666
14657
|
};
|
|
14667
|
-
readonly
|
|
14668
|
-
readonly label: "
|
|
14669
|
-
readonly description: "
|
|
14670
|
-
readonly category: "
|
|
14658
|
+
readonly fontSize: {
|
|
14659
|
+
readonly label: "Font Size";
|
|
14660
|
+
readonly description: "Text size.";
|
|
14661
|
+
readonly category: "style";
|
|
14662
|
+
readonly specialCategory: null;
|
|
14671
14663
|
readonly sort: 2;
|
|
14664
|
+
readonly preferredScale: "f";
|
|
14672
14665
|
};
|
|
14673
|
-
readonly
|
|
14674
|
-
readonly label: "
|
|
14675
|
-
readonly description: "
|
|
14676
|
-
readonly category: "
|
|
14666
|
+
readonly fontFamily: {
|
|
14667
|
+
readonly label: "Font Family";
|
|
14668
|
+
readonly description: "Font family used for the text.";
|
|
14669
|
+
readonly category: "style";
|
|
14670
|
+
readonly specialCategory: null;
|
|
14677
14671
|
readonly sort: 3;
|
|
14678
14672
|
};
|
|
14679
|
-
readonly
|
|
14680
|
-
readonly label: "
|
|
14681
|
-
readonly description: "
|
|
14682
|
-
readonly category: "
|
|
14673
|
+
readonly fontWeight: {
|
|
14674
|
+
readonly label: "Font Weight";
|
|
14675
|
+
readonly description: "Text weight.";
|
|
14676
|
+
readonly category: "style";
|
|
14677
|
+
readonly specialCategory: null;
|
|
14683
14678
|
readonly sort: 4;
|
|
14684
14679
|
};
|
|
14680
|
+
readonly textAlign: {
|
|
14681
|
+
readonly label: "Text Align";
|
|
14682
|
+
readonly description: "Text alignment.";
|
|
14683
|
+
readonly category: "style";
|
|
14684
|
+
readonly specialCategory: null;
|
|
14685
|
+
readonly sort: 5;
|
|
14686
|
+
};
|
|
14685
14687
|
};
|
|
14686
14688
|
readonly attributes: {
|
|
14689
|
+
readonly adjustsFontSizeToFit: {
|
|
14690
|
+
readonly label: "Adjust Font Size To Fit";
|
|
14691
|
+
readonly description: "Automatically reduces font size to fit the available space.";
|
|
14692
|
+
readonly category: "other";
|
|
14693
|
+
readonly specialCategory: null;
|
|
14694
|
+
readonly sort: 1;
|
|
14695
|
+
};
|
|
14696
|
+
readonly showEllipsis: {
|
|
14697
|
+
readonly label: "Show Ellipsis";
|
|
14698
|
+
readonly description: "If text overflows, show ellipsis (…); applied as single-line truncation.";
|
|
14699
|
+
readonly category: "other";
|
|
14700
|
+
readonly specialCategory: null;
|
|
14701
|
+
readonly sort: 2;
|
|
14702
|
+
};
|
|
14687
14703
|
readonly scrollable: {
|
|
14688
14704
|
readonly label: "Scrollable";
|
|
14689
14705
|
readonly description: "Turns scroll interaction on.";
|
|
@@ -14957,159 +14973,1012 @@ export declare const patterns: readonly [{
|
|
|
14957
14973
|
readonly sort: 26;
|
|
14958
14974
|
};
|
|
14959
14975
|
};
|
|
14960
|
-
|
|
14961
|
-
|
|
14962
|
-
|
|
14963
|
-
readonly
|
|
14964
|
-
readonly
|
|
14976
|
+
};
|
|
14977
|
+
readonly specialCategories: {
|
|
14978
|
+
readonly padding: {
|
|
14979
|
+
readonly label: "Padding";
|
|
14980
|
+
readonly description: "Uniform padding on all sides.";
|
|
14981
|
+
readonly category: "container";
|
|
14965
14982
|
readonly sort: 1;
|
|
14966
14983
|
};
|
|
14984
|
+
readonly margin: {
|
|
14985
|
+
readonly label: "Margin";
|
|
14986
|
+
readonly description: "Uniform margin on all sides.";
|
|
14987
|
+
readonly category: "container";
|
|
14988
|
+
readonly sort: 2;
|
|
14989
|
+
};
|
|
14967
14990
|
readonly size: {
|
|
14968
14991
|
readonly label: "Size";
|
|
14969
|
-
readonly description: "
|
|
14970
|
-
readonly category: "
|
|
14971
|
-
readonly
|
|
14972
|
-
readonly sort: 2;
|
|
14992
|
+
readonly description: "Fixed dimensions.";
|
|
14993
|
+
readonly category: "container";
|
|
14994
|
+
readonly sort: 3;
|
|
14973
14995
|
};
|
|
14974
|
-
readonly
|
|
14975
|
-
readonly label: "
|
|
14976
|
-
readonly description: "
|
|
14977
|
-
readonly category: "
|
|
14978
|
-
readonly
|
|
14979
|
-
readonly sort: 0;
|
|
14996
|
+
readonly offset: {
|
|
14997
|
+
readonly label: "Offset";
|
|
14998
|
+
readonly description: "Absolute positioning offsets.";
|
|
14999
|
+
readonly category: "container";
|
|
15000
|
+
readonly sort: 4;
|
|
14980
15001
|
};
|
|
14981
15002
|
};
|
|
14982
|
-
readonly styles: {};
|
|
14983
15003
|
};
|
|
14984
15004
|
readonly defaults: {
|
|
15005
|
+
readonly translateCounter: 2;
|
|
15006
|
+
readonly numberOfLines: 1;
|
|
14985
15007
|
readonly styles: {
|
|
15008
|
+
readonly color: "#34D399";
|
|
15009
|
+
readonly fontSize: "12@fs";
|
|
15010
|
+
readonly fontWeight: "600";
|
|
14986
15011
|
readonly flexDirection: "column";
|
|
14987
15012
|
readonly position: "relative";
|
|
14988
15013
|
readonly zIndex: 1;
|
|
14989
15014
|
readonly alignSelf: "flex-start";
|
|
14990
15015
|
readonly flexGrow: 0;
|
|
14991
15016
|
readonly flexShrink: 0;
|
|
15017
|
+
readonly textAlign: "center";
|
|
14992
15018
|
};
|
|
14993
15019
|
};
|
|
14994
15020
|
readonly types: {};
|
|
14995
15021
|
}, {
|
|
14996
15022
|
readonly schemaVersion: 2;
|
|
14997
15023
|
readonly pattern: {
|
|
14998
|
-
readonly type: "
|
|
15024
|
+
readonly type: "RadioButton";
|
|
14999
15025
|
readonly title: "title";
|
|
15000
15026
|
readonly description: "description";
|
|
15001
15027
|
readonly children: "never";
|
|
15002
15028
|
readonly attributes: {
|
|
15029
|
+
readonly scrollable: "boolean";
|
|
15003
15030
|
readonly styles: {
|
|
15004
|
-
readonly
|
|
15005
|
-
readonly
|
|
15006
|
-
readonly
|
|
15031
|
+
readonly flexDirection: readonly ["row", "column"];
|
|
15032
|
+
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
15033
|
+
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
15034
|
+
readonly justifyContent: readonly ["flex-start", "center", "flex-end", "space-between", "space-around", "space-evenly"];
|
|
15035
|
+
readonly gap: "size";
|
|
15036
|
+
readonly padding: "size";
|
|
15037
|
+
readonly paddingHorizontal: "size";
|
|
15038
|
+
readonly paddingVertical: "size";
|
|
15039
|
+
readonly paddingTop: "size";
|
|
15040
|
+
readonly paddingBottom: "size";
|
|
15041
|
+
readonly paddingLeft: "size";
|
|
15042
|
+
readonly paddingRight: "size";
|
|
15043
|
+
readonly margin: "size";
|
|
15007
15044
|
readonly marginHorizontal: "size";
|
|
15008
15045
|
readonly marginVertical: "size";
|
|
15009
15046
|
readonly marginTop: "size";
|
|
15010
15047
|
readonly marginBottom: "size";
|
|
15048
|
+
readonly marginLeft: "size";
|
|
15049
|
+
readonly marginRight: "size";
|
|
15050
|
+
readonly backgroundColor: "color";
|
|
15051
|
+
readonly borderRadius: "size";
|
|
15052
|
+
readonly width: "size";
|
|
15053
|
+
readonly minWidth: "size";
|
|
15054
|
+
readonly maxWidth: "size";
|
|
15055
|
+
readonly height: "size";
|
|
15056
|
+
readonly minHeight: "size";
|
|
15057
|
+
readonly maxHeight: "size";
|
|
15058
|
+
readonly flex: "number";
|
|
15059
|
+
readonly position: readonly ["relative", "absolute"];
|
|
15060
|
+
readonly top: "size";
|
|
15061
|
+
readonly bottom: "size";
|
|
15062
|
+
readonly left: "size";
|
|
15063
|
+
readonly right: "size";
|
|
15064
|
+
readonly zIndex: "number";
|
|
15011
15065
|
};
|
|
15012
15066
|
readonly testID: "string";
|
|
15067
|
+
readonly selected: "boolean";
|
|
15068
|
+
readonly color: "color";
|
|
15069
|
+
readonly size: "number";
|
|
15013
15070
|
};
|
|
15014
15071
|
};
|
|
15015
15072
|
readonly meta: {
|
|
15016
15073
|
readonly desiredParent: readonly ["all"];
|
|
15017
|
-
readonly label: "
|
|
15018
|
-
readonly description: "
|
|
15074
|
+
readonly label: "Radio Button";
|
|
15075
|
+
readonly description: "Generic radio button icon.";
|
|
15076
|
+
readonly specialCategories: {
|
|
15077
|
+
readonly padding: {
|
|
15078
|
+
readonly label: "Padding";
|
|
15079
|
+
readonly description: "Uniform padding on all sides.";
|
|
15080
|
+
readonly category: "container";
|
|
15081
|
+
readonly sort: 1;
|
|
15082
|
+
};
|
|
15083
|
+
readonly margin: {
|
|
15084
|
+
readonly label: "Margin";
|
|
15085
|
+
readonly description: "Uniform margin on all sides.";
|
|
15086
|
+
readonly category: "container";
|
|
15087
|
+
readonly sort: 2;
|
|
15088
|
+
};
|
|
15089
|
+
readonly size: {
|
|
15090
|
+
readonly label: "Size";
|
|
15091
|
+
readonly description: "Fixed dimensions.";
|
|
15092
|
+
readonly category: "container";
|
|
15093
|
+
readonly sort: 3;
|
|
15094
|
+
};
|
|
15095
|
+
readonly offset: {
|
|
15096
|
+
readonly label: "Offset";
|
|
15097
|
+
readonly description: "Absolute positioning offsets.";
|
|
15098
|
+
readonly category: "container";
|
|
15099
|
+
readonly sort: 4;
|
|
15100
|
+
};
|
|
15101
|
+
};
|
|
15019
15102
|
readonly attributes: {
|
|
15103
|
+
readonly scrollable: {
|
|
15104
|
+
readonly label: "Scrollable";
|
|
15105
|
+
readonly description: "Turns scroll interaction on.";
|
|
15106
|
+
readonly category: "container";
|
|
15107
|
+
readonly specialCategory: null;
|
|
15108
|
+
readonly sort: -1;
|
|
15109
|
+
};
|
|
15020
15110
|
readonly styles: {
|
|
15021
15111
|
readonly backgroundColor: {
|
|
15022
|
-
readonly label: "Color";
|
|
15023
|
-
readonly description: "
|
|
15112
|
+
readonly label: "Background Color";
|
|
15113
|
+
readonly description: "Background fill color.";
|
|
15024
15114
|
readonly category: "style";
|
|
15025
15115
|
readonly specialCategory: null;
|
|
15026
|
-
readonly sort:
|
|
15116
|
+
readonly sort: 20;
|
|
15117
|
+
};
|
|
15118
|
+
readonly borderRadius: {
|
|
15119
|
+
readonly label: "Border Radius";
|
|
15120
|
+
readonly description: "Corner rounding amount.";
|
|
15121
|
+
readonly category: "style";
|
|
15122
|
+
readonly specialCategory: null;
|
|
15123
|
+
readonly sort: 21;
|
|
15124
|
+
readonly preferredScale: "s";
|
|
15125
|
+
};
|
|
15126
|
+
readonly flexDirection: {
|
|
15127
|
+
readonly label: "Flex Direction";
|
|
15128
|
+
readonly description: "Sets row or column layout.";
|
|
15129
|
+
readonly category: "container";
|
|
15130
|
+
readonly specialCategory: null;
|
|
15131
|
+
readonly sort: 4;
|
|
15132
|
+
};
|
|
15133
|
+
readonly flexWrap: {
|
|
15134
|
+
readonly label: "Flex Wrap";
|
|
15135
|
+
readonly description: "Controls whether flex items wrap to multiple lines.";
|
|
15136
|
+
readonly category: "container";
|
|
15137
|
+
readonly specialCategory: null;
|
|
15138
|
+
readonly sort: 4.5;
|
|
15139
|
+
};
|
|
15140
|
+
readonly alignItems: {
|
|
15141
|
+
readonly label: "Align Items";
|
|
15142
|
+
readonly description: "Controls cross-axis alignment.";
|
|
15143
|
+
readonly category: "container";
|
|
15144
|
+
readonly specialCategory: null;
|
|
15145
|
+
readonly sort: 3;
|
|
15146
|
+
};
|
|
15147
|
+
readonly justifyContent: {
|
|
15148
|
+
readonly label: "Justify Content";
|
|
15149
|
+
readonly description: "Controls main-axis alignment.";
|
|
15150
|
+
readonly category: "container";
|
|
15151
|
+
readonly specialCategory: null;
|
|
15152
|
+
readonly sort: 5;
|
|
15153
|
+
};
|
|
15154
|
+
readonly gap: {
|
|
15155
|
+
readonly label: "Gap";
|
|
15156
|
+
readonly description: "Space between children.";
|
|
15157
|
+
readonly category: "container";
|
|
15158
|
+
readonly specialCategory: null;
|
|
15159
|
+
readonly sort: 10;
|
|
15160
|
+
readonly preferredScale: "s";
|
|
15161
|
+
};
|
|
15162
|
+
readonly padding: {
|
|
15163
|
+
readonly label: "Padding";
|
|
15164
|
+
readonly description: "Uniform padding on all sides.";
|
|
15165
|
+
readonly category: "container";
|
|
15166
|
+
readonly specialCategory: "padding";
|
|
15167
|
+
readonly sort: 6;
|
|
15168
|
+
readonly preferredScale: "s";
|
|
15169
|
+
};
|
|
15170
|
+
readonly paddingHorizontal: {
|
|
15171
|
+
readonly label: "Padding Horizontal";
|
|
15172
|
+
readonly description: "Left and right padding.";
|
|
15173
|
+
readonly category: "container";
|
|
15174
|
+
readonly specialCategory: "padding";
|
|
15175
|
+
readonly sort: 7;
|
|
15176
|
+
readonly preferredScale: "s";
|
|
15177
|
+
};
|
|
15178
|
+
readonly paddingVertical: {
|
|
15179
|
+
readonly label: "Padding Vertical";
|
|
15180
|
+
readonly description: "Top and bottom padding.";
|
|
15181
|
+
readonly category: "container";
|
|
15182
|
+
readonly specialCategory: "padding";
|
|
15183
|
+
readonly sort: 8;
|
|
15184
|
+
readonly preferredScale: "vs";
|
|
15185
|
+
};
|
|
15186
|
+
readonly paddingTop: {
|
|
15187
|
+
readonly label: "Padding Top";
|
|
15188
|
+
readonly description: "Top padding only.";
|
|
15189
|
+
readonly category: "container";
|
|
15190
|
+
readonly specialCategory: "padding";
|
|
15191
|
+
readonly sort: 9;
|
|
15192
|
+
readonly preferredScale: "vs";
|
|
15193
|
+
};
|
|
15194
|
+
readonly paddingBottom: {
|
|
15195
|
+
readonly label: "Padding Bottom";
|
|
15196
|
+
readonly description: "Bottom padding only.";
|
|
15197
|
+
readonly category: "container";
|
|
15198
|
+
readonly specialCategory: "padding";
|
|
15199
|
+
readonly sort: 10;
|
|
15200
|
+
readonly preferredScale: "vs";
|
|
15201
|
+
};
|
|
15202
|
+
readonly paddingLeft: {
|
|
15203
|
+
readonly label: "Padding Left";
|
|
15204
|
+
readonly description: "Left padding only.";
|
|
15205
|
+
readonly category: "container";
|
|
15206
|
+
readonly specialCategory: "padding";
|
|
15207
|
+
readonly sort: 11;
|
|
15208
|
+
readonly preferredScale: "s";
|
|
15209
|
+
};
|
|
15210
|
+
readonly paddingRight: {
|
|
15211
|
+
readonly label: "Padding Right";
|
|
15212
|
+
readonly description: "Right padding only.";
|
|
15213
|
+
readonly category: "container";
|
|
15214
|
+
readonly specialCategory: "padding";
|
|
15215
|
+
readonly sort: 12;
|
|
15216
|
+
readonly preferredScale: "s";
|
|
15217
|
+
};
|
|
15218
|
+
readonly margin: {
|
|
15219
|
+
readonly label: "Margin";
|
|
15220
|
+
readonly description: "Uniform margin on all sides.";
|
|
15221
|
+
readonly category: "container";
|
|
15222
|
+
readonly specialCategory: "margin";
|
|
15223
|
+
readonly sort: 13;
|
|
15224
|
+
readonly preferredScale: "s";
|
|
15225
|
+
};
|
|
15226
|
+
readonly marginHorizontal: {
|
|
15227
|
+
readonly label: "Margin Horizontal";
|
|
15228
|
+
readonly description: "Left and right margin.";
|
|
15229
|
+
readonly category: "container";
|
|
15230
|
+
readonly specialCategory: "margin";
|
|
15231
|
+
readonly sort: 14;
|
|
15232
|
+
readonly preferredScale: "s";
|
|
15233
|
+
};
|
|
15234
|
+
readonly marginVertical: {
|
|
15235
|
+
readonly label: "Margin Vertical";
|
|
15236
|
+
readonly description: "Top and bottom margin.";
|
|
15237
|
+
readonly category: "container";
|
|
15238
|
+
readonly specialCategory: "margin";
|
|
15239
|
+
readonly sort: 15;
|
|
15240
|
+
readonly preferredScale: "vs";
|
|
15241
|
+
};
|
|
15242
|
+
readonly marginTop: {
|
|
15243
|
+
readonly label: "Margin Top";
|
|
15244
|
+
readonly description: "Top margin only.";
|
|
15245
|
+
readonly category: "container";
|
|
15246
|
+
readonly specialCategory: "margin";
|
|
15247
|
+
readonly sort: 16;
|
|
15248
|
+
readonly preferredScale: "vs";
|
|
15249
|
+
};
|
|
15250
|
+
readonly marginBottom: {
|
|
15251
|
+
readonly label: "Margin Bottom";
|
|
15252
|
+
readonly description: "Bottom margin only.";
|
|
15253
|
+
readonly category: "container";
|
|
15254
|
+
readonly specialCategory: "margin";
|
|
15255
|
+
readonly sort: 17;
|
|
15256
|
+
readonly preferredScale: "vs";
|
|
15257
|
+
};
|
|
15258
|
+
readonly marginLeft: {
|
|
15259
|
+
readonly label: "Margin Left";
|
|
15260
|
+
readonly description: "Left margin only.";
|
|
15261
|
+
readonly category: "container";
|
|
15262
|
+
readonly specialCategory: "margin";
|
|
15263
|
+
readonly sort: 18;
|
|
15264
|
+
readonly preferredScale: "s";
|
|
15265
|
+
};
|
|
15266
|
+
readonly marginRight: {
|
|
15267
|
+
readonly label: "Margin Right";
|
|
15268
|
+
readonly description: "Right margin only.";
|
|
15269
|
+
readonly category: "container";
|
|
15270
|
+
readonly specialCategory: "margin";
|
|
15271
|
+
readonly sort: 19;
|
|
15272
|
+
readonly preferredScale: "s";
|
|
15027
15273
|
};
|
|
15028
15274
|
readonly width: {
|
|
15029
15275
|
readonly label: "Width";
|
|
15030
|
-
readonly description: "
|
|
15276
|
+
readonly description: "Fixed width value.";
|
|
15277
|
+
readonly category: "container";
|
|
15278
|
+
readonly specialCategory: "size";
|
|
15279
|
+
readonly sort: 0;
|
|
15280
|
+
readonly preferredScale: "s";
|
|
15281
|
+
};
|
|
15282
|
+
readonly minWidth: {
|
|
15283
|
+
readonly label: "Min Width";
|
|
15284
|
+
readonly description: "Minimum width constraint.";
|
|
15285
|
+
readonly category: "container";
|
|
15286
|
+
readonly specialCategory: "size";
|
|
15287
|
+
readonly sort: 1;
|
|
15288
|
+
readonly preferredScale: "s";
|
|
15289
|
+
};
|
|
15290
|
+
readonly maxWidth: {
|
|
15291
|
+
readonly label: "Max Width";
|
|
15292
|
+
readonly description: "Maximum width constraint.";
|
|
15293
|
+
readonly category: "container";
|
|
15294
|
+
readonly specialCategory: "size";
|
|
15295
|
+
readonly sort: 2;
|
|
15296
|
+
readonly preferredScale: "s";
|
|
15297
|
+
};
|
|
15298
|
+
readonly height: {
|
|
15299
|
+
readonly label: "Height";
|
|
15300
|
+
readonly description: "Fixed height value.";
|
|
15301
|
+
readonly category: "container";
|
|
15302
|
+
readonly specialCategory: "size";
|
|
15303
|
+
readonly sort: 3;
|
|
15304
|
+
readonly preferredScale: "vs";
|
|
15305
|
+
};
|
|
15306
|
+
readonly minHeight: {
|
|
15307
|
+
readonly label: "Min Height";
|
|
15308
|
+
readonly description: "Minimum height constraint.";
|
|
15309
|
+
readonly category: "container";
|
|
15310
|
+
readonly specialCategory: "size";
|
|
15311
|
+
readonly sort: 4;
|
|
15312
|
+
readonly preferredScale: "vs";
|
|
15313
|
+
};
|
|
15314
|
+
readonly maxHeight: {
|
|
15315
|
+
readonly label: "Max Height";
|
|
15316
|
+
readonly description: "Maximum height constraint.";
|
|
15317
|
+
readonly category: "container";
|
|
15318
|
+
readonly specialCategory: "size";
|
|
15319
|
+
readonly sort: 5;
|
|
15320
|
+
readonly preferredScale: "vs";
|
|
15321
|
+
};
|
|
15322
|
+
readonly flex: {
|
|
15323
|
+
readonly label: "Flex";
|
|
15324
|
+
readonly description: "Flex grow factor (e.g. 1 fills available space).";
|
|
15325
|
+
readonly category: "container";
|
|
15326
|
+
readonly specialCategory: "size";
|
|
15327
|
+
readonly sort: 6;
|
|
15328
|
+
};
|
|
15329
|
+
readonly position: {
|
|
15330
|
+
readonly label: "Position";
|
|
15331
|
+
readonly description: "Sets layout positioning mode.";
|
|
15332
|
+
readonly category: "container";
|
|
15333
|
+
readonly specialCategory: null;
|
|
15334
|
+
readonly sort: 3;
|
|
15335
|
+
};
|
|
15336
|
+
readonly top: {
|
|
15337
|
+
readonly label: "Top";
|
|
15338
|
+
readonly description: "Offset from the top edge.";
|
|
15339
|
+
readonly category: "container";
|
|
15340
|
+
readonly specialCategory: "offset";
|
|
15341
|
+
readonly sort: 22;
|
|
15342
|
+
readonly preferredScale: "vs";
|
|
15343
|
+
};
|
|
15344
|
+
readonly bottom: {
|
|
15345
|
+
readonly label: "Bottom";
|
|
15346
|
+
readonly description: "Offset from the bottom edge.";
|
|
15347
|
+
readonly category: "container";
|
|
15348
|
+
readonly specialCategory: "offset";
|
|
15349
|
+
readonly sort: 23;
|
|
15350
|
+
readonly preferredScale: "vs";
|
|
15351
|
+
};
|
|
15352
|
+
readonly left: {
|
|
15353
|
+
readonly label: "Left";
|
|
15354
|
+
readonly description: "Offset from the left edge.";
|
|
15355
|
+
readonly category: "container";
|
|
15356
|
+
readonly specialCategory: "offset";
|
|
15357
|
+
readonly sort: 24;
|
|
15358
|
+
readonly preferredScale: "s";
|
|
15359
|
+
};
|
|
15360
|
+
readonly right: {
|
|
15361
|
+
readonly label: "Right";
|
|
15362
|
+
readonly description: "Offset from the right edge.";
|
|
15363
|
+
readonly category: "container";
|
|
15364
|
+
readonly specialCategory: "offset";
|
|
15365
|
+
readonly sort: 25;
|
|
15366
|
+
readonly preferredScale: "s";
|
|
15367
|
+
};
|
|
15368
|
+
readonly zIndex: {
|
|
15369
|
+
readonly label: "Z-Index";
|
|
15370
|
+
readonly description: "Controls stacking order.";
|
|
15371
|
+
readonly category: "container";
|
|
15372
|
+
readonly specialCategory: null;
|
|
15373
|
+
readonly sort: 26;
|
|
15374
|
+
};
|
|
15375
|
+
};
|
|
15376
|
+
readonly color: {
|
|
15377
|
+
readonly label: "Color";
|
|
15378
|
+
readonly description: "Radio color.";
|
|
15379
|
+
readonly category: "style";
|
|
15380
|
+
readonly specialCategory: null;
|
|
15381
|
+
readonly sort: 1;
|
|
15382
|
+
};
|
|
15383
|
+
readonly size: {
|
|
15384
|
+
readonly label: "Size";
|
|
15385
|
+
readonly description: "Radio size in px.";
|
|
15386
|
+
readonly category: "style";
|
|
15387
|
+
readonly specialCategory: null;
|
|
15388
|
+
readonly sort: 2;
|
|
15389
|
+
};
|
|
15390
|
+
readonly selected: {
|
|
15391
|
+
readonly label: "Selected";
|
|
15392
|
+
readonly description: "Whether the radio is selected.";
|
|
15393
|
+
readonly category: "other";
|
|
15394
|
+
readonly specialCategory: null;
|
|
15395
|
+
readonly sort: 0;
|
|
15396
|
+
};
|
|
15397
|
+
};
|
|
15398
|
+
readonly styles: {};
|
|
15399
|
+
};
|
|
15400
|
+
readonly defaults: {
|
|
15401
|
+
readonly styles: {
|
|
15402
|
+
readonly flexDirection: "column";
|
|
15403
|
+
readonly position: "relative";
|
|
15404
|
+
readonly zIndex: 1;
|
|
15405
|
+
readonly alignSelf: "flex-start";
|
|
15406
|
+
readonly flexGrow: 0;
|
|
15407
|
+
readonly flexShrink: 0;
|
|
15408
|
+
};
|
|
15409
|
+
};
|
|
15410
|
+
readonly types: {};
|
|
15411
|
+
}, {
|
|
15412
|
+
readonly schemaVersion: 2;
|
|
15413
|
+
readonly pattern: {
|
|
15414
|
+
readonly type: "Separator";
|
|
15415
|
+
readonly title: "title";
|
|
15416
|
+
readonly description: "description";
|
|
15417
|
+
readonly children: "never";
|
|
15418
|
+
readonly attributes: {
|
|
15419
|
+
readonly styles: {
|
|
15420
|
+
readonly backgroundColor: "color";
|
|
15421
|
+
readonly width: "size";
|
|
15422
|
+
readonly height: "size";
|
|
15423
|
+
readonly marginHorizontal: "size";
|
|
15424
|
+
readonly marginVertical: "size";
|
|
15425
|
+
readonly marginTop: "size";
|
|
15426
|
+
readonly marginBottom: "size";
|
|
15427
|
+
};
|
|
15428
|
+
readonly testID: "string";
|
|
15429
|
+
};
|
|
15430
|
+
};
|
|
15431
|
+
readonly meta: {
|
|
15432
|
+
readonly desiredParent: readonly ["all"];
|
|
15433
|
+
readonly label: "Separator";
|
|
15434
|
+
readonly description: "Horizontal line separator.";
|
|
15435
|
+
readonly attributes: {
|
|
15436
|
+
readonly styles: {
|
|
15437
|
+
readonly backgroundColor: {
|
|
15438
|
+
readonly label: "Color";
|
|
15439
|
+
readonly description: "Separator line color.";
|
|
15440
|
+
readonly category: "style";
|
|
15441
|
+
readonly specialCategory: null;
|
|
15442
|
+
readonly sort: 1;
|
|
15443
|
+
};
|
|
15444
|
+
readonly width: {
|
|
15445
|
+
readonly label: "Width";
|
|
15446
|
+
readonly description: "Separator width.";
|
|
15447
|
+
readonly category: "container";
|
|
15448
|
+
readonly specialCategory: null;
|
|
15449
|
+
readonly sort: 1;
|
|
15450
|
+
readonly preferredScale: "s";
|
|
15451
|
+
};
|
|
15452
|
+
readonly height: {
|
|
15453
|
+
readonly label: "Height";
|
|
15454
|
+
readonly description: "Separator thickness.";
|
|
15455
|
+
readonly category: "container";
|
|
15456
|
+
readonly specialCategory: null;
|
|
15457
|
+
readonly sort: 2;
|
|
15458
|
+
readonly preferredScale: "vs";
|
|
15459
|
+
};
|
|
15460
|
+
};
|
|
15461
|
+
};
|
|
15462
|
+
};
|
|
15463
|
+
readonly defaults: {
|
|
15464
|
+
readonly styles: {
|
|
15465
|
+
readonly width: "100%";
|
|
15466
|
+
readonly height: 2;
|
|
15467
|
+
readonly backgroundColor: "#000000";
|
|
15468
|
+
};
|
|
15469
|
+
};
|
|
15470
|
+
}, {
|
|
15471
|
+
readonly schemaVersion: 2;
|
|
15472
|
+
readonly pattern: {
|
|
15473
|
+
readonly type: "StatusBarColor";
|
|
15474
|
+
readonly title: "title";
|
|
15475
|
+
readonly description: "description";
|
|
15476
|
+
readonly children: "never";
|
|
15477
|
+
readonly attributes: {
|
|
15478
|
+
readonly styles: {
|
|
15479
|
+
readonly backgroundColor: "color";
|
|
15480
|
+
};
|
|
15481
|
+
readonly translucent: "boolean";
|
|
15482
|
+
};
|
|
15483
|
+
};
|
|
15484
|
+
readonly meta: {
|
|
15485
|
+
readonly desiredParent: readonly ["all"];
|
|
15486
|
+
readonly label: "Status Bar Color";
|
|
15487
|
+
readonly description: "Sets the OS status bar background color.";
|
|
15488
|
+
readonly styles: {
|
|
15489
|
+
readonly backgroundColor: {
|
|
15490
|
+
readonly label: "Background Color";
|
|
15491
|
+
readonly description: "Status bar background color.";
|
|
15492
|
+
readonly category: "style";
|
|
15493
|
+
readonly specialCategory: null;
|
|
15494
|
+
readonly sort: 1;
|
|
15495
|
+
};
|
|
15496
|
+
};
|
|
15497
|
+
readonly attributes: {
|
|
15498
|
+
readonly translucent: {
|
|
15499
|
+
readonly label: "Translucent";
|
|
15500
|
+
readonly description: "Sets the status bar to translucent.";
|
|
15501
|
+
readonly category: "style";
|
|
15502
|
+
readonly specialCategory: null;
|
|
15503
|
+
readonly sort: 2;
|
|
15504
|
+
};
|
|
15505
|
+
};
|
|
15506
|
+
};
|
|
15507
|
+
readonly defaults: {
|
|
15508
|
+
readonly styles: {
|
|
15509
|
+
readonly backgroundColor: "THEME_COLORS.BACKGROUND";
|
|
15510
|
+
};
|
|
15511
|
+
};
|
|
15512
|
+
}, {
|
|
15513
|
+
readonly schemaVersion: 2;
|
|
15514
|
+
readonly pattern: {
|
|
15515
|
+
readonly type: "SystemButton";
|
|
15516
|
+
readonly title: "SystemButton";
|
|
15517
|
+
readonly description: "A reusable button component for system actions.";
|
|
15518
|
+
readonly children: "never";
|
|
15519
|
+
readonly attributes: {
|
|
15520
|
+
readonly adjustsFontSizeToFit: "boolean";
|
|
15521
|
+
readonly numberOfLines: "number";
|
|
15522
|
+
readonly translateCounter: "number";
|
|
15523
|
+
readonly styles: {
|
|
15524
|
+
readonly color: "color";
|
|
15525
|
+
readonly fontSize: "number";
|
|
15526
|
+
readonly fontFamily: "fontFamily";
|
|
15527
|
+
readonly fontWeight: "string";
|
|
15528
|
+
readonly textAlign: "string";
|
|
15529
|
+
readonly flexDirection: readonly ["row", "column"];
|
|
15530
|
+
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
15531
|
+
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
15532
|
+
readonly justifyContent: readonly ["flex-start", "center", "flex-end", "space-between", "space-around", "space-evenly"];
|
|
15533
|
+
readonly gap: "size";
|
|
15534
|
+
readonly padding: "size";
|
|
15535
|
+
readonly paddingHorizontal: "size";
|
|
15536
|
+
readonly paddingVertical: "size";
|
|
15537
|
+
readonly paddingTop: "size";
|
|
15538
|
+
readonly paddingBottom: "size";
|
|
15539
|
+
readonly paddingLeft: "size";
|
|
15540
|
+
readonly paddingRight: "size";
|
|
15541
|
+
readonly margin: "size";
|
|
15542
|
+
readonly marginHorizontal: "size";
|
|
15543
|
+
readonly marginVertical: "size";
|
|
15544
|
+
readonly marginTop: "size";
|
|
15545
|
+
readonly marginBottom: "size";
|
|
15546
|
+
readonly marginLeft: "size";
|
|
15547
|
+
readonly marginRight: "size";
|
|
15548
|
+
readonly backgroundColor: "color";
|
|
15549
|
+
readonly borderRadius: "number";
|
|
15550
|
+
readonly width: "size";
|
|
15551
|
+
readonly minWidth: "size";
|
|
15552
|
+
readonly maxWidth: "size";
|
|
15553
|
+
readonly height: "number";
|
|
15554
|
+
readonly minHeight: "size";
|
|
15555
|
+
readonly maxHeight: "size";
|
|
15556
|
+
readonly flex: "number";
|
|
15557
|
+
readonly position: readonly ["relative", "absolute"];
|
|
15558
|
+
readonly top: "size";
|
|
15559
|
+
readonly bottom: "size";
|
|
15560
|
+
readonly left: "size";
|
|
15561
|
+
readonly right: "size";
|
|
15562
|
+
readonly zIndex: "number";
|
|
15563
|
+
};
|
|
15564
|
+
readonly scrollable: "boolean";
|
|
15565
|
+
readonly testID: "string";
|
|
15566
|
+
readonly labelKey: "string";
|
|
15567
|
+
readonly events: "EventObject[]";
|
|
15568
|
+
};
|
|
15569
|
+
};
|
|
15570
|
+
readonly meta: {
|
|
15571
|
+
readonly desiredParent: readonly ["all"];
|
|
15572
|
+
readonly label: "System Button";
|
|
15573
|
+
readonly description: "Versatile button for navigation, permissions, and more.";
|
|
15574
|
+
readonly styles: {
|
|
15575
|
+
readonly color: {
|
|
15576
|
+
readonly label: "Color";
|
|
15577
|
+
readonly description: "Text color.";
|
|
15578
|
+
readonly category: "style";
|
|
15579
|
+
readonly specialCategory: null;
|
|
15580
|
+
readonly sort: 1;
|
|
15581
|
+
};
|
|
15582
|
+
readonly fontSize: {
|
|
15583
|
+
readonly label: "Font Size";
|
|
15584
|
+
readonly description: "Text size.";
|
|
15585
|
+
readonly category: "style";
|
|
15586
|
+
readonly specialCategory: null;
|
|
15587
|
+
readonly sort: 2;
|
|
15588
|
+
readonly preferredScale: "f";
|
|
15589
|
+
};
|
|
15590
|
+
readonly fontFamily: {
|
|
15591
|
+
readonly label: "Font Family";
|
|
15592
|
+
readonly description: "Font family used for the text.";
|
|
15593
|
+
readonly category: "style";
|
|
15594
|
+
readonly specialCategory: null;
|
|
15595
|
+
readonly sort: 3;
|
|
15596
|
+
};
|
|
15597
|
+
readonly fontWeight: {
|
|
15598
|
+
readonly label: "Font Weight";
|
|
15599
|
+
readonly description: "Text weight.";
|
|
15600
|
+
readonly category: "style";
|
|
15601
|
+
readonly specialCategory: null;
|
|
15602
|
+
readonly sort: 4;
|
|
15603
|
+
};
|
|
15604
|
+
readonly textAlign: {
|
|
15605
|
+
readonly label: "Text Align";
|
|
15606
|
+
readonly description: "Text alignment.";
|
|
15607
|
+
readonly category: "style";
|
|
15608
|
+
readonly specialCategory: null;
|
|
15609
|
+
readonly sort: 5;
|
|
15610
|
+
};
|
|
15611
|
+
};
|
|
15612
|
+
readonly attributes: {
|
|
15613
|
+
readonly adjustsFontSizeToFit: {
|
|
15614
|
+
readonly label: "Adjust Font Size To Fit";
|
|
15615
|
+
readonly description: "Automatically reduces font size to fit the available space.";
|
|
15616
|
+
readonly category: "other";
|
|
15617
|
+
readonly specialCategory: null;
|
|
15618
|
+
readonly sort: 1;
|
|
15619
|
+
};
|
|
15620
|
+
readonly showEllipsis: {
|
|
15621
|
+
readonly label: "Show Ellipsis";
|
|
15622
|
+
readonly description: "If text overflows, show ellipsis (…); applied as single-line truncation.";
|
|
15623
|
+
readonly category: "other";
|
|
15624
|
+
readonly specialCategory: null;
|
|
15625
|
+
readonly sort: 2;
|
|
15626
|
+
};
|
|
15627
|
+
readonly scrollable: {
|
|
15628
|
+
readonly label: "Scrollable";
|
|
15629
|
+
readonly description: "Turns scroll interaction on.";
|
|
15630
|
+
readonly category: "container";
|
|
15631
|
+
readonly specialCategory: null;
|
|
15632
|
+
readonly sort: -1;
|
|
15633
|
+
};
|
|
15634
|
+
readonly styles: {
|
|
15635
|
+
readonly backgroundColor: {
|
|
15636
|
+
readonly label: "Background Color";
|
|
15637
|
+
readonly description: "Background fill color.";
|
|
15638
|
+
readonly category: "style";
|
|
15639
|
+
readonly specialCategory: null;
|
|
15640
|
+
readonly sort: 20;
|
|
15641
|
+
};
|
|
15642
|
+
readonly borderRadius: {
|
|
15643
|
+
readonly label: "Border Radius";
|
|
15644
|
+
readonly description: "Corner rounding amount.";
|
|
15645
|
+
readonly category: "style";
|
|
15646
|
+
readonly specialCategory: null;
|
|
15647
|
+
readonly sort: 21;
|
|
15648
|
+
readonly preferredScale: "s";
|
|
15649
|
+
};
|
|
15650
|
+
readonly flexDirection: {
|
|
15651
|
+
readonly label: "Flex Direction";
|
|
15652
|
+
readonly description: "Sets row or column layout.";
|
|
15653
|
+
readonly category: "container";
|
|
15654
|
+
readonly specialCategory: null;
|
|
15655
|
+
readonly sort: 4;
|
|
15656
|
+
};
|
|
15657
|
+
readonly flexWrap: {
|
|
15658
|
+
readonly label: "Flex Wrap";
|
|
15659
|
+
readonly description: "Controls whether flex items wrap to multiple lines.";
|
|
15660
|
+
readonly category: "container";
|
|
15661
|
+
readonly specialCategory: null;
|
|
15662
|
+
readonly sort: 4.5;
|
|
15663
|
+
};
|
|
15664
|
+
readonly alignItems: {
|
|
15665
|
+
readonly label: "Align Items";
|
|
15666
|
+
readonly description: "Controls cross-axis alignment.";
|
|
15667
|
+
readonly category: "container";
|
|
15668
|
+
readonly specialCategory: null;
|
|
15669
|
+
readonly sort: 3;
|
|
15670
|
+
};
|
|
15671
|
+
readonly justifyContent: {
|
|
15672
|
+
readonly label: "Justify Content";
|
|
15673
|
+
readonly description: "Controls main-axis alignment.";
|
|
15674
|
+
readonly category: "container";
|
|
15675
|
+
readonly specialCategory: null;
|
|
15676
|
+
readonly sort: 5;
|
|
15677
|
+
};
|
|
15678
|
+
readonly gap: {
|
|
15679
|
+
readonly label: "Gap";
|
|
15680
|
+
readonly description: "Space between children.";
|
|
15681
|
+
readonly category: "container";
|
|
15682
|
+
readonly specialCategory: null;
|
|
15683
|
+
readonly sort: 10;
|
|
15684
|
+
readonly preferredScale: "s";
|
|
15685
|
+
};
|
|
15686
|
+
readonly padding: {
|
|
15687
|
+
readonly label: "Padding";
|
|
15688
|
+
readonly description: "Uniform padding on all sides.";
|
|
15689
|
+
readonly category: "container";
|
|
15690
|
+
readonly specialCategory: "padding";
|
|
15691
|
+
readonly sort: 6;
|
|
15692
|
+
readonly preferredScale: "s";
|
|
15693
|
+
};
|
|
15694
|
+
readonly paddingHorizontal: {
|
|
15695
|
+
readonly label: "Padding Horizontal";
|
|
15696
|
+
readonly description: "Left and right padding.";
|
|
15697
|
+
readonly category: "container";
|
|
15698
|
+
readonly specialCategory: "padding";
|
|
15699
|
+
readonly sort: 7;
|
|
15700
|
+
readonly preferredScale: "s";
|
|
15701
|
+
};
|
|
15702
|
+
readonly paddingVertical: {
|
|
15703
|
+
readonly label: "Padding Vertical";
|
|
15704
|
+
readonly description: "Top and bottom padding.";
|
|
15705
|
+
readonly category: "container";
|
|
15706
|
+
readonly specialCategory: "padding";
|
|
15707
|
+
readonly sort: 8;
|
|
15708
|
+
readonly preferredScale: "vs";
|
|
15709
|
+
};
|
|
15710
|
+
readonly paddingTop: {
|
|
15711
|
+
readonly label: "Padding Top";
|
|
15712
|
+
readonly description: "Top padding only.";
|
|
15713
|
+
readonly category: "container";
|
|
15714
|
+
readonly specialCategory: "padding";
|
|
15715
|
+
readonly sort: 9;
|
|
15716
|
+
readonly preferredScale: "vs";
|
|
15717
|
+
};
|
|
15718
|
+
readonly paddingBottom: {
|
|
15719
|
+
readonly label: "Padding Bottom";
|
|
15720
|
+
readonly description: "Bottom padding only.";
|
|
15721
|
+
readonly category: "container";
|
|
15722
|
+
readonly specialCategory: "padding";
|
|
15723
|
+
readonly sort: 10;
|
|
15724
|
+
readonly preferredScale: "vs";
|
|
15725
|
+
};
|
|
15726
|
+
readonly paddingLeft: {
|
|
15727
|
+
readonly label: "Padding Left";
|
|
15728
|
+
readonly description: "Left padding only.";
|
|
15729
|
+
readonly category: "container";
|
|
15730
|
+
readonly specialCategory: "padding";
|
|
15731
|
+
readonly sort: 11;
|
|
15732
|
+
readonly preferredScale: "s";
|
|
15733
|
+
};
|
|
15734
|
+
readonly paddingRight: {
|
|
15735
|
+
readonly label: "Padding Right";
|
|
15736
|
+
readonly description: "Right padding only.";
|
|
15737
|
+
readonly category: "container";
|
|
15738
|
+
readonly specialCategory: "padding";
|
|
15739
|
+
readonly sort: 12;
|
|
15740
|
+
readonly preferredScale: "s";
|
|
15741
|
+
};
|
|
15742
|
+
readonly margin: {
|
|
15743
|
+
readonly label: "Margin";
|
|
15744
|
+
readonly description: "Uniform margin on all sides.";
|
|
15745
|
+
readonly category: "container";
|
|
15746
|
+
readonly specialCategory: "margin";
|
|
15747
|
+
readonly sort: 13;
|
|
15748
|
+
readonly preferredScale: "s";
|
|
15749
|
+
};
|
|
15750
|
+
readonly marginHorizontal: {
|
|
15751
|
+
readonly label: "Margin Horizontal";
|
|
15752
|
+
readonly description: "Left and right margin.";
|
|
15753
|
+
readonly category: "container";
|
|
15754
|
+
readonly specialCategory: "margin";
|
|
15755
|
+
readonly sort: 14;
|
|
15756
|
+
readonly preferredScale: "s";
|
|
15757
|
+
};
|
|
15758
|
+
readonly marginVertical: {
|
|
15759
|
+
readonly label: "Margin Vertical";
|
|
15760
|
+
readonly description: "Top and bottom margin.";
|
|
15761
|
+
readonly category: "container";
|
|
15762
|
+
readonly specialCategory: "margin";
|
|
15763
|
+
readonly sort: 15;
|
|
15764
|
+
readonly preferredScale: "vs";
|
|
15765
|
+
};
|
|
15766
|
+
readonly marginTop: {
|
|
15767
|
+
readonly label: "Margin Top";
|
|
15768
|
+
readonly description: "Top margin only.";
|
|
15769
|
+
readonly category: "container";
|
|
15770
|
+
readonly specialCategory: "margin";
|
|
15771
|
+
readonly sort: 16;
|
|
15772
|
+
readonly preferredScale: "vs";
|
|
15773
|
+
};
|
|
15774
|
+
readonly marginBottom: {
|
|
15775
|
+
readonly label: "Margin Bottom";
|
|
15776
|
+
readonly description: "Bottom margin only.";
|
|
15777
|
+
readonly category: "container";
|
|
15778
|
+
readonly specialCategory: "margin";
|
|
15779
|
+
readonly sort: 17;
|
|
15780
|
+
readonly preferredScale: "vs";
|
|
15781
|
+
};
|
|
15782
|
+
readonly marginLeft: {
|
|
15783
|
+
readonly label: "Margin Left";
|
|
15784
|
+
readonly description: "Left margin only.";
|
|
15785
|
+
readonly category: "container";
|
|
15786
|
+
readonly specialCategory: "margin";
|
|
15787
|
+
readonly sort: 18;
|
|
15788
|
+
readonly preferredScale: "s";
|
|
15789
|
+
};
|
|
15790
|
+
readonly marginRight: {
|
|
15791
|
+
readonly label: "Margin Right";
|
|
15792
|
+
readonly description: "Right margin only.";
|
|
15793
|
+
readonly category: "container";
|
|
15794
|
+
readonly specialCategory: "margin";
|
|
15795
|
+
readonly sort: 19;
|
|
15796
|
+
readonly preferredScale: "s";
|
|
15797
|
+
};
|
|
15798
|
+
readonly width: {
|
|
15799
|
+
readonly label: "Width";
|
|
15800
|
+
readonly description: "Fixed width value.";
|
|
15801
|
+
readonly category: "container";
|
|
15802
|
+
readonly specialCategory: "size";
|
|
15803
|
+
readonly sort: 0;
|
|
15804
|
+
readonly preferredScale: "s";
|
|
15805
|
+
};
|
|
15806
|
+
readonly minWidth: {
|
|
15807
|
+
readonly label: "Min Width";
|
|
15808
|
+
readonly description: "Minimum width constraint.";
|
|
15809
|
+
readonly category: "container";
|
|
15810
|
+
readonly specialCategory: "size";
|
|
15811
|
+
readonly sort: 1;
|
|
15812
|
+
readonly preferredScale: "s";
|
|
15813
|
+
};
|
|
15814
|
+
readonly maxWidth: {
|
|
15815
|
+
readonly label: "Max Width";
|
|
15816
|
+
readonly description: "Maximum width constraint.";
|
|
15817
|
+
readonly category: "container";
|
|
15818
|
+
readonly specialCategory: "size";
|
|
15819
|
+
readonly sort: 2;
|
|
15820
|
+
readonly preferredScale: "s";
|
|
15821
|
+
};
|
|
15822
|
+
readonly height: {
|
|
15823
|
+
readonly label: "Height";
|
|
15824
|
+
readonly description: "Fixed height value.";
|
|
15825
|
+
readonly category: "container";
|
|
15826
|
+
readonly specialCategory: "size";
|
|
15827
|
+
readonly sort: 3;
|
|
15828
|
+
readonly preferredScale: "vs";
|
|
15829
|
+
};
|
|
15830
|
+
readonly minHeight: {
|
|
15831
|
+
readonly label: "Min Height";
|
|
15832
|
+
readonly description: "Minimum height constraint.";
|
|
15833
|
+
readonly category: "container";
|
|
15834
|
+
readonly specialCategory: "size";
|
|
15835
|
+
readonly sort: 4;
|
|
15836
|
+
readonly preferredScale: "vs";
|
|
15837
|
+
};
|
|
15838
|
+
readonly maxHeight: {
|
|
15839
|
+
readonly label: "Max Height";
|
|
15840
|
+
readonly description: "Maximum height constraint.";
|
|
15841
|
+
readonly category: "container";
|
|
15842
|
+
readonly specialCategory: "size";
|
|
15843
|
+
readonly sort: 5;
|
|
15844
|
+
readonly preferredScale: "vs";
|
|
15845
|
+
};
|
|
15846
|
+
readonly flex: {
|
|
15847
|
+
readonly label: "Flex";
|
|
15848
|
+
readonly description: "Flex grow factor (e.g. 1 fills available space).";
|
|
15849
|
+
readonly category: "container";
|
|
15850
|
+
readonly specialCategory: "size";
|
|
15851
|
+
readonly sort: 6;
|
|
15852
|
+
};
|
|
15853
|
+
readonly position: {
|
|
15854
|
+
readonly label: "Position";
|
|
15855
|
+
readonly description: "Sets layout positioning mode.";
|
|
15856
|
+
readonly category: "container";
|
|
15857
|
+
readonly specialCategory: null;
|
|
15858
|
+
readonly sort: 3;
|
|
15859
|
+
};
|
|
15860
|
+
readonly top: {
|
|
15861
|
+
readonly label: "Top";
|
|
15862
|
+
readonly description: "Offset from the top edge.";
|
|
15863
|
+
readonly category: "container";
|
|
15864
|
+
readonly specialCategory: "offset";
|
|
15865
|
+
readonly sort: 22;
|
|
15866
|
+
readonly preferredScale: "vs";
|
|
15867
|
+
};
|
|
15868
|
+
readonly bottom: {
|
|
15869
|
+
readonly label: "Bottom";
|
|
15870
|
+
readonly description: "Offset from the bottom edge.";
|
|
15871
|
+
readonly category: "container";
|
|
15872
|
+
readonly specialCategory: "offset";
|
|
15873
|
+
readonly sort: 23;
|
|
15874
|
+
readonly preferredScale: "vs";
|
|
15875
|
+
};
|
|
15876
|
+
readonly left: {
|
|
15877
|
+
readonly label: "Left";
|
|
15878
|
+
readonly description: "Offset from the left edge.";
|
|
15879
|
+
readonly category: "container";
|
|
15880
|
+
readonly specialCategory: "offset";
|
|
15881
|
+
readonly sort: 24;
|
|
15882
|
+
readonly preferredScale: "s";
|
|
15883
|
+
};
|
|
15884
|
+
readonly right: {
|
|
15885
|
+
readonly label: "Right";
|
|
15886
|
+
readonly description: "Offset from the right edge.";
|
|
15031
15887
|
readonly category: "container";
|
|
15032
|
-
readonly specialCategory:
|
|
15033
|
-
readonly sort:
|
|
15888
|
+
readonly specialCategory: "offset";
|
|
15889
|
+
readonly sort: 25;
|
|
15034
15890
|
readonly preferredScale: "s";
|
|
15035
15891
|
};
|
|
15036
|
-
readonly
|
|
15037
|
-
readonly label: "
|
|
15038
|
-
readonly description: "
|
|
15892
|
+
readonly zIndex: {
|
|
15893
|
+
readonly label: "Z-Index";
|
|
15894
|
+
readonly description: "Controls stacking order.";
|
|
15039
15895
|
readonly category: "container";
|
|
15040
15896
|
readonly specialCategory: null;
|
|
15041
|
-
readonly sort:
|
|
15042
|
-
readonly preferredScale: "vs";
|
|
15897
|
+
readonly sort: 26;
|
|
15043
15898
|
};
|
|
15044
15899
|
};
|
|
15045
|
-
|
|
15046
|
-
|
|
15047
|
-
|
|
15048
|
-
|
|
15049
|
-
|
|
15050
|
-
|
|
15051
|
-
readonly
|
|
15052
|
-
|
|
15053
|
-
|
|
15054
|
-
|
|
15055
|
-
|
|
15056
|
-
readonly pattern: {
|
|
15057
|
-
readonly type: "StatusBarColor";
|
|
15058
|
-
readonly title: "title";
|
|
15059
|
-
readonly description: "description";
|
|
15060
|
-
readonly children: "never";
|
|
15061
|
-
readonly attributes: {
|
|
15062
|
-
readonly styles: {
|
|
15063
|
-
readonly backgroundColor: "color";
|
|
15900
|
+
readonly labelKey: {
|
|
15901
|
+
readonly label: "Label Key";
|
|
15902
|
+
readonly description: "Localization key for button text.";
|
|
15903
|
+
readonly category: "other";
|
|
15904
|
+
readonly sort: 1;
|
|
15905
|
+
};
|
|
15906
|
+
readonly events: {
|
|
15907
|
+
readonly label: "Events";
|
|
15908
|
+
readonly description: "Actions to perform on click.";
|
|
15909
|
+
readonly category: "other";
|
|
15910
|
+
readonly sort: 2;
|
|
15064
15911
|
};
|
|
15065
|
-
readonly translucent: "boolean";
|
|
15066
15912
|
};
|
|
15067
|
-
|
|
15068
|
-
|
|
15069
|
-
|
|
15070
|
-
|
|
15071
|
-
|
|
15072
|
-
readonly styles: {
|
|
15073
|
-
readonly backgroundColor: {
|
|
15074
|
-
readonly label: "Background Color";
|
|
15075
|
-
readonly description: "Status bar background color.";
|
|
15076
|
-
readonly category: "style";
|
|
15077
|
-
readonly specialCategory: null;
|
|
15913
|
+
readonly specialCategories: {
|
|
15914
|
+
readonly padding: {
|
|
15915
|
+
readonly label: "Padding";
|
|
15916
|
+
readonly description: "Uniform padding on all sides.";
|
|
15917
|
+
readonly category: "container";
|
|
15078
15918
|
readonly sort: 1;
|
|
15079
15919
|
};
|
|
15080
|
-
|
|
15081
|
-
|
|
15082
|
-
|
|
15083
|
-
readonly
|
|
15084
|
-
readonly description: "Sets the status bar to translucent.";
|
|
15085
|
-
readonly category: "style";
|
|
15086
|
-
readonly specialCategory: null;
|
|
15920
|
+
readonly margin: {
|
|
15921
|
+
readonly label: "Margin";
|
|
15922
|
+
readonly description: "Uniform margin on all sides.";
|
|
15923
|
+
readonly category: "container";
|
|
15087
15924
|
readonly sort: 2;
|
|
15088
15925
|
};
|
|
15926
|
+
readonly size: {
|
|
15927
|
+
readonly label: "Size";
|
|
15928
|
+
readonly description: "Fixed dimensions.";
|
|
15929
|
+
readonly category: "container";
|
|
15930
|
+
readonly sort: 3;
|
|
15931
|
+
};
|
|
15932
|
+
readonly offset: {
|
|
15933
|
+
readonly label: "Offset";
|
|
15934
|
+
readonly description: "Absolute positioning offsets.";
|
|
15935
|
+
readonly category: "container";
|
|
15936
|
+
readonly sort: 4;
|
|
15937
|
+
};
|
|
15089
15938
|
};
|
|
15090
15939
|
};
|
|
15091
15940
|
readonly defaults: {
|
|
15941
|
+
readonly translateCounter: 1;
|
|
15942
|
+
readonly numberOfLines: 1;
|
|
15092
15943
|
readonly styles: {
|
|
15093
|
-
readonly
|
|
15944
|
+
readonly color: "THEME_COLORS.SYSTEM_BUTTON_TEXT";
|
|
15945
|
+
readonly fontSize: "16@fs";
|
|
15946
|
+
readonly fontWeight: "400";
|
|
15947
|
+
readonly flexDirection: "column";
|
|
15948
|
+
readonly position: "relative";
|
|
15949
|
+
readonly zIndex: 1;
|
|
15950
|
+
readonly alignSelf: "flex-start";
|
|
15951
|
+
readonly flexGrow: 0;
|
|
15952
|
+
readonly flexShrink: 0;
|
|
15953
|
+
readonly height: 48;
|
|
15954
|
+
readonly borderRadius: 8;
|
|
15955
|
+
readonly backgroundColor: "THEME_COLORS.SYSTEM_BUTTON_BACKGROUND";
|
|
15956
|
+
};
|
|
15957
|
+
readonly attributes: {
|
|
15958
|
+
readonly labelKey: "Button";
|
|
15959
|
+
};
|
|
15960
|
+
};
|
|
15961
|
+
readonly types: {
|
|
15962
|
+
readonly EventObject: {
|
|
15963
|
+
readonly type: readonly ["Permission", "Navigate", "Placement", "SetCondition"];
|
|
15964
|
+
readonly permission: readonly ["notification", "camera", "microphone", "location", "photos", "contacts", "att", "rating", "GDPR"];
|
|
15965
|
+
readonly navigate_to: "string";
|
|
15966
|
+
readonly targetIndex: "number";
|
|
15967
|
+
readonly placementKey: readonly ["terms", "onboard", "paywall", "subscription", "home"];
|
|
15968
|
+
readonly conditionKey: readonly ["termsAccepted"];
|
|
15969
|
+
readonly value: "boolean";
|
|
15094
15970
|
};
|
|
15095
15971
|
};
|
|
15096
15972
|
}, {
|
|
15097
15973
|
readonly schemaVersion: 2;
|
|
15098
15974
|
readonly pattern: {
|
|
15099
|
-
readonly type: "
|
|
15100
|
-
readonly title: "
|
|
15101
|
-
readonly description: "
|
|
15102
|
-
readonly children: "
|
|
15975
|
+
readonly type: "TermsProvider";
|
|
15976
|
+
readonly title: "title";
|
|
15977
|
+
readonly description: "description";
|
|
15978
|
+
readonly children: "node";
|
|
15103
15979
|
readonly attributes: {
|
|
15104
|
-
readonly
|
|
15105
|
-
readonly numberOfLines: "number";
|
|
15106
|
-
readonly translateCounter: "number";
|
|
15980
|
+
readonly scrollable: "boolean";
|
|
15107
15981
|
readonly styles: {
|
|
15108
|
-
readonly color: "color";
|
|
15109
|
-
readonly fontSize: "number";
|
|
15110
|
-
readonly fontFamily: "fontFamily";
|
|
15111
|
-
readonly fontWeight: "string";
|
|
15112
|
-
readonly textAlign: "string";
|
|
15113
15982
|
readonly flexDirection: readonly ["row", "column"];
|
|
15114
15983
|
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
15115
15984
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
@@ -15130,11 +15999,11 @@ export declare const patterns: readonly [{
|
|
|
15130
15999
|
readonly marginLeft: "size";
|
|
15131
16000
|
readonly marginRight: "size";
|
|
15132
16001
|
readonly backgroundColor: "color";
|
|
15133
|
-
readonly borderRadius: "
|
|
16002
|
+
readonly borderRadius: "size";
|
|
15134
16003
|
readonly width: "size";
|
|
15135
16004
|
readonly minWidth: "size";
|
|
15136
16005
|
readonly maxWidth: "size";
|
|
15137
|
-
readonly height: "
|
|
16006
|
+
readonly height: "size";
|
|
15138
16007
|
readonly minHeight: "size";
|
|
15139
16008
|
readonly maxHeight: "size";
|
|
15140
16009
|
readonly flex: "number";
|
|
@@ -15145,69 +16014,41 @@ export declare const patterns: readonly [{
|
|
|
15145
16014
|
readonly right: "size";
|
|
15146
16015
|
readonly zIndex: "number";
|
|
15147
16016
|
};
|
|
15148
|
-
readonly scrollable: "boolean";
|
|
15149
16017
|
readonly testID: "string";
|
|
15150
|
-
readonly
|
|
15151
|
-
readonly events: "EventObject[]";
|
|
16018
|
+
readonly animation: readonly ["default", "fade", "fade_from_bottom", "fade_from_right", "reveal_from_bottom", "scale_from_center", "slide_from_right", "slide_from_left", "slide_from_bottom", "none"];
|
|
15152
16019
|
};
|
|
15153
16020
|
};
|
|
15154
16021
|
readonly meta: {
|
|
15155
|
-
readonly desiredParent: readonly ["
|
|
15156
|
-
readonly label: "
|
|
15157
|
-
readonly description: "
|
|
15158
|
-
readonly
|
|
15159
|
-
readonly
|
|
15160
|
-
readonly label: "
|
|
15161
|
-
readonly description: "
|
|
15162
|
-
readonly category: "
|
|
15163
|
-
readonly specialCategory: null;
|
|
16022
|
+
readonly desiredParent: readonly ["root", "GlobalProvider"];
|
|
16023
|
+
readonly label: "Terms Provider";
|
|
16024
|
+
readonly description: "Provider for terms & privacy page (e.g. WebView + form). Use as a GlobalProvider page.";
|
|
16025
|
+
readonly specialCategories: {
|
|
16026
|
+
readonly padding: {
|
|
16027
|
+
readonly label: "Padding";
|
|
16028
|
+
readonly description: "Uniform padding on all sides.";
|
|
16029
|
+
readonly category: "container";
|
|
15164
16030
|
readonly sort: 1;
|
|
15165
16031
|
};
|
|
15166
|
-
readonly
|
|
15167
|
-
readonly label: "
|
|
15168
|
-
readonly description: "
|
|
15169
|
-
readonly category: "
|
|
15170
|
-
readonly specialCategory: null;
|
|
16032
|
+
readonly margin: {
|
|
16033
|
+
readonly label: "Margin";
|
|
16034
|
+
readonly description: "Uniform margin on all sides.";
|
|
16035
|
+
readonly category: "container";
|
|
15171
16036
|
readonly sort: 2;
|
|
15172
|
-
readonly preferredScale: "f";
|
|
15173
16037
|
};
|
|
15174
|
-
readonly
|
|
15175
|
-
readonly label: "
|
|
15176
|
-
readonly description: "
|
|
15177
|
-
readonly category: "
|
|
15178
|
-
readonly specialCategory: null;
|
|
16038
|
+
readonly size: {
|
|
16039
|
+
readonly label: "Size";
|
|
16040
|
+
readonly description: "Fixed dimensions.";
|
|
16041
|
+
readonly category: "container";
|
|
15179
16042
|
readonly sort: 3;
|
|
15180
16043
|
};
|
|
15181
|
-
readonly
|
|
15182
|
-
readonly label: "
|
|
15183
|
-
readonly description: "
|
|
15184
|
-
readonly category: "
|
|
15185
|
-
readonly specialCategory: null;
|
|
16044
|
+
readonly offset: {
|
|
16045
|
+
readonly label: "Offset";
|
|
16046
|
+
readonly description: "Absolute positioning offsets.";
|
|
16047
|
+
readonly category: "container";
|
|
15186
16048
|
readonly sort: 4;
|
|
15187
16049
|
};
|
|
15188
|
-
readonly textAlign: {
|
|
15189
|
-
readonly label: "Text Align";
|
|
15190
|
-
readonly description: "Text alignment.";
|
|
15191
|
-
readonly category: "style";
|
|
15192
|
-
readonly specialCategory: null;
|
|
15193
|
-
readonly sort: 5;
|
|
15194
|
-
};
|
|
15195
16050
|
};
|
|
15196
16051
|
readonly attributes: {
|
|
15197
|
-
readonly adjustsFontSizeToFit: {
|
|
15198
|
-
readonly label: "Adjust Font Size To Fit";
|
|
15199
|
-
readonly description: "Automatically reduces font size to fit the available space.";
|
|
15200
|
-
readonly category: "other";
|
|
15201
|
-
readonly specialCategory: null;
|
|
15202
|
-
readonly sort: 1;
|
|
15203
|
-
};
|
|
15204
|
-
readonly showEllipsis: {
|
|
15205
|
-
readonly label: "Show Ellipsis";
|
|
15206
|
-
readonly description: "If text overflows, show ellipsis (…); applied as single-line truncation.";
|
|
15207
|
-
readonly category: "other";
|
|
15208
|
-
readonly specialCategory: null;
|
|
15209
|
-
readonly sort: 2;
|
|
15210
|
-
};
|
|
15211
16052
|
readonly scrollable: {
|
|
15212
16053
|
readonly label: "Scrollable";
|
|
15213
16054
|
readonly description: "Turns scroll interaction on.";
|
|
@@ -15481,76 +16322,30 @@ export declare const patterns: readonly [{
|
|
|
15481
16322
|
readonly sort: 26;
|
|
15482
16323
|
};
|
|
15483
16324
|
};
|
|
15484
|
-
readonly
|
|
15485
|
-
readonly label: "
|
|
15486
|
-
readonly description: "
|
|
15487
|
-
readonly category: "other";
|
|
15488
|
-
readonly sort: 1;
|
|
15489
|
-
};
|
|
15490
|
-
readonly events: {
|
|
15491
|
-
readonly label: "Events";
|
|
15492
|
-
readonly description: "Actions to perform on click.";
|
|
16325
|
+
readonly animation: {
|
|
16326
|
+
readonly label: "Page transition animation";
|
|
16327
|
+
readonly description: "When this component is a GlobalProvider page: animation used when navigating to this screen.";
|
|
15493
16328
|
readonly category: "other";
|
|
15494
|
-
readonly
|
|
15495
|
-
};
|
|
15496
|
-
};
|
|
15497
|
-
readonly specialCategories: {
|
|
15498
|
-
readonly padding: {
|
|
15499
|
-
readonly label: "Padding";
|
|
15500
|
-
readonly description: "Uniform padding on all sides.";
|
|
15501
|
-
readonly category: "container";
|
|
16329
|
+
readonly specialCategory: null;
|
|
15502
16330
|
readonly sort: 1;
|
|
15503
16331
|
};
|
|
15504
|
-
readonly margin: {
|
|
15505
|
-
readonly label: "Margin";
|
|
15506
|
-
readonly description: "Uniform margin on all sides.";
|
|
15507
|
-
readonly category: "container";
|
|
15508
|
-
readonly sort: 2;
|
|
15509
|
-
};
|
|
15510
|
-
readonly size: {
|
|
15511
|
-
readonly label: "Size";
|
|
15512
|
-
readonly description: "Fixed dimensions.";
|
|
15513
|
-
readonly category: "container";
|
|
15514
|
-
readonly sort: 3;
|
|
15515
|
-
};
|
|
15516
|
-
readonly offset: {
|
|
15517
|
-
readonly label: "Offset";
|
|
15518
|
-
readonly description: "Absolute positioning offsets.";
|
|
15519
|
-
readonly category: "container";
|
|
15520
|
-
readonly sort: 4;
|
|
15521
|
-
};
|
|
15522
16332
|
};
|
|
16333
|
+
readonly styles: {};
|
|
15523
16334
|
};
|
|
15524
16335
|
readonly defaults: {
|
|
15525
|
-
readonly translateCounter: 1;
|
|
15526
|
-
readonly numberOfLines: 1;
|
|
15527
16336
|
readonly styles: {
|
|
15528
|
-
readonly color: "THEME_COLORS.SYSTEM_BUTTON_TEXT";
|
|
15529
|
-
readonly fontSize: "16@fs";
|
|
15530
|
-
readonly fontWeight: "400";
|
|
15531
16337
|
readonly flexDirection: "column";
|
|
15532
16338
|
readonly position: "relative";
|
|
15533
16339
|
readonly zIndex: 1;
|
|
15534
16340
|
readonly alignSelf: "flex-start";
|
|
15535
16341
|
readonly flexGrow: 0;
|
|
15536
16342
|
readonly flexShrink: 0;
|
|
15537
|
-
readonly
|
|
15538
|
-
readonly
|
|
15539
|
-
readonly
|
|
15540
|
-
};
|
|
15541
|
-
readonly attributes: {
|
|
15542
|
-
readonly labelKey: "Button";
|
|
15543
|
-
};
|
|
15544
|
-
};
|
|
15545
|
-
readonly types: {
|
|
15546
|
-
readonly EventObject: {
|
|
15547
|
-
readonly type: readonly ["Permission", "Navigate", "Placement"];
|
|
15548
|
-
readonly permission: "string";
|
|
15549
|
-
readonly navigate_to: "string";
|
|
15550
|
-
readonly targetIndex: "number";
|
|
15551
|
-
readonly placementKey: "string";
|
|
16343
|
+
readonly width: "100%";
|
|
16344
|
+
readonly height: "100%";
|
|
16345
|
+
readonly flex: 1;
|
|
15552
16346
|
};
|
|
15553
16347
|
};
|
|
16348
|
+
readonly types: {};
|
|
15554
16349
|
}, {
|
|
15555
16350
|
readonly schemaVersion: 2;
|
|
15556
16351
|
readonly pattern: {
|