@developer_tribe/react-builder 1.2.20 → 1.2.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/attribute-analyser/style/web/useExtractTextStyle.d.ts +1 -1
- package/dist/build-components/BIcon/BIconProps.generated.d.ts +2 -0
- package/dist/build-components/BackgroundImage/BackgroundImageProps.generated.d.ts +2 -0
- package/dist/build-components/Button/ButtonProps.generated.d.ts +2 -0
- package/dist/build-components/Carousel/CarouselProps.generated.d.ts +2 -0
- package/dist/build-components/CarouselButtons/CarouselButtonsProps.generated.d.ts +2 -0
- package/dist/build-components/CarouselDots/CarouselDotsProps.generated.d.ts +2 -0
- package/dist/build-components/CarouselItem/CarouselItemProps.generated.d.ts +2 -0
- package/dist/build-components/CarouselProvider/CarouselProviderProps.generated.d.ts +2 -0
- package/dist/build-components/CountDown/CountDownProps.generated.d.ts +2 -0
- package/dist/build-components/Counter/CounterProps.generated.d.ts +2 -0
- package/dist/build-components/Image/ImageProps.generated.d.ts +2 -0
- package/dist/build-components/Main/MainProps.generated.d.ts +2 -0
- package/dist/build-components/Onboard/OnboardProps.generated.d.ts +2 -0
- package/dist/build-components/OnboardButton/OnboardButtonProps.generated.d.ts +2 -0
- package/dist/build-components/OnboardButtons/OnboardButtonsProps.generated.d.ts +2 -0
- package/dist/build-components/OnboardDot/OnboardDotProps.generated.d.ts +2 -0
- package/dist/build-components/OnboardFooter/OnboardFooterProps.generated.d.ts +2 -0
- package/dist/build-components/OnboardImage/OnboardImageProps.generated.d.ts +2 -0
- package/dist/build-components/OnboardItem/OnboardItemProps.generated.d.ts +2 -0
- package/dist/build-components/OnboardProvider/OnboardProviderProps.generated.d.ts +2 -0
- package/dist/build-components/OnboardSubtitle/OnboardSubtitleProps.generated.d.ts +2 -0
- package/dist/build-components/OnboardTitle/OnboardTitleProps.generated.d.ts +2 -0
- package/dist/build-components/PaywallBackground/PaywallBackgroundProps.generated.d.ts +2 -0
- package/dist/build-components/PaywallCloseButton/PaywallCloseButtonProps.generated.d.ts +2 -0
- package/dist/build-components/PaywallCounter/PaywallCounterProps.generated.d.ts +2 -0
- package/dist/build-components/PaywallOptions/PaywallOptionsProps.generated.d.ts +2 -0
- package/dist/build-components/PaywallProvider/PaywallProviderProps.generated.d.ts +2 -0
- package/dist/build-components/PaywallSubscribeButton/PaywallSubscribeButtonProps.generated.d.ts +2 -0
- package/dist/build-components/RadioButton/RadioButtonProps.generated.d.ts +2 -0
- package/dist/build-components/Text/TextProps.generated.d.ts +2 -0
- package/dist/build-components/View/View.d.ts +1 -1
- package/dist/build-components/View/ViewProps.generated.d.ts +2 -0
- package/dist/build-components/patterns.generated.d.ts +287 -2
- package/dist/components/BuilderButton.d.ts +3 -1
- package/dist/index.cjs.js +3 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +4 -4
- package/dist/index.esm.js.map +1 -1
- package/dist/index.web.cjs.js +4 -4
- package/dist/index.web.cjs.js.map +1 -1
- package/dist/index.web.esm.js +4 -4
- package/dist/index.web.esm.js.map +1 -1
- package/dist/store.d.ts +2 -0
- package/dist/styles.css +1 -1
- package/dist/utils/extractTextStyle/extractTextStyle.d.ts +1 -0
- package/package.json +1 -1
- package/scripts/migrate-patterns-to-v2.mjs +13 -8
- package/scripts/prebuild/icon-generator.js +34 -37
- package/src/assets/loading_animation.json +2587 -1
- package/src/assets/meta.json +1 -1
- package/src/assets/samples/carousel-sample.json +279 -197
- package/src/assets/samples/getSamples.ts +16 -1
- package/src/assets/samples/paywall-1.json +16 -0
- package/src/assets/samples/paywall-2.json +2 -2
- package/src/assets/samples/paywall-app-delete-offer.json +353 -0
- package/src/assets/samples/paywall-app-open-offer.json +353 -0
- package/src/assets/samples/paywall-back-offer.json +353 -0
- package/src/assets/samples/paywall-notification-offer.json +353 -0
- package/src/assets/samples/vpn-onboard-1.json +23 -12
- package/src/assets/samples/vpn-onboard-2.json +23 -12
- package/src/assets/samples/vpn-onboard-3.json +23 -12
- package/src/assets/samples/vpn-onboard-4.json +23 -12
- package/src/assets/samples/vpn-onboard-5.json +23 -12
- package/src/assets/samples/vpn-onboard-6.json +23 -12
- package/src/attribute-analyser/style/web/useExtractTextStyle.ts +9 -2
- package/src/build-components/BIcon/BIconProps.generated.ts +2 -0
- package/src/build-components/BackgroundImage/BackgroundImageProps.generated.ts +2 -0
- package/src/build-components/Button/ButtonProps.generated.ts +2 -0
- package/src/build-components/Carousel/CarouselProps.generated.ts +2 -0
- package/src/build-components/Carousel/pattern.json +2 -8
- package/src/build-components/CarouselButtons/CarouselButtonsProps.generated.ts +2 -0
- package/src/build-components/CarouselButtons/pattern.json +2 -9
- package/src/build-components/CarouselDots/CarouselDotsProps.generated.ts +2 -0
- package/src/build-components/CarouselDots/pattern.json +1 -3
- package/src/build-components/CarouselItem/CarouselItemProps.generated.ts +2 -0
- package/src/build-components/CarouselItem/pattern.json +1 -3
- package/src/build-components/CarouselProvider/CarouselProvider.tsx +5 -44
- package/src/build-components/CarouselProvider/CarouselProviderProps.generated.ts +2 -0
- package/src/build-components/CarouselProvider/pattern.json +6 -0
- package/src/build-components/CountDown/CountDownProps.generated.ts +2 -0
- package/src/build-components/CountDown/pattern.json +0 -1
- package/src/build-components/Counter/CounterProps.generated.ts +2 -0
- package/src/build-components/Counter/pattern.json +0 -1
- package/src/build-components/Image/Image.tsx +1 -1
- package/src/build-components/Image/ImageProps.generated.ts +2 -0
- package/src/build-components/Main/MainProps.generated.ts +2 -0
- package/src/build-components/Main/pattern.json +1 -3
- package/src/build-components/Onboard/OnboardProps.generated.ts +2 -0
- package/src/build-components/Onboard/pattern.json +2 -6
- package/src/build-components/OnboardButton/OnboardButton.tsx +0 -4
- package/src/build-components/OnboardButton/OnboardButtonProps.generated.ts +2 -0
- package/src/build-components/OnboardButton/pattern.json +9 -14
- package/src/build-components/OnboardButtons/OnboardButtons.tsx +17 -20
- package/src/build-components/OnboardButtons/OnboardButtonsProps.generated.ts +2 -0
- package/src/build-components/OnboardButtons/pattern.json +15 -15
- package/src/build-components/OnboardDot/OnboardDot.tsx +0 -3
- package/src/build-components/OnboardDot/OnboardDotProps.generated.ts +2 -0
- package/src/build-components/OnboardFooter/OnboardFooter.tsx +63 -51
- package/src/build-components/OnboardFooter/OnboardFooterProps.generated.ts +2 -0
- package/src/build-components/OnboardFooter/pattern.json +6 -3
- package/src/build-components/OnboardImage/OnboardImageProps.generated.ts +2 -0
- package/src/build-components/OnboardImage/pattern.json +1 -5
- package/src/build-components/OnboardItem/OnboardItemProps.generated.ts +2 -0
- package/src/build-components/OnboardItem/pattern.json +3 -11
- package/src/build-components/OnboardProvider/OnboardProviderProps.generated.ts +2 -0
- package/src/build-components/OnboardProvider/pattern.json +2 -8
- package/src/build-components/OnboardSubtitle/OnboardSubtitleProps.generated.ts +2 -0
- package/src/build-components/OnboardSubtitle/pattern.json +1 -4
- package/src/build-components/OnboardTitle/OnboardTitleProps.generated.ts +2 -0
- package/src/build-components/OnboardTitle/pattern.json +1 -4
- package/src/build-components/PaywallBackground/PaywallBackgroundProps.generated.ts +2 -0
- package/src/build-components/PaywallCloseButton/PaywallCloseButtonProps.generated.ts +2 -0
- package/src/build-components/PaywallCloseButton/pattern.json +1 -3
- package/src/build-components/PaywallCounter/PaywallCounterProps.generated.ts +2 -0
- package/src/build-components/PaywallCounter/pattern.json +0 -1
- package/src/build-components/PaywallOptions/PaywallOptions.tsx +1 -1
- package/src/build-components/PaywallOptions/PaywallOptionsProps.generated.ts +2 -0
- package/src/build-components/PaywallOptions/pattern.json +1 -3
- package/src/build-components/PaywallProvider/PaywallProviderProps.generated.ts +2 -0
- package/src/build-components/PaywallProvider/pattern.json +1 -3
- package/src/build-components/PaywallSubscribeButton/PaywallSubscribeButtonProps.generated.ts +2 -0
- package/src/build-components/PaywallSubscribeButton/pattern.json +1 -3
- package/src/build-components/RadioButton/RadioButtonProps.generated.ts +2 -0
- package/src/build-components/RadioButton/pattern.json +1 -3
- package/src/build-components/RenderNode.generated.tsx +1 -1
- package/src/build-components/Text/TextProps.generated.ts +2 -0
- package/src/build-components/View/View.tsx +11 -7
- package/src/build-components/View/ViewProps.generated.ts +2 -0
- package/src/build-components/View/pattern.json +8 -0
- package/src/build-components/patterns.generated.ts +277 -2
- package/src/build-components/useNode.ts +2 -2
- package/src/components/Builder.tsx +98 -8
- package/src/components/BuilderButton.tsx +39 -7
- package/src/components/DeviceButton.tsx +5 -1
- package/src/pages/DebugJsonPage.tsx +30 -1
- package/src/pages/ProjectDebug.tsx +0 -1
- package/src/pages/ProjectPage.tsx +2 -2
- package/src/store.ts +8 -0
- package/src/styles/base/_global.scss +0 -5
- package/src/styles/components/_editor-shell.scss +18 -3
- package/src/styles/components/_onboard.scss +0 -17
- package/src/styles/foundation/_colors.scss +1 -4
- package/src/styles/foundation/_typography.scss +0 -1
- package/src/styles/layout/_builder.scss +20 -0
- package/src/styles/modals/_product-presets-modal.scss +0 -2
- package/src/utils/extractTextStyle/extractTextStyle.ts +47 -13
- package/src/utils/extractViewStyle/extractViewStyle.ts +118 -39
- package/src/utils/logRenderStore.ts +7 -9
- package/src/utils/logger.ts +1 -5
- package/src/utils/repairNodeKeys.ts +1 -4
|
@@ -15,6 +15,7 @@ export declare const patterns: readonly [{
|
|
|
15
15
|
readonly fontWeight: "fontWeight";
|
|
16
16
|
readonly textAlign: readonly ["left", "center", "right", "justify"];
|
|
17
17
|
readonly flexDirection: readonly ["row", "column"];
|
|
18
|
+
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
18
19
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
19
20
|
readonly justifyContent: readonly ["flex-start", "center", "flex-end", "space-between", "space-around", "space-evenly"];
|
|
20
21
|
readonly gap: "size";
|
|
@@ -125,6 +126,13 @@ export declare const patterns: readonly [{
|
|
|
125
126
|
readonly specialCategory: null;
|
|
126
127
|
readonly sort: 4;
|
|
127
128
|
};
|
|
129
|
+
readonly flexWrap: {
|
|
130
|
+
readonly label: "Flex Wrap";
|
|
131
|
+
readonly description: "Controls whether flex items wrap to multiple lines.";
|
|
132
|
+
readonly category: "container";
|
|
133
|
+
readonly specialCategory: null;
|
|
134
|
+
readonly sort: 4.5;
|
|
135
|
+
};
|
|
128
136
|
readonly alignItems: {
|
|
129
137
|
readonly label: "Align Items";
|
|
130
138
|
readonly description: "Controls cross-axis alignment.";
|
|
@@ -449,6 +457,7 @@ export declare const patterns: readonly [{
|
|
|
449
457
|
readonly scrollable: "boolean";
|
|
450
458
|
readonly style: {
|
|
451
459
|
readonly flexDirection: readonly ["row", "column"];
|
|
460
|
+
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
452
461
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
453
462
|
readonly justifyContent: readonly ["flex-start", "center", "flex-end", "space-between", "space-around", "space-evenly"];
|
|
454
463
|
readonly gap: "size";
|
|
@@ -569,6 +578,13 @@ export declare const patterns: readonly [{
|
|
|
569
578
|
readonly specialCategory: null;
|
|
570
579
|
readonly sort: 4;
|
|
571
580
|
};
|
|
581
|
+
readonly flexWrap: {
|
|
582
|
+
readonly label: "Flex Wrap";
|
|
583
|
+
readonly description: "Controls whether flex items wrap to multiple lines.";
|
|
584
|
+
readonly category: "container";
|
|
585
|
+
readonly specialCategory: null;
|
|
586
|
+
readonly sort: 4.5;
|
|
587
|
+
};
|
|
572
588
|
readonly alignItems: {
|
|
573
589
|
readonly label: "Align Items";
|
|
574
590
|
readonly description: "Controls cross-axis alignment.";
|
|
@@ -840,6 +856,7 @@ export declare const patterns: readonly [{
|
|
|
840
856
|
readonly scrollable: "boolean";
|
|
841
857
|
readonly style: {
|
|
842
858
|
readonly flexDirection: readonly ["row", "column"];
|
|
859
|
+
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
843
860
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
844
861
|
readonly justifyContent: readonly ["flex-start", "center", "flex-end", "space-between", "space-around", "space-evenly"];
|
|
845
862
|
readonly gap: "size";
|
|
@@ -963,6 +980,13 @@ export declare const patterns: readonly [{
|
|
|
963
980
|
readonly specialCategory: null;
|
|
964
981
|
readonly sort: 4;
|
|
965
982
|
};
|
|
983
|
+
readonly flexWrap: {
|
|
984
|
+
readonly label: "Flex Wrap";
|
|
985
|
+
readonly description: "Controls whether flex items wrap to multiple lines.";
|
|
986
|
+
readonly category: "container";
|
|
987
|
+
readonly specialCategory: null;
|
|
988
|
+
readonly sort: 4.5;
|
|
989
|
+
};
|
|
966
990
|
readonly alignItems: {
|
|
967
991
|
readonly label: "Align Items";
|
|
968
992
|
readonly description: "Controls cross-axis alignment.";
|
|
@@ -1224,6 +1248,7 @@ export declare const patterns: readonly [{
|
|
|
1224
1248
|
readonly scrollable: "boolean";
|
|
1225
1249
|
readonly style: {
|
|
1226
1250
|
readonly flexDirection: readonly ["row", "column"];
|
|
1251
|
+
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
1227
1252
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
1228
1253
|
readonly justifyContent: readonly ["flex-start", "center", "flex-end", "space-between", "space-around", "space-evenly"];
|
|
1229
1254
|
readonly gap: "size";
|
|
@@ -1326,6 +1351,13 @@ export declare const patterns: readonly [{
|
|
|
1326
1351
|
readonly specialCategory: null;
|
|
1327
1352
|
readonly sort: 4;
|
|
1328
1353
|
};
|
|
1354
|
+
readonly flexWrap: {
|
|
1355
|
+
readonly label: "Flex Wrap";
|
|
1356
|
+
readonly description: "Controls whether flex items wrap to multiple lines.";
|
|
1357
|
+
readonly category: "container";
|
|
1358
|
+
readonly specialCategory: null;
|
|
1359
|
+
readonly sort: 4.5;
|
|
1360
|
+
};
|
|
1329
1361
|
readonly alignItems: {
|
|
1330
1362
|
readonly label: "Align Items";
|
|
1331
1363
|
readonly description: "Controls cross-axis alignment.";
|
|
@@ -1583,6 +1615,7 @@ export declare const patterns: readonly [{
|
|
|
1583
1615
|
readonly scrollable: "boolean";
|
|
1584
1616
|
readonly style: {
|
|
1585
1617
|
readonly flexDirection: readonly ["row", "column"];
|
|
1618
|
+
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
1586
1619
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
1587
1620
|
readonly justifyContent: readonly ["flex-start", "center", "flex-end", "space-between", "space-around", "space-evenly"];
|
|
1588
1621
|
readonly gap: "size";
|
|
@@ -1684,6 +1717,13 @@ export declare const patterns: readonly [{
|
|
|
1684
1717
|
readonly specialCategory: null;
|
|
1685
1718
|
readonly sort: 4;
|
|
1686
1719
|
};
|
|
1720
|
+
readonly flexWrap: {
|
|
1721
|
+
readonly label: "Flex Wrap";
|
|
1722
|
+
readonly description: "Controls whether flex items wrap to multiple lines.";
|
|
1723
|
+
readonly category: "container";
|
|
1724
|
+
readonly specialCategory: null;
|
|
1725
|
+
readonly sort: 4.5;
|
|
1726
|
+
};
|
|
1687
1727
|
readonly alignItems: {
|
|
1688
1728
|
readonly label: "Align Items";
|
|
1689
1729
|
readonly description: "Controls cross-axis alignment.";
|
|
@@ -1955,6 +1995,7 @@ export declare const patterns: readonly [{
|
|
|
1955
1995
|
readonly scrollable: "boolean";
|
|
1956
1996
|
readonly style: {
|
|
1957
1997
|
readonly flexDirection: readonly ["row", "column"];
|
|
1998
|
+
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
1958
1999
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
1959
2000
|
readonly justifyContent: readonly ["flex-start", "center", "flex-end", "space-between", "space-around", "space-evenly"];
|
|
1960
2001
|
readonly gap: "size";
|
|
@@ -2062,6 +2103,13 @@ export declare const patterns: readonly [{
|
|
|
2062
2103
|
readonly specialCategory: null;
|
|
2063
2104
|
readonly sort: 4;
|
|
2064
2105
|
};
|
|
2106
|
+
readonly flexWrap: {
|
|
2107
|
+
readonly label: "Flex Wrap";
|
|
2108
|
+
readonly description: "Controls whether flex items wrap to multiple lines.";
|
|
2109
|
+
readonly category: "container";
|
|
2110
|
+
readonly specialCategory: null;
|
|
2111
|
+
readonly sort: 4.5;
|
|
2112
|
+
};
|
|
2065
2113
|
readonly alignItems: {
|
|
2066
2114
|
readonly label: "Align Items";
|
|
2067
2115
|
readonly description: "Controls cross-axis alignment.";
|
|
@@ -2319,6 +2367,7 @@ export declare const patterns: readonly [{
|
|
|
2319
2367
|
readonly scrollable: "boolean";
|
|
2320
2368
|
readonly style: {
|
|
2321
2369
|
readonly flexDirection: readonly ["row", "column"];
|
|
2370
|
+
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
2322
2371
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
2323
2372
|
readonly justifyContent: readonly ["flex-start", "center", "flex-end", "space-between", "space-around", "space-evenly"];
|
|
2324
2373
|
readonly gap: "size";
|
|
@@ -2418,6 +2467,13 @@ export declare const patterns: readonly [{
|
|
|
2418
2467
|
readonly specialCategory: null;
|
|
2419
2468
|
readonly sort: 4;
|
|
2420
2469
|
};
|
|
2470
|
+
readonly flexWrap: {
|
|
2471
|
+
readonly label: "Flex Wrap";
|
|
2472
|
+
readonly description: "Controls whether flex items wrap to multiple lines.";
|
|
2473
|
+
readonly category: "container";
|
|
2474
|
+
readonly specialCategory: null;
|
|
2475
|
+
readonly sort: 4.5;
|
|
2476
|
+
};
|
|
2421
2477
|
readonly alignItems: {
|
|
2422
2478
|
readonly label: "Align Items";
|
|
2423
2479
|
readonly description: "Controls cross-axis alignment.";
|
|
@@ -2675,6 +2731,7 @@ export declare const patterns: readonly [{
|
|
|
2675
2731
|
readonly scrollable: "boolean";
|
|
2676
2732
|
readonly style: {
|
|
2677
2733
|
readonly flexDirection: readonly ["row", "column"];
|
|
2734
|
+
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
2678
2735
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
2679
2736
|
readonly justifyContent: readonly ["flex-start", "center", "flex-end", "space-between", "space-around", "space-evenly"];
|
|
2680
2737
|
readonly gap: "size";
|
|
@@ -2711,6 +2768,12 @@ export declare const patterns: readonly [{
|
|
|
2711
2768
|
readonly title: "title";
|
|
2712
2769
|
readonly description: "description";
|
|
2713
2770
|
};
|
|
2771
|
+
readonly defaults: {
|
|
2772
|
+
readonly style: {
|
|
2773
|
+
readonly width: "100%";
|
|
2774
|
+
readonly height: "100%";
|
|
2775
|
+
};
|
|
2776
|
+
};
|
|
2714
2777
|
};
|
|
2715
2778
|
readonly meta: {
|
|
2716
2779
|
readonly desiredParent: readonly ["root", ">View"];
|
|
@@ -2774,6 +2837,13 @@ export declare const patterns: readonly [{
|
|
|
2774
2837
|
readonly specialCategory: null;
|
|
2775
2838
|
readonly sort: 4;
|
|
2776
2839
|
};
|
|
2840
|
+
readonly flexWrap: {
|
|
2841
|
+
readonly label: "Flex Wrap";
|
|
2842
|
+
readonly description: "Controls whether flex items wrap to multiple lines.";
|
|
2843
|
+
readonly category: "container";
|
|
2844
|
+
readonly specialCategory: null;
|
|
2845
|
+
readonly sort: 4.5;
|
|
2846
|
+
};
|
|
2777
2847
|
readonly alignItems: {
|
|
2778
2848
|
readonly label: "Align Items";
|
|
2779
2849
|
readonly description: "Controls cross-axis alignment.";
|
|
@@ -3019,6 +3089,8 @@ export declare const patterns: readonly [{
|
|
|
3019
3089
|
readonly alignSelf: "flex-start";
|
|
3020
3090
|
readonly flexGrow: 0;
|
|
3021
3091
|
readonly flexShrink: 0;
|
|
3092
|
+
readonly width: "100%";
|
|
3093
|
+
readonly height: "100%";
|
|
3022
3094
|
};
|
|
3023
3095
|
};
|
|
3024
3096
|
readonly allowUnknownAttributes: false;
|
|
@@ -3041,6 +3113,7 @@ export declare const patterns: readonly [{
|
|
|
3041
3113
|
readonly fontWeight: "fontWeight";
|
|
3042
3114
|
readonly textAlign: readonly ["left", "center", "right", "justify"];
|
|
3043
3115
|
readonly flexDirection: readonly ["row", "column"];
|
|
3116
|
+
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
3044
3117
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
3045
3118
|
readonly justifyContent: readonly ["flex-start", "center", "flex-end", "space-between", "space-around", "space-evenly"];
|
|
3046
3119
|
readonly gap: "size";
|
|
@@ -3155,6 +3228,13 @@ export declare const patterns: readonly [{
|
|
|
3155
3228
|
readonly specialCategory: null;
|
|
3156
3229
|
readonly sort: 4;
|
|
3157
3230
|
};
|
|
3231
|
+
readonly flexWrap: {
|
|
3232
|
+
readonly label: "Flex Wrap";
|
|
3233
|
+
readonly description: "Controls whether flex items wrap to multiple lines.";
|
|
3234
|
+
readonly category: "container";
|
|
3235
|
+
readonly specialCategory: null;
|
|
3236
|
+
readonly sort: 4.5;
|
|
3237
|
+
};
|
|
3158
3238
|
readonly alignItems: {
|
|
3159
3239
|
readonly label: "Align Items";
|
|
3160
3240
|
readonly description: "Controls cross-axis alignment.";
|
|
@@ -3463,6 +3543,7 @@ export declare const patterns: readonly [{
|
|
|
3463
3543
|
readonly fontWeight: "fontWeight";
|
|
3464
3544
|
readonly textAlign: readonly ["left", "center", "right", "justify"];
|
|
3465
3545
|
readonly flexDirection: readonly ["row", "column"];
|
|
3546
|
+
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
3466
3547
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
3467
3548
|
readonly justifyContent: readonly ["flex-start", "center", "flex-end", "space-between", "space-around", "space-evenly"];
|
|
3468
3549
|
readonly gap: "size";
|
|
@@ -3571,6 +3652,13 @@ export declare const patterns: readonly [{
|
|
|
3571
3652
|
readonly specialCategory: null;
|
|
3572
3653
|
readonly sort: 4;
|
|
3573
3654
|
};
|
|
3655
|
+
readonly flexWrap: {
|
|
3656
|
+
readonly label: "Flex Wrap";
|
|
3657
|
+
readonly description: "Controls whether flex items wrap to multiple lines.";
|
|
3658
|
+
readonly category: "container";
|
|
3659
|
+
readonly specialCategory: null;
|
|
3660
|
+
readonly sort: 4.5;
|
|
3661
|
+
};
|
|
3574
3662
|
readonly alignItems: {
|
|
3575
3663
|
readonly label: "Align Items";
|
|
3576
3664
|
readonly description: "Controls cross-axis alignment.";
|
|
@@ -3878,6 +3966,7 @@ export declare const patterns: readonly [{
|
|
|
3878
3966
|
readonly scrollable: "boolean";
|
|
3879
3967
|
readonly style: {
|
|
3880
3968
|
readonly flexDirection: readonly ["row", "column"];
|
|
3969
|
+
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
3881
3970
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
3882
3971
|
readonly justifyContent: readonly ["flex-start", "center", "flex-end", "space-between", "space-around", "space-evenly"];
|
|
3883
3972
|
readonly gap: "size";
|
|
@@ -3981,6 +4070,13 @@ export declare const patterns: readonly [{
|
|
|
3981
4070
|
readonly specialCategory: null;
|
|
3982
4071
|
readonly sort: 4;
|
|
3983
4072
|
};
|
|
4073
|
+
readonly flexWrap: {
|
|
4074
|
+
readonly label: "Flex Wrap";
|
|
4075
|
+
readonly description: "Controls whether flex items wrap to multiple lines.";
|
|
4076
|
+
readonly category: "container";
|
|
4077
|
+
readonly specialCategory: null;
|
|
4078
|
+
readonly sort: 4.5;
|
|
4079
|
+
};
|
|
3984
4080
|
readonly alignItems: {
|
|
3985
4081
|
readonly label: "Align Items";
|
|
3986
4082
|
readonly description: "Controls cross-axis alignment.";
|
|
@@ -4250,6 +4346,7 @@ export declare const patterns: readonly [{
|
|
|
4250
4346
|
readonly scrollable: "boolean";
|
|
4251
4347
|
readonly style: {
|
|
4252
4348
|
readonly flexDirection: readonly ["row", "column"];
|
|
4349
|
+
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
4253
4350
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
4254
4351
|
readonly justifyContent: readonly ["flex-start", "center", "flex-end", "space-between", "space-around", "space-evenly"];
|
|
4255
4352
|
readonly gap: "size";
|
|
@@ -4350,6 +4447,13 @@ export declare const patterns: readonly [{
|
|
|
4350
4447
|
readonly specialCategory: null;
|
|
4351
4448
|
readonly sort: 4;
|
|
4352
4449
|
};
|
|
4450
|
+
readonly flexWrap: {
|
|
4451
|
+
readonly label: "Flex Wrap";
|
|
4452
|
+
readonly description: "Controls whether flex items wrap to multiple lines.";
|
|
4453
|
+
readonly category: "container";
|
|
4454
|
+
readonly specialCategory: null;
|
|
4455
|
+
readonly sort: 4.5;
|
|
4456
|
+
};
|
|
4353
4457
|
readonly alignItems: {
|
|
4354
4458
|
readonly label: "Align Items";
|
|
4355
4459
|
readonly description: "Controls cross-axis alignment.";
|
|
@@ -4620,6 +4724,7 @@ export declare const patterns: readonly [{
|
|
|
4620
4724
|
readonly scrollable: "boolean";
|
|
4621
4725
|
readonly style: {
|
|
4622
4726
|
readonly flexDirection: readonly ["row", "column"];
|
|
4727
|
+
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
4623
4728
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
4624
4729
|
readonly justifyContent: readonly ["flex-start", "center", "flex-end", "space-between", "space-around", "space-evenly"];
|
|
4625
4730
|
readonly gap: "size";
|
|
@@ -4719,6 +4824,13 @@ export declare const patterns: readonly [{
|
|
|
4719
4824
|
readonly specialCategory: null;
|
|
4720
4825
|
readonly sort: 4;
|
|
4721
4826
|
};
|
|
4827
|
+
readonly flexWrap: {
|
|
4828
|
+
readonly label: "Flex Wrap";
|
|
4829
|
+
readonly description: "Controls whether flex items wrap to multiple lines.";
|
|
4830
|
+
readonly category: "container";
|
|
4831
|
+
readonly specialCategory: null;
|
|
4832
|
+
readonly sort: 4.5;
|
|
4833
|
+
};
|
|
4722
4834
|
readonly alignItems: {
|
|
4723
4835
|
readonly label: "Align Items";
|
|
4724
4836
|
readonly description: "Controls cross-axis alignment.";
|
|
@@ -4977,6 +5089,7 @@ export declare const patterns: readonly [{
|
|
|
4977
5089
|
readonly scrollable: "boolean";
|
|
4978
5090
|
readonly style: {
|
|
4979
5091
|
readonly flexDirection: readonly ["row", "column"];
|
|
5092
|
+
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
4980
5093
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
4981
5094
|
readonly justifyContent: readonly ["flex-start", "center", "flex-end", "space-between", "space-around", "space-evenly"];
|
|
4982
5095
|
readonly gap: "size";
|
|
@@ -5020,6 +5133,12 @@ export declare const patterns: readonly [{
|
|
|
5020
5133
|
readonly flex: "number";
|
|
5021
5134
|
readonly events: "EventObject[]";
|
|
5022
5135
|
};
|
|
5136
|
+
readonly defaults: {
|
|
5137
|
+
readonly style: {
|
|
5138
|
+
readonly height: "40@vs";
|
|
5139
|
+
readonly borderRadius: "12@s";
|
|
5140
|
+
};
|
|
5141
|
+
};
|
|
5023
5142
|
};
|
|
5024
5143
|
readonly meta: {
|
|
5025
5144
|
readonly desiredParent: readonly ["=OnboardButtons"];
|
|
@@ -5111,6 +5230,13 @@ export declare const patterns: readonly [{
|
|
|
5111
5230
|
readonly specialCategory: null;
|
|
5112
5231
|
readonly sort: 4;
|
|
5113
5232
|
};
|
|
5233
|
+
readonly flexWrap: {
|
|
5234
|
+
readonly label: "Flex Wrap";
|
|
5235
|
+
readonly description: "Controls whether flex items wrap to multiple lines.";
|
|
5236
|
+
readonly category: "container";
|
|
5237
|
+
readonly specialCategory: null;
|
|
5238
|
+
readonly sort: 4.5;
|
|
5239
|
+
};
|
|
5114
5240
|
readonly alignItems: {
|
|
5115
5241
|
readonly label: "Align Items";
|
|
5116
5242
|
readonly description: "Controls cross-axis alignment.";
|
|
@@ -5370,6 +5496,8 @@ export declare const patterns: readonly [{
|
|
|
5370
5496
|
readonly alignSelf: "flex-start";
|
|
5371
5497
|
readonly flexGrow: 0;
|
|
5372
5498
|
readonly flexShrink: 0;
|
|
5499
|
+
readonly height: "40@vs";
|
|
5500
|
+
readonly borderRadius: "12@s";
|
|
5373
5501
|
};
|
|
5374
5502
|
};
|
|
5375
5503
|
readonly types: {
|
|
@@ -5389,6 +5517,7 @@ export declare const patterns: readonly [{
|
|
|
5389
5517
|
readonly scrollable: "boolean";
|
|
5390
5518
|
readonly style: {
|
|
5391
5519
|
readonly flexDirection: readonly ["row", "column"];
|
|
5520
|
+
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
5392
5521
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
5393
5522
|
readonly justifyContent: readonly ["flex-start", "center", "flex-end", "space-between", "space-around", "space-evenly"];
|
|
5394
5523
|
readonly gap: "size";
|
|
@@ -5432,6 +5561,17 @@ export declare const patterns: readonly [{
|
|
|
5432
5561
|
readonly condition: readonly ["carousel-index"];
|
|
5433
5562
|
readonly conditionVariable: "number";
|
|
5434
5563
|
};
|
|
5564
|
+
readonly defaults: {
|
|
5565
|
+
readonly style: {
|
|
5566
|
+
readonly display: "flex";
|
|
5567
|
+
readonly flexDirection: "row";
|
|
5568
|
+
readonly gap: 12;
|
|
5569
|
+
readonly alignItems: "center";
|
|
5570
|
+
readonly justifyContent: "center";
|
|
5571
|
+
readonly marginVertical: "12@vs";
|
|
5572
|
+
readonly marginHorizontal: "24@s";
|
|
5573
|
+
};
|
|
5574
|
+
};
|
|
5435
5575
|
};
|
|
5436
5576
|
readonly meta: {
|
|
5437
5577
|
readonly desiredParent: readonly ["=OnboardItem"];
|
|
@@ -5502,6 +5642,13 @@ export declare const patterns: readonly [{
|
|
|
5502
5642
|
readonly specialCategory: null;
|
|
5503
5643
|
readonly sort: 4;
|
|
5504
5644
|
};
|
|
5645
|
+
readonly flexWrap: {
|
|
5646
|
+
readonly label: "Flex Wrap";
|
|
5647
|
+
readonly description: "Controls whether flex items wrap to multiple lines.";
|
|
5648
|
+
readonly category: "container";
|
|
5649
|
+
readonly specialCategory: null;
|
|
5650
|
+
readonly sort: 4.5;
|
|
5651
|
+
};
|
|
5505
5652
|
readonly alignItems: {
|
|
5506
5653
|
readonly label: "Align Items";
|
|
5507
5654
|
readonly description: "Controls cross-axis alignment.";
|
|
@@ -5783,12 +5930,18 @@ export declare const patterns: readonly [{
|
|
|
5783
5930
|
};
|
|
5784
5931
|
readonly defaults: {
|
|
5785
5932
|
readonly style: {
|
|
5786
|
-
readonly flexDirection: "
|
|
5933
|
+
readonly flexDirection: "row";
|
|
5787
5934
|
readonly position: "relative";
|
|
5788
5935
|
readonly zIndex: 1;
|
|
5789
5936
|
readonly alignSelf: "flex-start";
|
|
5790
5937
|
readonly flexGrow: 0;
|
|
5791
5938
|
readonly flexShrink: 0;
|
|
5939
|
+
readonly display: "flex";
|
|
5940
|
+
readonly gap: 12;
|
|
5941
|
+
readonly alignItems: "center";
|
|
5942
|
+
readonly justifyContent: "center";
|
|
5943
|
+
readonly marginVertical: "12@vs";
|
|
5944
|
+
readonly marginHorizontal: "24@s";
|
|
5792
5945
|
};
|
|
5793
5946
|
};
|
|
5794
5947
|
readonly types: {};
|
|
@@ -5801,6 +5954,7 @@ export declare const patterns: readonly [{
|
|
|
5801
5954
|
readonly scrollable: "boolean";
|
|
5802
5955
|
readonly style: {
|
|
5803
5956
|
readonly flexDirection: readonly ["row", "column"];
|
|
5957
|
+
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
5804
5958
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
5805
5959
|
readonly justifyContent: readonly ["flex-start", "center", "flex-end", "space-between", "space-around", "space-evenly"];
|
|
5806
5960
|
readonly gap: "size";
|
|
@@ -5943,6 +6097,13 @@ export declare const patterns: readonly [{
|
|
|
5943
6097
|
readonly specialCategory: null;
|
|
5944
6098
|
readonly sort: 4;
|
|
5945
6099
|
};
|
|
6100
|
+
readonly flexWrap: {
|
|
6101
|
+
readonly label: "Flex Wrap";
|
|
6102
|
+
readonly description: "Controls whether flex items wrap to multiple lines.";
|
|
6103
|
+
readonly category: "container";
|
|
6104
|
+
readonly specialCategory: null;
|
|
6105
|
+
readonly sort: 4.5;
|
|
6106
|
+
};
|
|
5946
6107
|
readonly alignItems: {
|
|
5947
6108
|
readonly label: "Align Items";
|
|
5948
6109
|
readonly description: "Controls cross-axis alignment.";
|
|
@@ -6215,6 +6376,7 @@ export declare const patterns: readonly [{
|
|
|
6215
6376
|
readonly fontWeight: "fontWeight";
|
|
6216
6377
|
readonly textAlign: readonly ["left", "center", "right", "justify"];
|
|
6217
6378
|
readonly flexDirection: readonly ["row", "column"];
|
|
6379
|
+
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
6218
6380
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
6219
6381
|
readonly justifyContent: readonly ["flex-start", "center", "flex-end", "space-between", "space-around", "space-evenly"];
|
|
6220
6382
|
readonly gap: "size";
|
|
@@ -6329,6 +6491,13 @@ export declare const patterns: readonly [{
|
|
|
6329
6491
|
readonly specialCategory: null;
|
|
6330
6492
|
readonly sort: 4;
|
|
6331
6493
|
};
|
|
6494
|
+
readonly flexWrap: {
|
|
6495
|
+
readonly label: "Flex Wrap";
|
|
6496
|
+
readonly description: "Controls whether flex items wrap to multiple lines.";
|
|
6497
|
+
readonly category: "container";
|
|
6498
|
+
readonly specialCategory: null;
|
|
6499
|
+
readonly sort: 4.5;
|
|
6500
|
+
};
|
|
6332
6501
|
readonly alignItems: {
|
|
6333
6502
|
readonly label: "Align Items";
|
|
6334
6503
|
readonly description: "Controls cross-axis alignment.";
|
|
@@ -6660,12 +6829,16 @@ export declare const patterns: readonly [{
|
|
|
6660
6829
|
};
|
|
6661
6830
|
readonly defaults: {
|
|
6662
6831
|
readonly style: {
|
|
6663
|
-
readonly flexDirection: "
|
|
6832
|
+
readonly flexDirection: "row";
|
|
6664
6833
|
readonly position: "relative";
|
|
6665
6834
|
readonly zIndex: 1;
|
|
6666
6835
|
readonly alignSelf: "flex-start";
|
|
6667
6836
|
readonly flexGrow: 0;
|
|
6668
6837
|
readonly flexShrink: 0;
|
|
6838
|
+
readonly flexWrap: "wrap";
|
|
6839
|
+
readonly alignItems: "center";
|
|
6840
|
+
readonly justifyContent: "center";
|
|
6841
|
+
readonly textAlign: "center";
|
|
6669
6842
|
readonly paddingHorizontal: "24@s";
|
|
6670
6843
|
};
|
|
6671
6844
|
};
|
|
@@ -6685,6 +6858,7 @@ export declare const patterns: readonly [{
|
|
|
6685
6858
|
readonly scrollable: "boolean";
|
|
6686
6859
|
readonly style: {
|
|
6687
6860
|
readonly flexDirection: readonly ["row", "column"];
|
|
6861
|
+
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
6688
6862
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
6689
6863
|
readonly justifyContent: readonly ["flex-start", "center", "flex-end", "space-between", "space-around", "space-evenly"];
|
|
6690
6864
|
readonly gap: "size";
|
|
@@ -6788,6 +6962,13 @@ export declare const patterns: readonly [{
|
|
|
6788
6962
|
readonly specialCategory: null;
|
|
6789
6963
|
readonly sort: 4;
|
|
6790
6964
|
};
|
|
6965
|
+
readonly flexWrap: {
|
|
6966
|
+
readonly label: "Flex Wrap";
|
|
6967
|
+
readonly description: "Controls whether flex items wrap to multiple lines.";
|
|
6968
|
+
readonly category: "container";
|
|
6969
|
+
readonly specialCategory: null;
|
|
6970
|
+
readonly sort: 4.5;
|
|
6971
|
+
};
|
|
6791
6972
|
readonly alignItems: {
|
|
6792
6973
|
readonly label: "Align Items";
|
|
6793
6974
|
readonly description: "Controls cross-axis alignment.";
|
|
@@ -7069,6 +7250,7 @@ export declare const patterns: readonly [{
|
|
|
7069
7250
|
readonly scrollable: "boolean";
|
|
7070
7251
|
readonly style: {
|
|
7071
7252
|
readonly flexDirection: readonly ["row", "column"];
|
|
7253
|
+
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
7072
7254
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
7073
7255
|
readonly justifyContent: readonly ["flex-start", "center", "flex-end", "space-between", "space-around", "space-evenly"];
|
|
7074
7256
|
readonly gap: "size";
|
|
@@ -7172,6 +7354,13 @@ export declare const patterns: readonly [{
|
|
|
7172
7354
|
readonly specialCategory: null;
|
|
7173
7355
|
readonly sort: 3;
|
|
7174
7356
|
};
|
|
7357
|
+
readonly flexWrap: {
|
|
7358
|
+
readonly label: "Flex Wrap";
|
|
7359
|
+
readonly description: "Controls whether flex items wrap to multiple lines.";
|
|
7360
|
+
readonly category: "container";
|
|
7361
|
+
readonly specialCategory: null;
|
|
7362
|
+
readonly sort: 4.5;
|
|
7363
|
+
};
|
|
7175
7364
|
readonly alignItems: {
|
|
7176
7365
|
readonly label: "Align Items";
|
|
7177
7366
|
readonly description: "Controls cross-axis alignment.";
|
|
@@ -7437,6 +7626,7 @@ export declare const patterns: readonly [{
|
|
|
7437
7626
|
readonly scrollable: "boolean";
|
|
7438
7627
|
readonly style: {
|
|
7439
7628
|
readonly flexDirection: readonly ["row", "column"];
|
|
7629
|
+
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
7440
7630
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
7441
7631
|
readonly justifyContent: readonly ["flex-start", "center", "flex-end", "space-between", "space-around", "space-evenly"];
|
|
7442
7632
|
readonly gap: "size";
|
|
@@ -7538,6 +7728,13 @@ export declare const patterns: readonly [{
|
|
|
7538
7728
|
readonly specialCategory: null;
|
|
7539
7729
|
readonly sort: 4;
|
|
7540
7730
|
};
|
|
7731
|
+
readonly flexWrap: {
|
|
7732
|
+
readonly label: "Flex Wrap";
|
|
7733
|
+
readonly description: "Controls whether flex items wrap to multiple lines.";
|
|
7734
|
+
readonly category: "container";
|
|
7735
|
+
readonly specialCategory: null;
|
|
7736
|
+
readonly sort: 4.5;
|
|
7737
|
+
};
|
|
7541
7738
|
readonly alignItems: {
|
|
7542
7739
|
readonly label: "Align Items";
|
|
7543
7740
|
readonly description: "Controls cross-axis alignment.";
|
|
@@ -7808,6 +8005,7 @@ export declare const patterns: readonly [{
|
|
|
7808
8005
|
readonly fontWeight: "fontWeight";
|
|
7809
8006
|
readonly textAlign: readonly ["left", "center", "right", "justify"];
|
|
7810
8007
|
readonly flexDirection: readonly ["row", "column"];
|
|
8008
|
+
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
7811
8009
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
7812
8010
|
readonly justifyContent: readonly ["flex-start", "center", "flex-end", "space-between", "space-around", "space-evenly"];
|
|
7813
8011
|
readonly gap: "size";
|
|
@@ -7915,6 +8113,13 @@ export declare const patterns: readonly [{
|
|
|
7915
8113
|
readonly specialCategory: null;
|
|
7916
8114
|
readonly sort: 4;
|
|
7917
8115
|
};
|
|
8116
|
+
readonly flexWrap: {
|
|
8117
|
+
readonly label: "Flex Wrap";
|
|
8118
|
+
readonly description: "Controls whether flex items wrap to multiple lines.";
|
|
8119
|
+
readonly category: "container";
|
|
8120
|
+
readonly specialCategory: null;
|
|
8121
|
+
readonly sort: 4.5;
|
|
8122
|
+
};
|
|
7918
8123
|
readonly alignItems: {
|
|
7919
8124
|
readonly label: "Align Items";
|
|
7920
8125
|
readonly description: "Controls cross-axis alignment.";
|
|
@@ -8225,6 +8430,7 @@ export declare const patterns: readonly [{
|
|
|
8225
8430
|
readonly fontWeight: "fontWeight";
|
|
8226
8431
|
readonly textAlign: readonly ["left", "center", "right", "justify"];
|
|
8227
8432
|
readonly flexDirection: readonly ["row", "column"];
|
|
8433
|
+
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
8228
8434
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
8229
8435
|
readonly justifyContent: readonly ["flex-start", "center", "flex-end", "space-between", "space-around", "space-evenly"];
|
|
8230
8436
|
readonly gap: "size";
|
|
@@ -8332,6 +8538,13 @@ export declare const patterns: readonly [{
|
|
|
8332
8538
|
readonly specialCategory: null;
|
|
8333
8539
|
readonly sort: 4;
|
|
8334
8540
|
};
|
|
8541
|
+
readonly flexWrap: {
|
|
8542
|
+
readonly label: "Flex Wrap";
|
|
8543
|
+
readonly description: "Controls whether flex items wrap to multiple lines.";
|
|
8544
|
+
readonly category: "container";
|
|
8545
|
+
readonly specialCategory: null;
|
|
8546
|
+
readonly sort: 4.5;
|
|
8547
|
+
};
|
|
8335
8548
|
readonly alignItems: {
|
|
8336
8549
|
readonly label: "Align Items";
|
|
8337
8550
|
readonly description: "Controls cross-axis alignment.";
|
|
@@ -8639,6 +8852,7 @@ export declare const patterns: readonly [{
|
|
|
8639
8852
|
readonly scrollable: "boolean";
|
|
8640
8853
|
readonly style: {
|
|
8641
8854
|
readonly flexDirection: readonly ["row", "column"];
|
|
8855
|
+
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
8642
8856
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
8643
8857
|
readonly justifyContent: readonly ["flex-start", "center", "flex-end", "space-between", "space-around", "space-evenly"];
|
|
8644
8858
|
readonly gap: "size";
|
|
@@ -8762,6 +8976,13 @@ export declare const patterns: readonly [{
|
|
|
8762
8976
|
readonly specialCategory: null;
|
|
8763
8977
|
readonly sort: 4;
|
|
8764
8978
|
};
|
|
8979
|
+
readonly flexWrap: {
|
|
8980
|
+
readonly label: "Flex Wrap";
|
|
8981
|
+
readonly description: "Controls whether flex items wrap to multiple lines.";
|
|
8982
|
+
readonly category: "container";
|
|
8983
|
+
readonly specialCategory: null;
|
|
8984
|
+
readonly sort: 4.5;
|
|
8985
|
+
};
|
|
8765
8986
|
readonly alignItems: {
|
|
8766
8987
|
readonly label: "Align Items";
|
|
8767
8988
|
readonly description: "Controls cross-axis alignment.";
|
|
@@ -9037,6 +9258,7 @@ export declare const patterns: readonly [{
|
|
|
9037
9258
|
readonly fontWeight: "fontWeight";
|
|
9038
9259
|
readonly textAlign: readonly ["left", "center", "right", "justify"];
|
|
9039
9260
|
readonly flexDirection: readonly ["row", "column"];
|
|
9261
|
+
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
9040
9262
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
9041
9263
|
readonly justifyContent: readonly ["flex-start", "center", "flex-end", "space-between", "space-around", "space-evenly"];
|
|
9042
9264
|
readonly gap: "size";
|
|
@@ -9182,6 +9404,13 @@ export declare const patterns: readonly [{
|
|
|
9182
9404
|
readonly specialCategory: null;
|
|
9183
9405
|
readonly sort: 4;
|
|
9184
9406
|
};
|
|
9407
|
+
readonly flexWrap: {
|
|
9408
|
+
readonly label: "Flex Wrap";
|
|
9409
|
+
readonly description: "Controls whether flex items wrap to multiple lines.";
|
|
9410
|
+
readonly category: "container";
|
|
9411
|
+
readonly specialCategory: null;
|
|
9412
|
+
readonly sort: 4.5;
|
|
9413
|
+
};
|
|
9185
9414
|
readonly alignItems: {
|
|
9186
9415
|
readonly label: "Align Items";
|
|
9187
9416
|
readonly description: "Controls cross-axis alignment.";
|
|
@@ -9482,6 +9711,7 @@ export declare const patterns: readonly [{
|
|
|
9482
9711
|
readonly fontWeight: "fontWeight";
|
|
9483
9712
|
readonly textAlign: readonly ["left", "center", "right", "justify"];
|
|
9484
9713
|
readonly flexDirection: readonly ["row", "column"];
|
|
9714
|
+
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
9485
9715
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
9486
9716
|
readonly justifyContent: readonly ["flex-start", "center", "flex-end", "space-between", "space-around", "space-evenly"];
|
|
9487
9717
|
readonly gap: "size";
|
|
@@ -9596,6 +9826,13 @@ export declare const patterns: readonly [{
|
|
|
9596
9826
|
readonly specialCategory: null;
|
|
9597
9827
|
readonly sort: 4;
|
|
9598
9828
|
};
|
|
9829
|
+
readonly flexWrap: {
|
|
9830
|
+
readonly label: "Flex Wrap";
|
|
9831
|
+
readonly description: "Controls whether flex items wrap to multiple lines.";
|
|
9832
|
+
readonly category: "container";
|
|
9833
|
+
readonly specialCategory: null;
|
|
9834
|
+
readonly sort: 4.5;
|
|
9835
|
+
};
|
|
9599
9836
|
readonly alignItems: {
|
|
9600
9837
|
readonly label: "Align Items";
|
|
9601
9838
|
readonly description: "Controls cross-axis alignment.";
|
|
@@ -9896,6 +10133,7 @@ export declare const patterns: readonly [{
|
|
|
9896
10133
|
readonly scrollable: "boolean";
|
|
9897
10134
|
readonly style: {
|
|
9898
10135
|
readonly flexDirection: readonly ["row", "column"];
|
|
10136
|
+
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
9899
10137
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
9900
10138
|
readonly justifyContent: readonly ["flex-start", "center", "flex-end", "space-between", "space-around", "space-evenly"];
|
|
9901
10139
|
readonly gap: "size";
|
|
@@ -9995,6 +10233,13 @@ export declare const patterns: readonly [{
|
|
|
9995
10233
|
readonly specialCategory: null;
|
|
9996
10234
|
readonly sort: 4;
|
|
9997
10235
|
};
|
|
10236
|
+
readonly flexWrap: {
|
|
10237
|
+
readonly label: "Flex Wrap";
|
|
10238
|
+
readonly description: "Controls whether flex items wrap to multiple lines.";
|
|
10239
|
+
readonly category: "container";
|
|
10240
|
+
readonly specialCategory: null;
|
|
10241
|
+
readonly sort: 4.5;
|
|
10242
|
+
};
|
|
9998
10243
|
readonly alignItems: {
|
|
9999
10244
|
readonly label: "Align Items";
|
|
10000
10245
|
readonly description: "Controls cross-axis alignment.";
|
|
@@ -10255,6 +10500,7 @@ export declare const patterns: readonly [{
|
|
|
10255
10500
|
readonly scrollable: "boolean";
|
|
10256
10501
|
readonly style: {
|
|
10257
10502
|
readonly flexDirection: readonly ["row", "column"];
|
|
10503
|
+
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
10258
10504
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
10259
10505
|
readonly justifyContent: readonly ["flex-start", "center", "flex-end", "space-between", "space-around", "space-evenly"];
|
|
10260
10506
|
readonly gap: "size";
|
|
@@ -10355,6 +10601,13 @@ export declare const patterns: readonly [{
|
|
|
10355
10601
|
readonly specialCategory: null;
|
|
10356
10602
|
readonly sort: 4;
|
|
10357
10603
|
};
|
|
10604
|
+
readonly flexWrap: {
|
|
10605
|
+
readonly label: "Flex Wrap";
|
|
10606
|
+
readonly description: "Controls whether flex items wrap to multiple lines.";
|
|
10607
|
+
readonly category: "container";
|
|
10608
|
+
readonly specialCategory: null;
|
|
10609
|
+
readonly sort: 4.5;
|
|
10610
|
+
};
|
|
10358
10611
|
readonly alignItems: {
|
|
10359
10612
|
readonly label: "Align Items";
|
|
10360
10613
|
readonly description: "Controls cross-axis alignment.";
|
|
@@ -10629,6 +10882,7 @@ export declare const patterns: readonly [{
|
|
|
10629
10882
|
readonly fontSize: "size";
|
|
10630
10883
|
readonly fontWeight: readonly ["normal", "bold", "100", "200", "300", "400", "500", "600", "700", "800", "900"];
|
|
10631
10884
|
readonly flexDirection: readonly ["row", "column"];
|
|
10885
|
+
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
10632
10886
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
10633
10887
|
readonly justifyContent: readonly ["flex-start", "center", "flex-end", "space-between", "space-around", "space-evenly"];
|
|
10634
10888
|
readonly gap: "size";
|
|
@@ -10748,6 +11002,13 @@ export declare const patterns: readonly [{
|
|
|
10748
11002
|
readonly specialCategory: null;
|
|
10749
11003
|
readonly sort: 4;
|
|
10750
11004
|
};
|
|
11005
|
+
readonly flexWrap: {
|
|
11006
|
+
readonly label: "Flex Wrap";
|
|
11007
|
+
readonly description: "Controls whether flex items wrap to multiple lines.";
|
|
11008
|
+
readonly category: "container";
|
|
11009
|
+
readonly specialCategory: null;
|
|
11010
|
+
readonly sort: 4.5;
|
|
11011
|
+
};
|
|
10751
11012
|
readonly alignItems: {
|
|
10752
11013
|
readonly label: "Align Items";
|
|
10753
11014
|
readonly description: "Controls cross-axis alignment.";
|
|
@@ -11015,6 +11276,7 @@ export declare const patterns: readonly [{
|
|
|
11015
11276
|
readonly scrollable: "boolean";
|
|
11016
11277
|
readonly style: {
|
|
11017
11278
|
readonly flexDirection: readonly ["row", "column"];
|
|
11279
|
+
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
11018
11280
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
11019
11281
|
readonly justifyContent: readonly ["flex-start", "center", "flex-end", "space-between", "space-around", "space-evenly"];
|
|
11020
11282
|
readonly gap: "size";
|
|
@@ -11131,6 +11393,13 @@ export declare const patterns: readonly [{
|
|
|
11131
11393
|
readonly specialCategory: null;
|
|
11132
11394
|
readonly sort: 4;
|
|
11133
11395
|
};
|
|
11396
|
+
readonly flexWrap: {
|
|
11397
|
+
readonly label: "Flex Wrap";
|
|
11398
|
+
readonly description: "Controls whether flex items wrap to multiple lines.";
|
|
11399
|
+
readonly category: "container";
|
|
11400
|
+
readonly specialCategory: null;
|
|
11401
|
+
readonly sort: 4.5;
|
|
11402
|
+
};
|
|
11134
11403
|
readonly alignItems: {
|
|
11135
11404
|
readonly label: "Align Items";
|
|
11136
11405
|
readonly description: "Controls cross-axis alignment.";
|
|
@@ -11395,6 +11664,7 @@ export declare const patterns: readonly [{
|
|
|
11395
11664
|
readonly scrollable: "boolean";
|
|
11396
11665
|
readonly style: {
|
|
11397
11666
|
readonly flexDirection: readonly ["row", "column"];
|
|
11667
|
+
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
11398
11668
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
11399
11669
|
readonly justifyContent: readonly ["flex-start", "center", "flex-end", "space-between", "space-around", "space-evenly"];
|
|
11400
11670
|
readonly gap: "size";
|
|
@@ -11501,6 +11771,13 @@ export declare const patterns: readonly [{
|
|
|
11501
11771
|
readonly specialCategory: null;
|
|
11502
11772
|
readonly sort: 4;
|
|
11503
11773
|
};
|
|
11774
|
+
readonly flexWrap: {
|
|
11775
|
+
readonly label: "Flex Wrap";
|
|
11776
|
+
readonly description: "Controls whether flex items wrap to multiple lines.";
|
|
11777
|
+
readonly category: "container";
|
|
11778
|
+
readonly specialCategory: null;
|
|
11779
|
+
readonly sort: 4.5;
|
|
11780
|
+
};
|
|
11504
11781
|
readonly alignItems: {
|
|
11505
11782
|
readonly label: "Align Items";
|
|
11506
11783
|
readonly description: "Controls cross-axis alignment.";
|
|
@@ -11810,6 +12087,7 @@ export declare const patterns: readonly [{
|
|
|
11810
12087
|
readonly scrollable: "boolean";
|
|
11811
12088
|
readonly style: {
|
|
11812
12089
|
readonly flexDirection: readonly ["row", "column"];
|
|
12090
|
+
readonly flexWrap: readonly ["nowrap", "wrap", "wrap-reverse"];
|
|
11813
12091
|
readonly alignItems: readonly ["flex-start", "center", "flex-end", "stretch", "baseline"];
|
|
11814
12092
|
readonly justifyContent: readonly ["flex-start", "center", "flex-end", "space-between", "space-around", "space-evenly"];
|
|
11815
12093
|
readonly gap: "size";
|
|
@@ -11907,6 +12185,13 @@ export declare const patterns: readonly [{
|
|
|
11907
12185
|
readonly specialCategory: null;
|
|
11908
12186
|
readonly sort: 4;
|
|
11909
12187
|
};
|
|
12188
|
+
readonly flexWrap: {
|
|
12189
|
+
readonly label: "Flex Wrap";
|
|
12190
|
+
readonly description: "Controls whether flex items wrap to multiple lines.";
|
|
12191
|
+
readonly category: "container";
|
|
12192
|
+
readonly specialCategory: null;
|
|
12193
|
+
readonly sort: 4.5;
|
|
12194
|
+
};
|
|
11910
12195
|
readonly alignItems: {
|
|
11911
12196
|
readonly label: "Align Items";
|
|
11912
12197
|
readonly description: "Controls cross-axis alignment.";
|