@rocapine/react-native-onboarding-ui 1.31.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.
Files changed (62) hide show
  1. package/dist/UI/Pages/ComposableScreen/elements/AnimatedBox.d.ts +21 -0
  2. package/dist/UI/Pages/ComposableScreen/elements/AnimatedBox.d.ts.map +1 -0
  3. package/dist/UI/Pages/ComposableScreen/elements/AnimatedBox.js +140 -0
  4. package/dist/UI/Pages/ComposableScreen/elements/AnimatedBox.js.map +1 -0
  5. package/dist/UI/Pages/ComposableScreen/elements/BaseBoxProps.d.ts +220 -0
  6. package/dist/UI/Pages/ComposableScreen/elements/BaseBoxProps.d.ts.map +1 -1
  7. package/dist/UI/Pages/ComposableScreen/elements/BaseBoxProps.js +83 -0
  8. package/dist/UI/Pages/ComposableScreen/elements/BaseBoxProps.js.map +1 -1
  9. package/dist/UI/Pages/ComposableScreen/elements/ButtonElement.d.ts +640 -0
  10. package/dist/UI/Pages/ComposableScreen/elements/ButtonElement.d.ts.map +1 -1
  11. package/dist/UI/Pages/ComposableScreen/elements/CarouselElement.d.ts +160 -0
  12. package/dist/UI/Pages/ComposableScreen/elements/CarouselElement.d.ts.map +1 -1
  13. package/dist/UI/Pages/ComposableScreen/elements/CheckboxGroupElement.d.ts +160 -0
  14. package/dist/UI/Pages/ComposableScreen/elements/CheckboxGroupElement.d.ts.map +1 -1
  15. package/dist/UI/Pages/ComposableScreen/elements/DatePickerElement.d.ts +160 -0
  16. package/dist/UI/Pages/ComposableScreen/elements/DatePickerElement.d.ts.map +1 -1
  17. package/dist/UI/Pages/ComposableScreen/elements/IconElement.d.ts +160 -0
  18. package/dist/UI/Pages/ComposableScreen/elements/IconElement.d.ts.map +1 -1
  19. package/dist/UI/Pages/ComposableScreen/elements/ImageElement.d.ts +160 -0
  20. package/dist/UI/Pages/ComposableScreen/elements/ImageElement.d.ts.map +1 -1
  21. package/dist/UI/Pages/ComposableScreen/elements/InputElement.d.ts +160 -0
  22. package/dist/UI/Pages/ComposableScreen/elements/InputElement.d.ts.map +1 -1
  23. package/dist/UI/Pages/ComposableScreen/elements/KeyboardAvoidingViewElement.d.ts +160 -0
  24. package/dist/UI/Pages/ComposableScreen/elements/KeyboardAvoidingViewElement.d.ts.map +1 -1
  25. package/dist/UI/Pages/ComposableScreen/elements/LottieElement.d.ts +160 -0
  26. package/dist/UI/Pages/ComposableScreen/elements/LottieElement.d.ts.map +1 -1
  27. package/dist/UI/Pages/ComposableScreen/elements/ProgressIndicatorElement.d.ts +160 -0
  28. package/dist/UI/Pages/ComposableScreen/elements/ProgressIndicatorElement.d.ts.map +1 -1
  29. package/dist/UI/Pages/ComposableScreen/elements/ProgressIndicatorElement.js +2 -8
  30. package/dist/UI/Pages/ComposableScreen/elements/ProgressIndicatorElement.js.map +1 -1
  31. package/dist/UI/Pages/ComposableScreen/elements/RadioGroupElement.d.ts +160 -0
  32. package/dist/UI/Pages/ComposableScreen/elements/RadioGroupElement.d.ts.map +1 -1
  33. package/dist/UI/Pages/ComposableScreen/elements/RiveElement.d.ts +160 -0
  34. package/dist/UI/Pages/ComposableScreen/elements/RiveElement.d.ts.map +1 -1
  35. package/dist/UI/Pages/ComposableScreen/elements/SafeAreaViewElement.d.ts +160 -0
  36. package/dist/UI/Pages/ComposableScreen/elements/SafeAreaViewElement.d.ts.map +1 -1
  37. package/dist/UI/Pages/ComposableScreen/elements/ScrollViewElement.d.ts +160 -0
  38. package/dist/UI/Pages/ComposableScreen/elements/ScrollViewElement.d.ts.map +1 -1
  39. package/dist/UI/Pages/ComposableScreen/elements/StackElement.d.ts +160 -0
  40. package/dist/UI/Pages/ComposableScreen/elements/StackElement.d.ts.map +1 -1
  41. package/dist/UI/Pages/ComposableScreen/elements/TextElement.d.ts +198 -0
  42. package/dist/UI/Pages/ComposableScreen/elements/TextElement.d.ts.map +1 -1
  43. package/dist/UI/Pages/ComposableScreen/elements/TextElement.js +12 -0
  44. package/dist/UI/Pages/ComposableScreen/elements/TextElement.js.map +1 -1
  45. package/dist/UI/Pages/ComposableScreen/elements/VideoElement.d.ts +160 -0
  46. package/dist/UI/Pages/ComposableScreen/elements/VideoElement.d.ts.map +1 -1
  47. package/dist/UI/Pages/ComposableScreen/elements/ZStackElement.d.ts +160 -0
  48. package/dist/UI/Pages/ComposableScreen/elements/ZStackElement.d.ts.map +1 -1
  49. package/dist/UI/Pages/ComposableScreen/elements/buildAnimation.d.ts +9 -0
  50. package/dist/UI/Pages/ComposableScreen/elements/buildAnimation.d.ts.map +1 -0
  51. package/dist/UI/Pages/ComposableScreen/elements/buildAnimation.js +106 -0
  52. package/dist/UI/Pages/ComposableScreen/elements/buildAnimation.js.map +1 -0
  53. package/dist/UI/Pages/ComposableScreen/elements/renderElement.d.ts.map +1 -1
  54. package/dist/UI/Pages/ComposableScreen/elements/renderElement.js +72 -58
  55. package/dist/UI/Pages/ComposableScreen/elements/renderElement.js.map +1 -1
  56. package/package.json +1 -1
  57. package/src/UI/Pages/ComposableScreen/elements/AnimatedBox.tsx +133 -0
  58. package/src/UI/Pages/ComposableScreen/elements/BaseBoxProps.ts +211 -0
  59. package/src/UI/Pages/ComposableScreen/elements/ProgressIndicatorElement.tsx +1 -9
  60. package/src/UI/Pages/ComposableScreen/elements/TextElement.tsx +18 -0
  61. package/src/UI/Pages/ComposableScreen/elements/buildAnimation.ts +83 -0
  62. package/src/UI/Pages/ComposableScreen/elements/renderElement.tsx +28 -1
@@ -99,6 +99,166 @@ export declare const RadioGroupElementPropsSchema: z.ZodObject<{
99
99
  shadowOpacity: z.ZodOptional<z.ZodNumber>;
100
100
  shadowRadius: z.ZodOptional<z.ZodNumber>;
101
101
  elevation: z.ZodOptional<z.ZodNumber>;
102
+ transform: z.ZodOptional<z.ZodObject<{
103
+ translateX: z.ZodOptional<z.ZodNumber>;
104
+ translateY: z.ZodOptional<z.ZodNumber>;
105
+ scale: z.ZodOptional<z.ZodNumber>;
106
+ scaleX: z.ZodOptional<z.ZodNumber>;
107
+ scaleY: z.ZodOptional<z.ZodNumber>;
108
+ rotate: z.ZodOptional<z.ZodNumber>;
109
+ }, z.core.$strip>>;
110
+ animation: z.ZodOptional<z.ZodObject<{
111
+ entering: z.ZodOptional<z.ZodObject<{
112
+ preset: z.ZodEnum<{
113
+ FadeIn: "FadeIn";
114
+ FadeInUp: "FadeInUp";
115
+ FadeInDown: "FadeInDown";
116
+ FadeInLeft: "FadeInLeft";
117
+ FadeInRight: "FadeInRight";
118
+ SlideInUp: "SlideInUp";
119
+ SlideInDown: "SlideInDown";
120
+ SlideInLeft: "SlideInLeft";
121
+ SlideInRight: "SlideInRight";
122
+ ZoomIn: "ZoomIn";
123
+ ZoomInRotate: "ZoomInRotate";
124
+ ZoomInUp: "ZoomInUp";
125
+ ZoomInDown: "ZoomInDown";
126
+ ZoomInLeft: "ZoomInLeft";
127
+ ZoomInRight: "ZoomInRight";
128
+ ZoomInEasyUp: "ZoomInEasyUp";
129
+ ZoomInEasyDown: "ZoomInEasyDown";
130
+ BounceIn: "BounceIn";
131
+ BounceInUp: "BounceInUp";
132
+ BounceInDown: "BounceInDown";
133
+ BounceInLeft: "BounceInLeft";
134
+ BounceInRight: "BounceInRight";
135
+ FlipInXUp: "FlipInXUp";
136
+ FlipInYLeft: "FlipInYLeft";
137
+ FlipInXDown: "FlipInXDown";
138
+ FlipInYRight: "FlipInYRight";
139
+ FlipInEasyX: "FlipInEasyX";
140
+ FlipInEasyY: "FlipInEasyY";
141
+ StretchInX: "StretchInX";
142
+ StretchInY: "StretchInY";
143
+ RotateInDownLeft: "RotateInDownLeft";
144
+ RotateInDownRight: "RotateInDownRight";
145
+ RotateInUpLeft: "RotateInUpLeft";
146
+ RotateInUpRight: "RotateInUpRight";
147
+ RollInLeft: "RollInLeft";
148
+ RollInRight: "RollInRight";
149
+ PinwheelIn: "PinwheelIn";
150
+ LightSpeedInLeft: "LightSpeedInLeft";
151
+ LightSpeedInRight: "LightSpeedInRight";
152
+ }>;
153
+ duration: z.ZodOptional<z.ZodNumber>;
154
+ delay: z.ZodOptional<z.ZodNumber>;
155
+ easing: z.ZodOptional<z.ZodEnum<{
156
+ linear: "linear";
157
+ "ease-in": "ease-in";
158
+ "ease-out": "ease-out";
159
+ "ease-in-out": "ease-in-out";
160
+ }>>;
161
+ spring: z.ZodOptional<z.ZodObject<{
162
+ damping: z.ZodOptional<z.ZodNumber>;
163
+ stiffness: z.ZodOptional<z.ZodNumber>;
164
+ mass: z.ZodOptional<z.ZodNumber>;
165
+ }, z.core.$strip>>;
166
+ }, z.core.$strip>>;
167
+ exiting: z.ZodOptional<z.ZodObject<{
168
+ preset: z.ZodEnum<{
169
+ FadeOut: "FadeOut";
170
+ FadeOutUp: "FadeOutUp";
171
+ FadeOutDown: "FadeOutDown";
172
+ FadeOutLeft: "FadeOutLeft";
173
+ FadeOutRight: "FadeOutRight";
174
+ SlideOutUp: "SlideOutUp";
175
+ SlideOutDown: "SlideOutDown";
176
+ SlideOutLeft: "SlideOutLeft";
177
+ SlideOutRight: "SlideOutRight";
178
+ ZoomOut: "ZoomOut";
179
+ ZoomOutRotate: "ZoomOutRotate";
180
+ ZoomOutUp: "ZoomOutUp";
181
+ ZoomOutDown: "ZoomOutDown";
182
+ ZoomOutLeft: "ZoomOutLeft";
183
+ ZoomOutRight: "ZoomOutRight";
184
+ ZoomOutEasyUp: "ZoomOutEasyUp";
185
+ ZoomOutEasyDown: "ZoomOutEasyDown";
186
+ BounceOut: "BounceOut";
187
+ BounceOutUp: "BounceOutUp";
188
+ BounceOutDown: "BounceOutDown";
189
+ BounceOutLeft: "BounceOutLeft";
190
+ BounceOutRight: "BounceOutRight";
191
+ FlipOutXUp: "FlipOutXUp";
192
+ FlipOutYLeft: "FlipOutYLeft";
193
+ FlipOutXDown: "FlipOutXDown";
194
+ FlipOutYRight: "FlipOutYRight";
195
+ FlipOutEasyX: "FlipOutEasyX";
196
+ FlipOutEasyY: "FlipOutEasyY";
197
+ StretchOutX: "StretchOutX";
198
+ StretchOutY: "StretchOutY";
199
+ RotateOutDownLeft: "RotateOutDownLeft";
200
+ RotateOutDownRight: "RotateOutDownRight";
201
+ RotateOutUpLeft: "RotateOutUpLeft";
202
+ RotateOutUpRight: "RotateOutUpRight";
203
+ RollOutLeft: "RollOutLeft";
204
+ RollOutRight: "RollOutRight";
205
+ PinwheelOut: "PinwheelOut";
206
+ LightSpeedOutLeft: "LightSpeedOutLeft";
207
+ LightSpeedOutRight: "LightSpeedOutRight";
208
+ }>;
209
+ duration: z.ZodOptional<z.ZodNumber>;
210
+ delay: z.ZodOptional<z.ZodNumber>;
211
+ easing: z.ZodOptional<z.ZodEnum<{
212
+ linear: "linear";
213
+ "ease-in": "ease-in";
214
+ "ease-out": "ease-out";
215
+ "ease-in-out": "ease-in-out";
216
+ }>>;
217
+ spring: z.ZodOptional<z.ZodObject<{
218
+ damping: z.ZodOptional<z.ZodNumber>;
219
+ stiffness: z.ZodOptional<z.ZodNumber>;
220
+ mass: z.ZodOptional<z.ZodNumber>;
221
+ }, z.core.$strip>>;
222
+ }, z.core.$strip>>;
223
+ layout: z.ZodOptional<z.ZodObject<{
224
+ preset: z.ZodEnum<{
225
+ LinearTransition: "LinearTransition";
226
+ FadingTransition: "FadingTransition";
227
+ SequencedTransition: "SequencedTransition";
228
+ JumpingTransition: "JumpingTransition";
229
+ CurvedTransition: "CurvedTransition";
230
+ EntryExitTransition: "EntryExitTransition";
231
+ }>;
232
+ duration: z.ZodOptional<z.ZodNumber>;
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
+ effect: z.ZodOptional<z.ZodObject<{
240
+ preset: z.ZodEnum<{
241
+ rotate: "rotate";
242
+ pulse: "pulse";
243
+ fade: "fade";
244
+ shimmer: "shimmer";
245
+ bounce: "bounce";
246
+ }>;
247
+ duration: z.ZodOptional<z.ZodNumber>;
248
+ delay: z.ZodOptional<z.ZodNumber>;
249
+ easing: z.ZodOptional<z.ZodEnum<{
250
+ linear: "linear";
251
+ "ease-in": "ease-in";
252
+ "ease-out": "ease-out";
253
+ "ease-in-out": "ease-in-out";
254
+ }>>;
255
+ loop: z.ZodOptional<z.ZodBoolean>;
256
+ minScale: z.ZodOptional<z.ZodNumber>;
257
+ maxScale: z.ZodOptional<z.ZodNumber>;
258
+ minOpacity: z.ZodOptional<z.ZodNumber>;
259
+ degrees: z.ZodOptional<z.ZodNumber>;
260
+ }, z.core.$strip>>;
261
+ }, z.core.$strip>>;
102
262
  variableName: z.ZodOptional<z.ZodString>;
103
263
  defaultValue: z.ZodOptional<z.ZodString>;
104
264
  gap: z.ZodOptional<z.ZodNumber>;
@@ -1 +1 @@
1
- {"version":3,"file":"RadioGroupElement.d.ts","sourceRoot":"","sources":["../../../../../src/UI/Pages/ComposableScreen/elements/RadioGroupElement.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;AAG9C,MAAM,MAAM,sBAAsB,GAAG,YAAY,GAAG;IAClD,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,SAAS,CAAC,EAAE,UAAU,GAAG,YAAY,CAAC;IACtC,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,KAAK,EAAE,KAAK,CAAC;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IAC/C,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,2BAA2B,CAAC,EAAE,MAAM,CAAC;IACrC,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,uBAAuB,CAAC,EAAE,MAAM,CAAC;IACjC,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,aAAa,CAAC,EAAE,QAAQ,GAAG,QAAQ,CAAC;IACpC,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAC/B,mBAAmB,CAAC,EAAE,MAAM,CAAC;CAC9B,CAAC;AAEF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBA+BvC,CAAC;AAEH,KAAK,mBAAmB,GAAG,OAAO,CAAC,SAAS,EAAE;IAAE,IAAI,EAAE,YAAY,CAAA;CAAE,CAAC,CAAC;AAEtE,KAAK,KAAK,GAAG;IACX,OAAO,EAAE,mBAAmB,CAAC;IAC7B,GAAG,EAAE,aAAa,CAAC;CACpB,CAAC;AAEF,eAAO,MAAM,mBAAmB,GAAI,kBAAkB,KAAK,KAAG,KAAK,CAAC,YAsHnE,CAAC"}
1
+ {"version":3,"file":"RadioGroupElement.d.ts","sourceRoot":"","sources":["../../../../../src/UI/Pages/ComposableScreen/elements/RadioGroupElement.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;AAG9C,MAAM,MAAM,sBAAsB,GAAG,YAAY,GAAG;IAClD,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,SAAS,CAAC,EAAE,UAAU,GAAG,YAAY,CAAC;IACtC,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,KAAK,EAAE,KAAK,CAAC;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IAC/C,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,2BAA2B,CAAC,EAAE,MAAM,CAAC;IACrC,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,uBAAuB,CAAC,EAAE,MAAM,CAAC;IACjC,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,aAAa,CAAC,EAAE,QAAQ,GAAG,QAAQ,CAAC;IACpC,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAC/B,mBAAmB,CAAC,EAAE,MAAM,CAAC;CAC9B,CAAC;AAEF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBA+BvC,CAAC;AAEH,KAAK,mBAAmB,GAAG,OAAO,CAAC,SAAS,EAAE;IAAE,IAAI,EAAE,YAAY,CAAA;CAAE,CAAC,CAAC;AAEtE,KAAK,KAAK,GAAG;IACX,OAAO,EAAE,mBAAmB,CAAC;IAC7B,GAAG,EAAE,aAAa,CAAC;CACpB,CAAC;AAEF,eAAO,MAAM,mBAAmB,GAAI,kBAAkB,KAAK,KAAG,KAAK,CAAC,YAsHnE,CAAC"}
@@ -81,6 +81,166 @@ export declare const RiveElementPropsSchema: 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
  fit: z.ZodOptional<z.ZodEnum<{
@@ -1 +1 @@
1
- {"version":3,"file":"RiveElement.d.ts","sourceRoot":"","sources":["../../../../../src/UI/Pages/ComposableScreen/elements/RiveElement.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,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;AAG9C,MAAM,MAAM,gBAAgB,GAAG,YAAY,GAAG;IAC5C,GAAG,EAAE,MAAM,CAAC;IACZ,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,GAAG,CAAC,EAAE,SAAS,GAAG,OAAO,GAAG,MAAM,GAAG,UAAU,GAAG,WAAW,GAAG,MAAM,GAAG,WAAW,GAAG,QAAQ,CAAC;IAChG,SAAS,CAAC,EAAE,SAAS,GAAG,WAAW,GAAG,UAAU,GAAG,YAAY,GAAG,QAAQ,GAAG,aAAa,GAAG,YAAY,GAAG,cAAc,GAAG,aAAa,CAAC;IAC3I,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC3B,CAAC;AAEF,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAOjC,CAAC;AAEH,KAAK,aAAa,GAAG,OAAO,CAAC,SAAS,EAAE;IAAE,IAAI,EAAE,MAAM,CAAA;CAAE,CAAC,CAAC;AAyB1D,KAAK,KAAK,GAAG;IACX,OAAO,EAAE,aAAa,CAAC;IACvB,GAAG,EAAE,aAAa,CAAC;CACpB,CAAC;AAEF,eAAO,MAAM,mBAAmB,GAAI,kBAAkB,KAAK,KAAG,KAAK,CAAC,YAuDnE,CAAC"}
1
+ {"version":3,"file":"RiveElement.d.ts","sourceRoot":"","sources":["../../../../../src/UI/Pages/ComposableScreen/elements/RiveElement.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,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;AAG9C,MAAM,MAAM,gBAAgB,GAAG,YAAY,GAAG;IAC5C,GAAG,EAAE,MAAM,CAAC;IACZ,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,GAAG,CAAC,EAAE,SAAS,GAAG,OAAO,GAAG,MAAM,GAAG,UAAU,GAAG,WAAW,GAAG,MAAM,GAAG,WAAW,GAAG,QAAQ,CAAC;IAChG,SAAS,CAAC,EAAE,SAAS,GAAG,WAAW,GAAG,UAAU,GAAG,YAAY,GAAG,QAAQ,GAAG,aAAa,GAAG,YAAY,GAAG,cAAc,GAAG,aAAa,CAAC;IAC3I,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC3B,CAAC;AAEF,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAOjC,CAAC;AAEH,KAAK,aAAa,GAAG,OAAO,CAAC,SAAS,EAAE;IAAE,IAAI,EAAE,MAAM,CAAA;CAAE,CAAC,CAAC;AAyB1D,KAAK,KAAK,GAAG;IACX,OAAO,EAAE,aAAa,CAAC;IACvB,GAAG,EAAE,aAAa,CAAC;CACpB,CAAC;AAEF,eAAO,MAAM,mBAAmB,GAAI,kBAAkB,KAAK,KAAG,KAAK,CAAC,YAuDnE,CAAC"}
@@ -79,6 +79,166 @@ export declare const SafeAreaViewElementPropsSchema: z.ZodObject<{
79
79
  shadowOpacity: z.ZodOptional<z.ZodNumber>;
80
80
  shadowRadius: z.ZodOptional<z.ZodNumber>;
81
81
  elevation: z.ZodOptional<z.ZodNumber>;
82
+ transform: z.ZodOptional<z.ZodObject<{
83
+ translateX: z.ZodOptional<z.ZodNumber>;
84
+ translateY: z.ZodOptional<z.ZodNumber>;
85
+ scale: z.ZodOptional<z.ZodNumber>;
86
+ scaleX: z.ZodOptional<z.ZodNumber>;
87
+ scaleY: z.ZodOptional<z.ZodNumber>;
88
+ rotate: z.ZodOptional<z.ZodNumber>;
89
+ }, z.core.$strip>>;
90
+ animation: z.ZodOptional<z.ZodObject<{
91
+ entering: z.ZodOptional<z.ZodObject<{
92
+ preset: z.ZodEnum<{
93
+ FadeIn: "FadeIn";
94
+ FadeInUp: "FadeInUp";
95
+ FadeInDown: "FadeInDown";
96
+ FadeInLeft: "FadeInLeft";
97
+ FadeInRight: "FadeInRight";
98
+ SlideInUp: "SlideInUp";
99
+ SlideInDown: "SlideInDown";
100
+ SlideInLeft: "SlideInLeft";
101
+ SlideInRight: "SlideInRight";
102
+ ZoomIn: "ZoomIn";
103
+ ZoomInRotate: "ZoomInRotate";
104
+ ZoomInUp: "ZoomInUp";
105
+ ZoomInDown: "ZoomInDown";
106
+ ZoomInLeft: "ZoomInLeft";
107
+ ZoomInRight: "ZoomInRight";
108
+ ZoomInEasyUp: "ZoomInEasyUp";
109
+ ZoomInEasyDown: "ZoomInEasyDown";
110
+ BounceIn: "BounceIn";
111
+ BounceInUp: "BounceInUp";
112
+ BounceInDown: "BounceInDown";
113
+ BounceInLeft: "BounceInLeft";
114
+ BounceInRight: "BounceInRight";
115
+ FlipInXUp: "FlipInXUp";
116
+ FlipInYLeft: "FlipInYLeft";
117
+ FlipInXDown: "FlipInXDown";
118
+ FlipInYRight: "FlipInYRight";
119
+ FlipInEasyX: "FlipInEasyX";
120
+ FlipInEasyY: "FlipInEasyY";
121
+ StretchInX: "StretchInX";
122
+ StretchInY: "StretchInY";
123
+ RotateInDownLeft: "RotateInDownLeft";
124
+ RotateInDownRight: "RotateInDownRight";
125
+ RotateInUpLeft: "RotateInUpLeft";
126
+ RotateInUpRight: "RotateInUpRight";
127
+ RollInLeft: "RollInLeft";
128
+ RollInRight: "RollInRight";
129
+ PinwheelIn: "PinwheelIn";
130
+ LightSpeedInLeft: "LightSpeedInLeft";
131
+ LightSpeedInRight: "LightSpeedInRight";
132
+ }>;
133
+ duration: z.ZodOptional<z.ZodNumber>;
134
+ delay: z.ZodOptional<z.ZodNumber>;
135
+ easing: z.ZodOptional<z.ZodEnum<{
136
+ linear: "linear";
137
+ "ease-in": "ease-in";
138
+ "ease-out": "ease-out";
139
+ "ease-in-out": "ease-in-out";
140
+ }>>;
141
+ spring: z.ZodOptional<z.ZodObject<{
142
+ damping: z.ZodOptional<z.ZodNumber>;
143
+ stiffness: z.ZodOptional<z.ZodNumber>;
144
+ mass: z.ZodOptional<z.ZodNumber>;
145
+ }, z.core.$strip>>;
146
+ }, z.core.$strip>>;
147
+ exiting: z.ZodOptional<z.ZodObject<{
148
+ preset: z.ZodEnum<{
149
+ FadeOut: "FadeOut";
150
+ FadeOutUp: "FadeOutUp";
151
+ FadeOutDown: "FadeOutDown";
152
+ FadeOutLeft: "FadeOutLeft";
153
+ FadeOutRight: "FadeOutRight";
154
+ SlideOutUp: "SlideOutUp";
155
+ SlideOutDown: "SlideOutDown";
156
+ SlideOutLeft: "SlideOutLeft";
157
+ SlideOutRight: "SlideOutRight";
158
+ ZoomOut: "ZoomOut";
159
+ ZoomOutRotate: "ZoomOutRotate";
160
+ ZoomOutUp: "ZoomOutUp";
161
+ ZoomOutDown: "ZoomOutDown";
162
+ ZoomOutLeft: "ZoomOutLeft";
163
+ ZoomOutRight: "ZoomOutRight";
164
+ ZoomOutEasyUp: "ZoomOutEasyUp";
165
+ ZoomOutEasyDown: "ZoomOutEasyDown";
166
+ BounceOut: "BounceOut";
167
+ BounceOutUp: "BounceOutUp";
168
+ BounceOutDown: "BounceOutDown";
169
+ BounceOutLeft: "BounceOutLeft";
170
+ BounceOutRight: "BounceOutRight";
171
+ FlipOutXUp: "FlipOutXUp";
172
+ FlipOutYLeft: "FlipOutYLeft";
173
+ FlipOutXDown: "FlipOutXDown";
174
+ FlipOutYRight: "FlipOutYRight";
175
+ FlipOutEasyX: "FlipOutEasyX";
176
+ FlipOutEasyY: "FlipOutEasyY";
177
+ StretchOutX: "StretchOutX";
178
+ StretchOutY: "StretchOutY";
179
+ RotateOutDownLeft: "RotateOutDownLeft";
180
+ RotateOutDownRight: "RotateOutDownRight";
181
+ RotateOutUpLeft: "RotateOutUpLeft";
182
+ RotateOutUpRight: "RotateOutUpRight";
183
+ RollOutLeft: "RollOutLeft";
184
+ RollOutRight: "RollOutRight";
185
+ PinwheelOut: "PinwheelOut";
186
+ LightSpeedOutLeft: "LightSpeedOutLeft";
187
+ LightSpeedOutRight: "LightSpeedOutRight";
188
+ }>;
189
+ duration: z.ZodOptional<z.ZodNumber>;
190
+ delay: z.ZodOptional<z.ZodNumber>;
191
+ easing: z.ZodOptional<z.ZodEnum<{
192
+ linear: "linear";
193
+ "ease-in": "ease-in";
194
+ "ease-out": "ease-out";
195
+ "ease-in-out": "ease-in-out";
196
+ }>>;
197
+ spring: z.ZodOptional<z.ZodObject<{
198
+ damping: z.ZodOptional<z.ZodNumber>;
199
+ stiffness: z.ZodOptional<z.ZodNumber>;
200
+ mass: z.ZodOptional<z.ZodNumber>;
201
+ }, z.core.$strip>>;
202
+ }, z.core.$strip>>;
203
+ layout: z.ZodOptional<z.ZodObject<{
204
+ preset: z.ZodEnum<{
205
+ LinearTransition: "LinearTransition";
206
+ FadingTransition: "FadingTransition";
207
+ SequencedTransition: "SequencedTransition";
208
+ JumpingTransition: "JumpingTransition";
209
+ CurvedTransition: "CurvedTransition";
210
+ EntryExitTransition: "EntryExitTransition";
211
+ }>;
212
+ duration: z.ZodOptional<z.ZodNumber>;
213
+ spring: z.ZodOptional<z.ZodObject<{
214
+ damping: z.ZodOptional<z.ZodNumber>;
215
+ stiffness: z.ZodOptional<z.ZodNumber>;
216
+ mass: z.ZodOptional<z.ZodNumber>;
217
+ }, z.core.$strip>>;
218
+ }, z.core.$strip>>;
219
+ effect: z.ZodOptional<z.ZodObject<{
220
+ preset: z.ZodEnum<{
221
+ rotate: "rotate";
222
+ pulse: "pulse";
223
+ fade: "fade";
224
+ shimmer: "shimmer";
225
+ bounce: "bounce";
226
+ }>;
227
+ duration: z.ZodOptional<z.ZodNumber>;
228
+ delay: z.ZodOptional<z.ZodNumber>;
229
+ easing: z.ZodOptional<z.ZodEnum<{
230
+ linear: "linear";
231
+ "ease-in": "ease-in";
232
+ "ease-out": "ease-out";
233
+ "ease-in-out": "ease-in-out";
234
+ }>>;
235
+ loop: z.ZodOptional<z.ZodBoolean>;
236
+ minScale: z.ZodOptional<z.ZodNumber>;
237
+ maxScale: z.ZodOptional<z.ZodNumber>;
238
+ minOpacity: z.ZodOptional<z.ZodNumber>;
239
+ degrees: z.ZodOptional<z.ZodNumber>;
240
+ }, z.core.$strip>>;
241
+ }, z.core.$strip>>;
82
242
  mode: z.ZodOptional<z.ZodEnum<{
83
243
  margin: "margin";
84
244
  padding: "padding";
@@ -1 +1 @@
1
- {"version":3,"file":"SafeAreaViewElement.d.ts","sourceRoot":"","sources":["../../../../../src/UI/Pages/ComposableScreen/elements/SafeAreaViewElement.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,YAAY,EAAsB,MAAM,gBAAgB,CAAC;AAElE,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AACrC,OAAO,EAAE,aAAa,EAAO,MAAM,UAAU,CAAC;AAE9C,MAAM,MAAM,YAAY,GAAG,KAAK,GAAG,OAAO,GAAG,QAAQ,GAAG,MAAM,CAAC;AAC/D,MAAM,MAAM,gBAAgB,GAAG,KAAK,GAAG,UAAU,GAAG,SAAS,CAAC;AAE9D,MAAM,MAAM,wBAAwB,GAAG,YAAY,GAAG;IACpD,IAAI,CAAC,EAAE,SAAS,GAAG,QAAQ,CAAC;IAC5B,KAAK,CAAC,EAAE,YAAY,EAAE,GAAG,OAAO,CAAC,MAAM,CAAC,YAAY,EAAE,gBAAgB,CAAC,CAAC,CAAC;CAC1E,CAAC;AAKF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAazC,CAAC;AAEH,KAAK,qBAAqB,GAAG,OAAO,CAAC,SAAS,EAAE;IAAE,IAAI,EAAE,cAAc,CAAA;CAAE,CAAC,CAAC;AAE1E,KAAK,KAAK,GAAG;IACX,OAAO,EAAE,qBAAqB,CAAC;IAC/B,GAAG,EAAE,aAAa,CAAC;CACpB,CAAC;AAEF,eAAO,MAAM,4BAA4B,GAAI,kBAAkB,KAAK,KAAG,KAAK,CAAC,YAmD5E,CAAC"}
1
+ {"version":3,"file":"SafeAreaViewElement.d.ts","sourceRoot":"","sources":["../../../../../src/UI/Pages/ComposableScreen/elements/SafeAreaViewElement.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,YAAY,EAAsB,MAAM,gBAAgB,CAAC;AAElE,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AACrC,OAAO,EAAE,aAAa,EAAO,MAAM,UAAU,CAAC;AAE9C,MAAM,MAAM,YAAY,GAAG,KAAK,GAAG,OAAO,GAAG,QAAQ,GAAG,MAAM,CAAC;AAC/D,MAAM,MAAM,gBAAgB,GAAG,KAAK,GAAG,UAAU,GAAG,SAAS,CAAC;AAE9D,MAAM,MAAM,wBAAwB,GAAG,YAAY,GAAG;IACpD,IAAI,CAAC,EAAE,SAAS,GAAG,QAAQ,CAAC;IAC5B,KAAK,CAAC,EAAE,YAAY,EAAE,GAAG,OAAO,CAAC,MAAM,CAAC,YAAY,EAAE,gBAAgB,CAAC,CAAC,CAAC;CAC1E,CAAC;AAKF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAazC,CAAC;AAEH,KAAK,qBAAqB,GAAG,OAAO,CAAC,SAAS,EAAE;IAAE,IAAI,EAAE,cAAc,CAAA;CAAE,CAAC,CAAC;AAE1E,KAAK,KAAK,GAAG;IACX,OAAO,EAAE,qBAAqB,CAAC;IAC/B,GAAG,EAAE,aAAa,CAAC;CACpB,CAAC;AAEF,eAAO,MAAM,4BAA4B,GAAI,kBAAkB,KAAK,KAAG,KAAK,CAAC,YAmD5E,CAAC"}