@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
@@ -76,6 +76,166 @@ export declare const KeyboardAvoidingViewElementPropsSchema: z.ZodObject<{
76
76
  shadowOpacity: z.ZodOptional<z.ZodNumber>;
77
77
  shadowRadius: z.ZodOptional<z.ZodNumber>;
78
78
  elevation: z.ZodOptional<z.ZodNumber>;
79
+ transform: z.ZodOptional<z.ZodObject<{
80
+ translateX: z.ZodOptional<z.ZodNumber>;
81
+ translateY: z.ZodOptional<z.ZodNumber>;
82
+ scale: z.ZodOptional<z.ZodNumber>;
83
+ scaleX: z.ZodOptional<z.ZodNumber>;
84
+ scaleY: z.ZodOptional<z.ZodNumber>;
85
+ rotate: z.ZodOptional<z.ZodNumber>;
86
+ }, z.core.$strip>>;
87
+ animation: z.ZodOptional<z.ZodObject<{
88
+ entering: z.ZodOptional<z.ZodObject<{
89
+ preset: z.ZodEnum<{
90
+ FadeIn: "FadeIn";
91
+ FadeInUp: "FadeInUp";
92
+ FadeInDown: "FadeInDown";
93
+ FadeInLeft: "FadeInLeft";
94
+ FadeInRight: "FadeInRight";
95
+ SlideInUp: "SlideInUp";
96
+ SlideInDown: "SlideInDown";
97
+ SlideInLeft: "SlideInLeft";
98
+ SlideInRight: "SlideInRight";
99
+ ZoomIn: "ZoomIn";
100
+ ZoomInRotate: "ZoomInRotate";
101
+ ZoomInUp: "ZoomInUp";
102
+ ZoomInDown: "ZoomInDown";
103
+ ZoomInLeft: "ZoomInLeft";
104
+ ZoomInRight: "ZoomInRight";
105
+ ZoomInEasyUp: "ZoomInEasyUp";
106
+ ZoomInEasyDown: "ZoomInEasyDown";
107
+ BounceIn: "BounceIn";
108
+ BounceInUp: "BounceInUp";
109
+ BounceInDown: "BounceInDown";
110
+ BounceInLeft: "BounceInLeft";
111
+ BounceInRight: "BounceInRight";
112
+ FlipInXUp: "FlipInXUp";
113
+ FlipInYLeft: "FlipInYLeft";
114
+ FlipInXDown: "FlipInXDown";
115
+ FlipInYRight: "FlipInYRight";
116
+ FlipInEasyX: "FlipInEasyX";
117
+ FlipInEasyY: "FlipInEasyY";
118
+ StretchInX: "StretchInX";
119
+ StretchInY: "StretchInY";
120
+ RotateInDownLeft: "RotateInDownLeft";
121
+ RotateInDownRight: "RotateInDownRight";
122
+ RotateInUpLeft: "RotateInUpLeft";
123
+ RotateInUpRight: "RotateInUpRight";
124
+ RollInLeft: "RollInLeft";
125
+ RollInRight: "RollInRight";
126
+ PinwheelIn: "PinwheelIn";
127
+ LightSpeedInLeft: "LightSpeedInLeft";
128
+ LightSpeedInRight: "LightSpeedInRight";
129
+ }>;
130
+ duration: z.ZodOptional<z.ZodNumber>;
131
+ delay: z.ZodOptional<z.ZodNumber>;
132
+ easing: z.ZodOptional<z.ZodEnum<{
133
+ linear: "linear";
134
+ "ease-in": "ease-in";
135
+ "ease-out": "ease-out";
136
+ "ease-in-out": "ease-in-out";
137
+ }>>;
138
+ spring: z.ZodOptional<z.ZodObject<{
139
+ damping: z.ZodOptional<z.ZodNumber>;
140
+ stiffness: z.ZodOptional<z.ZodNumber>;
141
+ mass: z.ZodOptional<z.ZodNumber>;
142
+ }, z.core.$strip>>;
143
+ }, z.core.$strip>>;
144
+ exiting: z.ZodOptional<z.ZodObject<{
145
+ preset: z.ZodEnum<{
146
+ FadeOut: "FadeOut";
147
+ FadeOutUp: "FadeOutUp";
148
+ FadeOutDown: "FadeOutDown";
149
+ FadeOutLeft: "FadeOutLeft";
150
+ FadeOutRight: "FadeOutRight";
151
+ SlideOutUp: "SlideOutUp";
152
+ SlideOutDown: "SlideOutDown";
153
+ SlideOutLeft: "SlideOutLeft";
154
+ SlideOutRight: "SlideOutRight";
155
+ ZoomOut: "ZoomOut";
156
+ ZoomOutRotate: "ZoomOutRotate";
157
+ ZoomOutUp: "ZoomOutUp";
158
+ ZoomOutDown: "ZoomOutDown";
159
+ ZoomOutLeft: "ZoomOutLeft";
160
+ ZoomOutRight: "ZoomOutRight";
161
+ ZoomOutEasyUp: "ZoomOutEasyUp";
162
+ ZoomOutEasyDown: "ZoomOutEasyDown";
163
+ BounceOut: "BounceOut";
164
+ BounceOutUp: "BounceOutUp";
165
+ BounceOutDown: "BounceOutDown";
166
+ BounceOutLeft: "BounceOutLeft";
167
+ BounceOutRight: "BounceOutRight";
168
+ FlipOutXUp: "FlipOutXUp";
169
+ FlipOutYLeft: "FlipOutYLeft";
170
+ FlipOutXDown: "FlipOutXDown";
171
+ FlipOutYRight: "FlipOutYRight";
172
+ FlipOutEasyX: "FlipOutEasyX";
173
+ FlipOutEasyY: "FlipOutEasyY";
174
+ StretchOutX: "StretchOutX";
175
+ StretchOutY: "StretchOutY";
176
+ RotateOutDownLeft: "RotateOutDownLeft";
177
+ RotateOutDownRight: "RotateOutDownRight";
178
+ RotateOutUpLeft: "RotateOutUpLeft";
179
+ RotateOutUpRight: "RotateOutUpRight";
180
+ RollOutLeft: "RollOutLeft";
181
+ RollOutRight: "RollOutRight";
182
+ PinwheelOut: "PinwheelOut";
183
+ LightSpeedOutLeft: "LightSpeedOutLeft";
184
+ LightSpeedOutRight: "LightSpeedOutRight";
185
+ }>;
186
+ duration: z.ZodOptional<z.ZodNumber>;
187
+ delay: z.ZodOptional<z.ZodNumber>;
188
+ easing: z.ZodOptional<z.ZodEnum<{
189
+ linear: "linear";
190
+ "ease-in": "ease-in";
191
+ "ease-out": "ease-out";
192
+ "ease-in-out": "ease-in-out";
193
+ }>>;
194
+ spring: z.ZodOptional<z.ZodObject<{
195
+ damping: z.ZodOptional<z.ZodNumber>;
196
+ stiffness: z.ZodOptional<z.ZodNumber>;
197
+ mass: z.ZodOptional<z.ZodNumber>;
198
+ }, z.core.$strip>>;
199
+ }, z.core.$strip>>;
200
+ layout: z.ZodOptional<z.ZodObject<{
201
+ preset: z.ZodEnum<{
202
+ LinearTransition: "LinearTransition";
203
+ FadingTransition: "FadingTransition";
204
+ SequencedTransition: "SequencedTransition";
205
+ JumpingTransition: "JumpingTransition";
206
+ CurvedTransition: "CurvedTransition";
207
+ EntryExitTransition: "EntryExitTransition";
208
+ }>;
209
+ duration: z.ZodOptional<z.ZodNumber>;
210
+ spring: z.ZodOptional<z.ZodObject<{
211
+ damping: z.ZodOptional<z.ZodNumber>;
212
+ stiffness: z.ZodOptional<z.ZodNumber>;
213
+ mass: z.ZodOptional<z.ZodNumber>;
214
+ }, z.core.$strip>>;
215
+ }, z.core.$strip>>;
216
+ effect: z.ZodOptional<z.ZodObject<{
217
+ preset: z.ZodEnum<{
218
+ pulse: "pulse";
219
+ fade: "fade";
220
+ rotate: "rotate";
221
+ shimmer: "shimmer";
222
+ bounce: "bounce";
223
+ }>;
224
+ duration: z.ZodOptional<z.ZodNumber>;
225
+ delay: z.ZodOptional<z.ZodNumber>;
226
+ easing: z.ZodOptional<z.ZodEnum<{
227
+ linear: "linear";
228
+ "ease-in": "ease-in";
229
+ "ease-out": "ease-out";
230
+ "ease-in-out": "ease-in-out";
231
+ }>>;
232
+ loop: z.ZodOptional<z.ZodBoolean>;
233
+ minScale: z.ZodOptional<z.ZodNumber>;
234
+ maxScale: z.ZodOptional<z.ZodNumber>;
235
+ minOpacity: z.ZodOptional<z.ZodNumber>;
236
+ degrees: z.ZodOptional<z.ZodNumber>;
237
+ }, z.core.$strip>>;
238
+ }, z.core.$strip>>;
79
239
  behavior: z.ZodOptional<z.ZodEnum<{
80
240
  position: "position";
81
241
  height: "height";
@@ -1 +1 @@
1
- {"version":3,"file":"KeyboardAvoidingViewElement.d.ts","sourceRoot":"","sources":["../../../../src/steps/ComposableScreen/elements/KeyboardAvoidingViewElement.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAsB,KAAK,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAEvE,MAAM,MAAM,wBAAwB,GAAG,SAAS,GAAG,QAAQ,GAAG,UAAU,CAAC;AAEzE,MAAM,MAAM,gCAAgC,GAAG,YAAY,GAAG;IAC5D,QAAQ,CAAC,EAAE,wBAAwB,CAAC;IACpC,sBAAsB,CAAC,EAAE,MAAM,CAAC;IAChC,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB,CAAC;AAEF,eAAO,MAAM,sCAAsC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAIjD,CAAC"}
1
+ {"version":3,"file":"KeyboardAvoidingViewElement.d.ts","sourceRoot":"","sources":["../../../../src/steps/ComposableScreen/elements/KeyboardAvoidingViewElement.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAsB,KAAK,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAEvE,MAAM,MAAM,wBAAwB,GAAG,SAAS,GAAG,QAAQ,GAAG,UAAU,CAAC;AAEzE,MAAM,MAAM,gCAAgC,GAAG,YAAY,GAAG;IAC5D,QAAQ,CAAC,EAAE,wBAAwB,CAAC;IACpC,sBAAsB,CAAC,EAAE,MAAM,CAAC;IAChC,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB,CAAC;AAEF,eAAO,MAAM,sCAAsC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAIjD,CAAC"}
@@ -76,6 +76,166 @@ export declare const LottieElementPropsSchema: z.ZodObject<{
76
76
  shadowOpacity: z.ZodOptional<z.ZodNumber>;
77
77
  shadowRadius: z.ZodOptional<z.ZodNumber>;
78
78
  elevation: z.ZodOptional<z.ZodNumber>;
79
+ transform: z.ZodOptional<z.ZodObject<{
80
+ translateX: z.ZodOptional<z.ZodNumber>;
81
+ translateY: z.ZodOptional<z.ZodNumber>;
82
+ scale: z.ZodOptional<z.ZodNumber>;
83
+ scaleX: z.ZodOptional<z.ZodNumber>;
84
+ scaleY: z.ZodOptional<z.ZodNumber>;
85
+ rotate: z.ZodOptional<z.ZodNumber>;
86
+ }, z.core.$strip>>;
87
+ animation: z.ZodOptional<z.ZodObject<{
88
+ entering: z.ZodOptional<z.ZodObject<{
89
+ preset: z.ZodEnum<{
90
+ FadeIn: "FadeIn";
91
+ FadeInUp: "FadeInUp";
92
+ FadeInDown: "FadeInDown";
93
+ FadeInLeft: "FadeInLeft";
94
+ FadeInRight: "FadeInRight";
95
+ SlideInUp: "SlideInUp";
96
+ SlideInDown: "SlideInDown";
97
+ SlideInLeft: "SlideInLeft";
98
+ SlideInRight: "SlideInRight";
99
+ ZoomIn: "ZoomIn";
100
+ ZoomInRotate: "ZoomInRotate";
101
+ ZoomInUp: "ZoomInUp";
102
+ ZoomInDown: "ZoomInDown";
103
+ ZoomInLeft: "ZoomInLeft";
104
+ ZoomInRight: "ZoomInRight";
105
+ ZoomInEasyUp: "ZoomInEasyUp";
106
+ ZoomInEasyDown: "ZoomInEasyDown";
107
+ BounceIn: "BounceIn";
108
+ BounceInUp: "BounceInUp";
109
+ BounceInDown: "BounceInDown";
110
+ BounceInLeft: "BounceInLeft";
111
+ BounceInRight: "BounceInRight";
112
+ FlipInXUp: "FlipInXUp";
113
+ FlipInYLeft: "FlipInYLeft";
114
+ FlipInXDown: "FlipInXDown";
115
+ FlipInYRight: "FlipInYRight";
116
+ FlipInEasyX: "FlipInEasyX";
117
+ FlipInEasyY: "FlipInEasyY";
118
+ StretchInX: "StretchInX";
119
+ StretchInY: "StretchInY";
120
+ RotateInDownLeft: "RotateInDownLeft";
121
+ RotateInDownRight: "RotateInDownRight";
122
+ RotateInUpLeft: "RotateInUpLeft";
123
+ RotateInUpRight: "RotateInUpRight";
124
+ RollInLeft: "RollInLeft";
125
+ RollInRight: "RollInRight";
126
+ PinwheelIn: "PinwheelIn";
127
+ LightSpeedInLeft: "LightSpeedInLeft";
128
+ LightSpeedInRight: "LightSpeedInRight";
129
+ }>;
130
+ duration: z.ZodOptional<z.ZodNumber>;
131
+ delay: z.ZodOptional<z.ZodNumber>;
132
+ easing: z.ZodOptional<z.ZodEnum<{
133
+ linear: "linear";
134
+ "ease-in": "ease-in";
135
+ "ease-out": "ease-out";
136
+ "ease-in-out": "ease-in-out";
137
+ }>>;
138
+ spring: z.ZodOptional<z.ZodObject<{
139
+ damping: z.ZodOptional<z.ZodNumber>;
140
+ stiffness: z.ZodOptional<z.ZodNumber>;
141
+ mass: z.ZodOptional<z.ZodNumber>;
142
+ }, z.core.$strip>>;
143
+ }, z.core.$strip>>;
144
+ exiting: z.ZodOptional<z.ZodObject<{
145
+ preset: z.ZodEnum<{
146
+ FadeOut: "FadeOut";
147
+ FadeOutUp: "FadeOutUp";
148
+ FadeOutDown: "FadeOutDown";
149
+ FadeOutLeft: "FadeOutLeft";
150
+ FadeOutRight: "FadeOutRight";
151
+ SlideOutUp: "SlideOutUp";
152
+ SlideOutDown: "SlideOutDown";
153
+ SlideOutLeft: "SlideOutLeft";
154
+ SlideOutRight: "SlideOutRight";
155
+ ZoomOut: "ZoomOut";
156
+ ZoomOutRotate: "ZoomOutRotate";
157
+ ZoomOutUp: "ZoomOutUp";
158
+ ZoomOutDown: "ZoomOutDown";
159
+ ZoomOutLeft: "ZoomOutLeft";
160
+ ZoomOutRight: "ZoomOutRight";
161
+ ZoomOutEasyUp: "ZoomOutEasyUp";
162
+ ZoomOutEasyDown: "ZoomOutEasyDown";
163
+ BounceOut: "BounceOut";
164
+ BounceOutUp: "BounceOutUp";
165
+ BounceOutDown: "BounceOutDown";
166
+ BounceOutLeft: "BounceOutLeft";
167
+ BounceOutRight: "BounceOutRight";
168
+ FlipOutXUp: "FlipOutXUp";
169
+ FlipOutYLeft: "FlipOutYLeft";
170
+ FlipOutXDown: "FlipOutXDown";
171
+ FlipOutYRight: "FlipOutYRight";
172
+ FlipOutEasyX: "FlipOutEasyX";
173
+ FlipOutEasyY: "FlipOutEasyY";
174
+ StretchOutX: "StretchOutX";
175
+ StretchOutY: "StretchOutY";
176
+ RotateOutDownLeft: "RotateOutDownLeft";
177
+ RotateOutDownRight: "RotateOutDownRight";
178
+ RotateOutUpLeft: "RotateOutUpLeft";
179
+ RotateOutUpRight: "RotateOutUpRight";
180
+ RollOutLeft: "RollOutLeft";
181
+ RollOutRight: "RollOutRight";
182
+ PinwheelOut: "PinwheelOut";
183
+ LightSpeedOutLeft: "LightSpeedOutLeft";
184
+ LightSpeedOutRight: "LightSpeedOutRight";
185
+ }>;
186
+ duration: z.ZodOptional<z.ZodNumber>;
187
+ delay: z.ZodOptional<z.ZodNumber>;
188
+ easing: z.ZodOptional<z.ZodEnum<{
189
+ linear: "linear";
190
+ "ease-in": "ease-in";
191
+ "ease-out": "ease-out";
192
+ "ease-in-out": "ease-in-out";
193
+ }>>;
194
+ spring: z.ZodOptional<z.ZodObject<{
195
+ damping: z.ZodOptional<z.ZodNumber>;
196
+ stiffness: z.ZodOptional<z.ZodNumber>;
197
+ mass: z.ZodOptional<z.ZodNumber>;
198
+ }, z.core.$strip>>;
199
+ }, z.core.$strip>>;
200
+ layout: z.ZodOptional<z.ZodObject<{
201
+ preset: z.ZodEnum<{
202
+ LinearTransition: "LinearTransition";
203
+ FadingTransition: "FadingTransition";
204
+ SequencedTransition: "SequencedTransition";
205
+ JumpingTransition: "JumpingTransition";
206
+ CurvedTransition: "CurvedTransition";
207
+ EntryExitTransition: "EntryExitTransition";
208
+ }>;
209
+ duration: z.ZodOptional<z.ZodNumber>;
210
+ spring: z.ZodOptional<z.ZodObject<{
211
+ damping: z.ZodOptional<z.ZodNumber>;
212
+ stiffness: z.ZodOptional<z.ZodNumber>;
213
+ mass: z.ZodOptional<z.ZodNumber>;
214
+ }, z.core.$strip>>;
215
+ }, z.core.$strip>>;
216
+ effect: z.ZodOptional<z.ZodObject<{
217
+ preset: z.ZodEnum<{
218
+ pulse: "pulse";
219
+ fade: "fade";
220
+ rotate: "rotate";
221
+ shimmer: "shimmer";
222
+ bounce: "bounce";
223
+ }>;
224
+ duration: z.ZodOptional<z.ZodNumber>;
225
+ delay: z.ZodOptional<z.ZodNumber>;
226
+ easing: z.ZodOptional<z.ZodEnum<{
227
+ linear: "linear";
228
+ "ease-in": "ease-in";
229
+ "ease-out": "ease-out";
230
+ "ease-in-out": "ease-in-out";
231
+ }>>;
232
+ loop: z.ZodOptional<z.ZodBoolean>;
233
+ minScale: z.ZodOptional<z.ZodNumber>;
234
+ maxScale: z.ZodOptional<z.ZodNumber>;
235
+ minOpacity: z.ZodOptional<z.ZodNumber>;
236
+ degrees: z.ZodOptional<z.ZodNumber>;
237
+ }, z.core.$strip>>;
238
+ }, z.core.$strip>>;
79
239
  source: z.ZodString;
80
240
  autoPlay: z.ZodOptional<z.ZodBoolean>;
81
241
  loop: z.ZodOptional<z.ZodBoolean>;
@@ -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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAKnC,CAAC"}
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"}
@@ -112,6 +112,166 @@ export declare const ProgressIndicatorElementPropsSchema: z.ZodObject<{
112
112
  shadowOpacity: z.ZodOptional<z.ZodNumber>;
113
113
  shadowRadius: z.ZodOptional<z.ZodNumber>;
114
114
  elevation: z.ZodOptional<z.ZodNumber>;
115
+ transform: z.ZodOptional<z.ZodObject<{
116
+ translateX: z.ZodOptional<z.ZodNumber>;
117
+ translateY: z.ZodOptional<z.ZodNumber>;
118
+ scale: z.ZodOptional<z.ZodNumber>;
119
+ scaleX: z.ZodOptional<z.ZodNumber>;
120
+ scaleY: z.ZodOptional<z.ZodNumber>;
121
+ rotate: z.ZodOptional<z.ZodNumber>;
122
+ }, z.core.$strip>>;
123
+ animation: z.ZodOptional<z.ZodObject<{
124
+ entering: z.ZodOptional<z.ZodObject<{
125
+ preset: z.ZodEnum<{
126
+ FadeIn: "FadeIn";
127
+ FadeInUp: "FadeInUp";
128
+ FadeInDown: "FadeInDown";
129
+ FadeInLeft: "FadeInLeft";
130
+ FadeInRight: "FadeInRight";
131
+ SlideInUp: "SlideInUp";
132
+ SlideInDown: "SlideInDown";
133
+ SlideInLeft: "SlideInLeft";
134
+ SlideInRight: "SlideInRight";
135
+ ZoomIn: "ZoomIn";
136
+ ZoomInRotate: "ZoomInRotate";
137
+ ZoomInUp: "ZoomInUp";
138
+ ZoomInDown: "ZoomInDown";
139
+ ZoomInLeft: "ZoomInLeft";
140
+ ZoomInRight: "ZoomInRight";
141
+ ZoomInEasyUp: "ZoomInEasyUp";
142
+ ZoomInEasyDown: "ZoomInEasyDown";
143
+ BounceIn: "BounceIn";
144
+ BounceInUp: "BounceInUp";
145
+ BounceInDown: "BounceInDown";
146
+ BounceInLeft: "BounceInLeft";
147
+ BounceInRight: "BounceInRight";
148
+ FlipInXUp: "FlipInXUp";
149
+ FlipInYLeft: "FlipInYLeft";
150
+ FlipInXDown: "FlipInXDown";
151
+ FlipInYRight: "FlipInYRight";
152
+ FlipInEasyX: "FlipInEasyX";
153
+ FlipInEasyY: "FlipInEasyY";
154
+ StretchInX: "StretchInX";
155
+ StretchInY: "StretchInY";
156
+ RotateInDownLeft: "RotateInDownLeft";
157
+ RotateInDownRight: "RotateInDownRight";
158
+ RotateInUpLeft: "RotateInUpLeft";
159
+ RotateInUpRight: "RotateInUpRight";
160
+ RollInLeft: "RollInLeft";
161
+ RollInRight: "RollInRight";
162
+ PinwheelIn: "PinwheelIn";
163
+ LightSpeedInLeft: "LightSpeedInLeft";
164
+ LightSpeedInRight: "LightSpeedInRight";
165
+ }>;
166
+ duration: z.ZodOptional<z.ZodNumber>;
167
+ delay: z.ZodOptional<z.ZodNumber>;
168
+ easing: z.ZodOptional<z.ZodEnum<{
169
+ linear: "linear";
170
+ "ease-in": "ease-in";
171
+ "ease-out": "ease-out";
172
+ "ease-in-out": "ease-in-out";
173
+ }>>;
174
+ spring: z.ZodOptional<z.ZodObject<{
175
+ damping: z.ZodOptional<z.ZodNumber>;
176
+ stiffness: z.ZodOptional<z.ZodNumber>;
177
+ mass: z.ZodOptional<z.ZodNumber>;
178
+ }, z.core.$strip>>;
179
+ }, z.core.$strip>>;
180
+ exiting: z.ZodOptional<z.ZodObject<{
181
+ preset: z.ZodEnum<{
182
+ FadeOut: "FadeOut";
183
+ FadeOutUp: "FadeOutUp";
184
+ FadeOutDown: "FadeOutDown";
185
+ FadeOutLeft: "FadeOutLeft";
186
+ FadeOutRight: "FadeOutRight";
187
+ SlideOutUp: "SlideOutUp";
188
+ SlideOutDown: "SlideOutDown";
189
+ SlideOutLeft: "SlideOutLeft";
190
+ SlideOutRight: "SlideOutRight";
191
+ ZoomOut: "ZoomOut";
192
+ ZoomOutRotate: "ZoomOutRotate";
193
+ ZoomOutUp: "ZoomOutUp";
194
+ ZoomOutDown: "ZoomOutDown";
195
+ ZoomOutLeft: "ZoomOutLeft";
196
+ ZoomOutRight: "ZoomOutRight";
197
+ ZoomOutEasyUp: "ZoomOutEasyUp";
198
+ ZoomOutEasyDown: "ZoomOutEasyDown";
199
+ BounceOut: "BounceOut";
200
+ BounceOutUp: "BounceOutUp";
201
+ BounceOutDown: "BounceOutDown";
202
+ BounceOutLeft: "BounceOutLeft";
203
+ BounceOutRight: "BounceOutRight";
204
+ FlipOutXUp: "FlipOutXUp";
205
+ FlipOutYLeft: "FlipOutYLeft";
206
+ FlipOutXDown: "FlipOutXDown";
207
+ FlipOutYRight: "FlipOutYRight";
208
+ FlipOutEasyX: "FlipOutEasyX";
209
+ FlipOutEasyY: "FlipOutEasyY";
210
+ StretchOutX: "StretchOutX";
211
+ StretchOutY: "StretchOutY";
212
+ RotateOutDownLeft: "RotateOutDownLeft";
213
+ RotateOutDownRight: "RotateOutDownRight";
214
+ RotateOutUpLeft: "RotateOutUpLeft";
215
+ RotateOutUpRight: "RotateOutUpRight";
216
+ RollOutLeft: "RollOutLeft";
217
+ RollOutRight: "RollOutRight";
218
+ PinwheelOut: "PinwheelOut";
219
+ LightSpeedOutLeft: "LightSpeedOutLeft";
220
+ LightSpeedOutRight: "LightSpeedOutRight";
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
+ 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
+ layout: z.ZodOptional<z.ZodObject<{
237
+ preset: z.ZodEnum<{
238
+ LinearTransition: "LinearTransition";
239
+ FadingTransition: "FadingTransition";
240
+ SequencedTransition: "SequencedTransition";
241
+ JumpingTransition: "JumpingTransition";
242
+ CurvedTransition: "CurvedTransition";
243
+ EntryExitTransition: "EntryExitTransition";
244
+ }>;
245
+ duration: z.ZodOptional<z.ZodNumber>;
246
+ spring: z.ZodOptional<z.ZodObject<{
247
+ damping: z.ZodOptional<z.ZodNumber>;
248
+ stiffness: z.ZodOptional<z.ZodNumber>;
249
+ mass: z.ZodOptional<z.ZodNumber>;
250
+ }, z.core.$strip>>;
251
+ }, z.core.$strip>>;
252
+ effect: z.ZodOptional<z.ZodObject<{
253
+ preset: z.ZodEnum<{
254
+ pulse: "pulse";
255
+ fade: "fade";
256
+ rotate: "rotate";
257
+ shimmer: "shimmer";
258
+ bounce: "bounce";
259
+ }>;
260
+ duration: z.ZodOptional<z.ZodNumber>;
261
+ delay: z.ZodOptional<z.ZodNumber>;
262
+ easing: z.ZodOptional<z.ZodEnum<{
263
+ linear: "linear";
264
+ "ease-in": "ease-in";
265
+ "ease-out": "ease-out";
266
+ "ease-in-out": "ease-in-out";
267
+ }>>;
268
+ loop: z.ZodOptional<z.ZodBoolean>;
269
+ minScale: z.ZodOptional<z.ZodNumber>;
270
+ maxScale: z.ZodOptional<z.ZodNumber>;
271
+ minOpacity: z.ZodOptional<z.ZodNumber>;
272
+ degrees: z.ZodOptional<z.ZodNumber>;
273
+ }, z.core.$strip>>;
274
+ }, z.core.$strip>>;
115
275
  variant: z.ZodOptional<z.ZodEnum<{
116
276
  linear: "linear";
117
277
  circular: "circular";
@@ -1 +1 @@
1
- {"version":3,"file":"ProgressIndicatorElement.d.ts","sourceRoot":"","sources":["../../../../src/steps/ComposableScreen/elements/ProgressIndicatorElement.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,YAAY,EAAsB,MAAM,gBAAgB,CAAC;AAElE;;;GAGG;AACH,MAAM,MAAM,cAAc,GAAG,QAAQ,GAAG,SAAS,GAAG,UAAU,GAAG,aAAa,CAAC;AAE/E,MAAM,MAAM,6BAA6B,GAAG,YAAY,GAAG;IACzD,qCAAqC;IACrC,OAAO,CAAC,EAAE,QAAQ,GAAG,UAAU,CAAC;IAChC;;;;;OAKG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,oEAAoE;IACpE,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,iEAAiE;IACjE,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,kDAAkD;IAClD,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,6CAA6C;IAC7C,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,4DAA4D;IAC5D,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,wEAAwE;IACxE,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,iEAAiE;IACjE,MAAM,CAAC,EAAE,cAAc,CAAC;IACxB,sDAAsD;IACtD,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,+DAA+D;IAC/D,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,0DAA0D;IAC1D,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,+DAA+D;IAC/D,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,+EAA+E;IAC/E,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,wDAAwD;IACxD,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB,CAAC;AAIF,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAgB9C,CAAC"}
1
+ {"version":3,"file":"ProgressIndicatorElement.d.ts","sourceRoot":"","sources":["../../../../src/steps/ComposableScreen/elements/ProgressIndicatorElement.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,YAAY,EAAsB,MAAM,gBAAgB,CAAC;AAElE;;;GAGG;AACH,MAAM,MAAM,cAAc,GAAG,QAAQ,GAAG,SAAS,GAAG,UAAU,GAAG,aAAa,CAAC;AAE/E,MAAM,MAAM,6BAA6B,GAAG,YAAY,GAAG;IACzD,qCAAqC;IACrC,OAAO,CAAC,EAAE,QAAQ,GAAG,UAAU,CAAC;IAChC;;;;;OAKG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,oEAAoE;IACpE,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,iEAAiE;IACjE,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,kDAAkD;IAClD,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,6CAA6C;IAC7C,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,4DAA4D;IAC5D,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,wEAAwE;IACxE,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,iEAAiE;IACjE,MAAM,CAAC,EAAE,cAAc,CAAC;IACxB,sDAAsD;IACtD,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,+DAA+D;IAC/D,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,0DAA0D;IAC1D,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,+DAA+D;IAC/D,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,+EAA+E;IAC/E,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,wDAAwD;IACxD,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB,CAAC;AAIF,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAgB9C,CAAC"}