@rocapine/react-native-onboarding-ui 1.30.0 → 1.32.0
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/UI/Pages/ComposableScreen/elements/AnimatedBox.d.ts +21 -0
- package/dist/UI/Pages/ComposableScreen/elements/AnimatedBox.d.ts.map +1 -0
- package/dist/UI/Pages/ComposableScreen/elements/AnimatedBox.js +140 -0
- package/dist/UI/Pages/ComposableScreen/elements/AnimatedBox.js.map +1 -0
- package/dist/UI/Pages/ComposableScreen/elements/BaseBoxProps.d.ts +220 -0
- package/dist/UI/Pages/ComposableScreen/elements/BaseBoxProps.d.ts.map +1 -1
- package/dist/UI/Pages/ComposableScreen/elements/BaseBoxProps.js +83 -0
- package/dist/UI/Pages/ComposableScreen/elements/BaseBoxProps.js.map +1 -1
- package/dist/UI/Pages/ComposableScreen/elements/ButtonElement.d.ts +640 -0
- package/dist/UI/Pages/ComposableScreen/elements/ButtonElement.d.ts.map +1 -1
- package/dist/UI/Pages/ComposableScreen/elements/CarouselElement.d.ts +160 -0
- package/dist/UI/Pages/ComposableScreen/elements/CarouselElement.d.ts.map +1 -1
- package/dist/UI/Pages/ComposableScreen/elements/CheckboxGroupElement.d.ts +160 -0
- package/dist/UI/Pages/ComposableScreen/elements/CheckboxGroupElement.d.ts.map +1 -1
- package/dist/UI/Pages/ComposableScreen/elements/DatePickerElement.d.ts +160 -0
- package/dist/UI/Pages/ComposableScreen/elements/DatePickerElement.d.ts.map +1 -1
- package/dist/UI/Pages/ComposableScreen/elements/IconElement.d.ts +160 -0
- package/dist/UI/Pages/ComposableScreen/elements/IconElement.d.ts.map +1 -1
- package/dist/UI/Pages/ComposableScreen/elements/ImageElement.d.ts +160 -0
- package/dist/UI/Pages/ComposableScreen/elements/ImageElement.d.ts.map +1 -1
- package/dist/UI/Pages/ComposableScreen/elements/InputElement.d.ts +160 -0
- package/dist/UI/Pages/ComposableScreen/elements/InputElement.d.ts.map +1 -1
- package/dist/UI/Pages/ComposableScreen/elements/KeyboardAvoidingViewElement.d.ts +160 -0
- package/dist/UI/Pages/ComposableScreen/elements/KeyboardAvoidingViewElement.d.ts.map +1 -1
- package/dist/UI/Pages/ComposableScreen/elements/LottieElement.d.ts +160 -0
- package/dist/UI/Pages/ComposableScreen/elements/LottieElement.d.ts.map +1 -1
- package/dist/UI/Pages/ComposableScreen/elements/ProgressIndicatorElement.d.ts +160 -0
- package/dist/UI/Pages/ComposableScreen/elements/ProgressIndicatorElement.d.ts.map +1 -1
- package/dist/UI/Pages/ComposableScreen/elements/ProgressIndicatorElement.js +2 -8
- package/dist/UI/Pages/ComposableScreen/elements/ProgressIndicatorElement.js.map +1 -1
- package/dist/UI/Pages/ComposableScreen/elements/RadioGroupElement.d.ts +160 -0
- package/dist/UI/Pages/ComposableScreen/elements/RadioGroupElement.d.ts.map +1 -1
- package/dist/UI/Pages/ComposableScreen/elements/RiveElement.d.ts +160 -0
- package/dist/UI/Pages/ComposableScreen/elements/RiveElement.d.ts.map +1 -1
- package/dist/UI/Pages/ComposableScreen/elements/SafeAreaViewElement.d.ts +160 -0
- package/dist/UI/Pages/ComposableScreen/elements/SafeAreaViewElement.d.ts.map +1 -1
- package/dist/UI/Pages/ComposableScreen/elements/ScrollViewElement.d.ts +160 -0
- package/dist/UI/Pages/ComposableScreen/elements/ScrollViewElement.d.ts.map +1 -1
- package/dist/UI/Pages/ComposableScreen/elements/StackElement.d.ts +160 -0
- package/dist/UI/Pages/ComposableScreen/elements/StackElement.d.ts.map +1 -1
- package/dist/UI/Pages/ComposableScreen/elements/TextElement.d.ts +245 -2
- package/dist/UI/Pages/ComposableScreen/elements/TextElement.d.ts.map +1 -1
- package/dist/UI/Pages/ComposableScreen/elements/TextElement.js +58 -6
- package/dist/UI/Pages/ComposableScreen/elements/TextElement.js.map +1 -1
- package/dist/UI/Pages/ComposableScreen/elements/VideoElement.d.ts +160 -0
- package/dist/UI/Pages/ComposableScreen/elements/VideoElement.d.ts.map +1 -1
- package/dist/UI/Pages/ComposableScreen/elements/ZStackElement.d.ts +160 -0
- package/dist/UI/Pages/ComposableScreen/elements/ZStackElement.d.ts.map +1 -1
- package/dist/UI/Pages/ComposableScreen/elements/buildAnimation.d.ts +9 -0
- package/dist/UI/Pages/ComposableScreen/elements/buildAnimation.d.ts.map +1 -0
- package/dist/UI/Pages/ComposableScreen/elements/buildAnimation.js +106 -0
- package/dist/UI/Pages/ComposableScreen/elements/buildAnimation.js.map +1 -0
- package/dist/UI/Pages/ComposableScreen/elements/renderElement.d.ts.map +1 -1
- package/dist/UI/Pages/ComposableScreen/elements/renderElement.js +72 -58
- package/dist/UI/Pages/ComposableScreen/elements/renderElement.js.map +1 -1
- package/package.json +1 -1
- package/src/UI/Pages/ComposableScreen/elements/AnimatedBox.tsx +133 -0
- package/src/UI/Pages/ComposableScreen/elements/BaseBoxProps.ts +211 -0
- package/src/UI/Pages/ComposableScreen/elements/ProgressIndicatorElement.tsx +1 -9
- package/src/UI/Pages/ComposableScreen/elements/TextElement.tsx +93 -5
- package/src/UI/Pages/ComposableScreen/elements/buildAnimation.ts +83 -0
- package/src/UI/Pages/ComposableScreen/elements/renderElement.tsx +28 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.TextElementComponent = exports.TextElementPropsSchema = void 0;
|
|
3
|
+
exports.TextElementComponent = exports.TextElementPropsSchema = exports.TextSpanSchema = void 0;
|
|
4
4
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
const zod_1 = require("zod");
|
|
6
6
|
const react_native_1 = require("react-native");
|
|
@@ -8,8 +8,26 @@ const react_native_onboarding_1 = require("@rocapine/react-native-onboarding");
|
|
|
8
8
|
const BaseBoxProps_1 = require("./BaseBoxProps");
|
|
9
9
|
const shared_1 = require("./shared");
|
|
10
10
|
const GradientBox_1 = require("./GradientBox");
|
|
11
|
+
exports.TextSpanSchema = zod_1.z.object({
|
|
12
|
+
text: zod_1.z.string(),
|
|
13
|
+
fontWeight: zod_1.z.string().optional(),
|
|
14
|
+
fontStyle: zod_1.z.enum(["normal", "italic"]).optional(),
|
|
15
|
+
fontFamily: zod_1.z.string().optional(),
|
|
16
|
+
fontSize: zod_1.z.number().optional(),
|
|
17
|
+
letterSpacing: zod_1.z.number().optional(),
|
|
18
|
+
lineHeight: zod_1.z.number().optional(),
|
|
19
|
+
color: zod_1.z.string().optional(),
|
|
20
|
+
backgroundColor: zod_1.z.string().optional(),
|
|
21
|
+
opacity: zod_1.z.number().min(0).max(1).optional(),
|
|
22
|
+
textTransform: zod_1.z.enum(["none", "uppercase", "lowercase", "capitalize"]).optional(),
|
|
23
|
+
textDecorationLine: zod_1.z
|
|
24
|
+
.enum(["none", "underline", "line-through", "underline line-through"])
|
|
25
|
+
.optional(),
|
|
26
|
+
textDecorationColor: zod_1.z.string().optional(),
|
|
27
|
+
textDecorationStyle: zod_1.z.enum(["solid", "double", "dotted", "dashed"]).optional(),
|
|
28
|
+
});
|
|
11
29
|
exports.TextElementPropsSchema = BaseBoxProps_1.BaseBoxPropsSchema.extend({
|
|
12
|
-
content: zod_1.z.string(),
|
|
30
|
+
content: zod_1.z.union([zod_1.z.string(), zod_1.z.array(exports.TextSpanSchema)]),
|
|
13
31
|
mode: zod_1.z.enum(["plain", "expression"]).optional(),
|
|
14
32
|
fontSize: zod_1.z.number().optional(),
|
|
15
33
|
fontWeight: zod_1.z.string().optional(),
|
|
@@ -20,13 +38,45 @@ exports.TextElementPropsSchema = BaseBoxProps_1.BaseBoxPropsSchema.extend({
|
|
|
20
38
|
letterSpacing: zod_1.z.number().optional(),
|
|
21
39
|
lineHeight: zod_1.z.number().optional(),
|
|
22
40
|
});
|
|
41
|
+
/**
|
|
42
|
+
* Renders one inline span. Isolated as its own component so the
|
|
43
|
+
* `useResolvedFontStyle` hook is called once per stable component instance —
|
|
44
|
+
* calling the hook in a `.map` loop inside the parent would break rules of
|
|
45
|
+
* hooks when the span count changes.
|
|
46
|
+
*/
|
|
47
|
+
const RichTextSpan = ({ span, baseFontFamily, }) => {
|
|
48
|
+
const fontFamily = (0, shared_1.resolveInheritedFontFamily)(span.fontFamily, baseFontFamily);
|
|
49
|
+
const resolved = (0, react_native_onboarding_1.useResolvedFontStyle)(fontFamily, span.fontWeight);
|
|
50
|
+
return ((0, jsx_runtime_1.jsx)(react_native_1.Text, { style: {
|
|
51
|
+
fontFamily: resolved.fontFamily,
|
|
52
|
+
fontWeight: resolved.resolvedToVariant
|
|
53
|
+
? undefined
|
|
54
|
+
: span.fontWeight,
|
|
55
|
+
fontStyle: span.fontStyle,
|
|
56
|
+
fontSize: span.fontSize,
|
|
57
|
+
letterSpacing: span.letterSpacing,
|
|
58
|
+
lineHeight: span.lineHeight,
|
|
59
|
+
color: span.color,
|
|
60
|
+
backgroundColor: span.backgroundColor,
|
|
61
|
+
opacity: span.opacity,
|
|
62
|
+
textTransform: span.textTransform,
|
|
63
|
+
textDecorationLine: span.textDecorationLine,
|
|
64
|
+
textDecorationColor: span.textDecorationColor,
|
|
65
|
+
textDecorationStyle: span.textDecorationStyle,
|
|
66
|
+
}, children: span.text }));
|
|
67
|
+
};
|
|
23
68
|
const TextElementComponent = ({ element, ctx, parentType }) => {
|
|
24
69
|
var _a, _b, _c;
|
|
25
70
|
const { theme, variables } = ctx;
|
|
26
71
|
const p = element.props;
|
|
27
|
-
const
|
|
28
|
-
|
|
29
|
-
|
|
72
|
+
const isExpression = p.mode === "expression";
|
|
73
|
+
const content = Array.isArray(p.content)
|
|
74
|
+
? isExpression
|
|
75
|
+
? p.content.map((s) => (Object.assign(Object.assign({}, s), { text: (0, shared_1.interpolate)(s.text, variables) })))
|
|
76
|
+
: p.content
|
|
77
|
+
: isExpression
|
|
78
|
+
? (0, shared_1.interpolate)(p.content, variables)
|
|
79
|
+
: p.content;
|
|
30
80
|
const inheritedFontFamily = (0, shared_1.resolveInheritedFontFamily)(p.fontFamily, theme.typography.defaultFontFamily);
|
|
31
81
|
const resolvedFont = (0, react_native_onboarding_1.useResolvedFontStyle)(inheritedFontFamily, p.fontWeight);
|
|
32
82
|
const textNode = ((0, jsx_runtime_1.jsx)(react_native_1.Text, { style: {
|
|
@@ -59,7 +109,9 @@ const TextElementComponent = ({ element, ctx, parentType }) => {
|
|
|
59
109
|
borderRadius: p.backgroundGradient ? undefined : p.borderRadius,
|
|
60
110
|
borderColor: p.backgroundGradient ? undefined : p.borderColor,
|
|
61
111
|
opacity: p.backgroundGradient ? undefined : p.opacity,
|
|
62
|
-
}, children: content
|
|
112
|
+
}, children: typeof content === "string"
|
|
113
|
+
? content
|
|
114
|
+
: content.map((s, i) => ((0, jsx_runtime_1.jsx)(RichTextSpan, { span: s, baseFontFamily: inheritedFontFamily }, i))) }));
|
|
63
115
|
if (p.backgroundGradient) {
|
|
64
116
|
return ((0, jsx_runtime_1.jsx)(GradientBox_1.GradientBox, { gradient: p.backgroundGradient, style: {
|
|
65
117
|
flex: p.flex,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TextElement.js","sourceRoot":"","sources":["../../../../../src/UI/Pages/ComposableScreen/elements/TextElement.tsx"],"names":[],"mappings":";;;;AACA,6BAAwB;AACxB,+CAAoC;AACpC,+EAAyE;AACzE,iDAAkE;AAElE,qCAAuF;AACvF,+CAA4C;
|
|
1
|
+
{"version":3,"file":"TextElement.js","sourceRoot":"","sources":["../../../../../src/UI/Pages/ComposableScreen/elements/TextElement.tsx"],"names":[],"mappings":"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"}
|
|
@@ -81,6 +81,166 @@ export declare const VideoElementPropsSchema: z.ZodObject<{
|
|
|
81
81
|
shadowOpacity: z.ZodOptional<z.ZodNumber>;
|
|
82
82
|
shadowRadius: z.ZodOptional<z.ZodNumber>;
|
|
83
83
|
elevation: z.ZodOptional<z.ZodNumber>;
|
|
84
|
+
transform: z.ZodOptional<z.ZodObject<{
|
|
85
|
+
translateX: z.ZodOptional<z.ZodNumber>;
|
|
86
|
+
translateY: z.ZodOptional<z.ZodNumber>;
|
|
87
|
+
scale: z.ZodOptional<z.ZodNumber>;
|
|
88
|
+
scaleX: z.ZodOptional<z.ZodNumber>;
|
|
89
|
+
scaleY: z.ZodOptional<z.ZodNumber>;
|
|
90
|
+
rotate: z.ZodOptional<z.ZodNumber>;
|
|
91
|
+
}, z.core.$strip>>;
|
|
92
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
93
|
+
entering: z.ZodOptional<z.ZodObject<{
|
|
94
|
+
preset: z.ZodEnum<{
|
|
95
|
+
FadeIn: "FadeIn";
|
|
96
|
+
FadeInUp: "FadeInUp";
|
|
97
|
+
FadeInDown: "FadeInDown";
|
|
98
|
+
FadeInLeft: "FadeInLeft";
|
|
99
|
+
FadeInRight: "FadeInRight";
|
|
100
|
+
SlideInUp: "SlideInUp";
|
|
101
|
+
SlideInDown: "SlideInDown";
|
|
102
|
+
SlideInLeft: "SlideInLeft";
|
|
103
|
+
SlideInRight: "SlideInRight";
|
|
104
|
+
ZoomIn: "ZoomIn";
|
|
105
|
+
ZoomInRotate: "ZoomInRotate";
|
|
106
|
+
ZoomInUp: "ZoomInUp";
|
|
107
|
+
ZoomInDown: "ZoomInDown";
|
|
108
|
+
ZoomInLeft: "ZoomInLeft";
|
|
109
|
+
ZoomInRight: "ZoomInRight";
|
|
110
|
+
ZoomInEasyUp: "ZoomInEasyUp";
|
|
111
|
+
ZoomInEasyDown: "ZoomInEasyDown";
|
|
112
|
+
BounceIn: "BounceIn";
|
|
113
|
+
BounceInUp: "BounceInUp";
|
|
114
|
+
BounceInDown: "BounceInDown";
|
|
115
|
+
BounceInLeft: "BounceInLeft";
|
|
116
|
+
BounceInRight: "BounceInRight";
|
|
117
|
+
FlipInXUp: "FlipInXUp";
|
|
118
|
+
FlipInYLeft: "FlipInYLeft";
|
|
119
|
+
FlipInXDown: "FlipInXDown";
|
|
120
|
+
FlipInYRight: "FlipInYRight";
|
|
121
|
+
FlipInEasyX: "FlipInEasyX";
|
|
122
|
+
FlipInEasyY: "FlipInEasyY";
|
|
123
|
+
StretchInX: "StretchInX";
|
|
124
|
+
StretchInY: "StretchInY";
|
|
125
|
+
RotateInDownLeft: "RotateInDownLeft";
|
|
126
|
+
RotateInDownRight: "RotateInDownRight";
|
|
127
|
+
RotateInUpLeft: "RotateInUpLeft";
|
|
128
|
+
RotateInUpRight: "RotateInUpRight";
|
|
129
|
+
RollInLeft: "RollInLeft";
|
|
130
|
+
RollInRight: "RollInRight";
|
|
131
|
+
PinwheelIn: "PinwheelIn";
|
|
132
|
+
LightSpeedInLeft: "LightSpeedInLeft";
|
|
133
|
+
LightSpeedInRight: "LightSpeedInRight";
|
|
134
|
+
}>;
|
|
135
|
+
duration: z.ZodOptional<z.ZodNumber>;
|
|
136
|
+
delay: z.ZodOptional<z.ZodNumber>;
|
|
137
|
+
easing: z.ZodOptional<z.ZodEnum<{
|
|
138
|
+
linear: "linear";
|
|
139
|
+
"ease-in": "ease-in";
|
|
140
|
+
"ease-out": "ease-out";
|
|
141
|
+
"ease-in-out": "ease-in-out";
|
|
142
|
+
}>>;
|
|
143
|
+
spring: z.ZodOptional<z.ZodObject<{
|
|
144
|
+
damping: z.ZodOptional<z.ZodNumber>;
|
|
145
|
+
stiffness: z.ZodOptional<z.ZodNumber>;
|
|
146
|
+
mass: z.ZodOptional<z.ZodNumber>;
|
|
147
|
+
}, z.core.$strip>>;
|
|
148
|
+
}, z.core.$strip>>;
|
|
149
|
+
exiting: z.ZodOptional<z.ZodObject<{
|
|
150
|
+
preset: z.ZodEnum<{
|
|
151
|
+
FadeOut: "FadeOut";
|
|
152
|
+
FadeOutUp: "FadeOutUp";
|
|
153
|
+
FadeOutDown: "FadeOutDown";
|
|
154
|
+
FadeOutLeft: "FadeOutLeft";
|
|
155
|
+
FadeOutRight: "FadeOutRight";
|
|
156
|
+
SlideOutUp: "SlideOutUp";
|
|
157
|
+
SlideOutDown: "SlideOutDown";
|
|
158
|
+
SlideOutLeft: "SlideOutLeft";
|
|
159
|
+
SlideOutRight: "SlideOutRight";
|
|
160
|
+
ZoomOut: "ZoomOut";
|
|
161
|
+
ZoomOutRotate: "ZoomOutRotate";
|
|
162
|
+
ZoomOutUp: "ZoomOutUp";
|
|
163
|
+
ZoomOutDown: "ZoomOutDown";
|
|
164
|
+
ZoomOutLeft: "ZoomOutLeft";
|
|
165
|
+
ZoomOutRight: "ZoomOutRight";
|
|
166
|
+
ZoomOutEasyUp: "ZoomOutEasyUp";
|
|
167
|
+
ZoomOutEasyDown: "ZoomOutEasyDown";
|
|
168
|
+
BounceOut: "BounceOut";
|
|
169
|
+
BounceOutUp: "BounceOutUp";
|
|
170
|
+
BounceOutDown: "BounceOutDown";
|
|
171
|
+
BounceOutLeft: "BounceOutLeft";
|
|
172
|
+
BounceOutRight: "BounceOutRight";
|
|
173
|
+
FlipOutXUp: "FlipOutXUp";
|
|
174
|
+
FlipOutYLeft: "FlipOutYLeft";
|
|
175
|
+
FlipOutXDown: "FlipOutXDown";
|
|
176
|
+
FlipOutYRight: "FlipOutYRight";
|
|
177
|
+
FlipOutEasyX: "FlipOutEasyX";
|
|
178
|
+
FlipOutEasyY: "FlipOutEasyY";
|
|
179
|
+
StretchOutX: "StretchOutX";
|
|
180
|
+
StretchOutY: "StretchOutY";
|
|
181
|
+
RotateOutDownLeft: "RotateOutDownLeft";
|
|
182
|
+
RotateOutDownRight: "RotateOutDownRight";
|
|
183
|
+
RotateOutUpLeft: "RotateOutUpLeft";
|
|
184
|
+
RotateOutUpRight: "RotateOutUpRight";
|
|
185
|
+
RollOutLeft: "RollOutLeft";
|
|
186
|
+
RollOutRight: "RollOutRight";
|
|
187
|
+
PinwheelOut: "PinwheelOut";
|
|
188
|
+
LightSpeedOutLeft: "LightSpeedOutLeft";
|
|
189
|
+
LightSpeedOutRight: "LightSpeedOutRight";
|
|
190
|
+
}>;
|
|
191
|
+
duration: z.ZodOptional<z.ZodNumber>;
|
|
192
|
+
delay: z.ZodOptional<z.ZodNumber>;
|
|
193
|
+
easing: z.ZodOptional<z.ZodEnum<{
|
|
194
|
+
linear: "linear";
|
|
195
|
+
"ease-in": "ease-in";
|
|
196
|
+
"ease-out": "ease-out";
|
|
197
|
+
"ease-in-out": "ease-in-out";
|
|
198
|
+
}>>;
|
|
199
|
+
spring: z.ZodOptional<z.ZodObject<{
|
|
200
|
+
damping: z.ZodOptional<z.ZodNumber>;
|
|
201
|
+
stiffness: z.ZodOptional<z.ZodNumber>;
|
|
202
|
+
mass: z.ZodOptional<z.ZodNumber>;
|
|
203
|
+
}, z.core.$strip>>;
|
|
204
|
+
}, z.core.$strip>>;
|
|
205
|
+
layout: z.ZodOptional<z.ZodObject<{
|
|
206
|
+
preset: z.ZodEnum<{
|
|
207
|
+
LinearTransition: "LinearTransition";
|
|
208
|
+
FadingTransition: "FadingTransition";
|
|
209
|
+
SequencedTransition: "SequencedTransition";
|
|
210
|
+
JumpingTransition: "JumpingTransition";
|
|
211
|
+
CurvedTransition: "CurvedTransition";
|
|
212
|
+
EntryExitTransition: "EntryExitTransition";
|
|
213
|
+
}>;
|
|
214
|
+
duration: z.ZodOptional<z.ZodNumber>;
|
|
215
|
+
spring: z.ZodOptional<z.ZodObject<{
|
|
216
|
+
damping: z.ZodOptional<z.ZodNumber>;
|
|
217
|
+
stiffness: z.ZodOptional<z.ZodNumber>;
|
|
218
|
+
mass: z.ZodOptional<z.ZodNumber>;
|
|
219
|
+
}, z.core.$strip>>;
|
|
220
|
+
}, z.core.$strip>>;
|
|
221
|
+
effect: z.ZodOptional<z.ZodObject<{
|
|
222
|
+
preset: z.ZodEnum<{
|
|
223
|
+
rotate: "rotate";
|
|
224
|
+
pulse: "pulse";
|
|
225
|
+
fade: "fade";
|
|
226
|
+
shimmer: "shimmer";
|
|
227
|
+
bounce: "bounce";
|
|
228
|
+
}>;
|
|
229
|
+
duration: z.ZodOptional<z.ZodNumber>;
|
|
230
|
+
delay: z.ZodOptional<z.ZodNumber>;
|
|
231
|
+
easing: z.ZodOptional<z.ZodEnum<{
|
|
232
|
+
linear: "linear";
|
|
233
|
+
"ease-in": "ease-in";
|
|
234
|
+
"ease-out": "ease-out";
|
|
235
|
+
"ease-in-out": "ease-in-out";
|
|
236
|
+
}>>;
|
|
237
|
+
loop: z.ZodOptional<z.ZodBoolean>;
|
|
238
|
+
minScale: z.ZodOptional<z.ZodNumber>;
|
|
239
|
+
maxScale: z.ZodOptional<z.ZodNumber>;
|
|
240
|
+
minOpacity: z.ZodOptional<z.ZodNumber>;
|
|
241
|
+
degrees: z.ZodOptional<z.ZodNumber>;
|
|
242
|
+
}, z.core.$strip>>;
|
|
243
|
+
}, z.core.$strip>>;
|
|
84
244
|
url: z.ZodString;
|
|
85
245
|
autoPlay: z.ZodOptional<z.ZodBoolean>;
|
|
86
246
|
loop: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"VideoElement.d.ts","sourceRoot":"","sources":["../../../../../src/UI/Pages/ComposableScreen/elements/VideoElement.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoB,MAAM,OAAO,CAAC;AACzC,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,EAAE,YAAY,EAAsB,MAAM,gBAAgB,CAAC;AAClE,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AACrC,OAAO,EAAE,aAAa,EAAO,MAAM,UAAU,CAAC;AAI9C,MAAM,MAAM,iBAAiB,GAAG,YAAY,GAAG;IAC7C,GAAG,EAAE,MAAM,CAAC;IACZ,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,UAAU,CAAC,EAAE,SAAS,GAAG,OAAO,GAAG,MAAM,CAAC;CAC3C,CAAC;AAEF,eAAO,MAAM,uBAAuB
|
|
1
|
+
{"version":3,"file":"VideoElement.d.ts","sourceRoot":"","sources":["../../../../../src/UI/Pages/ComposableScreen/elements/VideoElement.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoB,MAAM,OAAO,CAAC;AACzC,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,EAAE,YAAY,EAAsB,MAAM,gBAAgB,CAAC;AAClE,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AACrC,OAAO,EAAE,aAAa,EAAO,MAAM,UAAU,CAAC;AAI9C,MAAM,MAAM,iBAAiB,GAAG,YAAY,GAAG;IAC7C,GAAG,EAAE,MAAM,CAAC;IACZ,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,UAAU,CAAC,EAAE,SAAS,GAAG,OAAO,GAAG,MAAM,CAAC;CAC3C,CAAC;AAEF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAOlC,CAAC;AAEH,KAAK,cAAc,GAAG,OAAO,CAAC,SAAS,EAAE;IAAE,IAAI,EAAE,OAAO,CAAA;CAAE,CAAC,CAAC;AAoC5D,KAAK,KAAK,GAAG;IACX,OAAO,EAAE,cAAc,CAAC;IACxB,GAAG,EAAE,aAAa,CAAC;CACpB,CAAC;AAEF,eAAO,MAAM,oBAAoB,GAAI,kBAAkB,KAAK,KAAG,KAAK,CAAC,YA6CpE,CAAC"}
|
|
@@ -73,6 +73,166 @@ export declare const ZStackElementPropsSchema: import("zod").ZodObject<{
|
|
|
73
73
|
shadowOpacity: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
74
74
|
shadowRadius: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
75
75
|
elevation: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
76
|
+
transform: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
77
|
+
translateX: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
78
|
+
translateY: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
79
|
+
scale: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
80
|
+
scaleX: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
81
|
+
scaleY: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
82
|
+
rotate: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
83
|
+
}, import("zod/v4/core").$strip>>;
|
|
84
|
+
animation: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
85
|
+
entering: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
86
|
+
preset: import("zod").ZodEnum<{
|
|
87
|
+
FadeIn: "FadeIn";
|
|
88
|
+
FadeInUp: "FadeInUp";
|
|
89
|
+
FadeInDown: "FadeInDown";
|
|
90
|
+
FadeInLeft: "FadeInLeft";
|
|
91
|
+
FadeInRight: "FadeInRight";
|
|
92
|
+
SlideInUp: "SlideInUp";
|
|
93
|
+
SlideInDown: "SlideInDown";
|
|
94
|
+
SlideInLeft: "SlideInLeft";
|
|
95
|
+
SlideInRight: "SlideInRight";
|
|
96
|
+
ZoomIn: "ZoomIn";
|
|
97
|
+
ZoomInRotate: "ZoomInRotate";
|
|
98
|
+
ZoomInUp: "ZoomInUp";
|
|
99
|
+
ZoomInDown: "ZoomInDown";
|
|
100
|
+
ZoomInLeft: "ZoomInLeft";
|
|
101
|
+
ZoomInRight: "ZoomInRight";
|
|
102
|
+
ZoomInEasyUp: "ZoomInEasyUp";
|
|
103
|
+
ZoomInEasyDown: "ZoomInEasyDown";
|
|
104
|
+
BounceIn: "BounceIn";
|
|
105
|
+
BounceInUp: "BounceInUp";
|
|
106
|
+
BounceInDown: "BounceInDown";
|
|
107
|
+
BounceInLeft: "BounceInLeft";
|
|
108
|
+
BounceInRight: "BounceInRight";
|
|
109
|
+
FlipInXUp: "FlipInXUp";
|
|
110
|
+
FlipInYLeft: "FlipInYLeft";
|
|
111
|
+
FlipInXDown: "FlipInXDown";
|
|
112
|
+
FlipInYRight: "FlipInYRight";
|
|
113
|
+
FlipInEasyX: "FlipInEasyX";
|
|
114
|
+
FlipInEasyY: "FlipInEasyY";
|
|
115
|
+
StretchInX: "StretchInX";
|
|
116
|
+
StretchInY: "StretchInY";
|
|
117
|
+
RotateInDownLeft: "RotateInDownLeft";
|
|
118
|
+
RotateInDownRight: "RotateInDownRight";
|
|
119
|
+
RotateInUpLeft: "RotateInUpLeft";
|
|
120
|
+
RotateInUpRight: "RotateInUpRight";
|
|
121
|
+
RollInLeft: "RollInLeft";
|
|
122
|
+
RollInRight: "RollInRight";
|
|
123
|
+
PinwheelIn: "PinwheelIn";
|
|
124
|
+
LightSpeedInLeft: "LightSpeedInLeft";
|
|
125
|
+
LightSpeedInRight: "LightSpeedInRight";
|
|
126
|
+
}>;
|
|
127
|
+
duration: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
128
|
+
delay: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
129
|
+
easing: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
130
|
+
linear: "linear";
|
|
131
|
+
"ease-in": "ease-in";
|
|
132
|
+
"ease-out": "ease-out";
|
|
133
|
+
"ease-in-out": "ease-in-out";
|
|
134
|
+
}>>;
|
|
135
|
+
spring: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
136
|
+
damping: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
137
|
+
stiffness: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
138
|
+
mass: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
139
|
+
}, import("zod/v4/core").$strip>>;
|
|
140
|
+
}, import("zod/v4/core").$strip>>;
|
|
141
|
+
exiting: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
142
|
+
preset: import("zod").ZodEnum<{
|
|
143
|
+
FadeOut: "FadeOut";
|
|
144
|
+
FadeOutUp: "FadeOutUp";
|
|
145
|
+
FadeOutDown: "FadeOutDown";
|
|
146
|
+
FadeOutLeft: "FadeOutLeft";
|
|
147
|
+
FadeOutRight: "FadeOutRight";
|
|
148
|
+
SlideOutUp: "SlideOutUp";
|
|
149
|
+
SlideOutDown: "SlideOutDown";
|
|
150
|
+
SlideOutLeft: "SlideOutLeft";
|
|
151
|
+
SlideOutRight: "SlideOutRight";
|
|
152
|
+
ZoomOut: "ZoomOut";
|
|
153
|
+
ZoomOutRotate: "ZoomOutRotate";
|
|
154
|
+
ZoomOutUp: "ZoomOutUp";
|
|
155
|
+
ZoomOutDown: "ZoomOutDown";
|
|
156
|
+
ZoomOutLeft: "ZoomOutLeft";
|
|
157
|
+
ZoomOutRight: "ZoomOutRight";
|
|
158
|
+
ZoomOutEasyUp: "ZoomOutEasyUp";
|
|
159
|
+
ZoomOutEasyDown: "ZoomOutEasyDown";
|
|
160
|
+
BounceOut: "BounceOut";
|
|
161
|
+
BounceOutUp: "BounceOutUp";
|
|
162
|
+
BounceOutDown: "BounceOutDown";
|
|
163
|
+
BounceOutLeft: "BounceOutLeft";
|
|
164
|
+
BounceOutRight: "BounceOutRight";
|
|
165
|
+
FlipOutXUp: "FlipOutXUp";
|
|
166
|
+
FlipOutYLeft: "FlipOutYLeft";
|
|
167
|
+
FlipOutXDown: "FlipOutXDown";
|
|
168
|
+
FlipOutYRight: "FlipOutYRight";
|
|
169
|
+
FlipOutEasyX: "FlipOutEasyX";
|
|
170
|
+
FlipOutEasyY: "FlipOutEasyY";
|
|
171
|
+
StretchOutX: "StretchOutX";
|
|
172
|
+
StretchOutY: "StretchOutY";
|
|
173
|
+
RotateOutDownLeft: "RotateOutDownLeft";
|
|
174
|
+
RotateOutDownRight: "RotateOutDownRight";
|
|
175
|
+
RotateOutUpLeft: "RotateOutUpLeft";
|
|
176
|
+
RotateOutUpRight: "RotateOutUpRight";
|
|
177
|
+
RollOutLeft: "RollOutLeft";
|
|
178
|
+
RollOutRight: "RollOutRight";
|
|
179
|
+
PinwheelOut: "PinwheelOut";
|
|
180
|
+
LightSpeedOutLeft: "LightSpeedOutLeft";
|
|
181
|
+
LightSpeedOutRight: "LightSpeedOutRight";
|
|
182
|
+
}>;
|
|
183
|
+
duration: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
184
|
+
delay: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
185
|
+
easing: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
186
|
+
linear: "linear";
|
|
187
|
+
"ease-in": "ease-in";
|
|
188
|
+
"ease-out": "ease-out";
|
|
189
|
+
"ease-in-out": "ease-in-out";
|
|
190
|
+
}>>;
|
|
191
|
+
spring: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
192
|
+
damping: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
193
|
+
stiffness: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
194
|
+
mass: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
195
|
+
}, import("zod/v4/core").$strip>>;
|
|
196
|
+
}, import("zod/v4/core").$strip>>;
|
|
197
|
+
layout: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
198
|
+
preset: import("zod").ZodEnum<{
|
|
199
|
+
LinearTransition: "LinearTransition";
|
|
200
|
+
FadingTransition: "FadingTransition";
|
|
201
|
+
SequencedTransition: "SequencedTransition";
|
|
202
|
+
JumpingTransition: "JumpingTransition";
|
|
203
|
+
CurvedTransition: "CurvedTransition";
|
|
204
|
+
EntryExitTransition: "EntryExitTransition";
|
|
205
|
+
}>;
|
|
206
|
+
duration: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
207
|
+
spring: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
208
|
+
damping: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
209
|
+
stiffness: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
210
|
+
mass: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
211
|
+
}, import("zod/v4/core").$strip>>;
|
|
212
|
+
}, import("zod/v4/core").$strip>>;
|
|
213
|
+
effect: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
214
|
+
preset: import("zod").ZodEnum<{
|
|
215
|
+
rotate: "rotate";
|
|
216
|
+
pulse: "pulse";
|
|
217
|
+
fade: "fade";
|
|
218
|
+
shimmer: "shimmer";
|
|
219
|
+
bounce: "bounce";
|
|
220
|
+
}>;
|
|
221
|
+
duration: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
222
|
+
delay: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
223
|
+
easing: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
224
|
+
linear: "linear";
|
|
225
|
+
"ease-in": "ease-in";
|
|
226
|
+
"ease-out": "ease-out";
|
|
227
|
+
"ease-in-out": "ease-in-out";
|
|
228
|
+
}>>;
|
|
229
|
+
loop: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
230
|
+
minScale: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
231
|
+
maxScale: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
232
|
+
minOpacity: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
233
|
+
degrees: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
234
|
+
}, import("zod/v4/core").$strip>>;
|
|
235
|
+
}, import("zod/v4/core").$strip>>;
|
|
76
236
|
}, import("zod/v4/core").$strip>;
|
|
77
237
|
type ZStackUIElement = Extract<UIElement, {
|
|
78
238
|
type: "ZStack";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ZStackElement.d.ts","sourceRoot":"","sources":["../../../../../src/UI/Pages/ComposableScreen/elements/ZStackElement.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,YAAY,EAAsB,MAAM,gBAAgB,CAAC;AAClE,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AACrC,OAAO,EAAE,aAAa,EAAO,MAAM,UAAU,CAAC;AAG9C,MAAM,MAAM,kBAAkB,GAAG,YAAY,CAAC;AAC9C,eAAO,MAAM,wBAAwB
|
|
1
|
+
{"version":3,"file":"ZStackElement.d.ts","sourceRoot":"","sources":["../../../../../src/UI/Pages/ComposableScreen/elements/ZStackElement.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,YAAY,EAAsB,MAAM,gBAAgB,CAAC;AAClE,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AACrC,OAAO,EAAE,aAAa,EAAO,MAAM,UAAU,CAAC;AAG9C,MAAM,MAAM,kBAAkB,GAAG,YAAY,CAAC;AAC9C,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gCAAqB,CAAC;AAE3D,KAAK,eAAe,GAAG,OAAO,CAAC,SAAS,EAAE;IAAE,IAAI,EAAE,QAAQ,CAAA;CAAE,CAAC,CAAC;AAE9D,KAAK,KAAK,GAAG;IACX,OAAO,EAAE,eAAe,CAAC;IACzB,GAAG,EAAE,aAAa,CAAC;CACpB,CAAC;AAEF,eAAO,MAAM,sBAAsB,GAAI,kBAAkB,KAAK,KAAG,KAAK,CAAC,YA0CtE,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Easing } from "react-native-reanimated";
|
|
2
|
+
import type { AnimationEasing, EnteringAnimation, ExitingAnimation, LayoutAnimation } from "@rocapine/react-native-onboarding";
|
|
3
|
+
export declare const EASING_MAP: Record<AnimationEasing, ReturnType<typeof Easing.bezier> | typeof Easing.linear>;
|
|
4
|
+
type AnyBuilder = any;
|
|
5
|
+
export declare const buildEntering: (cfg: EnteringAnimation | undefined) => AnyBuilder | undefined;
|
|
6
|
+
export declare const buildExiting: (cfg: ExitingAnimation | undefined) => AnyBuilder | undefined;
|
|
7
|
+
export declare const buildLayout: (cfg: LayoutAnimation | undefined) => AnyBuilder | undefined;
|
|
8
|
+
export {};
|
|
9
|
+
//# sourceMappingURL=buildAnimation.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"buildAnimation.d.ts","sourceRoot":"","sources":["../../../../../src/UI/Pages/ComposableScreen/elements/buildAnimation.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AACjD,OAAO,KAAK,EACV,eAAe,EACf,iBAAiB,EACjB,gBAAgB,EAChB,eAAe,EAChB,MAAM,mCAAmC,CAAC;AAI3C,eAAO,MAAM,UAAU,EAAE,MAAM,CAC7B,eAAe,EACf,UAAU,CAAC,OAAO,MAAM,CAAC,MAAM,CAAC,GAAG,OAAO,MAAM,CAAC,MAAM,CAMxD,CAAC;AAOF,KAAK,UAAU,GAAG,GAAG,CAAC;AAoCtB,eAAO,MAAM,aAAa,GAAI,KAAK,iBAAiB,GAAG,SAAS,KAAG,UAAU,GAAG,SAC1D,CAAC;AAEvB,eAAO,MAAM,YAAY,GAAI,KAAK,gBAAgB,GAAG,SAAS,KAAG,UAAU,GAAG,SACxD,CAAC;AAEvB,eAAO,MAAM,WAAW,GAAI,KAAK,eAAe,GAAG,SAAS,KAAG,UAAU,GAAG,SAc3E,CAAC"}
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.buildLayout = exports.buildExiting = exports.buildEntering = exports.EASING_MAP = void 0;
|
|
37
|
+
const Reanimated = __importStar(require("react-native-reanimated"));
|
|
38
|
+
const react_native_reanimated_1 = require("react-native-reanimated");
|
|
39
|
+
// CSS-style cubic-bezier curves matching the selectable easing names. Shared by
|
|
40
|
+
// the animation builders here and by ProgressIndicatorElement (single source).
|
|
41
|
+
exports.EASING_MAP = {
|
|
42
|
+
linear: react_native_reanimated_1.Easing.linear,
|
|
43
|
+
"ease-in": react_native_reanimated_1.Easing.bezier(0.42, 0, 1, 1),
|
|
44
|
+
"ease-out": react_native_reanimated_1.Easing.bezier(0, 0, 0.58, 1),
|
|
45
|
+
"ease-in-out": react_native_reanimated_1.Easing.bezier(0.42, 0, 0.58, 1),
|
|
46
|
+
};
|
|
47
|
+
const resolveBuilder = (preset) => {
|
|
48
|
+
const b = Reanimated[preset];
|
|
49
|
+
return b !== null && b !== void 0 ? b : undefined;
|
|
50
|
+
};
|
|
51
|
+
const applySpringOrEasing = (builder, spring, easing) => {
|
|
52
|
+
// reanimated: `spring` (`.springify()`) and `.easing()` are mutually exclusive.
|
|
53
|
+
// Spring wins, matching the schema contract.
|
|
54
|
+
if (spring) {
|
|
55
|
+
let b = builder.springify();
|
|
56
|
+
if (spring.damping != null)
|
|
57
|
+
b = b.damping(spring.damping);
|
|
58
|
+
if (spring.stiffness != null)
|
|
59
|
+
b = b.stiffness(spring.stiffness);
|
|
60
|
+
if (spring.mass != null)
|
|
61
|
+
b = b.mass(spring.mass);
|
|
62
|
+
return b;
|
|
63
|
+
}
|
|
64
|
+
if (easing)
|
|
65
|
+
return builder.easing(exports.EASING_MAP[easing]);
|
|
66
|
+
return builder;
|
|
67
|
+
};
|
|
68
|
+
const buildTransition = (cfg) => {
|
|
69
|
+
if (!cfg)
|
|
70
|
+
return undefined;
|
|
71
|
+
let b = resolveBuilder(cfg.preset);
|
|
72
|
+
if (!b)
|
|
73
|
+
return undefined;
|
|
74
|
+
if (cfg.duration != null)
|
|
75
|
+
b = b.duration(cfg.duration);
|
|
76
|
+
if (cfg.delay != null)
|
|
77
|
+
b = b.delay(cfg.delay);
|
|
78
|
+
return applySpringOrEasing(b, cfg.spring, cfg.easing);
|
|
79
|
+
};
|
|
80
|
+
const buildEntering = (cfg) => buildTransition(cfg);
|
|
81
|
+
exports.buildEntering = buildEntering;
|
|
82
|
+
const buildExiting = (cfg) => buildTransition(cfg);
|
|
83
|
+
exports.buildExiting = buildExiting;
|
|
84
|
+
const buildLayout = (cfg) => {
|
|
85
|
+
if (!cfg)
|
|
86
|
+
return undefined;
|
|
87
|
+
let b = resolveBuilder(cfg.preset);
|
|
88
|
+
if (!b)
|
|
89
|
+
return undefined;
|
|
90
|
+
// Layout transitions are referenced as static builder objects; calling a
|
|
91
|
+
// modifier returns a configured instance.
|
|
92
|
+
if (cfg.duration != null)
|
|
93
|
+
b = b.duration(cfg.duration);
|
|
94
|
+
if (cfg.spring) {
|
|
95
|
+
b = b.springify();
|
|
96
|
+
if (cfg.spring.damping != null)
|
|
97
|
+
b = b.damping(cfg.spring.damping);
|
|
98
|
+
if (cfg.spring.stiffness != null)
|
|
99
|
+
b = b.stiffness(cfg.spring.stiffness);
|
|
100
|
+
if (cfg.spring.mass != null)
|
|
101
|
+
b = b.mass(cfg.spring.mass);
|
|
102
|
+
}
|
|
103
|
+
return b;
|
|
104
|
+
};
|
|
105
|
+
exports.buildLayout = buildLayout;
|
|
106
|
+
//# sourceMappingURL=buildAnimation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"buildAnimation.js","sourceRoot":"","sources":["../../../../../src/UI/Pages/ComposableScreen/elements/buildAnimation.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,oEAAsD;AACtD,qEAAiD;AAQjD,gFAAgF;AAChF,+EAA+E;AAClE,QAAA,UAAU,GAGnB;IACF,MAAM,EAAE,gCAAM,CAAC,MAAM;IACrB,SAAS,EAAE,gCAAM,CAAC,MAAM,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC;IACvC,UAAU,EAAE,gCAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,IAAI,EAAE,CAAC,CAAC;IACxC,aAAa,EAAE,gCAAM,CAAC,MAAM,CAAC,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,CAAC,CAAC;CAC/C,CAAC;AASF,MAAM,cAAc,GAAG,CAAC,MAAc,EAA0B,EAAE;IAChE,MAAM,CAAC,GAAI,UAAoD,CAAC,MAAM,CAAC,CAAC;IACxE,OAAO,CAAC,aAAD,CAAC,cAAD,CAAC,GAAI,SAAS,CAAC;AACxB,CAAC,CAAC;AAEF,MAAM,mBAAmB,GAAG,CAC1B,OAAmB,EACnB,MAAgE,EAChE,MAAwB,EACZ,EAAE;IACd,gFAAgF;IAChF,6CAA6C;IAC7C,IAAI,MAAM,EAAE,CAAC;QACX,IAAI,CAAC,GAAG,OAAO,CAAC,SAAS,EAAE,CAAC;QAC5B,IAAI,MAAM,CAAC,OAAO,IAAI,IAAI;YAAE,CAAC,GAAG,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;QAC1D,IAAI,MAAM,CAAC,SAAS,IAAI,IAAI;YAAE,CAAC,GAAG,CAAC,CAAC,SAAS,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC;QAChE,IAAI,MAAM,CAAC,IAAI,IAAI,IAAI;YAAE,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;QACjD,OAAO,CAAC,CAAC;IACX,CAAC;IACD,IAAI,MAAM;QAAE,OAAO,OAAO,CAAC,MAAM,CAAC,kBAAU,CAAC,MAAM,CAAC,CAAC,CAAC;IACtD,OAAO,OAAO,CAAC;AACjB,CAAC,CAAC;AAEF,MAAM,eAAe,GAAG,CACtB,GAAqD,EAC7B,EAAE;IAC1B,IAAI,CAAC,GAAG;QAAE,OAAO,SAAS,CAAC;IAC3B,IAAI,CAAC,GAAG,cAAc,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC;IACnC,IAAI,CAAC,CAAC;QAAE,OAAO,SAAS,CAAC;IACzB,IAAI,GAAG,CAAC,QAAQ,IAAI,IAAI;QAAE,CAAC,GAAG,CAAC,CAAC,QAAQ,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;IACvD,IAAI,GAAG,CAAC,KAAK,IAAI,IAAI;QAAE,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;IAC9C,OAAO,mBAAmB,CAAC,CAAC,EAAE,GAAG,CAAC,MAAM,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC;AACxD,CAAC,CAAC;AAEK,MAAM,aAAa,GAAG,CAAC,GAAkC,EAA0B,EAAE,CAC1F,eAAe,CAAC,GAAG,CAAC,CAAC;AADV,QAAA,aAAa,iBACH;AAEhB,MAAM,YAAY,GAAG,CAAC,GAAiC,EAA0B,EAAE,CACxF,eAAe,CAAC,GAAG,CAAC,CAAC;AADV,QAAA,YAAY,gBACF;AAEhB,MAAM,WAAW,GAAG,CAAC,GAAgC,EAA0B,EAAE;IACtF,IAAI,CAAC,GAAG;QAAE,OAAO,SAAS,CAAC;IAC3B,IAAI,CAAC,GAAG,cAAc,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC;IACnC,IAAI,CAAC,CAAC;QAAE,OAAO,SAAS,CAAC;IACzB,yEAAyE;IACzE,0CAA0C;IAC1C,IAAI,GAAG,CAAC,QAAQ,IAAI,IAAI;QAAE,CAAC,GAAG,CAAC,CAAC,QAAQ,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;IACvD,IAAI,GAAG,CAAC,MAAM,EAAE,CAAC;QACf,CAAC,GAAG,CAAC,CAAC,SAAS,EAAE,CAAC;QAClB,IAAI,GAAG,CAAC,MAAM,CAAC,OAAO,IAAI,IAAI;YAAE,CAAC,GAAG,CAAC,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;QAClE,IAAI,GAAG,CAAC,MAAM,CAAC,SAAS,IAAI,IAAI;YAAE,CAAC,GAAG,CAAC,CAAC,SAAS,CAAC,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC;QACxE,IAAI,GAAG,CAAC,MAAM,CAAC,IAAI,IAAI,IAAI;YAAE,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;IAC3D,CAAC;IACD,OAAO,CAAC,CAAC;AACX,CAAC,CAAC;AAdW,QAAA,WAAW,eActB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"renderElement.d.ts","sourceRoot":"","sources":["../../../../../src/UI/Pages/ComposableScreen/elements/renderElement.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"renderElement.d.ts","sourceRoot":"","sources":["../../../../../src/UI/Pages/ComposableScreen/elements/renderElement.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAErC,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAsBzC,eAAO,MAAM,aAAa,GACxB,SAAS,SAAS,EAClB,KAAK,aAAa,EAClB,aAAa,QAAQ,GAAG,QAAQ,GAAG,QAAQ,KAC1C,KAAK,CAAC,SA8GR,CAAC"}
|