@rocapine/react-native-onboarding-ui 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 (81) hide show
  1. package/dist/UI/Pages/ComposableScreen/Renderer.js.map +1 -1
  2. package/dist/UI/Pages/ComposableScreen/elements/AnimatedBox.d.ts +21 -0
  3. package/dist/UI/Pages/ComposableScreen/elements/AnimatedBox.d.ts.map +1 -0
  4. package/dist/UI/Pages/ComposableScreen/elements/AnimatedBox.js +140 -0
  5. package/dist/UI/Pages/ComposableScreen/elements/AnimatedBox.js.map +1 -0
  6. package/dist/UI/Pages/ComposableScreen/elements/BaseBoxProps.d.ts +220 -0
  7. package/dist/UI/Pages/ComposableScreen/elements/BaseBoxProps.d.ts.map +1 -1
  8. package/dist/UI/Pages/ComposableScreen/elements/BaseBoxProps.js +83 -0
  9. package/dist/UI/Pages/ComposableScreen/elements/BaseBoxProps.js.map +1 -1
  10. package/dist/UI/Pages/ComposableScreen/elements/ButtonElement.d.ts +640 -0
  11. package/dist/UI/Pages/ComposableScreen/elements/ButtonElement.d.ts.map +1 -1
  12. package/dist/UI/Pages/ComposableScreen/elements/CarouselElement.d.ts +160 -0
  13. package/dist/UI/Pages/ComposableScreen/elements/CarouselElement.d.ts.map +1 -1
  14. package/dist/UI/Pages/ComposableScreen/elements/CheckboxGroupElement.d.ts +160 -0
  15. package/dist/UI/Pages/ComposableScreen/elements/CheckboxGroupElement.d.ts.map +1 -1
  16. package/dist/UI/Pages/ComposableScreen/elements/DatePickerElement.d.ts +160 -0
  17. package/dist/UI/Pages/ComposableScreen/elements/DatePickerElement.d.ts.map +1 -1
  18. package/dist/UI/Pages/ComposableScreen/elements/IconElement.d.ts +160 -0
  19. package/dist/UI/Pages/ComposableScreen/elements/IconElement.d.ts.map +1 -1
  20. package/dist/UI/Pages/ComposableScreen/elements/ImageElement.d.ts +160 -0
  21. package/dist/UI/Pages/ComposableScreen/elements/ImageElement.d.ts.map +1 -1
  22. package/dist/UI/Pages/ComposableScreen/elements/InputElement.d.ts +160 -0
  23. package/dist/UI/Pages/ComposableScreen/elements/InputElement.d.ts.map +1 -1
  24. package/dist/UI/Pages/ComposableScreen/elements/KeyboardAvoidingViewElement.d.ts +160 -0
  25. package/dist/UI/Pages/ComposableScreen/elements/KeyboardAvoidingViewElement.d.ts.map +1 -1
  26. package/dist/UI/Pages/ComposableScreen/elements/LottieElement.d.ts +160 -0
  27. package/dist/UI/Pages/ComposableScreen/elements/LottieElement.d.ts.map +1 -1
  28. package/dist/UI/Pages/ComposableScreen/elements/ProgressIndicatorElement.d.ts +160 -0
  29. package/dist/UI/Pages/ComposableScreen/elements/ProgressIndicatorElement.d.ts.map +1 -1
  30. package/dist/UI/Pages/ComposableScreen/elements/ProgressIndicatorElement.js +2 -8
  31. package/dist/UI/Pages/ComposableScreen/elements/ProgressIndicatorElement.js.map +1 -1
  32. package/dist/UI/Pages/ComposableScreen/elements/RadioGroupElement.d.ts +160 -0
  33. package/dist/UI/Pages/ComposableScreen/elements/RadioGroupElement.d.ts.map +1 -1
  34. package/dist/UI/Pages/ComposableScreen/elements/RichTextElement.d.ts +305 -0
  35. package/dist/UI/Pages/ComposableScreen/elements/RichTextElement.d.ts.map +1 -0
  36. package/dist/UI/Pages/ComposableScreen/elements/RichTextElement.js +133 -0
  37. package/dist/UI/Pages/ComposableScreen/elements/RichTextElement.js.map +1 -0
  38. package/dist/UI/Pages/ComposableScreen/elements/RiveElement.d.ts +160 -0
  39. package/dist/UI/Pages/ComposableScreen/elements/RiveElement.d.ts.map +1 -1
  40. package/dist/UI/Pages/ComposableScreen/elements/SafeAreaViewElement.d.ts +160 -0
  41. package/dist/UI/Pages/ComposableScreen/elements/SafeAreaViewElement.d.ts.map +1 -1
  42. package/dist/UI/Pages/ComposableScreen/elements/ScrollViewElement.d.ts +160 -0
  43. package/dist/UI/Pages/ComposableScreen/elements/ScrollViewElement.d.ts.map +1 -1
  44. package/dist/UI/Pages/ComposableScreen/elements/StackElement.d.ts +161 -1
  45. package/dist/UI/Pages/ComposableScreen/elements/StackElement.d.ts.map +1 -1
  46. package/dist/UI/Pages/ComposableScreen/elements/TextElement.d.ts +199 -1
  47. package/dist/UI/Pages/ComposableScreen/elements/TextElement.d.ts.map +1 -1
  48. package/dist/UI/Pages/ComposableScreen/elements/TextElement.js +38 -12
  49. package/dist/UI/Pages/ComposableScreen/elements/TextElement.js.map +1 -1
  50. package/dist/UI/Pages/ComposableScreen/elements/VideoElement.d.ts +160 -0
  51. package/dist/UI/Pages/ComposableScreen/elements/VideoElement.d.ts.map +1 -1
  52. package/dist/UI/Pages/ComposableScreen/elements/ZStackElement.d.ts +160 -0
  53. package/dist/UI/Pages/ComposableScreen/elements/ZStackElement.d.ts.map +1 -1
  54. package/dist/UI/Pages/ComposableScreen/elements/buildAnimation.d.ts +9 -0
  55. package/dist/UI/Pages/ComposableScreen/elements/buildAnimation.d.ts.map +1 -0
  56. package/dist/UI/Pages/ComposableScreen/elements/buildAnimation.js +106 -0
  57. package/dist/UI/Pages/ComposableScreen/elements/buildAnimation.js.map +1 -0
  58. package/dist/UI/Pages/ComposableScreen/elements/renderElement.d.ts +1 -1
  59. package/dist/UI/Pages/ComposableScreen/elements/renderElement.d.ts.map +1 -1
  60. package/dist/UI/Pages/ComposableScreen/elements/renderElement.js +76 -58
  61. package/dist/UI/Pages/ComposableScreen/elements/renderElement.js.map +1 -1
  62. package/dist/UI/Pages/ComposableScreen/elements/shared.d.ts +12 -1
  63. package/dist/UI/Pages/ComposableScreen/elements/shared.d.ts.map +1 -1
  64. package/dist/UI/Pages/ComposableScreen/elements/shared.js +6 -1
  65. package/dist/UI/Pages/ComposableScreen/elements/shared.js.map +1 -1
  66. package/dist/UI/Pages/ComposableScreen/types.d.ts +11 -0
  67. package/dist/UI/Pages/ComposableScreen/types.d.ts.map +1 -1
  68. package/dist/UI/Pages/ComposableScreen/types.js +15 -2
  69. package/dist/UI/Pages/ComposableScreen/types.js.map +1 -1
  70. package/package.json +1 -1
  71. package/src/UI/Pages/ComposableScreen/Renderer.tsx +1 -1
  72. package/src/UI/Pages/ComposableScreen/elements/AnimatedBox.tsx +133 -0
  73. package/src/UI/Pages/ComposableScreen/elements/BaseBoxProps.ts +211 -0
  74. package/src/UI/Pages/ComposableScreen/elements/ProgressIndicatorElement.tsx +1 -9
  75. package/src/UI/Pages/ComposableScreen/elements/RichTextElement.tsx +177 -0
  76. package/src/UI/Pages/ComposableScreen/elements/StackElement.tsx +1 -1
  77. package/src/UI/Pages/ComposableScreen/elements/TextElement.tsx +39 -11
  78. package/src/UI/Pages/ComposableScreen/elements/buildAnimation.ts +83 -0
  79. package/src/UI/Pages/ComposableScreen/elements/renderElement.tsx +34 -2
  80. package/src/UI/Pages/ComposableScreen/elements/shared.ts +19 -1
  81. package/src/UI/Pages/ComposableScreen/types.ts +25 -2
@@ -171,6 +171,166 @@ export declare const ButtonStyleOverrideSchema: z.ZodObject<{
171
171
  shadowOpacity: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
172
172
  shadowRadius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
173
173
  elevation: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
174
+ transform: z.ZodOptional<z.ZodOptional<z.ZodObject<{
175
+ translateX: z.ZodOptional<z.ZodNumber>;
176
+ translateY: z.ZodOptional<z.ZodNumber>;
177
+ scale: z.ZodOptional<z.ZodNumber>;
178
+ scaleX: z.ZodOptional<z.ZodNumber>;
179
+ scaleY: z.ZodOptional<z.ZodNumber>;
180
+ rotate: z.ZodOptional<z.ZodNumber>;
181
+ }, z.core.$strip>>>;
182
+ animation: z.ZodOptional<z.ZodOptional<z.ZodObject<{
183
+ entering: z.ZodOptional<z.ZodObject<{
184
+ preset: z.ZodEnum<{
185
+ FadeIn: "FadeIn";
186
+ FadeInUp: "FadeInUp";
187
+ FadeInDown: "FadeInDown";
188
+ FadeInLeft: "FadeInLeft";
189
+ FadeInRight: "FadeInRight";
190
+ SlideInUp: "SlideInUp";
191
+ SlideInDown: "SlideInDown";
192
+ SlideInLeft: "SlideInLeft";
193
+ SlideInRight: "SlideInRight";
194
+ ZoomIn: "ZoomIn";
195
+ ZoomInRotate: "ZoomInRotate";
196
+ ZoomInUp: "ZoomInUp";
197
+ ZoomInDown: "ZoomInDown";
198
+ ZoomInLeft: "ZoomInLeft";
199
+ ZoomInRight: "ZoomInRight";
200
+ ZoomInEasyUp: "ZoomInEasyUp";
201
+ ZoomInEasyDown: "ZoomInEasyDown";
202
+ BounceIn: "BounceIn";
203
+ BounceInUp: "BounceInUp";
204
+ BounceInDown: "BounceInDown";
205
+ BounceInLeft: "BounceInLeft";
206
+ BounceInRight: "BounceInRight";
207
+ FlipInXUp: "FlipInXUp";
208
+ FlipInYLeft: "FlipInYLeft";
209
+ FlipInXDown: "FlipInXDown";
210
+ FlipInYRight: "FlipInYRight";
211
+ FlipInEasyX: "FlipInEasyX";
212
+ FlipInEasyY: "FlipInEasyY";
213
+ StretchInX: "StretchInX";
214
+ StretchInY: "StretchInY";
215
+ RotateInDownLeft: "RotateInDownLeft";
216
+ RotateInDownRight: "RotateInDownRight";
217
+ RotateInUpLeft: "RotateInUpLeft";
218
+ RotateInUpRight: "RotateInUpRight";
219
+ RollInLeft: "RollInLeft";
220
+ RollInRight: "RollInRight";
221
+ PinwheelIn: "PinwheelIn";
222
+ LightSpeedInLeft: "LightSpeedInLeft";
223
+ LightSpeedInRight: "LightSpeedInRight";
224
+ }>;
225
+ duration: z.ZodOptional<z.ZodNumber>;
226
+ delay: z.ZodOptional<z.ZodNumber>;
227
+ easing: z.ZodOptional<z.ZodEnum<{
228
+ linear: "linear";
229
+ "ease-in": "ease-in";
230
+ "ease-out": "ease-out";
231
+ "ease-in-out": "ease-in-out";
232
+ }>>;
233
+ spring: z.ZodOptional<z.ZodObject<{
234
+ damping: z.ZodOptional<z.ZodNumber>;
235
+ stiffness: z.ZodOptional<z.ZodNumber>;
236
+ mass: z.ZodOptional<z.ZodNumber>;
237
+ }, z.core.$strip>>;
238
+ }, z.core.$strip>>;
239
+ exiting: z.ZodOptional<z.ZodObject<{
240
+ preset: z.ZodEnum<{
241
+ FadeOut: "FadeOut";
242
+ FadeOutUp: "FadeOutUp";
243
+ FadeOutDown: "FadeOutDown";
244
+ FadeOutLeft: "FadeOutLeft";
245
+ FadeOutRight: "FadeOutRight";
246
+ SlideOutUp: "SlideOutUp";
247
+ SlideOutDown: "SlideOutDown";
248
+ SlideOutLeft: "SlideOutLeft";
249
+ SlideOutRight: "SlideOutRight";
250
+ ZoomOut: "ZoomOut";
251
+ ZoomOutRotate: "ZoomOutRotate";
252
+ ZoomOutUp: "ZoomOutUp";
253
+ ZoomOutDown: "ZoomOutDown";
254
+ ZoomOutLeft: "ZoomOutLeft";
255
+ ZoomOutRight: "ZoomOutRight";
256
+ ZoomOutEasyUp: "ZoomOutEasyUp";
257
+ ZoomOutEasyDown: "ZoomOutEasyDown";
258
+ BounceOut: "BounceOut";
259
+ BounceOutUp: "BounceOutUp";
260
+ BounceOutDown: "BounceOutDown";
261
+ BounceOutLeft: "BounceOutLeft";
262
+ BounceOutRight: "BounceOutRight";
263
+ FlipOutXUp: "FlipOutXUp";
264
+ FlipOutYLeft: "FlipOutYLeft";
265
+ FlipOutXDown: "FlipOutXDown";
266
+ FlipOutYRight: "FlipOutYRight";
267
+ FlipOutEasyX: "FlipOutEasyX";
268
+ FlipOutEasyY: "FlipOutEasyY";
269
+ StretchOutX: "StretchOutX";
270
+ StretchOutY: "StretchOutY";
271
+ RotateOutDownLeft: "RotateOutDownLeft";
272
+ RotateOutDownRight: "RotateOutDownRight";
273
+ RotateOutUpLeft: "RotateOutUpLeft";
274
+ RotateOutUpRight: "RotateOutUpRight";
275
+ RollOutLeft: "RollOutLeft";
276
+ RollOutRight: "RollOutRight";
277
+ PinwheelOut: "PinwheelOut";
278
+ LightSpeedOutLeft: "LightSpeedOutLeft";
279
+ LightSpeedOutRight: "LightSpeedOutRight";
280
+ }>;
281
+ duration: z.ZodOptional<z.ZodNumber>;
282
+ delay: z.ZodOptional<z.ZodNumber>;
283
+ easing: z.ZodOptional<z.ZodEnum<{
284
+ linear: "linear";
285
+ "ease-in": "ease-in";
286
+ "ease-out": "ease-out";
287
+ "ease-in-out": "ease-in-out";
288
+ }>>;
289
+ spring: z.ZodOptional<z.ZodObject<{
290
+ damping: z.ZodOptional<z.ZodNumber>;
291
+ stiffness: z.ZodOptional<z.ZodNumber>;
292
+ mass: z.ZodOptional<z.ZodNumber>;
293
+ }, z.core.$strip>>;
294
+ }, z.core.$strip>>;
295
+ layout: z.ZodOptional<z.ZodObject<{
296
+ preset: z.ZodEnum<{
297
+ LinearTransition: "LinearTransition";
298
+ FadingTransition: "FadingTransition";
299
+ SequencedTransition: "SequencedTransition";
300
+ JumpingTransition: "JumpingTransition";
301
+ CurvedTransition: "CurvedTransition";
302
+ EntryExitTransition: "EntryExitTransition";
303
+ }>;
304
+ duration: z.ZodOptional<z.ZodNumber>;
305
+ spring: z.ZodOptional<z.ZodObject<{
306
+ damping: z.ZodOptional<z.ZodNumber>;
307
+ stiffness: z.ZodOptional<z.ZodNumber>;
308
+ mass: z.ZodOptional<z.ZodNumber>;
309
+ }, z.core.$strip>>;
310
+ }, z.core.$strip>>;
311
+ effect: z.ZodOptional<z.ZodObject<{
312
+ preset: z.ZodEnum<{
313
+ rotate: "rotate";
314
+ pulse: "pulse";
315
+ fade: "fade";
316
+ shimmer: "shimmer";
317
+ bounce: "bounce";
318
+ }>;
319
+ duration: z.ZodOptional<z.ZodNumber>;
320
+ delay: z.ZodOptional<z.ZodNumber>;
321
+ easing: z.ZodOptional<z.ZodEnum<{
322
+ linear: "linear";
323
+ "ease-in": "ease-in";
324
+ "ease-out": "ease-out";
325
+ "ease-in-out": "ease-in-out";
326
+ }>>;
327
+ loop: z.ZodOptional<z.ZodBoolean>;
328
+ minScale: z.ZodOptional<z.ZodNumber>;
329
+ maxScale: z.ZodOptional<z.ZodNumber>;
330
+ minOpacity: z.ZodOptional<z.ZodNumber>;
331
+ degrees: z.ZodOptional<z.ZodNumber>;
332
+ }, z.core.$strip>>;
333
+ }, z.core.$strip>>>;
174
334
  variant: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
175
335
  filled: "filled";
176
336
  outlined: "outlined";
@@ -260,6 +420,166 @@ export declare const ButtonElementPropsSchema: z.ZodObject<{
260
420
  shadowOpacity: z.ZodOptional<z.ZodNumber>;
261
421
  shadowRadius: z.ZodOptional<z.ZodNumber>;
262
422
  elevation: z.ZodOptional<z.ZodNumber>;
423
+ transform: z.ZodOptional<z.ZodObject<{
424
+ translateX: z.ZodOptional<z.ZodNumber>;
425
+ translateY: z.ZodOptional<z.ZodNumber>;
426
+ scale: z.ZodOptional<z.ZodNumber>;
427
+ scaleX: z.ZodOptional<z.ZodNumber>;
428
+ scaleY: z.ZodOptional<z.ZodNumber>;
429
+ rotate: z.ZodOptional<z.ZodNumber>;
430
+ }, z.core.$strip>>;
431
+ animation: z.ZodOptional<z.ZodObject<{
432
+ entering: z.ZodOptional<z.ZodObject<{
433
+ preset: z.ZodEnum<{
434
+ FadeIn: "FadeIn";
435
+ FadeInUp: "FadeInUp";
436
+ FadeInDown: "FadeInDown";
437
+ FadeInLeft: "FadeInLeft";
438
+ FadeInRight: "FadeInRight";
439
+ SlideInUp: "SlideInUp";
440
+ SlideInDown: "SlideInDown";
441
+ SlideInLeft: "SlideInLeft";
442
+ SlideInRight: "SlideInRight";
443
+ ZoomIn: "ZoomIn";
444
+ ZoomInRotate: "ZoomInRotate";
445
+ ZoomInUp: "ZoomInUp";
446
+ ZoomInDown: "ZoomInDown";
447
+ ZoomInLeft: "ZoomInLeft";
448
+ ZoomInRight: "ZoomInRight";
449
+ ZoomInEasyUp: "ZoomInEasyUp";
450
+ ZoomInEasyDown: "ZoomInEasyDown";
451
+ BounceIn: "BounceIn";
452
+ BounceInUp: "BounceInUp";
453
+ BounceInDown: "BounceInDown";
454
+ BounceInLeft: "BounceInLeft";
455
+ BounceInRight: "BounceInRight";
456
+ FlipInXUp: "FlipInXUp";
457
+ FlipInYLeft: "FlipInYLeft";
458
+ FlipInXDown: "FlipInXDown";
459
+ FlipInYRight: "FlipInYRight";
460
+ FlipInEasyX: "FlipInEasyX";
461
+ FlipInEasyY: "FlipInEasyY";
462
+ StretchInX: "StretchInX";
463
+ StretchInY: "StretchInY";
464
+ RotateInDownLeft: "RotateInDownLeft";
465
+ RotateInDownRight: "RotateInDownRight";
466
+ RotateInUpLeft: "RotateInUpLeft";
467
+ RotateInUpRight: "RotateInUpRight";
468
+ RollInLeft: "RollInLeft";
469
+ RollInRight: "RollInRight";
470
+ PinwheelIn: "PinwheelIn";
471
+ LightSpeedInLeft: "LightSpeedInLeft";
472
+ LightSpeedInRight: "LightSpeedInRight";
473
+ }>;
474
+ duration: z.ZodOptional<z.ZodNumber>;
475
+ delay: z.ZodOptional<z.ZodNumber>;
476
+ easing: z.ZodOptional<z.ZodEnum<{
477
+ linear: "linear";
478
+ "ease-in": "ease-in";
479
+ "ease-out": "ease-out";
480
+ "ease-in-out": "ease-in-out";
481
+ }>>;
482
+ spring: z.ZodOptional<z.ZodObject<{
483
+ damping: z.ZodOptional<z.ZodNumber>;
484
+ stiffness: z.ZodOptional<z.ZodNumber>;
485
+ mass: z.ZodOptional<z.ZodNumber>;
486
+ }, z.core.$strip>>;
487
+ }, z.core.$strip>>;
488
+ exiting: z.ZodOptional<z.ZodObject<{
489
+ preset: z.ZodEnum<{
490
+ FadeOut: "FadeOut";
491
+ FadeOutUp: "FadeOutUp";
492
+ FadeOutDown: "FadeOutDown";
493
+ FadeOutLeft: "FadeOutLeft";
494
+ FadeOutRight: "FadeOutRight";
495
+ SlideOutUp: "SlideOutUp";
496
+ SlideOutDown: "SlideOutDown";
497
+ SlideOutLeft: "SlideOutLeft";
498
+ SlideOutRight: "SlideOutRight";
499
+ ZoomOut: "ZoomOut";
500
+ ZoomOutRotate: "ZoomOutRotate";
501
+ ZoomOutUp: "ZoomOutUp";
502
+ ZoomOutDown: "ZoomOutDown";
503
+ ZoomOutLeft: "ZoomOutLeft";
504
+ ZoomOutRight: "ZoomOutRight";
505
+ ZoomOutEasyUp: "ZoomOutEasyUp";
506
+ ZoomOutEasyDown: "ZoomOutEasyDown";
507
+ BounceOut: "BounceOut";
508
+ BounceOutUp: "BounceOutUp";
509
+ BounceOutDown: "BounceOutDown";
510
+ BounceOutLeft: "BounceOutLeft";
511
+ BounceOutRight: "BounceOutRight";
512
+ FlipOutXUp: "FlipOutXUp";
513
+ FlipOutYLeft: "FlipOutYLeft";
514
+ FlipOutXDown: "FlipOutXDown";
515
+ FlipOutYRight: "FlipOutYRight";
516
+ FlipOutEasyX: "FlipOutEasyX";
517
+ FlipOutEasyY: "FlipOutEasyY";
518
+ StretchOutX: "StretchOutX";
519
+ StretchOutY: "StretchOutY";
520
+ RotateOutDownLeft: "RotateOutDownLeft";
521
+ RotateOutDownRight: "RotateOutDownRight";
522
+ RotateOutUpLeft: "RotateOutUpLeft";
523
+ RotateOutUpRight: "RotateOutUpRight";
524
+ RollOutLeft: "RollOutLeft";
525
+ RollOutRight: "RollOutRight";
526
+ PinwheelOut: "PinwheelOut";
527
+ LightSpeedOutLeft: "LightSpeedOutLeft";
528
+ LightSpeedOutRight: "LightSpeedOutRight";
529
+ }>;
530
+ duration: z.ZodOptional<z.ZodNumber>;
531
+ delay: z.ZodOptional<z.ZodNumber>;
532
+ easing: z.ZodOptional<z.ZodEnum<{
533
+ linear: "linear";
534
+ "ease-in": "ease-in";
535
+ "ease-out": "ease-out";
536
+ "ease-in-out": "ease-in-out";
537
+ }>>;
538
+ spring: z.ZodOptional<z.ZodObject<{
539
+ damping: z.ZodOptional<z.ZodNumber>;
540
+ stiffness: z.ZodOptional<z.ZodNumber>;
541
+ mass: z.ZodOptional<z.ZodNumber>;
542
+ }, z.core.$strip>>;
543
+ }, z.core.$strip>>;
544
+ layout: z.ZodOptional<z.ZodObject<{
545
+ preset: z.ZodEnum<{
546
+ LinearTransition: "LinearTransition";
547
+ FadingTransition: "FadingTransition";
548
+ SequencedTransition: "SequencedTransition";
549
+ JumpingTransition: "JumpingTransition";
550
+ CurvedTransition: "CurvedTransition";
551
+ EntryExitTransition: "EntryExitTransition";
552
+ }>;
553
+ duration: z.ZodOptional<z.ZodNumber>;
554
+ spring: z.ZodOptional<z.ZodObject<{
555
+ damping: z.ZodOptional<z.ZodNumber>;
556
+ stiffness: z.ZodOptional<z.ZodNumber>;
557
+ mass: z.ZodOptional<z.ZodNumber>;
558
+ }, z.core.$strip>>;
559
+ }, z.core.$strip>>;
560
+ effect: z.ZodOptional<z.ZodObject<{
561
+ preset: z.ZodEnum<{
562
+ rotate: "rotate";
563
+ pulse: "pulse";
564
+ fade: "fade";
565
+ shimmer: "shimmer";
566
+ bounce: "bounce";
567
+ }>;
568
+ duration: z.ZodOptional<z.ZodNumber>;
569
+ delay: z.ZodOptional<z.ZodNumber>;
570
+ easing: z.ZodOptional<z.ZodEnum<{
571
+ linear: "linear";
572
+ "ease-in": "ease-in";
573
+ "ease-out": "ease-out";
574
+ "ease-in-out": "ease-in-out";
575
+ }>>;
576
+ loop: z.ZodOptional<z.ZodBoolean>;
577
+ minScale: z.ZodOptional<z.ZodNumber>;
578
+ maxScale: z.ZodOptional<z.ZodNumber>;
579
+ minOpacity: z.ZodOptional<z.ZodNumber>;
580
+ degrees: z.ZodOptional<z.ZodNumber>;
581
+ }, z.core.$strip>>;
582
+ }, z.core.$strip>>;
263
583
  label: z.ZodString;
264
584
  actions: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"continue">, z.ZodObject<{
265
585
  type: z.ZodLiteral<"custom">;
@@ -392,6 +712,166 @@ export declare const ButtonElementPropsSchema: z.ZodObject<{
392
712
  shadowOpacity: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
393
713
  shadowRadius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
394
714
  elevation: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
715
+ transform: z.ZodOptional<z.ZodOptional<z.ZodObject<{
716
+ translateX: z.ZodOptional<z.ZodNumber>;
717
+ translateY: z.ZodOptional<z.ZodNumber>;
718
+ scale: z.ZodOptional<z.ZodNumber>;
719
+ scaleX: z.ZodOptional<z.ZodNumber>;
720
+ scaleY: z.ZodOptional<z.ZodNumber>;
721
+ rotate: z.ZodOptional<z.ZodNumber>;
722
+ }, z.core.$strip>>>;
723
+ animation: z.ZodOptional<z.ZodOptional<z.ZodObject<{
724
+ entering: z.ZodOptional<z.ZodObject<{
725
+ preset: z.ZodEnum<{
726
+ FadeIn: "FadeIn";
727
+ FadeInUp: "FadeInUp";
728
+ FadeInDown: "FadeInDown";
729
+ FadeInLeft: "FadeInLeft";
730
+ FadeInRight: "FadeInRight";
731
+ SlideInUp: "SlideInUp";
732
+ SlideInDown: "SlideInDown";
733
+ SlideInLeft: "SlideInLeft";
734
+ SlideInRight: "SlideInRight";
735
+ ZoomIn: "ZoomIn";
736
+ ZoomInRotate: "ZoomInRotate";
737
+ ZoomInUp: "ZoomInUp";
738
+ ZoomInDown: "ZoomInDown";
739
+ ZoomInLeft: "ZoomInLeft";
740
+ ZoomInRight: "ZoomInRight";
741
+ ZoomInEasyUp: "ZoomInEasyUp";
742
+ ZoomInEasyDown: "ZoomInEasyDown";
743
+ BounceIn: "BounceIn";
744
+ BounceInUp: "BounceInUp";
745
+ BounceInDown: "BounceInDown";
746
+ BounceInLeft: "BounceInLeft";
747
+ BounceInRight: "BounceInRight";
748
+ FlipInXUp: "FlipInXUp";
749
+ FlipInYLeft: "FlipInYLeft";
750
+ FlipInXDown: "FlipInXDown";
751
+ FlipInYRight: "FlipInYRight";
752
+ FlipInEasyX: "FlipInEasyX";
753
+ FlipInEasyY: "FlipInEasyY";
754
+ StretchInX: "StretchInX";
755
+ StretchInY: "StretchInY";
756
+ RotateInDownLeft: "RotateInDownLeft";
757
+ RotateInDownRight: "RotateInDownRight";
758
+ RotateInUpLeft: "RotateInUpLeft";
759
+ RotateInUpRight: "RotateInUpRight";
760
+ RollInLeft: "RollInLeft";
761
+ RollInRight: "RollInRight";
762
+ PinwheelIn: "PinwheelIn";
763
+ LightSpeedInLeft: "LightSpeedInLeft";
764
+ LightSpeedInRight: "LightSpeedInRight";
765
+ }>;
766
+ duration: z.ZodOptional<z.ZodNumber>;
767
+ delay: z.ZodOptional<z.ZodNumber>;
768
+ easing: z.ZodOptional<z.ZodEnum<{
769
+ linear: "linear";
770
+ "ease-in": "ease-in";
771
+ "ease-out": "ease-out";
772
+ "ease-in-out": "ease-in-out";
773
+ }>>;
774
+ spring: z.ZodOptional<z.ZodObject<{
775
+ damping: z.ZodOptional<z.ZodNumber>;
776
+ stiffness: z.ZodOptional<z.ZodNumber>;
777
+ mass: z.ZodOptional<z.ZodNumber>;
778
+ }, z.core.$strip>>;
779
+ }, z.core.$strip>>;
780
+ exiting: z.ZodOptional<z.ZodObject<{
781
+ preset: z.ZodEnum<{
782
+ FadeOut: "FadeOut";
783
+ FadeOutUp: "FadeOutUp";
784
+ FadeOutDown: "FadeOutDown";
785
+ FadeOutLeft: "FadeOutLeft";
786
+ FadeOutRight: "FadeOutRight";
787
+ SlideOutUp: "SlideOutUp";
788
+ SlideOutDown: "SlideOutDown";
789
+ SlideOutLeft: "SlideOutLeft";
790
+ SlideOutRight: "SlideOutRight";
791
+ ZoomOut: "ZoomOut";
792
+ ZoomOutRotate: "ZoomOutRotate";
793
+ ZoomOutUp: "ZoomOutUp";
794
+ ZoomOutDown: "ZoomOutDown";
795
+ ZoomOutLeft: "ZoomOutLeft";
796
+ ZoomOutRight: "ZoomOutRight";
797
+ ZoomOutEasyUp: "ZoomOutEasyUp";
798
+ ZoomOutEasyDown: "ZoomOutEasyDown";
799
+ BounceOut: "BounceOut";
800
+ BounceOutUp: "BounceOutUp";
801
+ BounceOutDown: "BounceOutDown";
802
+ BounceOutLeft: "BounceOutLeft";
803
+ BounceOutRight: "BounceOutRight";
804
+ FlipOutXUp: "FlipOutXUp";
805
+ FlipOutYLeft: "FlipOutYLeft";
806
+ FlipOutXDown: "FlipOutXDown";
807
+ FlipOutYRight: "FlipOutYRight";
808
+ FlipOutEasyX: "FlipOutEasyX";
809
+ FlipOutEasyY: "FlipOutEasyY";
810
+ StretchOutX: "StretchOutX";
811
+ StretchOutY: "StretchOutY";
812
+ RotateOutDownLeft: "RotateOutDownLeft";
813
+ RotateOutDownRight: "RotateOutDownRight";
814
+ RotateOutUpLeft: "RotateOutUpLeft";
815
+ RotateOutUpRight: "RotateOutUpRight";
816
+ RollOutLeft: "RollOutLeft";
817
+ RollOutRight: "RollOutRight";
818
+ PinwheelOut: "PinwheelOut";
819
+ LightSpeedOutLeft: "LightSpeedOutLeft";
820
+ LightSpeedOutRight: "LightSpeedOutRight";
821
+ }>;
822
+ duration: z.ZodOptional<z.ZodNumber>;
823
+ delay: z.ZodOptional<z.ZodNumber>;
824
+ easing: z.ZodOptional<z.ZodEnum<{
825
+ linear: "linear";
826
+ "ease-in": "ease-in";
827
+ "ease-out": "ease-out";
828
+ "ease-in-out": "ease-in-out";
829
+ }>>;
830
+ spring: z.ZodOptional<z.ZodObject<{
831
+ damping: z.ZodOptional<z.ZodNumber>;
832
+ stiffness: z.ZodOptional<z.ZodNumber>;
833
+ mass: z.ZodOptional<z.ZodNumber>;
834
+ }, z.core.$strip>>;
835
+ }, z.core.$strip>>;
836
+ layout: z.ZodOptional<z.ZodObject<{
837
+ preset: z.ZodEnum<{
838
+ LinearTransition: "LinearTransition";
839
+ FadingTransition: "FadingTransition";
840
+ SequencedTransition: "SequencedTransition";
841
+ JumpingTransition: "JumpingTransition";
842
+ CurvedTransition: "CurvedTransition";
843
+ EntryExitTransition: "EntryExitTransition";
844
+ }>;
845
+ duration: z.ZodOptional<z.ZodNumber>;
846
+ spring: z.ZodOptional<z.ZodObject<{
847
+ damping: z.ZodOptional<z.ZodNumber>;
848
+ stiffness: z.ZodOptional<z.ZodNumber>;
849
+ mass: z.ZodOptional<z.ZodNumber>;
850
+ }, z.core.$strip>>;
851
+ }, z.core.$strip>>;
852
+ effect: z.ZodOptional<z.ZodObject<{
853
+ preset: z.ZodEnum<{
854
+ rotate: "rotate";
855
+ pulse: "pulse";
856
+ fade: "fade";
857
+ shimmer: "shimmer";
858
+ bounce: "bounce";
859
+ }>;
860
+ duration: z.ZodOptional<z.ZodNumber>;
861
+ delay: z.ZodOptional<z.ZodNumber>;
862
+ easing: z.ZodOptional<z.ZodEnum<{
863
+ linear: "linear";
864
+ "ease-in": "ease-in";
865
+ "ease-out": "ease-out";
866
+ "ease-in-out": "ease-in-out";
867
+ }>>;
868
+ loop: z.ZodOptional<z.ZodBoolean>;
869
+ minScale: z.ZodOptional<z.ZodNumber>;
870
+ maxScale: z.ZodOptional<z.ZodNumber>;
871
+ minOpacity: z.ZodOptional<z.ZodNumber>;
872
+ degrees: z.ZodOptional<z.ZodNumber>;
873
+ }, z.core.$strip>>;
874
+ }, z.core.$strip>>>;
395
875
  variant: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
396
876
  filled: "filled";
397
877
  outlined: "outlined";
@@ -481,6 +961,166 @@ export declare const ButtonElementPropsSchema: z.ZodObject<{
481
961
  shadowOpacity: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
482
962
  shadowRadius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
483
963
  elevation: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
964
+ transform: z.ZodOptional<z.ZodOptional<z.ZodObject<{
965
+ translateX: z.ZodOptional<z.ZodNumber>;
966
+ translateY: z.ZodOptional<z.ZodNumber>;
967
+ scale: z.ZodOptional<z.ZodNumber>;
968
+ scaleX: z.ZodOptional<z.ZodNumber>;
969
+ scaleY: z.ZodOptional<z.ZodNumber>;
970
+ rotate: z.ZodOptional<z.ZodNumber>;
971
+ }, z.core.$strip>>>;
972
+ animation: z.ZodOptional<z.ZodOptional<z.ZodObject<{
973
+ entering: z.ZodOptional<z.ZodObject<{
974
+ preset: z.ZodEnum<{
975
+ FadeIn: "FadeIn";
976
+ FadeInUp: "FadeInUp";
977
+ FadeInDown: "FadeInDown";
978
+ FadeInLeft: "FadeInLeft";
979
+ FadeInRight: "FadeInRight";
980
+ SlideInUp: "SlideInUp";
981
+ SlideInDown: "SlideInDown";
982
+ SlideInLeft: "SlideInLeft";
983
+ SlideInRight: "SlideInRight";
984
+ ZoomIn: "ZoomIn";
985
+ ZoomInRotate: "ZoomInRotate";
986
+ ZoomInUp: "ZoomInUp";
987
+ ZoomInDown: "ZoomInDown";
988
+ ZoomInLeft: "ZoomInLeft";
989
+ ZoomInRight: "ZoomInRight";
990
+ ZoomInEasyUp: "ZoomInEasyUp";
991
+ ZoomInEasyDown: "ZoomInEasyDown";
992
+ BounceIn: "BounceIn";
993
+ BounceInUp: "BounceInUp";
994
+ BounceInDown: "BounceInDown";
995
+ BounceInLeft: "BounceInLeft";
996
+ BounceInRight: "BounceInRight";
997
+ FlipInXUp: "FlipInXUp";
998
+ FlipInYLeft: "FlipInYLeft";
999
+ FlipInXDown: "FlipInXDown";
1000
+ FlipInYRight: "FlipInYRight";
1001
+ FlipInEasyX: "FlipInEasyX";
1002
+ FlipInEasyY: "FlipInEasyY";
1003
+ StretchInX: "StretchInX";
1004
+ StretchInY: "StretchInY";
1005
+ RotateInDownLeft: "RotateInDownLeft";
1006
+ RotateInDownRight: "RotateInDownRight";
1007
+ RotateInUpLeft: "RotateInUpLeft";
1008
+ RotateInUpRight: "RotateInUpRight";
1009
+ RollInLeft: "RollInLeft";
1010
+ RollInRight: "RollInRight";
1011
+ PinwheelIn: "PinwheelIn";
1012
+ LightSpeedInLeft: "LightSpeedInLeft";
1013
+ LightSpeedInRight: "LightSpeedInRight";
1014
+ }>;
1015
+ duration: z.ZodOptional<z.ZodNumber>;
1016
+ delay: z.ZodOptional<z.ZodNumber>;
1017
+ easing: z.ZodOptional<z.ZodEnum<{
1018
+ linear: "linear";
1019
+ "ease-in": "ease-in";
1020
+ "ease-out": "ease-out";
1021
+ "ease-in-out": "ease-in-out";
1022
+ }>>;
1023
+ spring: z.ZodOptional<z.ZodObject<{
1024
+ damping: z.ZodOptional<z.ZodNumber>;
1025
+ stiffness: z.ZodOptional<z.ZodNumber>;
1026
+ mass: z.ZodOptional<z.ZodNumber>;
1027
+ }, z.core.$strip>>;
1028
+ }, z.core.$strip>>;
1029
+ exiting: z.ZodOptional<z.ZodObject<{
1030
+ preset: z.ZodEnum<{
1031
+ FadeOut: "FadeOut";
1032
+ FadeOutUp: "FadeOutUp";
1033
+ FadeOutDown: "FadeOutDown";
1034
+ FadeOutLeft: "FadeOutLeft";
1035
+ FadeOutRight: "FadeOutRight";
1036
+ SlideOutUp: "SlideOutUp";
1037
+ SlideOutDown: "SlideOutDown";
1038
+ SlideOutLeft: "SlideOutLeft";
1039
+ SlideOutRight: "SlideOutRight";
1040
+ ZoomOut: "ZoomOut";
1041
+ ZoomOutRotate: "ZoomOutRotate";
1042
+ ZoomOutUp: "ZoomOutUp";
1043
+ ZoomOutDown: "ZoomOutDown";
1044
+ ZoomOutLeft: "ZoomOutLeft";
1045
+ ZoomOutRight: "ZoomOutRight";
1046
+ ZoomOutEasyUp: "ZoomOutEasyUp";
1047
+ ZoomOutEasyDown: "ZoomOutEasyDown";
1048
+ BounceOut: "BounceOut";
1049
+ BounceOutUp: "BounceOutUp";
1050
+ BounceOutDown: "BounceOutDown";
1051
+ BounceOutLeft: "BounceOutLeft";
1052
+ BounceOutRight: "BounceOutRight";
1053
+ FlipOutXUp: "FlipOutXUp";
1054
+ FlipOutYLeft: "FlipOutYLeft";
1055
+ FlipOutXDown: "FlipOutXDown";
1056
+ FlipOutYRight: "FlipOutYRight";
1057
+ FlipOutEasyX: "FlipOutEasyX";
1058
+ FlipOutEasyY: "FlipOutEasyY";
1059
+ StretchOutX: "StretchOutX";
1060
+ StretchOutY: "StretchOutY";
1061
+ RotateOutDownLeft: "RotateOutDownLeft";
1062
+ RotateOutDownRight: "RotateOutDownRight";
1063
+ RotateOutUpLeft: "RotateOutUpLeft";
1064
+ RotateOutUpRight: "RotateOutUpRight";
1065
+ RollOutLeft: "RollOutLeft";
1066
+ RollOutRight: "RollOutRight";
1067
+ PinwheelOut: "PinwheelOut";
1068
+ LightSpeedOutLeft: "LightSpeedOutLeft";
1069
+ LightSpeedOutRight: "LightSpeedOutRight";
1070
+ }>;
1071
+ duration: z.ZodOptional<z.ZodNumber>;
1072
+ delay: z.ZodOptional<z.ZodNumber>;
1073
+ easing: z.ZodOptional<z.ZodEnum<{
1074
+ linear: "linear";
1075
+ "ease-in": "ease-in";
1076
+ "ease-out": "ease-out";
1077
+ "ease-in-out": "ease-in-out";
1078
+ }>>;
1079
+ spring: z.ZodOptional<z.ZodObject<{
1080
+ damping: z.ZodOptional<z.ZodNumber>;
1081
+ stiffness: z.ZodOptional<z.ZodNumber>;
1082
+ mass: z.ZodOptional<z.ZodNumber>;
1083
+ }, z.core.$strip>>;
1084
+ }, z.core.$strip>>;
1085
+ layout: z.ZodOptional<z.ZodObject<{
1086
+ preset: z.ZodEnum<{
1087
+ LinearTransition: "LinearTransition";
1088
+ FadingTransition: "FadingTransition";
1089
+ SequencedTransition: "SequencedTransition";
1090
+ JumpingTransition: "JumpingTransition";
1091
+ CurvedTransition: "CurvedTransition";
1092
+ EntryExitTransition: "EntryExitTransition";
1093
+ }>;
1094
+ duration: z.ZodOptional<z.ZodNumber>;
1095
+ spring: z.ZodOptional<z.ZodObject<{
1096
+ damping: z.ZodOptional<z.ZodNumber>;
1097
+ stiffness: z.ZodOptional<z.ZodNumber>;
1098
+ mass: z.ZodOptional<z.ZodNumber>;
1099
+ }, z.core.$strip>>;
1100
+ }, z.core.$strip>>;
1101
+ effect: z.ZodOptional<z.ZodObject<{
1102
+ preset: z.ZodEnum<{
1103
+ rotate: "rotate";
1104
+ pulse: "pulse";
1105
+ fade: "fade";
1106
+ shimmer: "shimmer";
1107
+ bounce: "bounce";
1108
+ }>;
1109
+ duration: z.ZodOptional<z.ZodNumber>;
1110
+ delay: z.ZodOptional<z.ZodNumber>;
1111
+ easing: z.ZodOptional<z.ZodEnum<{
1112
+ linear: "linear";
1113
+ "ease-in": "ease-in";
1114
+ "ease-out": "ease-out";
1115
+ "ease-in-out": "ease-in-out";
1116
+ }>>;
1117
+ loop: z.ZodOptional<z.ZodBoolean>;
1118
+ minScale: z.ZodOptional<z.ZodNumber>;
1119
+ maxScale: z.ZodOptional<z.ZodNumber>;
1120
+ minOpacity: z.ZodOptional<z.ZodNumber>;
1121
+ degrees: z.ZodOptional<z.ZodNumber>;
1122
+ }, z.core.$strip>>;
1123
+ }, z.core.$strip>>>;
484
1124
  variant: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
485
1125
  filled: "filled";
486
1126
  outlined: "outlined";