@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
@@ -81,6 +81,166 @@ export declare const VideoElementPropsSchema: z.ZodObject<{
81
81
  shadowOpacity: z.ZodOptional<z.ZodNumber>;
82
82
  shadowRadius: z.ZodOptional<z.ZodNumber>;
83
83
  elevation: z.ZodOptional<z.ZodNumber>;
84
+ transform: z.ZodOptional<z.ZodObject<{
85
+ translateX: z.ZodOptional<z.ZodNumber>;
86
+ translateY: z.ZodOptional<z.ZodNumber>;
87
+ scale: z.ZodOptional<z.ZodNumber>;
88
+ scaleX: z.ZodOptional<z.ZodNumber>;
89
+ scaleY: z.ZodOptional<z.ZodNumber>;
90
+ rotate: z.ZodOptional<z.ZodNumber>;
91
+ }, z.core.$strip>>;
92
+ animation: z.ZodOptional<z.ZodObject<{
93
+ entering: z.ZodOptional<z.ZodObject<{
94
+ preset: z.ZodEnum<{
95
+ FadeIn: "FadeIn";
96
+ FadeInUp: "FadeInUp";
97
+ FadeInDown: "FadeInDown";
98
+ FadeInLeft: "FadeInLeft";
99
+ FadeInRight: "FadeInRight";
100
+ SlideInUp: "SlideInUp";
101
+ SlideInDown: "SlideInDown";
102
+ SlideInLeft: "SlideInLeft";
103
+ SlideInRight: "SlideInRight";
104
+ ZoomIn: "ZoomIn";
105
+ ZoomInRotate: "ZoomInRotate";
106
+ ZoomInUp: "ZoomInUp";
107
+ ZoomInDown: "ZoomInDown";
108
+ ZoomInLeft: "ZoomInLeft";
109
+ ZoomInRight: "ZoomInRight";
110
+ ZoomInEasyUp: "ZoomInEasyUp";
111
+ ZoomInEasyDown: "ZoomInEasyDown";
112
+ BounceIn: "BounceIn";
113
+ BounceInUp: "BounceInUp";
114
+ BounceInDown: "BounceInDown";
115
+ BounceInLeft: "BounceInLeft";
116
+ BounceInRight: "BounceInRight";
117
+ FlipInXUp: "FlipInXUp";
118
+ FlipInYLeft: "FlipInYLeft";
119
+ FlipInXDown: "FlipInXDown";
120
+ FlipInYRight: "FlipInYRight";
121
+ FlipInEasyX: "FlipInEasyX";
122
+ FlipInEasyY: "FlipInEasyY";
123
+ StretchInX: "StretchInX";
124
+ StretchInY: "StretchInY";
125
+ RotateInDownLeft: "RotateInDownLeft";
126
+ RotateInDownRight: "RotateInDownRight";
127
+ RotateInUpLeft: "RotateInUpLeft";
128
+ RotateInUpRight: "RotateInUpRight";
129
+ RollInLeft: "RollInLeft";
130
+ RollInRight: "RollInRight";
131
+ PinwheelIn: "PinwheelIn";
132
+ LightSpeedInLeft: "LightSpeedInLeft";
133
+ LightSpeedInRight: "LightSpeedInRight";
134
+ }>;
135
+ duration: z.ZodOptional<z.ZodNumber>;
136
+ delay: z.ZodOptional<z.ZodNumber>;
137
+ easing: z.ZodOptional<z.ZodEnum<{
138
+ linear: "linear";
139
+ "ease-in": "ease-in";
140
+ "ease-out": "ease-out";
141
+ "ease-in-out": "ease-in-out";
142
+ }>>;
143
+ spring: z.ZodOptional<z.ZodObject<{
144
+ damping: z.ZodOptional<z.ZodNumber>;
145
+ stiffness: z.ZodOptional<z.ZodNumber>;
146
+ mass: z.ZodOptional<z.ZodNumber>;
147
+ }, z.core.$strip>>;
148
+ }, z.core.$strip>>;
149
+ exiting: z.ZodOptional<z.ZodObject<{
150
+ preset: z.ZodEnum<{
151
+ FadeOut: "FadeOut";
152
+ FadeOutUp: "FadeOutUp";
153
+ FadeOutDown: "FadeOutDown";
154
+ FadeOutLeft: "FadeOutLeft";
155
+ FadeOutRight: "FadeOutRight";
156
+ SlideOutUp: "SlideOutUp";
157
+ SlideOutDown: "SlideOutDown";
158
+ SlideOutLeft: "SlideOutLeft";
159
+ SlideOutRight: "SlideOutRight";
160
+ ZoomOut: "ZoomOut";
161
+ ZoomOutRotate: "ZoomOutRotate";
162
+ ZoomOutUp: "ZoomOutUp";
163
+ ZoomOutDown: "ZoomOutDown";
164
+ ZoomOutLeft: "ZoomOutLeft";
165
+ ZoomOutRight: "ZoomOutRight";
166
+ ZoomOutEasyUp: "ZoomOutEasyUp";
167
+ ZoomOutEasyDown: "ZoomOutEasyDown";
168
+ BounceOut: "BounceOut";
169
+ BounceOutUp: "BounceOutUp";
170
+ BounceOutDown: "BounceOutDown";
171
+ BounceOutLeft: "BounceOutLeft";
172
+ BounceOutRight: "BounceOutRight";
173
+ FlipOutXUp: "FlipOutXUp";
174
+ FlipOutYLeft: "FlipOutYLeft";
175
+ FlipOutXDown: "FlipOutXDown";
176
+ FlipOutYRight: "FlipOutYRight";
177
+ FlipOutEasyX: "FlipOutEasyX";
178
+ FlipOutEasyY: "FlipOutEasyY";
179
+ StretchOutX: "StretchOutX";
180
+ StretchOutY: "StretchOutY";
181
+ RotateOutDownLeft: "RotateOutDownLeft";
182
+ RotateOutDownRight: "RotateOutDownRight";
183
+ RotateOutUpLeft: "RotateOutUpLeft";
184
+ RotateOutUpRight: "RotateOutUpRight";
185
+ RollOutLeft: "RollOutLeft";
186
+ RollOutRight: "RollOutRight";
187
+ PinwheelOut: "PinwheelOut";
188
+ LightSpeedOutLeft: "LightSpeedOutLeft";
189
+ LightSpeedOutRight: "LightSpeedOutRight";
190
+ }>;
191
+ duration: z.ZodOptional<z.ZodNumber>;
192
+ delay: z.ZodOptional<z.ZodNumber>;
193
+ easing: z.ZodOptional<z.ZodEnum<{
194
+ linear: "linear";
195
+ "ease-in": "ease-in";
196
+ "ease-out": "ease-out";
197
+ "ease-in-out": "ease-in-out";
198
+ }>>;
199
+ spring: z.ZodOptional<z.ZodObject<{
200
+ damping: z.ZodOptional<z.ZodNumber>;
201
+ stiffness: z.ZodOptional<z.ZodNumber>;
202
+ mass: z.ZodOptional<z.ZodNumber>;
203
+ }, z.core.$strip>>;
204
+ }, z.core.$strip>>;
205
+ layout: z.ZodOptional<z.ZodObject<{
206
+ preset: z.ZodEnum<{
207
+ LinearTransition: "LinearTransition";
208
+ FadingTransition: "FadingTransition";
209
+ SequencedTransition: "SequencedTransition";
210
+ JumpingTransition: "JumpingTransition";
211
+ CurvedTransition: "CurvedTransition";
212
+ EntryExitTransition: "EntryExitTransition";
213
+ }>;
214
+ duration: z.ZodOptional<z.ZodNumber>;
215
+ spring: z.ZodOptional<z.ZodObject<{
216
+ damping: z.ZodOptional<z.ZodNumber>;
217
+ stiffness: z.ZodOptional<z.ZodNumber>;
218
+ mass: z.ZodOptional<z.ZodNumber>;
219
+ }, z.core.$strip>>;
220
+ }, z.core.$strip>>;
221
+ effect: z.ZodOptional<z.ZodObject<{
222
+ preset: z.ZodEnum<{
223
+ rotate: "rotate";
224
+ pulse: "pulse";
225
+ fade: "fade";
226
+ shimmer: "shimmer";
227
+ bounce: "bounce";
228
+ }>;
229
+ duration: z.ZodOptional<z.ZodNumber>;
230
+ delay: z.ZodOptional<z.ZodNumber>;
231
+ easing: z.ZodOptional<z.ZodEnum<{
232
+ linear: "linear";
233
+ "ease-in": "ease-in";
234
+ "ease-out": "ease-out";
235
+ "ease-in-out": "ease-in-out";
236
+ }>>;
237
+ loop: z.ZodOptional<z.ZodBoolean>;
238
+ minScale: z.ZodOptional<z.ZodNumber>;
239
+ maxScale: z.ZodOptional<z.ZodNumber>;
240
+ minOpacity: z.ZodOptional<z.ZodNumber>;
241
+ degrees: z.ZodOptional<z.ZodNumber>;
242
+ }, z.core.$strip>>;
243
+ }, z.core.$strip>>;
84
244
  url: z.ZodString;
85
245
  autoPlay: z.ZodOptional<z.ZodBoolean>;
86
246
  loop: z.ZodOptional<z.ZodBoolean>;
@@ -1 +1 @@
1
- {"version":3,"file":"VideoElement.d.ts","sourceRoot":"","sources":["../../../../../src/UI/Pages/ComposableScreen/elements/VideoElement.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoB,MAAM,OAAO,CAAC;AACzC,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,EAAE,YAAY,EAAsB,MAAM,gBAAgB,CAAC;AAClE,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AACrC,OAAO,EAAE,aAAa,EAAO,MAAM,UAAU,CAAC;AAI9C,MAAM,MAAM,iBAAiB,GAAG,YAAY,GAAG;IAC7C,GAAG,EAAE,MAAM,CAAC;IACZ,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,UAAU,CAAC,EAAE,SAAS,GAAG,OAAO,GAAG,MAAM,CAAC;CAC3C,CAAC;AAEF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAOlC,CAAC;AAEH,KAAK,cAAc,GAAG,OAAO,CAAC,SAAS,EAAE;IAAE,IAAI,EAAE,OAAO,CAAA;CAAE,CAAC,CAAC;AAoC5D,KAAK,KAAK,GAAG;IACX,OAAO,EAAE,cAAc,CAAC;IACxB,GAAG,EAAE,aAAa,CAAC;CACpB,CAAC;AAEF,eAAO,MAAM,oBAAoB,GAAI,kBAAkB,KAAK,KAAG,KAAK,CAAC,YA6CpE,CAAC"}
1
+ {"version":3,"file":"VideoElement.d.ts","sourceRoot":"","sources":["../../../../../src/UI/Pages/ComposableScreen/elements/VideoElement.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoB,MAAM,OAAO,CAAC;AACzC,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,EAAE,YAAY,EAAsB,MAAM,gBAAgB,CAAC;AAClE,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AACrC,OAAO,EAAE,aAAa,EAAO,MAAM,UAAU,CAAC;AAI9C,MAAM,MAAM,iBAAiB,GAAG,YAAY,GAAG;IAC7C,GAAG,EAAE,MAAM,CAAC;IACZ,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,UAAU,CAAC,EAAE,SAAS,GAAG,OAAO,GAAG,MAAM,CAAC;CAC3C,CAAC;AAEF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAOlC,CAAC;AAEH,KAAK,cAAc,GAAG,OAAO,CAAC,SAAS,EAAE;IAAE,IAAI,EAAE,OAAO,CAAA;CAAE,CAAC,CAAC;AAoC5D,KAAK,KAAK,GAAG;IACX,OAAO,EAAE,cAAc,CAAC;IACxB,GAAG,EAAE,aAAa,CAAC;CACpB,CAAC;AAEF,eAAO,MAAM,oBAAoB,GAAI,kBAAkB,KAAK,KAAG,KAAK,CAAC,YA6CpE,CAAC"}
@@ -73,6 +73,166 @@ export declare const ZStackElementPropsSchema: import("zod").ZodObject<{
73
73
  shadowOpacity: import("zod").ZodOptional<import("zod").ZodNumber>;
74
74
  shadowRadius: import("zod").ZodOptional<import("zod").ZodNumber>;
75
75
  elevation: import("zod").ZodOptional<import("zod").ZodNumber>;
76
+ transform: import("zod").ZodOptional<import("zod").ZodObject<{
77
+ translateX: import("zod").ZodOptional<import("zod").ZodNumber>;
78
+ translateY: import("zod").ZodOptional<import("zod").ZodNumber>;
79
+ scale: import("zod").ZodOptional<import("zod").ZodNumber>;
80
+ scaleX: import("zod").ZodOptional<import("zod").ZodNumber>;
81
+ scaleY: import("zod").ZodOptional<import("zod").ZodNumber>;
82
+ rotate: import("zod").ZodOptional<import("zod").ZodNumber>;
83
+ }, import("zod/v4/core").$strip>>;
84
+ animation: import("zod").ZodOptional<import("zod").ZodObject<{
85
+ entering: import("zod").ZodOptional<import("zod").ZodObject<{
86
+ preset: import("zod").ZodEnum<{
87
+ FadeIn: "FadeIn";
88
+ FadeInUp: "FadeInUp";
89
+ FadeInDown: "FadeInDown";
90
+ FadeInLeft: "FadeInLeft";
91
+ FadeInRight: "FadeInRight";
92
+ SlideInUp: "SlideInUp";
93
+ SlideInDown: "SlideInDown";
94
+ SlideInLeft: "SlideInLeft";
95
+ SlideInRight: "SlideInRight";
96
+ ZoomIn: "ZoomIn";
97
+ ZoomInRotate: "ZoomInRotate";
98
+ ZoomInUp: "ZoomInUp";
99
+ ZoomInDown: "ZoomInDown";
100
+ ZoomInLeft: "ZoomInLeft";
101
+ ZoomInRight: "ZoomInRight";
102
+ ZoomInEasyUp: "ZoomInEasyUp";
103
+ ZoomInEasyDown: "ZoomInEasyDown";
104
+ BounceIn: "BounceIn";
105
+ BounceInUp: "BounceInUp";
106
+ BounceInDown: "BounceInDown";
107
+ BounceInLeft: "BounceInLeft";
108
+ BounceInRight: "BounceInRight";
109
+ FlipInXUp: "FlipInXUp";
110
+ FlipInYLeft: "FlipInYLeft";
111
+ FlipInXDown: "FlipInXDown";
112
+ FlipInYRight: "FlipInYRight";
113
+ FlipInEasyX: "FlipInEasyX";
114
+ FlipInEasyY: "FlipInEasyY";
115
+ StretchInX: "StretchInX";
116
+ StretchInY: "StretchInY";
117
+ RotateInDownLeft: "RotateInDownLeft";
118
+ RotateInDownRight: "RotateInDownRight";
119
+ RotateInUpLeft: "RotateInUpLeft";
120
+ RotateInUpRight: "RotateInUpRight";
121
+ RollInLeft: "RollInLeft";
122
+ RollInRight: "RollInRight";
123
+ PinwheelIn: "PinwheelIn";
124
+ LightSpeedInLeft: "LightSpeedInLeft";
125
+ LightSpeedInRight: "LightSpeedInRight";
126
+ }>;
127
+ duration: import("zod").ZodOptional<import("zod").ZodNumber>;
128
+ delay: import("zod").ZodOptional<import("zod").ZodNumber>;
129
+ easing: import("zod").ZodOptional<import("zod").ZodEnum<{
130
+ linear: "linear";
131
+ "ease-in": "ease-in";
132
+ "ease-out": "ease-out";
133
+ "ease-in-out": "ease-in-out";
134
+ }>>;
135
+ spring: import("zod").ZodOptional<import("zod").ZodObject<{
136
+ damping: import("zod").ZodOptional<import("zod").ZodNumber>;
137
+ stiffness: import("zod").ZodOptional<import("zod").ZodNumber>;
138
+ mass: import("zod").ZodOptional<import("zod").ZodNumber>;
139
+ }, import("zod/v4/core").$strip>>;
140
+ }, import("zod/v4/core").$strip>>;
141
+ exiting: import("zod").ZodOptional<import("zod").ZodObject<{
142
+ preset: import("zod").ZodEnum<{
143
+ FadeOut: "FadeOut";
144
+ FadeOutUp: "FadeOutUp";
145
+ FadeOutDown: "FadeOutDown";
146
+ FadeOutLeft: "FadeOutLeft";
147
+ FadeOutRight: "FadeOutRight";
148
+ SlideOutUp: "SlideOutUp";
149
+ SlideOutDown: "SlideOutDown";
150
+ SlideOutLeft: "SlideOutLeft";
151
+ SlideOutRight: "SlideOutRight";
152
+ ZoomOut: "ZoomOut";
153
+ ZoomOutRotate: "ZoomOutRotate";
154
+ ZoomOutUp: "ZoomOutUp";
155
+ ZoomOutDown: "ZoomOutDown";
156
+ ZoomOutLeft: "ZoomOutLeft";
157
+ ZoomOutRight: "ZoomOutRight";
158
+ ZoomOutEasyUp: "ZoomOutEasyUp";
159
+ ZoomOutEasyDown: "ZoomOutEasyDown";
160
+ BounceOut: "BounceOut";
161
+ BounceOutUp: "BounceOutUp";
162
+ BounceOutDown: "BounceOutDown";
163
+ BounceOutLeft: "BounceOutLeft";
164
+ BounceOutRight: "BounceOutRight";
165
+ FlipOutXUp: "FlipOutXUp";
166
+ FlipOutYLeft: "FlipOutYLeft";
167
+ FlipOutXDown: "FlipOutXDown";
168
+ FlipOutYRight: "FlipOutYRight";
169
+ FlipOutEasyX: "FlipOutEasyX";
170
+ FlipOutEasyY: "FlipOutEasyY";
171
+ StretchOutX: "StretchOutX";
172
+ StretchOutY: "StretchOutY";
173
+ RotateOutDownLeft: "RotateOutDownLeft";
174
+ RotateOutDownRight: "RotateOutDownRight";
175
+ RotateOutUpLeft: "RotateOutUpLeft";
176
+ RotateOutUpRight: "RotateOutUpRight";
177
+ RollOutLeft: "RollOutLeft";
178
+ RollOutRight: "RollOutRight";
179
+ PinwheelOut: "PinwheelOut";
180
+ LightSpeedOutLeft: "LightSpeedOutLeft";
181
+ LightSpeedOutRight: "LightSpeedOutRight";
182
+ }>;
183
+ duration: import("zod").ZodOptional<import("zod").ZodNumber>;
184
+ delay: import("zod").ZodOptional<import("zod").ZodNumber>;
185
+ easing: import("zod").ZodOptional<import("zod").ZodEnum<{
186
+ linear: "linear";
187
+ "ease-in": "ease-in";
188
+ "ease-out": "ease-out";
189
+ "ease-in-out": "ease-in-out";
190
+ }>>;
191
+ spring: import("zod").ZodOptional<import("zod").ZodObject<{
192
+ damping: import("zod").ZodOptional<import("zod").ZodNumber>;
193
+ stiffness: import("zod").ZodOptional<import("zod").ZodNumber>;
194
+ mass: import("zod").ZodOptional<import("zod").ZodNumber>;
195
+ }, import("zod/v4/core").$strip>>;
196
+ }, import("zod/v4/core").$strip>>;
197
+ layout: import("zod").ZodOptional<import("zod").ZodObject<{
198
+ preset: import("zod").ZodEnum<{
199
+ LinearTransition: "LinearTransition";
200
+ FadingTransition: "FadingTransition";
201
+ SequencedTransition: "SequencedTransition";
202
+ JumpingTransition: "JumpingTransition";
203
+ CurvedTransition: "CurvedTransition";
204
+ EntryExitTransition: "EntryExitTransition";
205
+ }>;
206
+ duration: import("zod").ZodOptional<import("zod").ZodNumber>;
207
+ spring: import("zod").ZodOptional<import("zod").ZodObject<{
208
+ damping: import("zod").ZodOptional<import("zod").ZodNumber>;
209
+ stiffness: import("zod").ZodOptional<import("zod").ZodNumber>;
210
+ mass: import("zod").ZodOptional<import("zod").ZodNumber>;
211
+ }, import("zod/v4/core").$strip>>;
212
+ }, import("zod/v4/core").$strip>>;
213
+ effect: import("zod").ZodOptional<import("zod").ZodObject<{
214
+ preset: import("zod").ZodEnum<{
215
+ rotate: "rotate";
216
+ pulse: "pulse";
217
+ fade: "fade";
218
+ shimmer: "shimmer";
219
+ bounce: "bounce";
220
+ }>;
221
+ duration: import("zod").ZodOptional<import("zod").ZodNumber>;
222
+ delay: import("zod").ZodOptional<import("zod").ZodNumber>;
223
+ easing: import("zod").ZodOptional<import("zod").ZodEnum<{
224
+ linear: "linear";
225
+ "ease-in": "ease-in";
226
+ "ease-out": "ease-out";
227
+ "ease-in-out": "ease-in-out";
228
+ }>>;
229
+ loop: import("zod").ZodOptional<import("zod").ZodBoolean>;
230
+ minScale: import("zod").ZodOptional<import("zod").ZodNumber>;
231
+ maxScale: import("zod").ZodOptional<import("zod").ZodNumber>;
232
+ minOpacity: import("zod").ZodOptional<import("zod").ZodNumber>;
233
+ degrees: import("zod").ZodOptional<import("zod").ZodNumber>;
234
+ }, import("zod/v4/core").$strip>>;
235
+ }, import("zod/v4/core").$strip>>;
76
236
  }, import("zod/v4/core").$strip>;
77
237
  type ZStackUIElement = Extract<UIElement, {
78
238
  type: "ZStack";
@@ -1 +1 @@
1
- {"version":3,"file":"ZStackElement.d.ts","sourceRoot":"","sources":["../../../../../src/UI/Pages/ComposableScreen/elements/ZStackElement.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,YAAY,EAAsB,MAAM,gBAAgB,CAAC;AAClE,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AACrC,OAAO,EAAE,aAAa,EAAO,MAAM,UAAU,CAAC;AAG9C,MAAM,MAAM,kBAAkB,GAAG,YAAY,CAAC;AAC9C,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gCAAqB,CAAC;AAE3D,KAAK,eAAe,GAAG,OAAO,CAAC,SAAS,EAAE;IAAE,IAAI,EAAE,QAAQ,CAAA;CAAE,CAAC,CAAC;AAE9D,KAAK,KAAK,GAAG;IACX,OAAO,EAAE,eAAe,CAAC;IACzB,GAAG,EAAE,aAAa,CAAC;CACpB,CAAC;AAEF,eAAO,MAAM,sBAAsB,GAAI,kBAAkB,KAAK,KAAG,KAAK,CAAC,YA0CtE,CAAC"}
1
+ {"version":3,"file":"ZStackElement.d.ts","sourceRoot":"","sources":["../../../../../src/UI/Pages/ComposableScreen/elements/ZStackElement.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,YAAY,EAAsB,MAAM,gBAAgB,CAAC;AAClE,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AACrC,OAAO,EAAE,aAAa,EAAO,MAAM,UAAU,CAAC;AAG9C,MAAM,MAAM,kBAAkB,GAAG,YAAY,CAAC;AAC9C,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gCAAqB,CAAC;AAE3D,KAAK,eAAe,GAAG,OAAO,CAAC,SAAS,EAAE;IAAE,IAAI,EAAE,QAAQ,CAAA;CAAE,CAAC,CAAC;AAE9D,KAAK,KAAK,GAAG;IACX,OAAO,EAAE,eAAe,CAAC;IACzB,GAAG,EAAE,aAAa,CAAC;CACpB,CAAC;AAEF,eAAO,MAAM,sBAAsB,GAAI,kBAAkB,KAAK,KAAG,KAAK,CAAC,YA0CtE,CAAC"}
@@ -0,0 +1,9 @@
1
+ import { Easing } from "react-native-reanimated";
2
+ import type { AnimationEasing, EnteringAnimation, ExitingAnimation, LayoutAnimation } from "@rocapine/react-native-onboarding";
3
+ export declare const EASING_MAP: Record<AnimationEasing, ReturnType<typeof Easing.bezier> | typeof Easing.linear>;
4
+ type AnyBuilder = any;
5
+ export declare const buildEntering: (cfg: EnteringAnimation | undefined) => AnyBuilder | undefined;
6
+ export declare const buildExiting: (cfg: ExitingAnimation | undefined) => AnyBuilder | undefined;
7
+ export declare const buildLayout: (cfg: LayoutAnimation | undefined) => AnyBuilder | undefined;
8
+ export {};
9
+ //# sourceMappingURL=buildAnimation.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"buildAnimation.d.ts","sourceRoot":"","sources":["../../../../../src/UI/Pages/ComposableScreen/elements/buildAnimation.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AACjD,OAAO,KAAK,EACV,eAAe,EACf,iBAAiB,EACjB,gBAAgB,EAChB,eAAe,EAChB,MAAM,mCAAmC,CAAC;AAI3C,eAAO,MAAM,UAAU,EAAE,MAAM,CAC7B,eAAe,EACf,UAAU,CAAC,OAAO,MAAM,CAAC,MAAM,CAAC,GAAG,OAAO,MAAM,CAAC,MAAM,CAMxD,CAAC;AAOF,KAAK,UAAU,GAAG,GAAG,CAAC;AAoCtB,eAAO,MAAM,aAAa,GAAI,KAAK,iBAAiB,GAAG,SAAS,KAAG,UAAU,GAAG,SAC1D,CAAC;AAEvB,eAAO,MAAM,YAAY,GAAI,KAAK,gBAAgB,GAAG,SAAS,KAAG,UAAU,GAAG,SACxD,CAAC;AAEvB,eAAO,MAAM,WAAW,GAAI,KAAK,eAAe,GAAG,SAAS,KAAG,UAAU,GAAG,SAc3E,CAAC"}
@@ -0,0 +1,106 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.buildLayout = exports.buildExiting = exports.buildEntering = exports.EASING_MAP = void 0;
37
+ const Reanimated = __importStar(require("react-native-reanimated"));
38
+ const react_native_reanimated_1 = require("react-native-reanimated");
39
+ // CSS-style cubic-bezier curves matching the selectable easing names. Shared by
40
+ // the animation builders here and by ProgressIndicatorElement (single source).
41
+ exports.EASING_MAP = {
42
+ linear: react_native_reanimated_1.Easing.linear,
43
+ "ease-in": react_native_reanimated_1.Easing.bezier(0.42, 0, 1, 1),
44
+ "ease-out": react_native_reanimated_1.Easing.bezier(0, 0, 0.58, 1),
45
+ "ease-in-out": react_native_reanimated_1.Easing.bezier(0.42, 0, 0.58, 1),
46
+ };
47
+ const resolveBuilder = (preset) => {
48
+ const b = Reanimated[preset];
49
+ return b !== null && b !== void 0 ? b : undefined;
50
+ };
51
+ const applySpringOrEasing = (builder, spring, easing) => {
52
+ // reanimated: `spring` (`.springify()`) and `.easing()` are mutually exclusive.
53
+ // Spring wins, matching the schema contract.
54
+ if (spring) {
55
+ let b = builder.springify();
56
+ if (spring.damping != null)
57
+ b = b.damping(spring.damping);
58
+ if (spring.stiffness != null)
59
+ b = b.stiffness(spring.stiffness);
60
+ if (spring.mass != null)
61
+ b = b.mass(spring.mass);
62
+ return b;
63
+ }
64
+ if (easing)
65
+ return builder.easing(exports.EASING_MAP[easing]);
66
+ return builder;
67
+ };
68
+ const buildTransition = (cfg) => {
69
+ if (!cfg)
70
+ return undefined;
71
+ let b = resolveBuilder(cfg.preset);
72
+ if (!b)
73
+ return undefined;
74
+ if (cfg.duration != null)
75
+ b = b.duration(cfg.duration);
76
+ if (cfg.delay != null)
77
+ b = b.delay(cfg.delay);
78
+ return applySpringOrEasing(b, cfg.spring, cfg.easing);
79
+ };
80
+ const buildEntering = (cfg) => buildTransition(cfg);
81
+ exports.buildEntering = buildEntering;
82
+ const buildExiting = (cfg) => buildTransition(cfg);
83
+ exports.buildExiting = buildExiting;
84
+ const buildLayout = (cfg) => {
85
+ if (!cfg)
86
+ return undefined;
87
+ let b = resolveBuilder(cfg.preset);
88
+ if (!b)
89
+ return undefined;
90
+ // Layout transitions are referenced as static builder objects; calling a
91
+ // modifier returns a configured instance.
92
+ if (cfg.duration != null)
93
+ b = b.duration(cfg.duration);
94
+ if (cfg.spring) {
95
+ b = b.springify();
96
+ if (cfg.spring.damping != null)
97
+ b = b.damping(cfg.spring.damping);
98
+ if (cfg.spring.stiffness != null)
99
+ b = b.stiffness(cfg.spring.stiffness);
100
+ if (cfg.spring.mass != null)
101
+ b = b.mass(cfg.spring.mass);
102
+ }
103
+ return b;
104
+ };
105
+ exports.buildLayout = buildLayout;
106
+ //# sourceMappingURL=buildAnimation.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"buildAnimation.js","sourceRoot":"","sources":["../../../../../src/UI/Pages/ComposableScreen/elements/buildAnimation.ts"],"names":[],"mappings":"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"}
@@ -1,5 +1,5 @@
1
1
  import React from "react";
2
2
  import { UIElement } from "../types";
3
3
  import { RenderContext } from "./shared";
4
- export declare const renderElement: (element: UIElement, ctx: RenderContext, parentType?: "XStack" | "YStack" | "ZStack") => React.ReactNode;
4
+ export declare const renderElement: (element: UIElement, ctx: RenderContext, parentType?: "XStack" | "YStack" | "ZStack" | "RichText") => React.ReactNode;
5
5
  //# sourceMappingURL=renderElement.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"renderElement.d.ts","sourceRoot":"","sources":["../../../../../src/UI/Pages/ComposableScreen/elements/renderElement.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AACrC,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAqBzC,eAAO,MAAM,aAAa,GACxB,SAAS,SAAS,EAClB,KAAK,aAAa,EAClB,aAAa,QAAQ,GAAG,QAAQ,GAAG,QAAQ,KAC1C,KAAK,CAAC,SAqFR,CAAC"}
1
+ {"version":3,"file":"renderElement.d.ts","sourceRoot":"","sources":["../../../../../src/UI/Pages/ComposableScreen/elements/renderElement.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAErC,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAuBzC,eAAO,MAAM,aAAa,GACxB,SAAS,SAAS,EAClB,KAAK,aAAa,EAClB,aAAa,QAAQ,GAAG,QAAQ,GAAG,QAAQ,GAAG,UAAU,KACvD,KAAK,CAAC,SAkHR,CAAC"}