@rocapine/react-native-onboarding 1.10.0 → 1.11.1
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/onboarding-example.d.ts +109 -15
- package/dist/onboarding-example.d.ts.map +1 -1
- package/dist/onboarding-example.js +44 -1
- package/dist/onboarding-example.js.map +1 -1
- package/dist/steps/ComposableScreen/elements/BaseBoxProps.d.ts +28 -6
- package/dist/steps/ComposableScreen/elements/BaseBoxProps.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/BaseBoxProps.js +11 -2
- package/dist/steps/ComposableScreen/elements/BaseBoxProps.js.map +1 -1
- package/dist/steps/ComposableScreen/elements/ButtonElement.d.ts +22 -10
- package/dist/steps/ComposableScreen/elements/ButtonElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/ButtonElement.js +0 -1
- package/dist/steps/ComposableScreen/elements/ButtonElement.js.map +1 -1
- package/dist/steps/ComposableScreen/elements/CarouselElement.d.ts +67 -0
- package/dist/steps/ComposableScreen/elements/CarouselElement.d.ts.map +1 -0
- package/dist/steps/ComposableScreen/elements/CarouselElement.js +19 -0
- package/dist/steps/ComposableScreen/elements/CarouselElement.js.map +1 -0
- package/dist/steps/ComposableScreen/elements/CheckboxGroupElement.d.ts +17 -4
- package/dist/steps/ComposableScreen/elements/CheckboxGroupElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/DatePickerElement.d.ts +17 -4
- package/dist/steps/ComposableScreen/elements/DatePickerElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/IconElement.d.ts +16 -4
- package/dist/steps/ComposableScreen/elements/IconElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/ImageElement.d.ts +17 -4
- package/dist/steps/ComposableScreen/elements/ImageElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/InputElement.d.ts +22 -4
- package/dist/steps/ComposableScreen/elements/InputElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/InputElement.js +3 -0
- package/dist/steps/ComposableScreen/elements/InputElement.js.map +1 -1
- package/dist/steps/ComposableScreen/elements/LottieElement.d.ts +17 -4
- package/dist/steps/ComposableScreen/elements/LottieElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/RadioGroupElement.d.ts +17 -4
- package/dist/steps/ComposableScreen/elements/RadioGroupElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/RiveElement.d.ts +19 -6
- package/dist/steps/ComposableScreen/elements/RiveElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/RiveElement.js +1 -1
- package/dist/steps/ComposableScreen/elements/StackElement.d.ts +31 -50
- package/dist/steps/ComposableScreen/elements/StackElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/StackElement.js +2 -22
- package/dist/steps/ComposableScreen/elements/StackElement.js.map +1 -1
- package/dist/steps/ComposableScreen/elements/TextElement.d.ts +35 -23
- package/dist/steps/ComposableScreen/elements/TextElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/TextElement.js +2 -12
- package/dist/steps/ComposableScreen/elements/TextElement.js.map +1 -1
- package/dist/steps/ComposableScreen/elements/VideoElement.d.ts +17 -4
- package/dist/steps/ComposableScreen/elements/VideoElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/types.d.ts +8 -0
- package/dist/steps/ComposableScreen/types.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/types.js +8 -0
- package/dist/steps/ComposableScreen/types.js.map +1 -1
- package/package.json +1 -1
- package/src/onboarding-example.ts +44 -1
- package/src/steps/ComposableScreen/elements/BaseBoxProps.ts +22 -4
- package/src/steps/ComposableScreen/elements/ButtonElement.ts +0 -2
- package/src/steps/ComposableScreen/elements/CarouselElement.ts +30 -0
- package/src/steps/ComposableScreen/elements/InputElement.ts +6 -0
- package/src/steps/ComposableScreen/elements/RiveElement.ts +2 -2
- package/src/steps/ComposableScreen/elements/StackElement.ts +3 -44
- package/src/steps/ComposableScreen/elements/TextElement.ts +3 -24
- package/src/steps/ComposableScreen/types.ts +16 -0
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
import { BaseBoxProps } from "./BaseBoxProps";
|
|
3
|
+
export type CarouselElementProps = BaseBoxProps & {
|
|
4
|
+
carouselType?: "left-align" | "normal" | "parallax" | "stack";
|
|
5
|
+
autoPlay?: boolean;
|
|
6
|
+
autoPlayInterval?: number;
|
|
7
|
+
loop?: boolean;
|
|
8
|
+
showDots?: boolean;
|
|
9
|
+
dotColor?: string;
|
|
10
|
+
activeDotColor?: string;
|
|
11
|
+
dotWidth?: number;
|
|
12
|
+
dotHeight?: number;
|
|
13
|
+
dotsGap?: number;
|
|
14
|
+
dotsMarginTop?: number;
|
|
15
|
+
};
|
|
16
|
+
export declare const CarouselElementPropsSchema: z.ZodObject<{
|
|
17
|
+
width: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
|
|
18
|
+
height: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
|
|
19
|
+
minWidth: z.ZodOptional<z.ZodNumber>;
|
|
20
|
+
maxWidth: z.ZodOptional<z.ZodNumber>;
|
|
21
|
+
minHeight: z.ZodOptional<z.ZodNumber>;
|
|
22
|
+
maxHeight: z.ZodOptional<z.ZodNumber>;
|
|
23
|
+
flex: z.ZodOptional<z.ZodNumber>;
|
|
24
|
+
flexShrink: z.ZodOptional<z.ZodNumber>;
|
|
25
|
+
flexGrow: z.ZodOptional<z.ZodNumber>;
|
|
26
|
+
alignSelf: z.ZodOptional<z.ZodEnum<{
|
|
27
|
+
auto: "auto";
|
|
28
|
+
"flex-start": "flex-start";
|
|
29
|
+
"flex-end": "flex-end";
|
|
30
|
+
center: "center";
|
|
31
|
+
stretch: "stretch";
|
|
32
|
+
baseline: "baseline";
|
|
33
|
+
}>>;
|
|
34
|
+
opacity: z.ZodOptional<z.ZodNumber>;
|
|
35
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
36
|
+
overflow: z.ZodOptional<z.ZodEnum<{
|
|
37
|
+
hidden: "hidden";
|
|
38
|
+
visible: "visible";
|
|
39
|
+
scroll: "scroll";
|
|
40
|
+
}>>;
|
|
41
|
+
margin: z.ZodOptional<z.ZodNumber>;
|
|
42
|
+
marginHorizontal: z.ZodOptional<z.ZodNumber>;
|
|
43
|
+
marginVertical: z.ZodOptional<z.ZodNumber>;
|
|
44
|
+
padding: z.ZodOptional<z.ZodNumber>;
|
|
45
|
+
paddingHorizontal: z.ZodOptional<z.ZodNumber>;
|
|
46
|
+
paddingVertical: z.ZodOptional<z.ZodNumber>;
|
|
47
|
+
borderWidth: z.ZodOptional<z.ZodNumber>;
|
|
48
|
+
borderRadius: z.ZodOptional<z.ZodNumber>;
|
|
49
|
+
borderColor: z.ZodOptional<z.ZodString>;
|
|
50
|
+
carouselType: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
51
|
+
"left-align": "left-align";
|
|
52
|
+
normal: "normal";
|
|
53
|
+
parallax: "parallax";
|
|
54
|
+
stack: "stack";
|
|
55
|
+
}>>>;
|
|
56
|
+
autoPlay: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
57
|
+
autoPlayInterval: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
58
|
+
loop: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
59
|
+
showDots: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
60
|
+
dotColor: z.ZodOptional<z.ZodString>;
|
|
61
|
+
activeDotColor: z.ZodOptional<z.ZodString>;
|
|
62
|
+
dotWidth: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
63
|
+
dotHeight: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
64
|
+
dotsGap: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
65
|
+
dotsMarginTop: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
66
|
+
}, z.core.$strip>;
|
|
67
|
+
//# sourceMappingURL=CarouselElement.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CarouselElement.d.ts","sourceRoot":"","sources":["../../../../src/steps/ComposableScreen/elements/CarouselElement.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,YAAY,EAAsB,MAAM,gBAAgB,CAAC;AAElE,MAAM,MAAM,oBAAoB,GAAG,YAAY,GAAG;IAChD,YAAY,CAAC,EAAE,YAAY,GAAG,QAAQ,GAAG,UAAU,GAAG,OAAO,CAAC;IAC9D,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB,CAAC;AAEF,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAYrC,CAAC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CarouselElementPropsSchema = void 0;
|
|
4
|
+
const zod_1 = require("zod");
|
|
5
|
+
const BaseBoxProps_1 = require("./BaseBoxProps");
|
|
6
|
+
exports.CarouselElementPropsSchema = BaseBoxProps_1.BaseBoxPropsSchema.extend({
|
|
7
|
+
carouselType: zod_1.z.enum(["left-align", "normal", "parallax", "stack"]).optional().default("normal"),
|
|
8
|
+
autoPlay: zod_1.z.boolean().optional().default(false),
|
|
9
|
+
autoPlayInterval: zod_1.z.number().nonnegative().optional().default(3000),
|
|
10
|
+
loop: zod_1.z.boolean().optional().default(true),
|
|
11
|
+
showDots: zod_1.z.boolean().optional().default(true),
|
|
12
|
+
dotColor: zod_1.z.string().optional(),
|
|
13
|
+
activeDotColor: zod_1.z.string().optional(),
|
|
14
|
+
dotWidth: zod_1.z.number().nonnegative().optional().default(20),
|
|
15
|
+
dotHeight: zod_1.z.number().nonnegative().optional().default(4),
|
|
16
|
+
dotsGap: zod_1.z.number().nonnegative().optional().default(8),
|
|
17
|
+
dotsMarginTop: zod_1.z.number().optional().default(12),
|
|
18
|
+
});
|
|
19
|
+
//# sourceMappingURL=CarouselElement.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CarouselElement.js","sourceRoot":"","sources":["../../../../src/steps/ComposableScreen/elements/CarouselElement.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,iDAAkE;AAgBrD,QAAA,0BAA0B,GAAG,iCAAkB,CAAC,MAAM,CAAC;IAClE,YAAY,EAAE,OAAC,CAAC,IAAI,CAAC,CAAC,YAAY,EAAE,QAAQ,EAAE,UAAU,EAAE,OAAO,CAAC,CAAC,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,QAAQ,CAAC;IAChG,QAAQ,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,KAAK,CAAC;IAC/C,gBAAgB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,WAAW,EAAE,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC;IACnE,IAAI,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC;IAC1C,QAAQ,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC;IAC9C,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC/B,cAAc,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACrC,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,WAAW,EAAE,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,EAAE,CAAC;IACzD,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,WAAW,EAAE,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,CAAC,CAAC;IACzD,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,WAAW,EAAE,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,CAAC,CAAC;IACvD,aAAa,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,EAAE,CAAC;CACjD,CAAC,CAAC"}
|
|
@@ -25,17 +25,30 @@ export type CheckboxGroupElementProps = BaseBoxProps & {
|
|
|
25
25
|
itemPaddingVertical?: number;
|
|
26
26
|
};
|
|
27
27
|
export declare const CheckboxGroupElementPropsSchema: z.ZodObject<{
|
|
28
|
-
width: z.ZodOptional<z.ZodNumber
|
|
29
|
-
height: z.ZodOptional<z.ZodNumber
|
|
28
|
+
width: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
|
|
29
|
+
height: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
|
|
30
|
+
minWidth: z.ZodOptional<z.ZodNumber>;
|
|
31
|
+
maxWidth: z.ZodOptional<z.ZodNumber>;
|
|
32
|
+
minHeight: z.ZodOptional<z.ZodNumber>;
|
|
33
|
+
maxHeight: z.ZodOptional<z.ZodNumber>;
|
|
34
|
+
flex: z.ZodOptional<z.ZodNumber>;
|
|
35
|
+
flexShrink: z.ZodOptional<z.ZodNumber>;
|
|
36
|
+
flexGrow: z.ZodOptional<z.ZodNumber>;
|
|
30
37
|
alignSelf: z.ZodOptional<z.ZodEnum<{
|
|
38
|
+
auto: "auto";
|
|
31
39
|
"flex-start": "flex-start";
|
|
32
|
-
center: "center";
|
|
33
40
|
"flex-end": "flex-end";
|
|
41
|
+
center: "center";
|
|
34
42
|
stretch: "stretch";
|
|
35
|
-
auto: "auto";
|
|
36
43
|
baseline: "baseline";
|
|
37
44
|
}>>;
|
|
38
45
|
opacity: z.ZodOptional<z.ZodNumber>;
|
|
46
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
47
|
+
overflow: z.ZodOptional<z.ZodEnum<{
|
|
48
|
+
hidden: "hidden";
|
|
49
|
+
visible: "visible";
|
|
50
|
+
scroll: "scroll";
|
|
51
|
+
}>>;
|
|
39
52
|
margin: z.ZodOptional<z.ZodNumber>;
|
|
40
53
|
marginHorizontal: z.ZodOptional<z.ZodNumber>;
|
|
41
54
|
marginVertical: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CheckboxGroupElement.d.ts","sourceRoot":"","sources":["../../../../src/steps/ComposableScreen/elements/CheckboxGroupElement.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,YAAY,EAAsB,MAAM,gBAAgB,CAAC;AAElE,MAAM,MAAM,yBAAyB,GAAG,YAAY,GAAG;IACrD,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,aAAa,CAAC,EAAE,MAAM,EAAE,CAAC;IACzB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,SAAS,CAAC,EAAE,UAAU,GAAG,YAAY,CAAC;IACtC,KAAK,EAAE,KAAK,CAAC;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IAC/C,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,2BAA2B,CAAC,EAAE,MAAM,CAAC;IACrC,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,uBAAuB,CAAC,EAAE,MAAM,CAAC;IACjC,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAC/B,mBAAmB,CAAC,EAAE,MAAM,CAAC;CAC9B,CAAC;AAEF,eAAO,MAAM,+BAA+B
|
|
1
|
+
{"version":3,"file":"CheckboxGroupElement.d.ts","sourceRoot":"","sources":["../../../../src/steps/ComposableScreen/elements/CheckboxGroupElement.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,YAAY,EAAsB,MAAM,gBAAgB,CAAC;AAElE,MAAM,MAAM,yBAAyB,GAAG,YAAY,GAAG;IACrD,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,aAAa,CAAC,EAAE,MAAM,EAAE,CAAC;IACzB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,SAAS,CAAC,EAAE,UAAU,GAAG,YAAY,CAAC;IACtC,KAAK,EAAE,KAAK,CAAC;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IAC/C,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,2BAA2B,CAAC,EAAE,MAAM,CAAC;IACrC,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,uBAAuB,CAAC,EAAE,MAAM,CAAC;IACjC,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAC/B,mBAAmB,CAAC,EAAE,MAAM,CAAC;CAC9B,CAAC;AAEF,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAiC1C,CAAC"}
|
|
@@ -12,17 +12,30 @@ export type DatePickerElementProps = BaseBoxProps & {
|
|
|
12
12
|
locale?: string;
|
|
13
13
|
};
|
|
14
14
|
export declare const DatePickerElementPropsSchema: z.ZodObject<{
|
|
15
|
-
width: z.ZodOptional<z.ZodNumber
|
|
16
|
-
height: z.ZodOptional<z.ZodNumber
|
|
15
|
+
width: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
|
|
16
|
+
height: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
|
|
17
|
+
minWidth: z.ZodOptional<z.ZodNumber>;
|
|
18
|
+
maxWidth: z.ZodOptional<z.ZodNumber>;
|
|
19
|
+
minHeight: z.ZodOptional<z.ZodNumber>;
|
|
20
|
+
maxHeight: z.ZodOptional<z.ZodNumber>;
|
|
21
|
+
flex: z.ZodOptional<z.ZodNumber>;
|
|
22
|
+
flexShrink: z.ZodOptional<z.ZodNumber>;
|
|
23
|
+
flexGrow: z.ZodOptional<z.ZodNumber>;
|
|
17
24
|
alignSelf: z.ZodOptional<z.ZodEnum<{
|
|
25
|
+
auto: "auto";
|
|
18
26
|
"flex-start": "flex-start";
|
|
19
|
-
center: "center";
|
|
20
27
|
"flex-end": "flex-end";
|
|
28
|
+
center: "center";
|
|
21
29
|
stretch: "stretch";
|
|
22
|
-
auto: "auto";
|
|
23
30
|
baseline: "baseline";
|
|
24
31
|
}>>;
|
|
25
32
|
opacity: z.ZodOptional<z.ZodNumber>;
|
|
33
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
34
|
+
overflow: z.ZodOptional<z.ZodEnum<{
|
|
35
|
+
hidden: "hidden";
|
|
36
|
+
visible: "visible";
|
|
37
|
+
scroll: "scroll";
|
|
38
|
+
}>>;
|
|
26
39
|
margin: z.ZodOptional<z.ZodNumber>;
|
|
27
40
|
marginHorizontal: z.ZodOptional<z.ZodNumber>;
|
|
28
41
|
marginVertical: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DatePickerElement.d.ts","sourceRoot":"","sources":["../../../../src/steps/ComposableScreen/elements/DatePickerElement.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,YAAY,EAAsB,MAAM,gBAAgB,CAAC;AAElE,MAAM,MAAM,sBAAsB,GAAG,YAAY,GAAG;IAClD,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,UAAU,CAAC;IACpC,OAAO,CAAC,EAAE,SAAS,GAAG,SAAS,GAAG,UAAU,GAAG,OAAO,GAAG,SAAS,GAAG,QAAQ,CAAC;IAC9E,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,eAAO,MAAM,4BAA4B
|
|
1
|
+
{"version":3,"file":"DatePickerElement.d.ts","sourceRoot":"","sources":["../../../../src/steps/ComposableScreen/elements/DatePickerElement.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,YAAY,EAAsB,MAAM,gBAAgB,CAAC;AAElE,MAAM,MAAM,sBAAsB,GAAG,YAAY,GAAG;IAClD,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,UAAU,CAAC;IACpC,OAAO,CAAC,EAAE,SAAS,GAAG,SAAS,GAAG,UAAU,GAAG,OAAO,GAAG,SAAS,GAAG,QAAQ,CAAC;IAC9E,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAUvC,CAAC"}
|
|
@@ -8,17 +8,29 @@ export type IconElementProps = BaseBoxProps & {
|
|
|
8
8
|
backgroundColor?: string;
|
|
9
9
|
};
|
|
10
10
|
export declare const IconElementPropsSchema: z.ZodObject<{
|
|
11
|
-
width: z.ZodOptional<z.ZodNumber
|
|
12
|
-
height: z.ZodOptional<z.ZodNumber
|
|
11
|
+
width: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
|
|
12
|
+
height: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
|
|
13
|
+
minWidth: z.ZodOptional<z.ZodNumber>;
|
|
14
|
+
maxWidth: z.ZodOptional<z.ZodNumber>;
|
|
15
|
+
minHeight: z.ZodOptional<z.ZodNumber>;
|
|
16
|
+
maxHeight: z.ZodOptional<z.ZodNumber>;
|
|
17
|
+
flex: z.ZodOptional<z.ZodNumber>;
|
|
18
|
+
flexShrink: z.ZodOptional<z.ZodNumber>;
|
|
19
|
+
flexGrow: z.ZodOptional<z.ZodNumber>;
|
|
13
20
|
alignSelf: z.ZodOptional<z.ZodEnum<{
|
|
21
|
+
auto: "auto";
|
|
14
22
|
"flex-start": "flex-start";
|
|
15
|
-
center: "center";
|
|
16
23
|
"flex-end": "flex-end";
|
|
24
|
+
center: "center";
|
|
17
25
|
stretch: "stretch";
|
|
18
|
-
auto: "auto";
|
|
19
26
|
baseline: "baseline";
|
|
20
27
|
}>>;
|
|
21
28
|
opacity: z.ZodOptional<z.ZodNumber>;
|
|
29
|
+
overflow: z.ZodOptional<z.ZodEnum<{
|
|
30
|
+
hidden: "hidden";
|
|
31
|
+
visible: "visible";
|
|
32
|
+
scroll: "scroll";
|
|
33
|
+
}>>;
|
|
22
34
|
margin: z.ZodOptional<z.ZodNumber>;
|
|
23
35
|
marginHorizontal: z.ZodOptional<z.ZodNumber>;
|
|
24
36
|
marginVertical: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IconElement.d.ts","sourceRoot":"","sources":["../../../../src/steps/ComposableScreen/elements/IconElement.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,YAAY,EAAsB,MAAM,gBAAgB,CAAC;AAElE,MAAM,MAAM,gBAAgB,GAAG,YAAY,GAAG;IAC5C,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,eAAe,CAAC,EAAE,MAAM,CAAC;CAC1B,CAAC;AAEF,eAAO,MAAM,sBAAsB
|
|
1
|
+
{"version":3,"file":"IconElement.d.ts","sourceRoot":"","sources":["../../../../src/steps/ComposableScreen/elements/IconElement.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,YAAY,EAAsB,MAAM,gBAAgB,CAAC;AAElE,MAAM,MAAM,gBAAgB,GAAG,YAAY,GAAG;IAC5C,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,eAAe,CAAC,EAAE,MAAM,CAAC;CAC1B,CAAC;AAEF,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAMjC,CAAC"}
|
|
@@ -6,17 +6,30 @@ export type ImageElementProps = BaseBoxProps & {
|
|
|
6
6
|
resizeMode?: "cover" | "contain" | "stretch" | "center";
|
|
7
7
|
};
|
|
8
8
|
export declare const ImageElementPropsSchema: z.ZodObject<{
|
|
9
|
-
width: z.ZodOptional<z.ZodNumber
|
|
10
|
-
height: z.ZodOptional<z.ZodNumber
|
|
9
|
+
width: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
|
|
10
|
+
height: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
|
|
11
|
+
minWidth: z.ZodOptional<z.ZodNumber>;
|
|
12
|
+
maxWidth: z.ZodOptional<z.ZodNumber>;
|
|
13
|
+
minHeight: z.ZodOptional<z.ZodNumber>;
|
|
14
|
+
maxHeight: z.ZodOptional<z.ZodNumber>;
|
|
15
|
+
flex: z.ZodOptional<z.ZodNumber>;
|
|
16
|
+
flexShrink: z.ZodOptional<z.ZodNumber>;
|
|
17
|
+
flexGrow: z.ZodOptional<z.ZodNumber>;
|
|
11
18
|
alignSelf: z.ZodOptional<z.ZodEnum<{
|
|
19
|
+
auto: "auto";
|
|
12
20
|
"flex-start": "flex-start";
|
|
13
|
-
center: "center";
|
|
14
21
|
"flex-end": "flex-end";
|
|
22
|
+
center: "center";
|
|
15
23
|
stretch: "stretch";
|
|
16
|
-
auto: "auto";
|
|
17
24
|
baseline: "baseline";
|
|
18
25
|
}>>;
|
|
19
26
|
opacity: z.ZodOptional<z.ZodNumber>;
|
|
27
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
28
|
+
overflow: z.ZodOptional<z.ZodEnum<{
|
|
29
|
+
hidden: "hidden";
|
|
30
|
+
visible: "visible";
|
|
31
|
+
scroll: "scroll";
|
|
32
|
+
}>>;
|
|
20
33
|
margin: z.ZodOptional<z.ZodNumber>;
|
|
21
34
|
marginHorizontal: z.ZodOptional<z.ZodNumber>;
|
|
22
35
|
marginVertical: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ImageElement.d.ts","sourceRoot":"","sources":["../../../../src/steps/ComposableScreen/elements/ImageElement.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,YAAY,EAAsB,MAAM,gBAAgB,CAAC;AAElE,MAAM,MAAM,iBAAiB,GAAG,YAAY,GAAG;IAC7C,GAAG,EAAE,MAAM,CAAC;IACZ,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,UAAU,CAAC,EAAE,OAAO,GAAG,SAAS,GAAG,SAAS,GAAG,QAAQ,CAAC;CACzD,CAAC;AAEF,eAAO,MAAM,uBAAuB
|
|
1
|
+
{"version":3,"file":"ImageElement.d.ts","sourceRoot":"","sources":["../../../../src/steps/ComposableScreen/elements/ImageElement.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,YAAY,EAAsB,MAAM,gBAAgB,CAAC;AAElE,MAAM,MAAM,iBAAiB,GAAG,YAAY,GAAG;IAC7C,GAAG,EAAE,MAAM,CAAC;IACZ,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,UAAU,CAAC,EAAE,OAAO,GAAG,SAAS,GAAG,SAAS,GAAG,QAAQ,CAAC;CACzD,CAAC;AAEF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAIlC,CAAC"}
|
|
@@ -16,21 +16,36 @@ export type InputElementProps = BaseBoxProps & {
|
|
|
16
16
|
backgroundColor?: string;
|
|
17
17
|
fontSize?: number;
|
|
18
18
|
fontWeight?: string;
|
|
19
|
+
fontFamily?: string;
|
|
20
|
+
lineHeight?: number;
|
|
21
|
+
letterSpacing?: number;
|
|
19
22
|
textAlign?: "left" | "center" | "right";
|
|
20
23
|
placeholderColor?: string;
|
|
21
24
|
};
|
|
22
25
|
export declare const InputElementPropsSchema: z.ZodObject<{
|
|
23
|
-
width: z.ZodOptional<z.ZodNumber
|
|
24
|
-
height: z.ZodOptional<z.ZodNumber
|
|
26
|
+
width: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
|
|
27
|
+
height: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
|
|
28
|
+
minWidth: z.ZodOptional<z.ZodNumber>;
|
|
29
|
+
maxWidth: z.ZodOptional<z.ZodNumber>;
|
|
30
|
+
minHeight: z.ZodOptional<z.ZodNumber>;
|
|
31
|
+
maxHeight: z.ZodOptional<z.ZodNumber>;
|
|
32
|
+
flex: z.ZodOptional<z.ZodNumber>;
|
|
33
|
+
flexShrink: z.ZodOptional<z.ZodNumber>;
|
|
34
|
+
flexGrow: z.ZodOptional<z.ZodNumber>;
|
|
25
35
|
alignSelf: z.ZodOptional<z.ZodEnum<{
|
|
36
|
+
auto: "auto";
|
|
26
37
|
"flex-start": "flex-start";
|
|
27
|
-
center: "center";
|
|
28
38
|
"flex-end": "flex-end";
|
|
39
|
+
center: "center";
|
|
29
40
|
stretch: "stretch";
|
|
30
|
-
auto: "auto";
|
|
31
41
|
baseline: "baseline";
|
|
32
42
|
}>>;
|
|
33
43
|
opacity: z.ZodOptional<z.ZodNumber>;
|
|
44
|
+
overflow: z.ZodOptional<z.ZodEnum<{
|
|
45
|
+
hidden: "hidden";
|
|
46
|
+
visible: "visible";
|
|
47
|
+
scroll: "scroll";
|
|
48
|
+
}>>;
|
|
34
49
|
margin: z.ZodOptional<z.ZodNumber>;
|
|
35
50
|
marginHorizontal: z.ZodOptional<z.ZodNumber>;
|
|
36
51
|
marginVertical: z.ZodOptional<z.ZodNumber>;
|
|
@@ -88,6 +103,9 @@ export declare const InputElementPropsSchema: z.ZodObject<{
|
|
|
88
103
|
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
89
104
|
fontSize: z.ZodOptional<z.ZodNumber>;
|
|
90
105
|
fontWeight: z.ZodOptional<z.ZodString>;
|
|
106
|
+
fontFamily: z.ZodOptional<z.ZodString>;
|
|
107
|
+
lineHeight: z.ZodOptional<z.ZodNumber>;
|
|
108
|
+
letterSpacing: z.ZodOptional<z.ZodNumber>;
|
|
91
109
|
textAlign: z.ZodOptional<z.ZodEnum<{
|
|
92
110
|
center: "center";
|
|
93
111
|
left: "left";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"InputElement.d.ts","sourceRoot":"","sources":["../../../../src/steps/ComposableScreen/elements/InputElement.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,YAAY,EAAsB,MAAM,gBAAgB,CAAC;AAElE,MAAM,MAAM,iBAAiB,GAAG,YAAY,GAAG;IAC7C,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,YAAY,CAAC,EAAE,SAAS,GAAG,eAAe,GAAG,SAAS,GAAG,WAAW,GAAG,aAAa,GAAG,KAAK,GAAG,YAAY,GAAG,eAAe,GAAG,yBAAyB,GAAG,gBAAgB,GAAG,SAAS,GAAG,YAAY,GAAG,kBAAkB,CAAC;IAC7N,aAAa,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,GAAG,QAAQ,GAAG,MAAM,GAAG,SAAS,GAAG,gBAAgB,GAAG,QAAQ,GAAG,MAAM,GAAG,OAAO,GAAG,OAAO,GAAG,MAAM,GAAG,UAAU,CAAC;IACxJ,cAAc,CAAC,EAAE,MAAM,GAAG,WAAW,GAAG,OAAO,GAAG,YAAY,CAAC;IAC/D,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,GAAG,QAAQ,GAAG,OAAO,CAAC;IACxC,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC3B,CAAC;AAEF,eAAO,MAAM,uBAAuB
|
|
1
|
+
{"version":3,"file":"InputElement.d.ts","sourceRoot":"","sources":["../../../../src/steps/ComposableScreen/elements/InputElement.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,YAAY,EAAsB,MAAM,gBAAgB,CAAC;AAElE,MAAM,MAAM,iBAAiB,GAAG,YAAY,GAAG;IAC7C,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,YAAY,CAAC,EAAE,SAAS,GAAG,eAAe,GAAG,SAAS,GAAG,WAAW,GAAG,aAAa,GAAG,KAAK,GAAG,YAAY,GAAG,eAAe,GAAG,yBAAyB,GAAG,gBAAgB,GAAG,SAAS,GAAG,YAAY,GAAG,kBAAkB,CAAC;IAC7N,aAAa,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,GAAG,QAAQ,GAAG,MAAM,GAAG,SAAS,GAAG,gBAAgB,GAAG,QAAQ,GAAG,MAAM,GAAG,OAAO,GAAG,OAAO,GAAG,MAAM,GAAG,UAAU,CAAC;IACxJ,cAAc,CAAC,EAAE,MAAM,GAAG,WAAW,GAAG,OAAO,GAAG,YAAY,CAAC;IAC/D,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,SAAS,CAAC,EAAE,MAAM,GAAG,QAAQ,GAAG,OAAO,CAAC;IACxC,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC3B,CAAC;AAEF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAqBlC,CAAC"}
|
|
@@ -19,6 +19,9 @@ exports.InputElementPropsSchema = BaseBoxProps_1.BaseBoxPropsSchema.extend({
|
|
|
19
19
|
backgroundColor: zod_1.z.string().optional(),
|
|
20
20
|
fontSize: zod_1.z.number().optional(),
|
|
21
21
|
fontWeight: zod_1.z.string().optional(),
|
|
22
|
+
fontFamily: zod_1.z.string().optional(),
|
|
23
|
+
lineHeight: zod_1.z.number().optional(),
|
|
24
|
+
letterSpacing: zod_1.z.number().optional(),
|
|
22
25
|
textAlign: zod_1.z.enum(["left", "center", "right"]).optional(),
|
|
23
26
|
placeholderColor: zod_1.z.string().optional(),
|
|
24
27
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"InputElement.js","sourceRoot":"","sources":["../../../../src/steps/ComposableScreen/elements/InputElement.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,iDAAkE;
|
|
1
|
+
{"version":3,"file":"InputElement.js","sourceRoot":"","sources":["../../../../src/steps/ComposableScreen/elements/InputElement.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,iDAAkE;AAyBrD,QAAA,uBAAuB,GAAG,iCAAkB,CAAC,MAAM,CAAC;IAC/D,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE;IAC1C,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAClC,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACnC,YAAY,EAAE,OAAC,CAAC,IAAI,CAAC,CAAC,SAAS,EAAE,eAAe,EAAE,SAAS,EAAE,WAAW,EAAE,aAAa,EAAE,KAAK,EAAE,YAAY,EAAE,eAAe,EAAE,yBAAyB,EAAE,gBAAgB,EAAE,SAAS,EAAE,YAAY,EAAE,kBAAkB,CAAC,CAAC,CAAC,QAAQ,EAAE;IACpO,aAAa,EAAE,OAAC,CAAC,IAAI,CAAC,CAAC,MAAM,EAAE,MAAM,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,SAAS,EAAE,gBAAgB,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC,QAAQ,EAAE;IAC/J,cAAc,EAAE,OAAC,CAAC,IAAI,CAAC,CAAC,MAAM,EAAE,WAAW,EAAE,OAAO,EAAE,YAAY,CAAC,CAAC,CAAC,QAAQ,EAAE;IAC/E,eAAe,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IACvC,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,WAAW,EAAE,CAAC,QAAQ,EAAE;IACpD,SAAS,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IACjC,aAAa,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,WAAW,EAAE,CAAC,QAAQ,EAAE;IACxD,QAAQ,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IAChC,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC5B,eAAe,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACtC,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC/B,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,aAAa,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACpC,SAAS,EAAE,OAAC,CAAC,IAAI,CAAC,CAAC,MAAM,EAAE,QAAQ,EAAE,OAAO,CAAC,CAAC,CAAC,QAAQ,EAAE;IACzD,gBAAgB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACxC,CAAC,CAAC"}
|
|
@@ -7,17 +7,30 @@ export type LottieElementProps = BaseBoxProps & {
|
|
|
7
7
|
speed?: number;
|
|
8
8
|
};
|
|
9
9
|
export declare const LottieElementPropsSchema: z.ZodObject<{
|
|
10
|
-
width: z.ZodOptional<z.ZodNumber
|
|
11
|
-
height: z.ZodOptional<z.ZodNumber
|
|
10
|
+
width: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
|
|
11
|
+
height: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
|
|
12
|
+
minWidth: z.ZodOptional<z.ZodNumber>;
|
|
13
|
+
maxWidth: z.ZodOptional<z.ZodNumber>;
|
|
14
|
+
minHeight: z.ZodOptional<z.ZodNumber>;
|
|
15
|
+
maxHeight: z.ZodOptional<z.ZodNumber>;
|
|
16
|
+
flex: z.ZodOptional<z.ZodNumber>;
|
|
17
|
+
flexShrink: z.ZodOptional<z.ZodNumber>;
|
|
18
|
+
flexGrow: z.ZodOptional<z.ZodNumber>;
|
|
12
19
|
alignSelf: z.ZodOptional<z.ZodEnum<{
|
|
20
|
+
auto: "auto";
|
|
13
21
|
"flex-start": "flex-start";
|
|
14
|
-
center: "center";
|
|
15
22
|
"flex-end": "flex-end";
|
|
23
|
+
center: "center";
|
|
16
24
|
stretch: "stretch";
|
|
17
|
-
auto: "auto";
|
|
18
25
|
baseline: "baseline";
|
|
19
26
|
}>>;
|
|
20
27
|
opacity: z.ZodOptional<z.ZodNumber>;
|
|
28
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
29
|
+
overflow: z.ZodOptional<z.ZodEnum<{
|
|
30
|
+
hidden: "hidden";
|
|
31
|
+
visible: "visible";
|
|
32
|
+
scroll: "scroll";
|
|
33
|
+
}>>;
|
|
21
34
|
margin: z.ZodOptional<z.ZodNumber>;
|
|
22
35
|
marginHorizontal: z.ZodOptional<z.ZodNumber>;
|
|
23
36
|
marginVertical: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LottieElement.d.ts","sourceRoot":"","sources":["../../../../src/steps/ComposableScreen/elements/LottieElement.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,YAAY,EAAsB,MAAM,gBAAgB,CAAC;AAElE,MAAM,MAAM,kBAAkB,GAAG,YAAY,GAAG;IAC9C,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,eAAO,MAAM,wBAAwB
|
|
1
|
+
{"version":3,"file":"LottieElement.d.ts","sourceRoot":"","sources":["../../../../src/steps/ComposableScreen/elements/LottieElement.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,YAAY,EAAsB,MAAM,gBAAgB,CAAC;AAElE,MAAM,MAAM,kBAAkB,GAAG,YAAY,GAAG;IAC9C,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAKnC,CAAC"}
|
|
@@ -25,17 +25,30 @@ export type RadioGroupElementProps = BaseBoxProps & {
|
|
|
25
25
|
itemPaddingVertical?: number;
|
|
26
26
|
};
|
|
27
27
|
export declare const RadioGroupElementPropsSchema: z.ZodObject<{
|
|
28
|
-
width: z.ZodOptional<z.ZodNumber
|
|
29
|
-
height: z.ZodOptional<z.ZodNumber
|
|
28
|
+
width: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
|
|
29
|
+
height: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
|
|
30
|
+
minWidth: z.ZodOptional<z.ZodNumber>;
|
|
31
|
+
maxWidth: z.ZodOptional<z.ZodNumber>;
|
|
32
|
+
minHeight: z.ZodOptional<z.ZodNumber>;
|
|
33
|
+
maxHeight: z.ZodOptional<z.ZodNumber>;
|
|
34
|
+
flex: z.ZodOptional<z.ZodNumber>;
|
|
35
|
+
flexShrink: z.ZodOptional<z.ZodNumber>;
|
|
36
|
+
flexGrow: z.ZodOptional<z.ZodNumber>;
|
|
30
37
|
alignSelf: z.ZodOptional<z.ZodEnum<{
|
|
38
|
+
auto: "auto";
|
|
31
39
|
"flex-start": "flex-start";
|
|
32
|
-
center: "center";
|
|
33
40
|
"flex-end": "flex-end";
|
|
41
|
+
center: "center";
|
|
34
42
|
stretch: "stretch";
|
|
35
|
-
auto: "auto";
|
|
36
43
|
baseline: "baseline";
|
|
37
44
|
}>>;
|
|
38
45
|
opacity: z.ZodOptional<z.ZodNumber>;
|
|
46
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
47
|
+
overflow: z.ZodOptional<z.ZodEnum<{
|
|
48
|
+
hidden: "hidden";
|
|
49
|
+
visible: "visible";
|
|
50
|
+
scroll: "scroll";
|
|
51
|
+
}>>;
|
|
39
52
|
margin: z.ZodOptional<z.ZodNumber>;
|
|
40
53
|
marginHorizontal: z.ZodOptional<z.ZodNumber>;
|
|
41
54
|
marginVertical: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RadioGroupElement.d.ts","sourceRoot":"","sources":["../../../../src/steps/ComposableScreen/elements/RadioGroupElement.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,YAAY,EAAsB,MAAM,gBAAgB,CAAC;AAElE,MAAM,MAAM,sBAAsB,GAAG,YAAY,GAAG;IAClD,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,SAAS,CAAC,EAAE,UAAU,GAAG,YAAY,CAAC;IACtC,KAAK,EAAE,KAAK,CAAC;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IAC/C,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,2BAA2B,CAAC,EAAE,MAAM,CAAC;IACrC,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,uBAAuB,CAAC,EAAE,MAAM,CAAC;IACjC,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAC/B,mBAAmB,CAAC,EAAE,MAAM,CAAC;CAC9B,CAAC;AAEF,eAAO,MAAM,4BAA4B
|
|
1
|
+
{"version":3,"file":"RadioGroupElement.d.ts","sourceRoot":"","sources":["../../../../src/steps/ComposableScreen/elements/RadioGroupElement.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,YAAY,EAAsB,MAAM,gBAAgB,CAAC;AAElE,MAAM,MAAM,sBAAsB,GAAG,YAAY,GAAG;IAClD,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,SAAS,CAAC,EAAE,UAAU,GAAG,YAAY,CAAC;IACtC,KAAK,EAAE,KAAK,CAAC;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IAC/C,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,2BAA2B,CAAC,EAAE,MAAM,CAAC;IACrC,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,uBAAuB,CAAC,EAAE,MAAM,CAAC;IACjC,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAC/B,mBAAmB,CAAC,EAAE,MAAM,CAAC;CAC9B,CAAC;AAEF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBA6BvC,CAAC"}
|
|
@@ -2,24 +2,37 @@ import { z } from "zod";
|
|
|
2
2
|
import { BaseBoxProps } from "./BaseBoxProps";
|
|
3
3
|
export type RiveElementProps = BaseBoxProps & {
|
|
4
4
|
url: string;
|
|
5
|
-
|
|
5
|
+
autoPlay?: boolean;
|
|
6
6
|
fit?: "Contain" | "Cover" | "Fill" | "FitWidth" | "FitHeight" | "None" | "ScaleDown" | "Layout";
|
|
7
7
|
alignment?: "TopLeft" | "TopCenter" | "TopRight" | "CenterLeft" | "Center" | "CenterRight" | "BottomLeft" | "BottomCenter" | "BottomRight";
|
|
8
8
|
artboardName?: string;
|
|
9
9
|
stateMachineName?: string;
|
|
10
10
|
};
|
|
11
11
|
export declare const RiveElementPropsSchema: z.ZodObject<{
|
|
12
|
-
width: z.ZodOptional<z.ZodNumber
|
|
13
|
-
height: z.ZodOptional<z.ZodNumber
|
|
12
|
+
width: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
|
|
13
|
+
height: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
|
|
14
|
+
minWidth: z.ZodOptional<z.ZodNumber>;
|
|
15
|
+
maxWidth: z.ZodOptional<z.ZodNumber>;
|
|
16
|
+
minHeight: z.ZodOptional<z.ZodNumber>;
|
|
17
|
+
maxHeight: z.ZodOptional<z.ZodNumber>;
|
|
18
|
+
flex: z.ZodOptional<z.ZodNumber>;
|
|
19
|
+
flexShrink: z.ZodOptional<z.ZodNumber>;
|
|
20
|
+
flexGrow: z.ZodOptional<z.ZodNumber>;
|
|
14
21
|
alignSelf: z.ZodOptional<z.ZodEnum<{
|
|
22
|
+
auto: "auto";
|
|
15
23
|
"flex-start": "flex-start";
|
|
16
|
-
center: "center";
|
|
17
24
|
"flex-end": "flex-end";
|
|
25
|
+
center: "center";
|
|
18
26
|
stretch: "stretch";
|
|
19
|
-
auto: "auto";
|
|
20
27
|
baseline: "baseline";
|
|
21
28
|
}>>;
|
|
22
29
|
opacity: z.ZodOptional<z.ZodNumber>;
|
|
30
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
31
|
+
overflow: z.ZodOptional<z.ZodEnum<{
|
|
32
|
+
hidden: "hidden";
|
|
33
|
+
visible: "visible";
|
|
34
|
+
scroll: "scroll";
|
|
35
|
+
}>>;
|
|
23
36
|
margin: z.ZodOptional<z.ZodNumber>;
|
|
24
37
|
marginHorizontal: z.ZodOptional<z.ZodNumber>;
|
|
25
38
|
marginVertical: z.ZodOptional<z.ZodNumber>;
|
|
@@ -30,7 +43,7 @@ export declare const RiveElementPropsSchema: z.ZodObject<{
|
|
|
30
43
|
borderRadius: z.ZodOptional<z.ZodNumber>;
|
|
31
44
|
borderColor: z.ZodOptional<z.ZodString>;
|
|
32
45
|
url: z.ZodString;
|
|
33
|
-
|
|
46
|
+
autoPlay: z.ZodOptional<z.ZodBoolean>;
|
|
34
47
|
fit: z.ZodOptional<z.ZodEnum<{
|
|
35
48
|
Contain: "Contain";
|
|
36
49
|
Cover: "Cover";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RiveElement.d.ts","sourceRoot":"","sources":["../../../../src/steps/ComposableScreen/elements/RiveElement.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,YAAY,EAAsB,MAAM,gBAAgB,CAAC;AAElE,MAAM,MAAM,gBAAgB,GAAG,YAAY,GAAG;IAC5C,GAAG,EAAE,MAAM,CAAC;IACZ,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,GAAG,CAAC,EAAE,SAAS,GAAG,OAAO,GAAG,MAAM,GAAG,UAAU,GAAG,WAAW,GAAG,MAAM,GAAG,WAAW,GAAG,QAAQ,CAAC;IAChG,SAAS,CAAC,EAAE,SAAS,GAAG,WAAW,GAAG,UAAU,GAAG,YAAY,GAAG,QAAQ,GAAG,aAAa,GAAG,YAAY,GAAG,cAAc,GAAG,aAAa,CAAC;IAC3I,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC3B,CAAC;AAEF,eAAO,MAAM,sBAAsB
|
|
1
|
+
{"version":3,"file":"RiveElement.d.ts","sourceRoot":"","sources":["../../../../src/steps/ComposableScreen/elements/RiveElement.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,YAAY,EAAsB,MAAM,gBAAgB,CAAC;AAElE,MAAM,MAAM,gBAAgB,GAAG,YAAY,GAAG;IAC5C,GAAG,EAAE,MAAM,CAAC;IACZ,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,GAAG,CAAC,EAAE,SAAS,GAAG,OAAO,GAAG,MAAM,GAAG,UAAU,GAAG,WAAW,GAAG,MAAM,GAAG,WAAW,GAAG,QAAQ,CAAC;IAChG,SAAS,CAAC,EAAE,SAAS,GAAG,WAAW,GAAG,UAAU,GAAG,YAAY,GAAG,QAAQ,GAAG,aAAa,GAAG,YAAY,GAAG,cAAc,GAAG,aAAa,CAAC;IAC3I,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC3B,CAAC;AAEF,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAOjC,CAAC"}
|
|
@@ -5,7 +5,7 @@ const zod_1 = require("zod");
|
|
|
5
5
|
const BaseBoxProps_1 = require("./BaseBoxProps");
|
|
6
6
|
exports.RiveElementPropsSchema = BaseBoxProps_1.BaseBoxPropsSchema.extend({
|
|
7
7
|
url: zod_1.z.string().min(1, "url must not be empty"),
|
|
8
|
-
|
|
8
|
+
autoPlay: zod_1.z.boolean().optional(),
|
|
9
9
|
fit: zod_1.z.enum(["Contain", "Cover", "Fill", "FitWidth", "FitHeight", "None", "ScaleDown", "Layout"]).optional(),
|
|
10
10
|
alignment: zod_1.z.enum(["TopLeft", "TopCenter", "TopRight", "CenterLeft", "Center", "CenterRight", "BottomLeft", "BottomCenter", "BottomRight"]).optional(),
|
|
11
11
|
artboardName: zod_1.z.string().optional(),
|
|
@@ -1,81 +1,62 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
|
-
|
|
2
|
+
import { BaseBoxProps } from "./BaseBoxProps";
|
|
3
|
+
export type StackElementProps = BaseBoxProps & {
|
|
3
4
|
gap?: number;
|
|
4
|
-
padding?: number;
|
|
5
|
-
paddingHorizontal?: number;
|
|
6
|
-
paddingVertical?: number;
|
|
7
|
-
margin?: number;
|
|
8
|
-
marginHorizontal?: number;
|
|
9
|
-
marginVertical?: number;
|
|
10
|
-
flex?: number;
|
|
11
|
-
width?: number;
|
|
12
|
-
height?: number;
|
|
13
|
-
minWidth?: number;
|
|
14
|
-
maxWidth?: number;
|
|
15
|
-
minHeight?: number;
|
|
16
|
-
maxHeight?: number;
|
|
17
5
|
alignItems?: "flex-start" | "center" | "flex-end" | "stretch";
|
|
18
|
-
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline";
|
|
19
6
|
justifyContent?: "flex-start" | "center" | "flex-end" | "space-between" | "space-around";
|
|
20
|
-
backgroundColor?: string;
|
|
21
7
|
flexWrap?: "wrap" | "nowrap";
|
|
22
|
-
flexShrink?: number;
|
|
23
|
-
borderWidth?: number;
|
|
24
|
-
borderRadius?: number;
|
|
25
|
-
borderColor?: string;
|
|
26
|
-
overflow?: "hidden" | "visible" | "scroll";
|
|
27
|
-
opacity?: number;
|
|
28
8
|
};
|
|
29
9
|
export declare const StackElementPropsSchema: z.ZodObject<{
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
paddingHorizontal: z.ZodOptional<z.ZodNumber>;
|
|
33
|
-
paddingVertical: z.ZodOptional<z.ZodNumber>;
|
|
34
|
-
margin: z.ZodOptional<z.ZodNumber>;
|
|
35
|
-
marginHorizontal: z.ZodOptional<z.ZodNumber>;
|
|
36
|
-
marginVertical: z.ZodOptional<z.ZodNumber>;
|
|
37
|
-
flex: z.ZodOptional<z.ZodNumber>;
|
|
38
|
-
width: z.ZodOptional<z.ZodNumber>;
|
|
39
|
-
height: z.ZodOptional<z.ZodNumber>;
|
|
10
|
+
width: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
|
|
11
|
+
height: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
|
|
40
12
|
minWidth: z.ZodOptional<z.ZodNumber>;
|
|
41
13
|
maxWidth: z.ZodOptional<z.ZodNumber>;
|
|
42
14
|
minHeight: z.ZodOptional<z.ZodNumber>;
|
|
43
15
|
maxHeight: z.ZodOptional<z.ZodNumber>;
|
|
44
|
-
|
|
16
|
+
flex: z.ZodOptional<z.ZodNumber>;
|
|
17
|
+
flexShrink: z.ZodOptional<z.ZodNumber>;
|
|
18
|
+
flexGrow: z.ZodOptional<z.ZodNumber>;
|
|
19
|
+
alignSelf: z.ZodOptional<z.ZodEnum<{
|
|
20
|
+
auto: "auto";
|
|
45
21
|
"flex-start": "flex-start";
|
|
46
|
-
center: "center";
|
|
47
22
|
"flex-end": "flex-end";
|
|
23
|
+
center: "center";
|
|
48
24
|
stretch: "stretch";
|
|
25
|
+
baseline: "baseline";
|
|
49
26
|
}>>;
|
|
50
|
-
|
|
27
|
+
opacity: z.ZodOptional<z.ZodNumber>;
|
|
28
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
29
|
+
overflow: z.ZodOptional<z.ZodEnum<{
|
|
30
|
+
hidden: "hidden";
|
|
31
|
+
visible: "visible";
|
|
32
|
+
scroll: "scroll";
|
|
33
|
+
}>>;
|
|
34
|
+
margin: z.ZodOptional<z.ZodNumber>;
|
|
35
|
+
marginHorizontal: z.ZodOptional<z.ZodNumber>;
|
|
36
|
+
marginVertical: z.ZodOptional<z.ZodNumber>;
|
|
37
|
+
padding: z.ZodOptional<z.ZodNumber>;
|
|
38
|
+
paddingHorizontal: z.ZodOptional<z.ZodNumber>;
|
|
39
|
+
paddingVertical: z.ZodOptional<z.ZodNumber>;
|
|
40
|
+
borderWidth: z.ZodOptional<z.ZodNumber>;
|
|
41
|
+
borderRadius: z.ZodOptional<z.ZodNumber>;
|
|
42
|
+
borderColor: z.ZodOptional<z.ZodString>;
|
|
43
|
+
gap: z.ZodOptional<z.ZodNumber>;
|
|
44
|
+
alignItems: z.ZodOptional<z.ZodEnum<{
|
|
51
45
|
"flex-start": "flex-start";
|
|
52
|
-
center: "center";
|
|
53
46
|
"flex-end": "flex-end";
|
|
47
|
+
center: "center";
|
|
54
48
|
stretch: "stretch";
|
|
55
|
-
auto: "auto";
|
|
56
|
-
baseline: "baseline";
|
|
57
49
|
}>>;
|
|
58
50
|
justifyContent: z.ZodOptional<z.ZodEnum<{
|
|
59
51
|
"flex-start": "flex-start";
|
|
60
|
-
center: "center";
|
|
61
52
|
"flex-end": "flex-end";
|
|
53
|
+
center: "center";
|
|
62
54
|
"space-between": "space-between";
|
|
63
55
|
"space-around": "space-around";
|
|
64
56
|
}>>;
|
|
65
|
-
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
66
57
|
flexWrap: z.ZodOptional<z.ZodEnum<{
|
|
67
58
|
wrap: "wrap";
|
|
68
59
|
nowrap: "nowrap";
|
|
69
60
|
}>>;
|
|
70
|
-
flexShrink: z.ZodOptional<z.ZodNumber>;
|
|
71
|
-
borderWidth: z.ZodOptional<z.ZodNumber>;
|
|
72
|
-
borderRadius: z.ZodOptional<z.ZodNumber>;
|
|
73
|
-
borderColor: z.ZodOptional<z.ZodString>;
|
|
74
|
-
overflow: z.ZodOptional<z.ZodEnum<{
|
|
75
|
-
hidden: "hidden";
|
|
76
|
-
visible: "visible";
|
|
77
|
-
scroll: "scroll";
|
|
78
|
-
}>>;
|
|
79
|
-
opacity: z.ZodOptional<z.ZodNumber>;
|
|
80
61
|
}, z.core.$strip>;
|
|
81
62
|
//# sourceMappingURL=StackElement.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StackElement.d.ts","sourceRoot":"","sources":["../../../../src/steps/ComposableScreen/elements/StackElement.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"StackElement.d.ts","sourceRoot":"","sources":["../../../../src/steps/ComposableScreen/elements/StackElement.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,YAAY,EAAsB,MAAM,gBAAgB,CAAC;AAElE,MAAM,MAAM,iBAAiB,GAAG,YAAY,GAAG;IAC7C,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,UAAU,CAAC,EAAE,YAAY,GAAG,QAAQ,GAAG,UAAU,GAAG,SAAS,CAAC;IAC9D,cAAc,CAAC,EAAE,YAAY,GAAG,QAAQ,GAAG,UAAU,GAAG,eAAe,GAAG,cAAc,CAAC;IACzF,QAAQ,CAAC,EAAE,MAAM,GAAG,QAAQ,CAAC;CAC9B,CAAC;AAEF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAKlC,CAAC"}
|