@rocapine/react-native-onboarding 1.31.0 → 1.33.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.
Files changed (66) hide show
  1. package/dist/index.d.ts +1 -1
  2. package/dist/index.d.ts.map +1 -1
  3. package/dist/index.js.map +1 -1
  4. package/dist/onboarding-example.d.ts +330 -30
  5. package/dist/onboarding-example.d.ts.map +1 -1
  6. package/dist/onboarding-example.js +52 -0
  7. package/dist/onboarding-example.js.map +1 -1
  8. package/dist/steps/ComposableScreen/elements/BaseBoxProps.d.ts +220 -0
  9. package/dist/steps/ComposableScreen/elements/BaseBoxProps.d.ts.map +1 -1
  10. package/dist/steps/ComposableScreen/elements/BaseBoxProps.js +83 -0
  11. package/dist/steps/ComposableScreen/elements/BaseBoxProps.js.map +1 -1
  12. package/dist/steps/ComposableScreen/elements/ButtonElement.d.ts +640 -0
  13. package/dist/steps/ComposableScreen/elements/ButtonElement.d.ts.map +1 -1
  14. package/dist/steps/ComposableScreen/elements/CarouselElement.d.ts +160 -0
  15. package/dist/steps/ComposableScreen/elements/CarouselElement.d.ts.map +1 -1
  16. package/dist/steps/ComposableScreen/elements/CheckboxGroupElement.d.ts +160 -0
  17. package/dist/steps/ComposableScreen/elements/CheckboxGroupElement.d.ts.map +1 -1
  18. package/dist/steps/ComposableScreen/elements/DatePickerElement.d.ts +160 -0
  19. package/dist/steps/ComposableScreen/elements/DatePickerElement.d.ts.map +1 -1
  20. package/dist/steps/ComposableScreen/elements/IconElement.d.ts +160 -0
  21. package/dist/steps/ComposableScreen/elements/IconElement.d.ts.map +1 -1
  22. package/dist/steps/ComposableScreen/elements/ImageElement.d.ts +160 -0
  23. package/dist/steps/ComposableScreen/elements/ImageElement.d.ts.map +1 -1
  24. package/dist/steps/ComposableScreen/elements/InputElement.d.ts +160 -0
  25. package/dist/steps/ComposableScreen/elements/InputElement.d.ts.map +1 -1
  26. package/dist/steps/ComposableScreen/elements/KeyboardAvoidingViewElement.d.ts +160 -0
  27. package/dist/steps/ComposableScreen/elements/KeyboardAvoidingViewElement.d.ts.map +1 -1
  28. package/dist/steps/ComposableScreen/elements/LottieElement.d.ts +160 -0
  29. package/dist/steps/ComposableScreen/elements/LottieElement.d.ts.map +1 -1
  30. package/dist/steps/ComposableScreen/elements/ProgressIndicatorElement.d.ts +160 -0
  31. package/dist/steps/ComposableScreen/elements/ProgressIndicatorElement.d.ts.map +1 -1
  32. package/dist/steps/ComposableScreen/elements/RadioGroupElement.d.ts +160 -0
  33. package/dist/steps/ComposableScreen/elements/RadioGroupElement.d.ts.map +1 -1
  34. package/dist/steps/ComposableScreen/elements/RichTextElement.d.ts +303 -0
  35. package/dist/steps/ComposableScreen/elements/RichTextElement.d.ts.map +1 -0
  36. package/dist/steps/ComposableScreen/elements/RichTextElement.js +20 -0
  37. package/dist/steps/ComposableScreen/elements/RichTextElement.js.map +1 -0
  38. package/dist/steps/ComposableScreen/elements/RiveElement.d.ts +160 -0
  39. package/dist/steps/ComposableScreen/elements/RiveElement.d.ts.map +1 -1
  40. package/dist/steps/ComposableScreen/elements/SafeAreaViewElement.d.ts +160 -0
  41. package/dist/steps/ComposableScreen/elements/SafeAreaViewElement.d.ts.map +1 -1
  42. package/dist/steps/ComposableScreen/elements/ScrollViewElement.d.ts +160 -0
  43. package/dist/steps/ComposableScreen/elements/ScrollViewElement.d.ts.map +1 -1
  44. package/dist/steps/ComposableScreen/elements/StackElement.d.ts +160 -0
  45. package/dist/steps/ComposableScreen/elements/StackElement.d.ts.map +1 -1
  46. package/dist/steps/ComposableScreen/elements/TextElement.d.ts +200 -0
  47. package/dist/steps/ComposableScreen/elements/TextElement.d.ts.map +1 -1
  48. package/dist/steps/ComposableScreen/elements/TextElement.js +6 -0
  49. package/dist/steps/ComposableScreen/elements/TextElement.js.map +1 -1
  50. package/dist/steps/ComposableScreen/elements/VideoElement.d.ts +160 -0
  51. package/dist/steps/ComposableScreen/elements/VideoElement.d.ts.map +1 -1
  52. package/dist/steps/ComposableScreen/elements/WheelPickerElement.d.ts +160 -0
  53. package/dist/steps/ComposableScreen/elements/WheelPickerElement.d.ts.map +1 -1
  54. package/dist/steps/ComposableScreen/elements/ZStackElement.d.ts +160 -0
  55. package/dist/steps/ComposableScreen/elements/ZStackElement.d.ts.map +1 -1
  56. package/dist/steps/ComposableScreen/types.d.ts +12 -0
  57. package/dist/steps/ComposableScreen/types.d.ts.map +1 -1
  58. package/dist/steps/ComposableScreen/types.js +15 -2
  59. package/dist/steps/ComposableScreen/types.js.map +1 -1
  60. package/package.json +1 -1
  61. package/src/index.ts +13 -0
  62. package/src/onboarding-example.ts +52 -0
  63. package/src/steps/ComposableScreen/elements/BaseBoxProps.ts +211 -0
  64. package/src/steps/ComposableScreen/elements/RichTextElement.ts +55 -0
  65. package/src/steps/ComposableScreen/elements/TextElement.ts +14 -0
  66. package/src/steps/ComposableScreen/types.ts +39 -2
@@ -78,6 +78,166 @@ export declare const IconElementPropsSchema: z.ZodObject<{
78
78
  shadowOpacity: z.ZodOptional<z.ZodNumber>;
79
79
  shadowRadius: z.ZodOptional<z.ZodNumber>;
80
80
  elevation: z.ZodOptional<z.ZodNumber>;
81
+ transform: z.ZodOptional<z.ZodObject<{
82
+ translateX: z.ZodOptional<z.ZodNumber>;
83
+ translateY: z.ZodOptional<z.ZodNumber>;
84
+ scale: z.ZodOptional<z.ZodNumber>;
85
+ scaleX: z.ZodOptional<z.ZodNumber>;
86
+ scaleY: z.ZodOptional<z.ZodNumber>;
87
+ rotate: z.ZodOptional<z.ZodNumber>;
88
+ }, z.core.$strip>>;
89
+ animation: z.ZodOptional<z.ZodObject<{
90
+ entering: z.ZodOptional<z.ZodObject<{
91
+ preset: z.ZodEnum<{
92
+ FadeIn: "FadeIn";
93
+ FadeInUp: "FadeInUp";
94
+ FadeInDown: "FadeInDown";
95
+ FadeInLeft: "FadeInLeft";
96
+ FadeInRight: "FadeInRight";
97
+ SlideInUp: "SlideInUp";
98
+ SlideInDown: "SlideInDown";
99
+ SlideInLeft: "SlideInLeft";
100
+ SlideInRight: "SlideInRight";
101
+ ZoomIn: "ZoomIn";
102
+ ZoomInRotate: "ZoomInRotate";
103
+ ZoomInUp: "ZoomInUp";
104
+ ZoomInDown: "ZoomInDown";
105
+ ZoomInLeft: "ZoomInLeft";
106
+ ZoomInRight: "ZoomInRight";
107
+ ZoomInEasyUp: "ZoomInEasyUp";
108
+ ZoomInEasyDown: "ZoomInEasyDown";
109
+ BounceIn: "BounceIn";
110
+ BounceInUp: "BounceInUp";
111
+ BounceInDown: "BounceInDown";
112
+ BounceInLeft: "BounceInLeft";
113
+ BounceInRight: "BounceInRight";
114
+ FlipInXUp: "FlipInXUp";
115
+ FlipInYLeft: "FlipInYLeft";
116
+ FlipInXDown: "FlipInXDown";
117
+ FlipInYRight: "FlipInYRight";
118
+ FlipInEasyX: "FlipInEasyX";
119
+ FlipInEasyY: "FlipInEasyY";
120
+ StretchInX: "StretchInX";
121
+ StretchInY: "StretchInY";
122
+ RotateInDownLeft: "RotateInDownLeft";
123
+ RotateInDownRight: "RotateInDownRight";
124
+ RotateInUpLeft: "RotateInUpLeft";
125
+ RotateInUpRight: "RotateInUpRight";
126
+ RollInLeft: "RollInLeft";
127
+ RollInRight: "RollInRight";
128
+ PinwheelIn: "PinwheelIn";
129
+ LightSpeedInLeft: "LightSpeedInLeft";
130
+ LightSpeedInRight: "LightSpeedInRight";
131
+ }>;
132
+ duration: z.ZodOptional<z.ZodNumber>;
133
+ delay: z.ZodOptional<z.ZodNumber>;
134
+ easing: z.ZodOptional<z.ZodEnum<{
135
+ linear: "linear";
136
+ "ease-in": "ease-in";
137
+ "ease-out": "ease-out";
138
+ "ease-in-out": "ease-in-out";
139
+ }>>;
140
+ spring: z.ZodOptional<z.ZodObject<{
141
+ damping: z.ZodOptional<z.ZodNumber>;
142
+ stiffness: z.ZodOptional<z.ZodNumber>;
143
+ mass: z.ZodOptional<z.ZodNumber>;
144
+ }, z.core.$strip>>;
145
+ }, z.core.$strip>>;
146
+ exiting: z.ZodOptional<z.ZodObject<{
147
+ preset: z.ZodEnum<{
148
+ FadeOut: "FadeOut";
149
+ FadeOutUp: "FadeOutUp";
150
+ FadeOutDown: "FadeOutDown";
151
+ FadeOutLeft: "FadeOutLeft";
152
+ FadeOutRight: "FadeOutRight";
153
+ SlideOutUp: "SlideOutUp";
154
+ SlideOutDown: "SlideOutDown";
155
+ SlideOutLeft: "SlideOutLeft";
156
+ SlideOutRight: "SlideOutRight";
157
+ ZoomOut: "ZoomOut";
158
+ ZoomOutRotate: "ZoomOutRotate";
159
+ ZoomOutUp: "ZoomOutUp";
160
+ ZoomOutDown: "ZoomOutDown";
161
+ ZoomOutLeft: "ZoomOutLeft";
162
+ ZoomOutRight: "ZoomOutRight";
163
+ ZoomOutEasyUp: "ZoomOutEasyUp";
164
+ ZoomOutEasyDown: "ZoomOutEasyDown";
165
+ BounceOut: "BounceOut";
166
+ BounceOutUp: "BounceOutUp";
167
+ BounceOutDown: "BounceOutDown";
168
+ BounceOutLeft: "BounceOutLeft";
169
+ BounceOutRight: "BounceOutRight";
170
+ FlipOutXUp: "FlipOutXUp";
171
+ FlipOutYLeft: "FlipOutYLeft";
172
+ FlipOutXDown: "FlipOutXDown";
173
+ FlipOutYRight: "FlipOutYRight";
174
+ FlipOutEasyX: "FlipOutEasyX";
175
+ FlipOutEasyY: "FlipOutEasyY";
176
+ StretchOutX: "StretchOutX";
177
+ StretchOutY: "StretchOutY";
178
+ RotateOutDownLeft: "RotateOutDownLeft";
179
+ RotateOutDownRight: "RotateOutDownRight";
180
+ RotateOutUpLeft: "RotateOutUpLeft";
181
+ RotateOutUpRight: "RotateOutUpRight";
182
+ RollOutLeft: "RollOutLeft";
183
+ RollOutRight: "RollOutRight";
184
+ PinwheelOut: "PinwheelOut";
185
+ LightSpeedOutLeft: "LightSpeedOutLeft";
186
+ LightSpeedOutRight: "LightSpeedOutRight";
187
+ }>;
188
+ duration: z.ZodOptional<z.ZodNumber>;
189
+ delay: z.ZodOptional<z.ZodNumber>;
190
+ easing: z.ZodOptional<z.ZodEnum<{
191
+ linear: "linear";
192
+ "ease-in": "ease-in";
193
+ "ease-out": "ease-out";
194
+ "ease-in-out": "ease-in-out";
195
+ }>>;
196
+ spring: z.ZodOptional<z.ZodObject<{
197
+ damping: z.ZodOptional<z.ZodNumber>;
198
+ stiffness: z.ZodOptional<z.ZodNumber>;
199
+ mass: z.ZodOptional<z.ZodNumber>;
200
+ }, z.core.$strip>>;
201
+ }, z.core.$strip>>;
202
+ layout: z.ZodOptional<z.ZodObject<{
203
+ preset: z.ZodEnum<{
204
+ LinearTransition: "LinearTransition";
205
+ FadingTransition: "FadingTransition";
206
+ SequencedTransition: "SequencedTransition";
207
+ JumpingTransition: "JumpingTransition";
208
+ CurvedTransition: "CurvedTransition";
209
+ EntryExitTransition: "EntryExitTransition";
210
+ }>;
211
+ duration: z.ZodOptional<z.ZodNumber>;
212
+ spring: z.ZodOptional<z.ZodObject<{
213
+ damping: z.ZodOptional<z.ZodNumber>;
214
+ stiffness: z.ZodOptional<z.ZodNumber>;
215
+ mass: z.ZodOptional<z.ZodNumber>;
216
+ }, z.core.$strip>>;
217
+ }, z.core.$strip>>;
218
+ effect: z.ZodOptional<z.ZodObject<{
219
+ preset: z.ZodEnum<{
220
+ pulse: "pulse";
221
+ fade: "fade";
222
+ rotate: "rotate";
223
+ shimmer: "shimmer";
224
+ bounce: "bounce";
225
+ }>;
226
+ duration: z.ZodOptional<z.ZodNumber>;
227
+ delay: z.ZodOptional<z.ZodNumber>;
228
+ easing: z.ZodOptional<z.ZodEnum<{
229
+ linear: "linear";
230
+ "ease-in": "ease-in";
231
+ "ease-out": "ease-out";
232
+ "ease-in-out": "ease-in-out";
233
+ }>>;
234
+ loop: z.ZodOptional<z.ZodBoolean>;
235
+ minScale: z.ZodOptional<z.ZodNumber>;
236
+ maxScale: z.ZodOptional<z.ZodNumber>;
237
+ minOpacity: z.ZodOptional<z.ZodNumber>;
238
+ degrees: z.ZodOptional<z.ZodNumber>;
239
+ }, z.core.$strip>>;
240
+ }, z.core.$strip>>;
81
241
  name: z.ZodString;
82
242
  size: z.ZodOptional<z.ZodNumber>;
83
243
  color: z.ZodOptional<z.ZodString>;
@@ -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,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,eAAe,CAAC,EAAE,MAAM,CAAC;CAC1B,CAAC;AAEF,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAQjC,CAAC"}
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,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,eAAe,CAAC,EAAE,MAAM,CAAC;CAC1B,CAAC;AAEF,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAQjC,CAAC"}
@@ -74,6 +74,166 @@ export declare const ImageElementPropsSchema: z.ZodObject<{
74
74
  shadowOpacity: z.ZodOptional<z.ZodNumber>;
75
75
  shadowRadius: z.ZodOptional<z.ZodNumber>;
76
76
  elevation: z.ZodOptional<z.ZodNumber>;
77
+ transform: z.ZodOptional<z.ZodObject<{
78
+ translateX: z.ZodOptional<z.ZodNumber>;
79
+ translateY: z.ZodOptional<z.ZodNumber>;
80
+ scale: z.ZodOptional<z.ZodNumber>;
81
+ scaleX: z.ZodOptional<z.ZodNumber>;
82
+ scaleY: z.ZodOptional<z.ZodNumber>;
83
+ rotate: z.ZodOptional<z.ZodNumber>;
84
+ }, z.core.$strip>>;
85
+ animation: z.ZodOptional<z.ZodObject<{
86
+ entering: z.ZodOptional<z.ZodObject<{
87
+ preset: z.ZodEnum<{
88
+ FadeIn: "FadeIn";
89
+ FadeInUp: "FadeInUp";
90
+ FadeInDown: "FadeInDown";
91
+ FadeInLeft: "FadeInLeft";
92
+ FadeInRight: "FadeInRight";
93
+ SlideInUp: "SlideInUp";
94
+ SlideInDown: "SlideInDown";
95
+ SlideInLeft: "SlideInLeft";
96
+ SlideInRight: "SlideInRight";
97
+ ZoomIn: "ZoomIn";
98
+ ZoomInRotate: "ZoomInRotate";
99
+ ZoomInUp: "ZoomInUp";
100
+ ZoomInDown: "ZoomInDown";
101
+ ZoomInLeft: "ZoomInLeft";
102
+ ZoomInRight: "ZoomInRight";
103
+ ZoomInEasyUp: "ZoomInEasyUp";
104
+ ZoomInEasyDown: "ZoomInEasyDown";
105
+ BounceIn: "BounceIn";
106
+ BounceInUp: "BounceInUp";
107
+ BounceInDown: "BounceInDown";
108
+ BounceInLeft: "BounceInLeft";
109
+ BounceInRight: "BounceInRight";
110
+ FlipInXUp: "FlipInXUp";
111
+ FlipInYLeft: "FlipInYLeft";
112
+ FlipInXDown: "FlipInXDown";
113
+ FlipInYRight: "FlipInYRight";
114
+ FlipInEasyX: "FlipInEasyX";
115
+ FlipInEasyY: "FlipInEasyY";
116
+ StretchInX: "StretchInX";
117
+ StretchInY: "StretchInY";
118
+ RotateInDownLeft: "RotateInDownLeft";
119
+ RotateInDownRight: "RotateInDownRight";
120
+ RotateInUpLeft: "RotateInUpLeft";
121
+ RotateInUpRight: "RotateInUpRight";
122
+ RollInLeft: "RollInLeft";
123
+ RollInRight: "RollInRight";
124
+ PinwheelIn: "PinwheelIn";
125
+ LightSpeedInLeft: "LightSpeedInLeft";
126
+ LightSpeedInRight: "LightSpeedInRight";
127
+ }>;
128
+ duration: z.ZodOptional<z.ZodNumber>;
129
+ delay: z.ZodOptional<z.ZodNumber>;
130
+ easing: z.ZodOptional<z.ZodEnum<{
131
+ linear: "linear";
132
+ "ease-in": "ease-in";
133
+ "ease-out": "ease-out";
134
+ "ease-in-out": "ease-in-out";
135
+ }>>;
136
+ spring: z.ZodOptional<z.ZodObject<{
137
+ damping: z.ZodOptional<z.ZodNumber>;
138
+ stiffness: z.ZodOptional<z.ZodNumber>;
139
+ mass: z.ZodOptional<z.ZodNumber>;
140
+ }, z.core.$strip>>;
141
+ }, z.core.$strip>>;
142
+ exiting: z.ZodOptional<z.ZodObject<{
143
+ preset: z.ZodEnum<{
144
+ FadeOut: "FadeOut";
145
+ FadeOutUp: "FadeOutUp";
146
+ FadeOutDown: "FadeOutDown";
147
+ FadeOutLeft: "FadeOutLeft";
148
+ FadeOutRight: "FadeOutRight";
149
+ SlideOutUp: "SlideOutUp";
150
+ SlideOutDown: "SlideOutDown";
151
+ SlideOutLeft: "SlideOutLeft";
152
+ SlideOutRight: "SlideOutRight";
153
+ ZoomOut: "ZoomOut";
154
+ ZoomOutRotate: "ZoomOutRotate";
155
+ ZoomOutUp: "ZoomOutUp";
156
+ ZoomOutDown: "ZoomOutDown";
157
+ ZoomOutLeft: "ZoomOutLeft";
158
+ ZoomOutRight: "ZoomOutRight";
159
+ ZoomOutEasyUp: "ZoomOutEasyUp";
160
+ ZoomOutEasyDown: "ZoomOutEasyDown";
161
+ BounceOut: "BounceOut";
162
+ BounceOutUp: "BounceOutUp";
163
+ BounceOutDown: "BounceOutDown";
164
+ BounceOutLeft: "BounceOutLeft";
165
+ BounceOutRight: "BounceOutRight";
166
+ FlipOutXUp: "FlipOutXUp";
167
+ FlipOutYLeft: "FlipOutYLeft";
168
+ FlipOutXDown: "FlipOutXDown";
169
+ FlipOutYRight: "FlipOutYRight";
170
+ FlipOutEasyX: "FlipOutEasyX";
171
+ FlipOutEasyY: "FlipOutEasyY";
172
+ StretchOutX: "StretchOutX";
173
+ StretchOutY: "StretchOutY";
174
+ RotateOutDownLeft: "RotateOutDownLeft";
175
+ RotateOutDownRight: "RotateOutDownRight";
176
+ RotateOutUpLeft: "RotateOutUpLeft";
177
+ RotateOutUpRight: "RotateOutUpRight";
178
+ RollOutLeft: "RollOutLeft";
179
+ RollOutRight: "RollOutRight";
180
+ PinwheelOut: "PinwheelOut";
181
+ LightSpeedOutLeft: "LightSpeedOutLeft";
182
+ LightSpeedOutRight: "LightSpeedOutRight";
183
+ }>;
184
+ duration: z.ZodOptional<z.ZodNumber>;
185
+ delay: z.ZodOptional<z.ZodNumber>;
186
+ easing: z.ZodOptional<z.ZodEnum<{
187
+ linear: "linear";
188
+ "ease-in": "ease-in";
189
+ "ease-out": "ease-out";
190
+ "ease-in-out": "ease-in-out";
191
+ }>>;
192
+ spring: z.ZodOptional<z.ZodObject<{
193
+ damping: z.ZodOptional<z.ZodNumber>;
194
+ stiffness: z.ZodOptional<z.ZodNumber>;
195
+ mass: z.ZodOptional<z.ZodNumber>;
196
+ }, z.core.$strip>>;
197
+ }, z.core.$strip>>;
198
+ layout: z.ZodOptional<z.ZodObject<{
199
+ preset: z.ZodEnum<{
200
+ LinearTransition: "LinearTransition";
201
+ FadingTransition: "FadingTransition";
202
+ SequencedTransition: "SequencedTransition";
203
+ JumpingTransition: "JumpingTransition";
204
+ CurvedTransition: "CurvedTransition";
205
+ EntryExitTransition: "EntryExitTransition";
206
+ }>;
207
+ duration: z.ZodOptional<z.ZodNumber>;
208
+ spring: z.ZodOptional<z.ZodObject<{
209
+ damping: z.ZodOptional<z.ZodNumber>;
210
+ stiffness: z.ZodOptional<z.ZodNumber>;
211
+ mass: z.ZodOptional<z.ZodNumber>;
212
+ }, z.core.$strip>>;
213
+ }, z.core.$strip>>;
214
+ effect: z.ZodOptional<z.ZodObject<{
215
+ preset: z.ZodEnum<{
216
+ pulse: "pulse";
217
+ fade: "fade";
218
+ rotate: "rotate";
219
+ shimmer: "shimmer";
220
+ bounce: "bounce";
221
+ }>;
222
+ duration: z.ZodOptional<z.ZodNumber>;
223
+ delay: z.ZodOptional<z.ZodNumber>;
224
+ easing: z.ZodOptional<z.ZodEnum<{
225
+ linear: "linear";
226
+ "ease-in": "ease-in";
227
+ "ease-out": "ease-out";
228
+ "ease-in-out": "ease-in-out";
229
+ }>>;
230
+ loop: z.ZodOptional<z.ZodBoolean>;
231
+ minScale: z.ZodOptional<z.ZodNumber>;
232
+ maxScale: z.ZodOptional<z.ZodNumber>;
233
+ minOpacity: z.ZodOptional<z.ZodNumber>;
234
+ degrees: z.ZodOptional<z.ZodNumber>;
235
+ }, z.core.$strip>>;
236
+ }, z.core.$strip>>;
77
237
  url: z.ZodString;
78
238
  aspectRatio: z.ZodOptional<z.ZodNumber>;
79
239
  resizeMode: z.ZodOptional<z.ZodEnum<{
@@ -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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAIlC,CAAC"}
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"}
@@ -96,6 +96,166 @@ export declare const InputElementPropsSchema: z.ZodObject<{
96
96
  shadowOpacity: z.ZodOptional<z.ZodNumber>;
97
97
  shadowRadius: z.ZodOptional<z.ZodNumber>;
98
98
  elevation: z.ZodOptional<z.ZodNumber>;
99
+ transform: z.ZodOptional<z.ZodObject<{
100
+ translateX: z.ZodOptional<z.ZodNumber>;
101
+ translateY: z.ZodOptional<z.ZodNumber>;
102
+ scale: z.ZodOptional<z.ZodNumber>;
103
+ scaleX: z.ZodOptional<z.ZodNumber>;
104
+ scaleY: z.ZodOptional<z.ZodNumber>;
105
+ rotate: z.ZodOptional<z.ZodNumber>;
106
+ }, z.core.$strip>>;
107
+ animation: z.ZodOptional<z.ZodObject<{
108
+ entering: z.ZodOptional<z.ZodObject<{
109
+ preset: z.ZodEnum<{
110
+ FadeIn: "FadeIn";
111
+ FadeInUp: "FadeInUp";
112
+ FadeInDown: "FadeInDown";
113
+ FadeInLeft: "FadeInLeft";
114
+ FadeInRight: "FadeInRight";
115
+ SlideInUp: "SlideInUp";
116
+ SlideInDown: "SlideInDown";
117
+ SlideInLeft: "SlideInLeft";
118
+ SlideInRight: "SlideInRight";
119
+ ZoomIn: "ZoomIn";
120
+ ZoomInRotate: "ZoomInRotate";
121
+ ZoomInUp: "ZoomInUp";
122
+ ZoomInDown: "ZoomInDown";
123
+ ZoomInLeft: "ZoomInLeft";
124
+ ZoomInRight: "ZoomInRight";
125
+ ZoomInEasyUp: "ZoomInEasyUp";
126
+ ZoomInEasyDown: "ZoomInEasyDown";
127
+ BounceIn: "BounceIn";
128
+ BounceInUp: "BounceInUp";
129
+ BounceInDown: "BounceInDown";
130
+ BounceInLeft: "BounceInLeft";
131
+ BounceInRight: "BounceInRight";
132
+ FlipInXUp: "FlipInXUp";
133
+ FlipInYLeft: "FlipInYLeft";
134
+ FlipInXDown: "FlipInXDown";
135
+ FlipInYRight: "FlipInYRight";
136
+ FlipInEasyX: "FlipInEasyX";
137
+ FlipInEasyY: "FlipInEasyY";
138
+ StretchInX: "StretchInX";
139
+ StretchInY: "StretchInY";
140
+ RotateInDownLeft: "RotateInDownLeft";
141
+ RotateInDownRight: "RotateInDownRight";
142
+ RotateInUpLeft: "RotateInUpLeft";
143
+ RotateInUpRight: "RotateInUpRight";
144
+ RollInLeft: "RollInLeft";
145
+ RollInRight: "RollInRight";
146
+ PinwheelIn: "PinwheelIn";
147
+ LightSpeedInLeft: "LightSpeedInLeft";
148
+ LightSpeedInRight: "LightSpeedInRight";
149
+ }>;
150
+ duration: z.ZodOptional<z.ZodNumber>;
151
+ delay: z.ZodOptional<z.ZodNumber>;
152
+ easing: z.ZodOptional<z.ZodEnum<{
153
+ linear: "linear";
154
+ "ease-in": "ease-in";
155
+ "ease-out": "ease-out";
156
+ "ease-in-out": "ease-in-out";
157
+ }>>;
158
+ spring: z.ZodOptional<z.ZodObject<{
159
+ damping: z.ZodOptional<z.ZodNumber>;
160
+ stiffness: z.ZodOptional<z.ZodNumber>;
161
+ mass: z.ZodOptional<z.ZodNumber>;
162
+ }, z.core.$strip>>;
163
+ }, z.core.$strip>>;
164
+ exiting: z.ZodOptional<z.ZodObject<{
165
+ preset: z.ZodEnum<{
166
+ FadeOut: "FadeOut";
167
+ FadeOutUp: "FadeOutUp";
168
+ FadeOutDown: "FadeOutDown";
169
+ FadeOutLeft: "FadeOutLeft";
170
+ FadeOutRight: "FadeOutRight";
171
+ SlideOutUp: "SlideOutUp";
172
+ SlideOutDown: "SlideOutDown";
173
+ SlideOutLeft: "SlideOutLeft";
174
+ SlideOutRight: "SlideOutRight";
175
+ ZoomOut: "ZoomOut";
176
+ ZoomOutRotate: "ZoomOutRotate";
177
+ ZoomOutUp: "ZoomOutUp";
178
+ ZoomOutDown: "ZoomOutDown";
179
+ ZoomOutLeft: "ZoomOutLeft";
180
+ ZoomOutRight: "ZoomOutRight";
181
+ ZoomOutEasyUp: "ZoomOutEasyUp";
182
+ ZoomOutEasyDown: "ZoomOutEasyDown";
183
+ BounceOut: "BounceOut";
184
+ BounceOutUp: "BounceOutUp";
185
+ BounceOutDown: "BounceOutDown";
186
+ BounceOutLeft: "BounceOutLeft";
187
+ BounceOutRight: "BounceOutRight";
188
+ FlipOutXUp: "FlipOutXUp";
189
+ FlipOutYLeft: "FlipOutYLeft";
190
+ FlipOutXDown: "FlipOutXDown";
191
+ FlipOutYRight: "FlipOutYRight";
192
+ FlipOutEasyX: "FlipOutEasyX";
193
+ FlipOutEasyY: "FlipOutEasyY";
194
+ StretchOutX: "StretchOutX";
195
+ StretchOutY: "StretchOutY";
196
+ RotateOutDownLeft: "RotateOutDownLeft";
197
+ RotateOutDownRight: "RotateOutDownRight";
198
+ RotateOutUpLeft: "RotateOutUpLeft";
199
+ RotateOutUpRight: "RotateOutUpRight";
200
+ RollOutLeft: "RollOutLeft";
201
+ RollOutRight: "RollOutRight";
202
+ PinwheelOut: "PinwheelOut";
203
+ LightSpeedOutLeft: "LightSpeedOutLeft";
204
+ LightSpeedOutRight: "LightSpeedOutRight";
205
+ }>;
206
+ duration: z.ZodOptional<z.ZodNumber>;
207
+ delay: z.ZodOptional<z.ZodNumber>;
208
+ easing: z.ZodOptional<z.ZodEnum<{
209
+ linear: "linear";
210
+ "ease-in": "ease-in";
211
+ "ease-out": "ease-out";
212
+ "ease-in-out": "ease-in-out";
213
+ }>>;
214
+ spring: z.ZodOptional<z.ZodObject<{
215
+ damping: z.ZodOptional<z.ZodNumber>;
216
+ stiffness: z.ZodOptional<z.ZodNumber>;
217
+ mass: z.ZodOptional<z.ZodNumber>;
218
+ }, z.core.$strip>>;
219
+ }, z.core.$strip>>;
220
+ layout: z.ZodOptional<z.ZodObject<{
221
+ preset: z.ZodEnum<{
222
+ LinearTransition: "LinearTransition";
223
+ FadingTransition: "FadingTransition";
224
+ SequencedTransition: "SequencedTransition";
225
+ JumpingTransition: "JumpingTransition";
226
+ CurvedTransition: "CurvedTransition";
227
+ EntryExitTransition: "EntryExitTransition";
228
+ }>;
229
+ duration: z.ZodOptional<z.ZodNumber>;
230
+ spring: z.ZodOptional<z.ZodObject<{
231
+ damping: z.ZodOptional<z.ZodNumber>;
232
+ stiffness: z.ZodOptional<z.ZodNumber>;
233
+ mass: z.ZodOptional<z.ZodNumber>;
234
+ }, z.core.$strip>>;
235
+ }, z.core.$strip>>;
236
+ effect: z.ZodOptional<z.ZodObject<{
237
+ preset: z.ZodEnum<{
238
+ pulse: "pulse";
239
+ fade: "fade";
240
+ rotate: "rotate";
241
+ shimmer: "shimmer";
242
+ bounce: "bounce";
243
+ }>;
244
+ duration: z.ZodOptional<z.ZodNumber>;
245
+ delay: z.ZodOptional<z.ZodNumber>;
246
+ easing: z.ZodOptional<z.ZodEnum<{
247
+ linear: "linear";
248
+ "ease-in": "ease-in";
249
+ "ease-out": "ease-out";
250
+ "ease-in-out": "ease-in-out";
251
+ }>>;
252
+ loop: z.ZodOptional<z.ZodBoolean>;
253
+ minScale: z.ZodOptional<z.ZodNumber>;
254
+ maxScale: z.ZodOptional<z.ZodNumber>;
255
+ minOpacity: z.ZodOptional<z.ZodNumber>;
256
+ degrees: z.ZodOptional<z.ZodNumber>;
257
+ }, z.core.$strip>>;
258
+ }, z.core.$strip>>;
99
259
  variableName: z.ZodOptional<z.ZodString>;
100
260
  placeholder: z.ZodOptional<z.ZodString>;
101
261
  defaultValue: z.ZodOptional<z.ZodString>;
@@ -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;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAChC,SAAS,CAAC,EAAE,QAAQ,GAAG,QAAQ,CAAC;IAChC,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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAsBlC,CAAC"}
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;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAChC,SAAS,CAAC,EAAE,QAAQ,GAAG,QAAQ,CAAC;IAChC,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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAsBlC,CAAC"}