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