@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
@@ -1 +1 @@
1
- {"version":3,"file":"ButtonElement.d.ts","sourceRoot":"","sources":["../../../../../src/UI/Pages/ComposableScreen/elements/ButtonElement.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"ButtonElement.d.ts","sourceRoot":"","sources":["../../../../../src/UI/Pages/ComposableScreen/elements/ButtonElement.tsx"],"names":[],"mappings":"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"}
@@ -88,6 +88,166 @@ export declare const CarouselElementPropsSchema: z.ZodObject<{
88
88
  shadowOpacity: z.ZodOptional<z.ZodNumber>;
89
89
  shadowRadius: z.ZodOptional<z.ZodNumber>;
90
90
  elevation: z.ZodOptional<z.ZodNumber>;
91
+ transform: z.ZodOptional<z.ZodObject<{
92
+ translateX: z.ZodOptional<z.ZodNumber>;
93
+ translateY: z.ZodOptional<z.ZodNumber>;
94
+ scale: z.ZodOptional<z.ZodNumber>;
95
+ scaleX: z.ZodOptional<z.ZodNumber>;
96
+ scaleY: z.ZodOptional<z.ZodNumber>;
97
+ rotate: z.ZodOptional<z.ZodNumber>;
98
+ }, z.core.$strip>>;
99
+ animation: z.ZodOptional<z.ZodObject<{
100
+ entering: z.ZodOptional<z.ZodObject<{
101
+ preset: z.ZodEnum<{
102
+ FadeIn: "FadeIn";
103
+ FadeInUp: "FadeInUp";
104
+ FadeInDown: "FadeInDown";
105
+ FadeInLeft: "FadeInLeft";
106
+ FadeInRight: "FadeInRight";
107
+ SlideInUp: "SlideInUp";
108
+ SlideInDown: "SlideInDown";
109
+ SlideInLeft: "SlideInLeft";
110
+ SlideInRight: "SlideInRight";
111
+ ZoomIn: "ZoomIn";
112
+ ZoomInRotate: "ZoomInRotate";
113
+ ZoomInUp: "ZoomInUp";
114
+ ZoomInDown: "ZoomInDown";
115
+ ZoomInLeft: "ZoomInLeft";
116
+ ZoomInRight: "ZoomInRight";
117
+ ZoomInEasyUp: "ZoomInEasyUp";
118
+ ZoomInEasyDown: "ZoomInEasyDown";
119
+ BounceIn: "BounceIn";
120
+ BounceInUp: "BounceInUp";
121
+ BounceInDown: "BounceInDown";
122
+ BounceInLeft: "BounceInLeft";
123
+ BounceInRight: "BounceInRight";
124
+ FlipInXUp: "FlipInXUp";
125
+ FlipInYLeft: "FlipInYLeft";
126
+ FlipInXDown: "FlipInXDown";
127
+ FlipInYRight: "FlipInYRight";
128
+ FlipInEasyX: "FlipInEasyX";
129
+ FlipInEasyY: "FlipInEasyY";
130
+ StretchInX: "StretchInX";
131
+ StretchInY: "StretchInY";
132
+ RotateInDownLeft: "RotateInDownLeft";
133
+ RotateInDownRight: "RotateInDownRight";
134
+ RotateInUpLeft: "RotateInUpLeft";
135
+ RotateInUpRight: "RotateInUpRight";
136
+ RollInLeft: "RollInLeft";
137
+ RollInRight: "RollInRight";
138
+ PinwheelIn: "PinwheelIn";
139
+ LightSpeedInLeft: "LightSpeedInLeft";
140
+ LightSpeedInRight: "LightSpeedInRight";
141
+ }>;
142
+ duration: z.ZodOptional<z.ZodNumber>;
143
+ delay: z.ZodOptional<z.ZodNumber>;
144
+ easing: z.ZodOptional<z.ZodEnum<{
145
+ linear: "linear";
146
+ "ease-in": "ease-in";
147
+ "ease-out": "ease-out";
148
+ "ease-in-out": "ease-in-out";
149
+ }>>;
150
+ spring: z.ZodOptional<z.ZodObject<{
151
+ damping: z.ZodOptional<z.ZodNumber>;
152
+ stiffness: z.ZodOptional<z.ZodNumber>;
153
+ mass: z.ZodOptional<z.ZodNumber>;
154
+ }, z.core.$strip>>;
155
+ }, z.core.$strip>>;
156
+ exiting: z.ZodOptional<z.ZodObject<{
157
+ preset: z.ZodEnum<{
158
+ FadeOut: "FadeOut";
159
+ FadeOutUp: "FadeOutUp";
160
+ FadeOutDown: "FadeOutDown";
161
+ FadeOutLeft: "FadeOutLeft";
162
+ FadeOutRight: "FadeOutRight";
163
+ SlideOutUp: "SlideOutUp";
164
+ SlideOutDown: "SlideOutDown";
165
+ SlideOutLeft: "SlideOutLeft";
166
+ SlideOutRight: "SlideOutRight";
167
+ ZoomOut: "ZoomOut";
168
+ ZoomOutRotate: "ZoomOutRotate";
169
+ ZoomOutUp: "ZoomOutUp";
170
+ ZoomOutDown: "ZoomOutDown";
171
+ ZoomOutLeft: "ZoomOutLeft";
172
+ ZoomOutRight: "ZoomOutRight";
173
+ ZoomOutEasyUp: "ZoomOutEasyUp";
174
+ ZoomOutEasyDown: "ZoomOutEasyDown";
175
+ BounceOut: "BounceOut";
176
+ BounceOutUp: "BounceOutUp";
177
+ BounceOutDown: "BounceOutDown";
178
+ BounceOutLeft: "BounceOutLeft";
179
+ BounceOutRight: "BounceOutRight";
180
+ FlipOutXUp: "FlipOutXUp";
181
+ FlipOutYLeft: "FlipOutYLeft";
182
+ FlipOutXDown: "FlipOutXDown";
183
+ FlipOutYRight: "FlipOutYRight";
184
+ FlipOutEasyX: "FlipOutEasyX";
185
+ FlipOutEasyY: "FlipOutEasyY";
186
+ StretchOutX: "StretchOutX";
187
+ StretchOutY: "StretchOutY";
188
+ RotateOutDownLeft: "RotateOutDownLeft";
189
+ RotateOutDownRight: "RotateOutDownRight";
190
+ RotateOutUpLeft: "RotateOutUpLeft";
191
+ RotateOutUpRight: "RotateOutUpRight";
192
+ RollOutLeft: "RollOutLeft";
193
+ RollOutRight: "RollOutRight";
194
+ PinwheelOut: "PinwheelOut";
195
+ LightSpeedOutLeft: "LightSpeedOutLeft";
196
+ LightSpeedOutRight: "LightSpeedOutRight";
197
+ }>;
198
+ duration: z.ZodOptional<z.ZodNumber>;
199
+ delay: z.ZodOptional<z.ZodNumber>;
200
+ easing: z.ZodOptional<z.ZodEnum<{
201
+ linear: "linear";
202
+ "ease-in": "ease-in";
203
+ "ease-out": "ease-out";
204
+ "ease-in-out": "ease-in-out";
205
+ }>>;
206
+ spring: z.ZodOptional<z.ZodObject<{
207
+ damping: z.ZodOptional<z.ZodNumber>;
208
+ stiffness: z.ZodOptional<z.ZodNumber>;
209
+ mass: z.ZodOptional<z.ZodNumber>;
210
+ }, z.core.$strip>>;
211
+ }, z.core.$strip>>;
212
+ layout: z.ZodOptional<z.ZodObject<{
213
+ preset: z.ZodEnum<{
214
+ LinearTransition: "LinearTransition";
215
+ FadingTransition: "FadingTransition";
216
+ SequencedTransition: "SequencedTransition";
217
+ JumpingTransition: "JumpingTransition";
218
+ CurvedTransition: "CurvedTransition";
219
+ EntryExitTransition: "EntryExitTransition";
220
+ }>;
221
+ duration: z.ZodOptional<z.ZodNumber>;
222
+ spring: z.ZodOptional<z.ZodObject<{
223
+ damping: z.ZodOptional<z.ZodNumber>;
224
+ stiffness: z.ZodOptional<z.ZodNumber>;
225
+ mass: z.ZodOptional<z.ZodNumber>;
226
+ }, z.core.$strip>>;
227
+ }, z.core.$strip>>;
228
+ effect: z.ZodOptional<z.ZodObject<{
229
+ preset: z.ZodEnum<{
230
+ rotate: "rotate";
231
+ pulse: "pulse";
232
+ fade: "fade";
233
+ shimmer: "shimmer";
234
+ bounce: "bounce";
235
+ }>;
236
+ duration: z.ZodOptional<z.ZodNumber>;
237
+ delay: z.ZodOptional<z.ZodNumber>;
238
+ easing: z.ZodOptional<z.ZodEnum<{
239
+ linear: "linear";
240
+ "ease-in": "ease-in";
241
+ "ease-out": "ease-out";
242
+ "ease-in-out": "ease-in-out";
243
+ }>>;
244
+ loop: z.ZodOptional<z.ZodBoolean>;
245
+ minScale: z.ZodOptional<z.ZodNumber>;
246
+ maxScale: z.ZodOptional<z.ZodNumber>;
247
+ minOpacity: z.ZodOptional<z.ZodNumber>;
248
+ degrees: z.ZodOptional<z.ZodNumber>;
249
+ }, z.core.$strip>>;
250
+ }, z.core.$strip>>;
91
251
  carouselType: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
92
252
  normal: "normal";
93
253
  stack: "stack";
@@ -1 +1 @@
1
- {"version":3,"file":"CarouselElement.d.ts","sourceRoot":"","sources":["../../../../../src/UI/Pages/ComposableScreen/elements/CarouselElement.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAsC,MAAM,OAAO,CAAC;AAE3D,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,OAAO,EAAE,YAAY,EAAsB,MAAM,gBAAgB,CAAC;AAClE,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAC1C,OAAO,EAAO,KAAK,aAAa,EAAE,MAAM,UAAU,CAAC;AAGnD,MAAM,MAAM,oBAAoB,GAAG,YAAY,GAAG;IAChD,YAAY,CAAC,EAAE,YAAY,GAAG,QAAQ,GAAG,UAAU,GAAG,OAAO,CAAC;IAC9D,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB,CAAC;AAEF,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAcrC,CAAC;AAEH,KAAK,iBAAiB,GAAG,OAAO,CAAC,SAAS,EAAE;IAAE,IAAI,EAAE,UAAU,CAAA;CAAE,CAAC,CAAC;AAIlE,KAAK,KAAK,GAAG;IACX,OAAO,EAAE,iBAAiB,CAAC;IAC3B,GAAG,EAAE,aAAa,CAAC;CACpB,CAAC;AAEF,wBAAgB,wBAAwB,CAAC,EAAE,OAAO,EAAE,GAAG,EAAE,EAAE,KAAK,GAAG,KAAK,CAAC,YAAY,CAoKpF"}
1
+ {"version":3,"file":"CarouselElement.d.ts","sourceRoot":"","sources":["../../../../../src/UI/Pages/ComposableScreen/elements/CarouselElement.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAsC,MAAM,OAAO,CAAC;AAE3D,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,OAAO,EAAE,YAAY,EAAsB,MAAM,gBAAgB,CAAC;AAClE,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAC1C,OAAO,EAAO,KAAK,aAAa,EAAE,MAAM,UAAU,CAAC;AAGnD,MAAM,MAAM,oBAAoB,GAAG,YAAY,GAAG;IAChD,YAAY,CAAC,EAAE,YAAY,GAAG,QAAQ,GAAG,UAAU,GAAG,OAAO,CAAC;IAC9D,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB,CAAC;AAEF,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAcrC,CAAC;AAEH,KAAK,iBAAiB,GAAG,OAAO,CAAC,SAAS,EAAE;IAAE,IAAI,EAAE,UAAU,CAAA;CAAE,CAAC,CAAC;AAIlE,KAAK,KAAK,GAAG;IACX,OAAO,EAAE,iBAAiB,CAAC;IAC3B,GAAG,EAAE,aAAa,CAAC;CACpB,CAAC;AAEF,wBAAgB,wBAAwB,CAAC,EAAE,OAAO,EAAE,GAAG,EAAE,EAAE,KAAK,GAAG,KAAK,CAAC,YAAY,CAoKpF"}
@@ -99,6 +99,166 @@ export declare const CheckboxGroupElementPropsSchema: 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
  defaultValues: z.ZodOptional<z.ZodArray<z.ZodString>>;
104
264
  gap: z.ZodOptional<z.ZodNumber>;
@@ -1 +1 @@
1
- {"version":3,"file":"CheckboxGroupElement.d.ts","sourceRoot":"","sources":["../../../../../src/UI/Pages/ComposableScreen/elements/CheckboxGroupElement.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,KAAK,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAC1C,OAAO,EAAO,KAAK,aAAa,EAAE,MAAM,UAAU,CAAC;AAGnD,MAAM,MAAM,yBAAyB,GAAG,YAAY,GAAG;IACrD,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,aAAa,CAAC,EAAE,MAAM,EAAE,CAAC;IACzB,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,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAmC1C,CAAC;AAEH,KAAK,sBAAsB,GAAG,OAAO,CAAC,SAAS,EAAE;IAAE,IAAI,EAAE,eAAe,CAAA;CAAE,CAAC,CAAC;AAE5E,KAAK,KAAK,GAAG;IACX,OAAO,EAAE,sBAAsB,CAAC;IAChC,GAAG,EAAE,aAAa,CAAC;CACpB,CAAC;AAEF,eAAO,MAAM,sBAAsB,GAAI,kBAAkB,KAAK,KAAG,KAAK,CAAC,YAoItE,CAAC"}
1
+ {"version":3,"file":"CheckboxGroupElement.d.ts","sourceRoot":"","sources":["../../../../../src/UI/Pages/ComposableScreen/elements/CheckboxGroupElement.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,KAAK,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAC1C,OAAO,EAAO,KAAK,aAAa,EAAE,MAAM,UAAU,CAAC;AAGnD,MAAM,MAAM,yBAAyB,GAAG,YAAY,GAAG;IACrD,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,aAAa,CAAC,EAAE,MAAM,EAAE,CAAC;IACzB,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,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAmC1C,CAAC;AAEH,KAAK,sBAAsB,GAAG,OAAO,CAAC,SAAS,EAAE;IAAE,IAAI,EAAE,eAAe,CAAA;CAAE,CAAC,CAAC;AAE5E,KAAK,KAAK,GAAG;IACX,OAAO,EAAE,sBAAsB,CAAC;IAChC,GAAG,EAAE,aAAa,CAAC;CACpB,CAAC;AAEF,eAAO,MAAM,sBAAsB,GAAI,kBAAkB,KAAK,KAAG,KAAK,CAAC,YAoItE,CAAC"}
@@ -84,6 +84,166 @@ export declare const DatePickerElementPropsSchema: z.ZodObject<{
84
84
  shadowOpacity: z.ZodOptional<z.ZodNumber>;
85
85
  shadowRadius: z.ZodOptional<z.ZodNumber>;
86
86
  elevation: z.ZodOptional<z.ZodNumber>;
87
+ transform: z.ZodOptional<z.ZodObject<{
88
+ translateX: z.ZodOptional<z.ZodNumber>;
89
+ translateY: z.ZodOptional<z.ZodNumber>;
90
+ scale: z.ZodOptional<z.ZodNumber>;
91
+ scaleX: z.ZodOptional<z.ZodNumber>;
92
+ scaleY: z.ZodOptional<z.ZodNumber>;
93
+ rotate: z.ZodOptional<z.ZodNumber>;
94
+ }, z.core.$strip>>;
95
+ animation: z.ZodOptional<z.ZodObject<{
96
+ entering: z.ZodOptional<z.ZodObject<{
97
+ preset: z.ZodEnum<{
98
+ FadeIn: "FadeIn";
99
+ FadeInUp: "FadeInUp";
100
+ FadeInDown: "FadeInDown";
101
+ FadeInLeft: "FadeInLeft";
102
+ FadeInRight: "FadeInRight";
103
+ SlideInUp: "SlideInUp";
104
+ SlideInDown: "SlideInDown";
105
+ SlideInLeft: "SlideInLeft";
106
+ SlideInRight: "SlideInRight";
107
+ ZoomIn: "ZoomIn";
108
+ ZoomInRotate: "ZoomInRotate";
109
+ ZoomInUp: "ZoomInUp";
110
+ ZoomInDown: "ZoomInDown";
111
+ ZoomInLeft: "ZoomInLeft";
112
+ ZoomInRight: "ZoomInRight";
113
+ ZoomInEasyUp: "ZoomInEasyUp";
114
+ ZoomInEasyDown: "ZoomInEasyDown";
115
+ BounceIn: "BounceIn";
116
+ BounceInUp: "BounceInUp";
117
+ BounceInDown: "BounceInDown";
118
+ BounceInLeft: "BounceInLeft";
119
+ BounceInRight: "BounceInRight";
120
+ FlipInXUp: "FlipInXUp";
121
+ FlipInYLeft: "FlipInYLeft";
122
+ FlipInXDown: "FlipInXDown";
123
+ FlipInYRight: "FlipInYRight";
124
+ FlipInEasyX: "FlipInEasyX";
125
+ FlipInEasyY: "FlipInEasyY";
126
+ StretchInX: "StretchInX";
127
+ StretchInY: "StretchInY";
128
+ RotateInDownLeft: "RotateInDownLeft";
129
+ RotateInDownRight: "RotateInDownRight";
130
+ RotateInUpLeft: "RotateInUpLeft";
131
+ RotateInUpRight: "RotateInUpRight";
132
+ RollInLeft: "RollInLeft";
133
+ RollInRight: "RollInRight";
134
+ PinwheelIn: "PinwheelIn";
135
+ LightSpeedInLeft: "LightSpeedInLeft";
136
+ LightSpeedInRight: "LightSpeedInRight";
137
+ }>;
138
+ duration: z.ZodOptional<z.ZodNumber>;
139
+ delay: z.ZodOptional<z.ZodNumber>;
140
+ easing: z.ZodOptional<z.ZodEnum<{
141
+ linear: "linear";
142
+ "ease-in": "ease-in";
143
+ "ease-out": "ease-out";
144
+ "ease-in-out": "ease-in-out";
145
+ }>>;
146
+ spring: z.ZodOptional<z.ZodObject<{
147
+ damping: z.ZodOptional<z.ZodNumber>;
148
+ stiffness: z.ZodOptional<z.ZodNumber>;
149
+ mass: z.ZodOptional<z.ZodNumber>;
150
+ }, z.core.$strip>>;
151
+ }, z.core.$strip>>;
152
+ exiting: z.ZodOptional<z.ZodObject<{
153
+ preset: z.ZodEnum<{
154
+ FadeOut: "FadeOut";
155
+ FadeOutUp: "FadeOutUp";
156
+ FadeOutDown: "FadeOutDown";
157
+ FadeOutLeft: "FadeOutLeft";
158
+ FadeOutRight: "FadeOutRight";
159
+ SlideOutUp: "SlideOutUp";
160
+ SlideOutDown: "SlideOutDown";
161
+ SlideOutLeft: "SlideOutLeft";
162
+ SlideOutRight: "SlideOutRight";
163
+ ZoomOut: "ZoomOut";
164
+ ZoomOutRotate: "ZoomOutRotate";
165
+ ZoomOutUp: "ZoomOutUp";
166
+ ZoomOutDown: "ZoomOutDown";
167
+ ZoomOutLeft: "ZoomOutLeft";
168
+ ZoomOutRight: "ZoomOutRight";
169
+ ZoomOutEasyUp: "ZoomOutEasyUp";
170
+ ZoomOutEasyDown: "ZoomOutEasyDown";
171
+ BounceOut: "BounceOut";
172
+ BounceOutUp: "BounceOutUp";
173
+ BounceOutDown: "BounceOutDown";
174
+ BounceOutLeft: "BounceOutLeft";
175
+ BounceOutRight: "BounceOutRight";
176
+ FlipOutXUp: "FlipOutXUp";
177
+ FlipOutYLeft: "FlipOutYLeft";
178
+ FlipOutXDown: "FlipOutXDown";
179
+ FlipOutYRight: "FlipOutYRight";
180
+ FlipOutEasyX: "FlipOutEasyX";
181
+ FlipOutEasyY: "FlipOutEasyY";
182
+ StretchOutX: "StretchOutX";
183
+ StretchOutY: "StretchOutY";
184
+ RotateOutDownLeft: "RotateOutDownLeft";
185
+ RotateOutDownRight: "RotateOutDownRight";
186
+ RotateOutUpLeft: "RotateOutUpLeft";
187
+ RotateOutUpRight: "RotateOutUpRight";
188
+ RollOutLeft: "RollOutLeft";
189
+ RollOutRight: "RollOutRight";
190
+ PinwheelOut: "PinwheelOut";
191
+ LightSpeedOutLeft: "LightSpeedOutLeft";
192
+ LightSpeedOutRight: "LightSpeedOutRight";
193
+ }>;
194
+ duration: z.ZodOptional<z.ZodNumber>;
195
+ delay: z.ZodOptional<z.ZodNumber>;
196
+ easing: z.ZodOptional<z.ZodEnum<{
197
+ linear: "linear";
198
+ "ease-in": "ease-in";
199
+ "ease-out": "ease-out";
200
+ "ease-in-out": "ease-in-out";
201
+ }>>;
202
+ spring: z.ZodOptional<z.ZodObject<{
203
+ damping: z.ZodOptional<z.ZodNumber>;
204
+ stiffness: z.ZodOptional<z.ZodNumber>;
205
+ mass: z.ZodOptional<z.ZodNumber>;
206
+ }, z.core.$strip>>;
207
+ }, z.core.$strip>>;
208
+ layout: z.ZodOptional<z.ZodObject<{
209
+ preset: z.ZodEnum<{
210
+ LinearTransition: "LinearTransition";
211
+ FadingTransition: "FadingTransition";
212
+ SequencedTransition: "SequencedTransition";
213
+ JumpingTransition: "JumpingTransition";
214
+ CurvedTransition: "CurvedTransition";
215
+ EntryExitTransition: "EntryExitTransition";
216
+ }>;
217
+ duration: z.ZodOptional<z.ZodNumber>;
218
+ spring: z.ZodOptional<z.ZodObject<{
219
+ damping: z.ZodOptional<z.ZodNumber>;
220
+ stiffness: z.ZodOptional<z.ZodNumber>;
221
+ mass: z.ZodOptional<z.ZodNumber>;
222
+ }, z.core.$strip>>;
223
+ }, z.core.$strip>>;
224
+ effect: z.ZodOptional<z.ZodObject<{
225
+ preset: z.ZodEnum<{
226
+ rotate: "rotate";
227
+ pulse: "pulse";
228
+ fade: "fade";
229
+ shimmer: "shimmer";
230
+ bounce: "bounce";
231
+ }>;
232
+ duration: z.ZodOptional<z.ZodNumber>;
233
+ delay: z.ZodOptional<z.ZodNumber>;
234
+ easing: z.ZodOptional<z.ZodEnum<{
235
+ linear: "linear";
236
+ "ease-in": "ease-in";
237
+ "ease-out": "ease-out";
238
+ "ease-in-out": "ease-in-out";
239
+ }>>;
240
+ loop: z.ZodOptional<z.ZodBoolean>;
241
+ minScale: z.ZodOptional<z.ZodNumber>;
242
+ maxScale: z.ZodOptional<z.ZodNumber>;
243
+ minOpacity: z.ZodOptional<z.ZodNumber>;
244
+ degrees: z.ZodOptional<z.ZodNumber>;
245
+ }, z.core.$strip>>;
246
+ }, z.core.$strip>>;
87
247
  variableName: z.ZodOptional<z.ZodString>;
88
248
  defaultValue: z.ZodOptional<z.ZodString>;
89
249
  minimumDate: z.ZodOptional<z.ZodString>;
@@ -1 +1 @@
1
- {"version":3,"file":"DatePickerElement.d.ts","sourceRoot":"","sources":["../../../../../src/UI/Pages/ComposableScreen/elements/DatePickerElement.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAsC,MAAM,OAAO,CAAC;AAG3D,OAAO,EAAE,YAAY,EAAsB,MAAM,gBAAgB,CAAC;AAClE,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAC1C,OAAO,EAAO,KAAK,aAAa,EAAE,MAAM,UAAU,CAAC;AAanD,MAAM,MAAM,sBAAsB,GAAG,YAAY,GAAG;IAClD,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,UAAU,CAAC;IACpC,OAAO,CAAC,EAAE,SAAS,GAAG,SAAS,GAAG,UAAU,GAAG,OAAO,GAAG,SAAS,GAAG,QAAQ,CAAC;IAC9E,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAUvC,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;AAYF,eAAO,MAAM,0BAA0B,GAAI,kBAAkB,KAAK,KAAG,KAAK,CAAC,YAyH1E,CAAC"}
1
+ {"version":3,"file":"DatePickerElement.d.ts","sourceRoot":"","sources":["../../../../../src/UI/Pages/ComposableScreen/elements/DatePickerElement.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAsC,MAAM,OAAO,CAAC;AAG3D,OAAO,EAAE,YAAY,EAAsB,MAAM,gBAAgB,CAAC;AAClE,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAC1C,OAAO,EAAO,KAAK,aAAa,EAAE,MAAM,UAAU,CAAC;AAanD,MAAM,MAAM,sBAAsB,GAAG,YAAY,GAAG;IAClD,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,UAAU,CAAC;IACpC,OAAO,CAAC,EAAE,SAAS,GAAG,SAAS,GAAG,UAAU,GAAG,OAAO,GAAG,SAAS,GAAG,QAAQ,CAAC;IAC9E,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAUvC,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;AAYF,eAAO,MAAM,0BAA0B,GAAI,kBAAkB,KAAK,KAAG,KAAK,CAAC,YAyH1E,CAAC"}