@rocapine/react-native-onboarding-ui 1.30.0 → 1.32.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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 +245 -2
  42. package/dist/UI/Pages/ComposableScreen/elements/TextElement.d.ts.map +1 -1
  43. package/dist/UI/Pages/ComposableScreen/elements/TextElement.js +58 -6
  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 +93 -5
  61. package/src/UI/Pages/ComposableScreen/elements/buildAnimation.ts +83 -0
  62. package/src/UI/Pages/ComposableScreen/elements/renderElement.tsx +28 -1
@@ -90,6 +90,166 @@ export declare const ScrollViewElementPropsSchema: z.ZodObject<{
90
90
  shadowOpacity: z.ZodOptional<z.ZodNumber>;
91
91
  shadowRadius: z.ZodOptional<z.ZodNumber>;
92
92
  elevation: z.ZodOptional<z.ZodNumber>;
93
+ transform: z.ZodOptional<z.ZodObject<{
94
+ translateX: z.ZodOptional<z.ZodNumber>;
95
+ translateY: z.ZodOptional<z.ZodNumber>;
96
+ scale: z.ZodOptional<z.ZodNumber>;
97
+ scaleX: z.ZodOptional<z.ZodNumber>;
98
+ scaleY: z.ZodOptional<z.ZodNumber>;
99
+ rotate: z.ZodOptional<z.ZodNumber>;
100
+ }, z.core.$strip>>;
101
+ animation: z.ZodOptional<z.ZodObject<{
102
+ entering: z.ZodOptional<z.ZodObject<{
103
+ preset: z.ZodEnum<{
104
+ FadeIn: "FadeIn";
105
+ FadeInUp: "FadeInUp";
106
+ FadeInDown: "FadeInDown";
107
+ FadeInLeft: "FadeInLeft";
108
+ FadeInRight: "FadeInRight";
109
+ SlideInUp: "SlideInUp";
110
+ SlideInDown: "SlideInDown";
111
+ SlideInLeft: "SlideInLeft";
112
+ SlideInRight: "SlideInRight";
113
+ ZoomIn: "ZoomIn";
114
+ ZoomInRotate: "ZoomInRotate";
115
+ ZoomInUp: "ZoomInUp";
116
+ ZoomInDown: "ZoomInDown";
117
+ ZoomInLeft: "ZoomInLeft";
118
+ ZoomInRight: "ZoomInRight";
119
+ ZoomInEasyUp: "ZoomInEasyUp";
120
+ ZoomInEasyDown: "ZoomInEasyDown";
121
+ BounceIn: "BounceIn";
122
+ BounceInUp: "BounceInUp";
123
+ BounceInDown: "BounceInDown";
124
+ BounceInLeft: "BounceInLeft";
125
+ BounceInRight: "BounceInRight";
126
+ FlipInXUp: "FlipInXUp";
127
+ FlipInYLeft: "FlipInYLeft";
128
+ FlipInXDown: "FlipInXDown";
129
+ FlipInYRight: "FlipInYRight";
130
+ FlipInEasyX: "FlipInEasyX";
131
+ FlipInEasyY: "FlipInEasyY";
132
+ StretchInX: "StretchInX";
133
+ StretchInY: "StretchInY";
134
+ RotateInDownLeft: "RotateInDownLeft";
135
+ RotateInDownRight: "RotateInDownRight";
136
+ RotateInUpLeft: "RotateInUpLeft";
137
+ RotateInUpRight: "RotateInUpRight";
138
+ RollInLeft: "RollInLeft";
139
+ RollInRight: "RollInRight";
140
+ PinwheelIn: "PinwheelIn";
141
+ LightSpeedInLeft: "LightSpeedInLeft";
142
+ LightSpeedInRight: "LightSpeedInRight";
143
+ }>;
144
+ duration: z.ZodOptional<z.ZodNumber>;
145
+ delay: z.ZodOptional<z.ZodNumber>;
146
+ easing: z.ZodOptional<z.ZodEnum<{
147
+ linear: "linear";
148
+ "ease-in": "ease-in";
149
+ "ease-out": "ease-out";
150
+ "ease-in-out": "ease-in-out";
151
+ }>>;
152
+ spring: z.ZodOptional<z.ZodObject<{
153
+ damping: z.ZodOptional<z.ZodNumber>;
154
+ stiffness: z.ZodOptional<z.ZodNumber>;
155
+ mass: z.ZodOptional<z.ZodNumber>;
156
+ }, z.core.$strip>>;
157
+ }, z.core.$strip>>;
158
+ exiting: z.ZodOptional<z.ZodObject<{
159
+ preset: z.ZodEnum<{
160
+ FadeOut: "FadeOut";
161
+ FadeOutUp: "FadeOutUp";
162
+ FadeOutDown: "FadeOutDown";
163
+ FadeOutLeft: "FadeOutLeft";
164
+ FadeOutRight: "FadeOutRight";
165
+ SlideOutUp: "SlideOutUp";
166
+ SlideOutDown: "SlideOutDown";
167
+ SlideOutLeft: "SlideOutLeft";
168
+ SlideOutRight: "SlideOutRight";
169
+ ZoomOut: "ZoomOut";
170
+ ZoomOutRotate: "ZoomOutRotate";
171
+ ZoomOutUp: "ZoomOutUp";
172
+ ZoomOutDown: "ZoomOutDown";
173
+ ZoomOutLeft: "ZoomOutLeft";
174
+ ZoomOutRight: "ZoomOutRight";
175
+ ZoomOutEasyUp: "ZoomOutEasyUp";
176
+ ZoomOutEasyDown: "ZoomOutEasyDown";
177
+ BounceOut: "BounceOut";
178
+ BounceOutUp: "BounceOutUp";
179
+ BounceOutDown: "BounceOutDown";
180
+ BounceOutLeft: "BounceOutLeft";
181
+ BounceOutRight: "BounceOutRight";
182
+ FlipOutXUp: "FlipOutXUp";
183
+ FlipOutYLeft: "FlipOutYLeft";
184
+ FlipOutXDown: "FlipOutXDown";
185
+ FlipOutYRight: "FlipOutYRight";
186
+ FlipOutEasyX: "FlipOutEasyX";
187
+ FlipOutEasyY: "FlipOutEasyY";
188
+ StretchOutX: "StretchOutX";
189
+ StretchOutY: "StretchOutY";
190
+ RotateOutDownLeft: "RotateOutDownLeft";
191
+ RotateOutDownRight: "RotateOutDownRight";
192
+ RotateOutUpLeft: "RotateOutUpLeft";
193
+ RotateOutUpRight: "RotateOutUpRight";
194
+ RollOutLeft: "RollOutLeft";
195
+ RollOutRight: "RollOutRight";
196
+ PinwheelOut: "PinwheelOut";
197
+ LightSpeedOutLeft: "LightSpeedOutLeft";
198
+ LightSpeedOutRight: "LightSpeedOutRight";
199
+ }>;
200
+ duration: z.ZodOptional<z.ZodNumber>;
201
+ delay: z.ZodOptional<z.ZodNumber>;
202
+ easing: z.ZodOptional<z.ZodEnum<{
203
+ linear: "linear";
204
+ "ease-in": "ease-in";
205
+ "ease-out": "ease-out";
206
+ "ease-in-out": "ease-in-out";
207
+ }>>;
208
+ spring: z.ZodOptional<z.ZodObject<{
209
+ damping: z.ZodOptional<z.ZodNumber>;
210
+ stiffness: z.ZodOptional<z.ZodNumber>;
211
+ mass: z.ZodOptional<z.ZodNumber>;
212
+ }, z.core.$strip>>;
213
+ }, z.core.$strip>>;
214
+ layout: z.ZodOptional<z.ZodObject<{
215
+ preset: z.ZodEnum<{
216
+ LinearTransition: "LinearTransition";
217
+ FadingTransition: "FadingTransition";
218
+ SequencedTransition: "SequencedTransition";
219
+ JumpingTransition: "JumpingTransition";
220
+ CurvedTransition: "CurvedTransition";
221
+ EntryExitTransition: "EntryExitTransition";
222
+ }>;
223
+ duration: z.ZodOptional<z.ZodNumber>;
224
+ spring: z.ZodOptional<z.ZodObject<{
225
+ damping: z.ZodOptional<z.ZodNumber>;
226
+ stiffness: z.ZodOptional<z.ZodNumber>;
227
+ mass: z.ZodOptional<z.ZodNumber>;
228
+ }, z.core.$strip>>;
229
+ }, z.core.$strip>>;
230
+ effect: z.ZodOptional<z.ZodObject<{
231
+ preset: z.ZodEnum<{
232
+ rotate: "rotate";
233
+ pulse: "pulse";
234
+ fade: "fade";
235
+ shimmer: "shimmer";
236
+ bounce: "bounce";
237
+ }>;
238
+ duration: z.ZodOptional<z.ZodNumber>;
239
+ delay: z.ZodOptional<z.ZodNumber>;
240
+ easing: z.ZodOptional<z.ZodEnum<{
241
+ linear: "linear";
242
+ "ease-in": "ease-in";
243
+ "ease-out": "ease-out";
244
+ "ease-in-out": "ease-in-out";
245
+ }>>;
246
+ loop: z.ZodOptional<z.ZodBoolean>;
247
+ minScale: z.ZodOptional<z.ZodNumber>;
248
+ maxScale: z.ZodOptional<z.ZodNumber>;
249
+ minOpacity: z.ZodOptional<z.ZodNumber>;
250
+ degrees: z.ZodOptional<z.ZodNumber>;
251
+ }, z.core.$strip>>;
252
+ }, z.core.$strip>>;
93
253
  horizontal: z.ZodOptional<z.ZodBoolean>;
94
254
  bounces: z.ZodOptional<z.ZodBoolean>;
95
255
  showsVerticalScrollIndicator: z.ZodOptional<z.ZodBoolean>;
@@ -1 +1 @@
1
- {"version":3,"file":"ScrollViewElement.d.ts","sourceRoot":"","sources":["../../../../../src/UI/Pages/ComposableScreen/elements/ScrollViewElement.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,sBAAsB,GAAG;IACnC,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,IAAI,CAAC,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,MAAM,MAAM,sBAAsB,GAAG,YAAY,GAAG;IAClD,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,4BAA4B,CAAC,EAAE,OAAO,CAAC;IACvC,8BAA8B,CAAC,EAAE,OAAO,CAAC;IACzC,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,sBAAsB,CAAC,EAAE,OAAO,CAAC;IACjC,YAAY,CAAC,EAAE,sBAAsB,CAAC;IACtC,uBAAuB,CAAC,EAAE,MAAM,CAAC;IACjC,yBAAyB,CAAC,EAAE,QAAQ,GAAG,OAAO,GAAG,SAAS,CAAC;CAC5D,CAAC;AASF,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;AAEF,eAAO,MAAM,0BAA0B,GAAI,kBAAkB,KAAK,KAAG,KAAK,CAAC,YA6D1E,CAAC"}
1
+ {"version":3,"file":"ScrollViewElement.d.ts","sourceRoot":"","sources":["../../../../../src/UI/Pages/ComposableScreen/elements/ScrollViewElement.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,sBAAsB,GAAG;IACnC,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,IAAI,CAAC,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,MAAM,MAAM,sBAAsB,GAAG,YAAY,GAAG;IAClD,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,4BAA4B,CAAC,EAAE,OAAO,CAAC;IACvC,8BAA8B,CAAC,EAAE,OAAO,CAAC;IACzC,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,sBAAsB,CAAC,EAAE,OAAO,CAAC;IACjC,YAAY,CAAC,EAAE,sBAAsB,CAAC;IACtC,uBAAuB,CAAC,EAAE,MAAM,CAAC;IACjC,yBAAyB,CAAC,EAAE,QAAQ,GAAG,OAAO,GAAG,SAAS,CAAC;CAC5D,CAAC;AASF,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;AAEF,eAAO,MAAM,0BAA0B,GAAI,kBAAkB,KAAK,KAAG,KAAK,CAAC,YA6D1E,CAAC"}
@@ -79,6 +79,166 @@ export declare const StackElementPropsSchema: 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
  gap: z.ZodOptional<z.ZodNumber>;
83
243
  alignItems: z.ZodOptional<z.ZodEnum<{
84
244
  center: "center";
@@ -1 +1 @@
1
- {"version":3,"file":"StackElement.d.ts","sourceRoot":"","sources":["../../../../../src/UI/Pages/ComposableScreen/elements/StackElement.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,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,iBAAiB,GAAG,YAAY,GAAG;IAC7C,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,UAAU,CAAC,EAAE,YAAY,GAAG,QAAQ,GAAG,UAAU,GAAG,SAAS,CAAC;IAC9D,cAAc,CAAC,EAAE,YAAY,GAAG,QAAQ,GAAG,UAAU,GAAG,eAAe,GAAG,cAAc,CAAC;IACzF,QAAQ,CAAC,EAAE,MAAM,GAAG,QAAQ,CAAC;CAC9B,CAAC;AAEF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAKlC,CAAC;AAEH,KAAK,cAAc,GAAG,OAAO,CAAC,SAAS,EAAE;IAAE,IAAI,EAAE,QAAQ,GAAG,QAAQ,CAAA;CAAE,CAAC,CAAC;AAExE,KAAK,KAAK,GAAG;IACX,OAAO,EAAE,cAAc,CAAC;IACxB,GAAG,EAAE,aAAa,CAAC;IACnB,UAAU,CAAC,EAAE,QAAQ,GAAG,QAAQ,GAAG,QAAQ,CAAC;CAC7C,CAAC;AAEF,eAAO,MAAM,qBAAqB,GAAI,8BAA8B,KAAK,KAAG,KAAK,CAAC,YAsCjF,CAAC"}
1
+ {"version":3,"file":"StackElement.d.ts","sourceRoot":"","sources":["../../../../../src/UI/Pages/ComposableScreen/elements/StackElement.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,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,iBAAiB,GAAG,YAAY,GAAG;IAC7C,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,UAAU,CAAC,EAAE,YAAY,GAAG,QAAQ,GAAG,UAAU,GAAG,SAAS,CAAC;IAC9D,cAAc,CAAC,EAAE,YAAY,GAAG,QAAQ,GAAG,UAAU,GAAG,eAAe,GAAG,cAAc,CAAC;IACzF,QAAQ,CAAC,EAAE,MAAM,GAAG,QAAQ,CAAC;CAC9B,CAAC;AAEF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAKlC,CAAC;AAEH,KAAK,cAAc,GAAG,OAAO,CAAC,SAAS,EAAE;IAAE,IAAI,EAAE,QAAQ,GAAG,QAAQ,CAAA;CAAE,CAAC,CAAC;AAExE,KAAK,KAAK,GAAG;IACX,OAAO,EAAE,cAAc,CAAC;IACxB,GAAG,EAAE,aAAa,CAAC;IACnB,UAAU,CAAC,EAAE,QAAQ,GAAG,QAAQ,GAAG,QAAQ,CAAC;CAC7C,CAAC;AAEF,eAAO,MAAM,qBAAqB,GAAI,8BAA8B,KAAK,KAAG,KAAK,CAAC,YAsCjF,CAAC"}
@@ -3,8 +3,58 @@ import { z } from "zod";
3
3
  import { BaseBoxProps } from "./BaseBoxProps";
4
4
  import { UIElement } from "../types";
5
5
  import { RenderContext } from "./shared";
6
+ export type TextSpan = {
7
+ text: string;
8
+ fontWeight?: string;
9
+ fontStyle?: "normal" | "italic";
10
+ fontFamily?: string | "inherit";
11
+ fontSize?: number;
12
+ letterSpacing?: number;
13
+ lineHeight?: number;
14
+ color?: string;
15
+ backgroundColor?: string;
16
+ opacity?: number;
17
+ textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
18
+ textDecorationLine?: "none" | "underline" | "line-through" | "underline line-through";
19
+ textDecorationColor?: string;
20
+ textDecorationStyle?: "solid" | "double" | "dotted" | "dashed";
21
+ };
22
+ export declare const TextSpanSchema: z.ZodObject<{
23
+ text: z.ZodString;
24
+ fontWeight: z.ZodOptional<z.ZodString>;
25
+ fontStyle: z.ZodOptional<z.ZodEnum<{
26
+ normal: "normal";
27
+ italic: "italic";
28
+ }>>;
29
+ fontFamily: z.ZodOptional<z.ZodString>;
30
+ fontSize: z.ZodOptional<z.ZodNumber>;
31
+ letterSpacing: z.ZodOptional<z.ZodNumber>;
32
+ lineHeight: z.ZodOptional<z.ZodNumber>;
33
+ color: z.ZodOptional<z.ZodString>;
34
+ backgroundColor: z.ZodOptional<z.ZodString>;
35
+ opacity: z.ZodOptional<z.ZodNumber>;
36
+ textTransform: z.ZodOptional<z.ZodEnum<{
37
+ none: "none";
38
+ capitalize: "capitalize";
39
+ uppercase: "uppercase";
40
+ lowercase: "lowercase";
41
+ }>>;
42
+ textDecorationLine: z.ZodOptional<z.ZodEnum<{
43
+ none: "none";
44
+ underline: "underline";
45
+ "line-through": "line-through";
46
+ "underline line-through": "underline line-through";
47
+ }>>;
48
+ textDecorationColor: z.ZodOptional<z.ZodString>;
49
+ textDecorationStyle: z.ZodOptional<z.ZodEnum<{
50
+ solid: "solid";
51
+ double: "double";
52
+ dotted: "dotted";
53
+ dashed: "dashed";
54
+ }>>;
55
+ }, z.core.$strip>;
6
56
  export type TextElementProps = BaseBoxProps & {
7
- content: string;
57
+ content: string | TextSpan[];
8
58
  mode?: "plain" | "expression";
9
59
  fontSize?: number;
10
60
  fontWeight?: string;
@@ -85,7 +135,200 @@ export declare const TextElementPropsSchema: z.ZodObject<{
85
135
  shadowOpacity: z.ZodOptional<z.ZodNumber>;
86
136
  shadowRadius: z.ZodOptional<z.ZodNumber>;
87
137
  elevation: z.ZodOptional<z.ZodNumber>;
88
- content: z.ZodString;
138
+ transform: z.ZodOptional<z.ZodObject<{
139
+ translateX: z.ZodOptional<z.ZodNumber>;
140
+ translateY: z.ZodOptional<z.ZodNumber>;
141
+ scale: z.ZodOptional<z.ZodNumber>;
142
+ scaleX: z.ZodOptional<z.ZodNumber>;
143
+ scaleY: z.ZodOptional<z.ZodNumber>;
144
+ rotate: z.ZodOptional<z.ZodNumber>;
145
+ }, z.core.$strip>>;
146
+ animation: z.ZodOptional<z.ZodObject<{
147
+ entering: z.ZodOptional<z.ZodObject<{
148
+ preset: z.ZodEnum<{
149
+ FadeIn: "FadeIn";
150
+ FadeInUp: "FadeInUp";
151
+ FadeInDown: "FadeInDown";
152
+ FadeInLeft: "FadeInLeft";
153
+ FadeInRight: "FadeInRight";
154
+ SlideInUp: "SlideInUp";
155
+ SlideInDown: "SlideInDown";
156
+ SlideInLeft: "SlideInLeft";
157
+ SlideInRight: "SlideInRight";
158
+ ZoomIn: "ZoomIn";
159
+ ZoomInRotate: "ZoomInRotate";
160
+ ZoomInUp: "ZoomInUp";
161
+ ZoomInDown: "ZoomInDown";
162
+ ZoomInLeft: "ZoomInLeft";
163
+ ZoomInRight: "ZoomInRight";
164
+ ZoomInEasyUp: "ZoomInEasyUp";
165
+ ZoomInEasyDown: "ZoomInEasyDown";
166
+ BounceIn: "BounceIn";
167
+ BounceInUp: "BounceInUp";
168
+ BounceInDown: "BounceInDown";
169
+ BounceInLeft: "BounceInLeft";
170
+ BounceInRight: "BounceInRight";
171
+ FlipInXUp: "FlipInXUp";
172
+ FlipInYLeft: "FlipInYLeft";
173
+ FlipInXDown: "FlipInXDown";
174
+ FlipInYRight: "FlipInYRight";
175
+ FlipInEasyX: "FlipInEasyX";
176
+ FlipInEasyY: "FlipInEasyY";
177
+ StretchInX: "StretchInX";
178
+ StretchInY: "StretchInY";
179
+ RotateInDownLeft: "RotateInDownLeft";
180
+ RotateInDownRight: "RotateInDownRight";
181
+ RotateInUpLeft: "RotateInUpLeft";
182
+ RotateInUpRight: "RotateInUpRight";
183
+ RollInLeft: "RollInLeft";
184
+ RollInRight: "RollInRight";
185
+ PinwheelIn: "PinwheelIn";
186
+ LightSpeedInLeft: "LightSpeedInLeft";
187
+ LightSpeedInRight: "LightSpeedInRight";
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
+ exiting: z.ZodOptional<z.ZodObject<{
204
+ preset: z.ZodEnum<{
205
+ FadeOut: "FadeOut";
206
+ FadeOutUp: "FadeOutUp";
207
+ FadeOutDown: "FadeOutDown";
208
+ FadeOutLeft: "FadeOutLeft";
209
+ FadeOutRight: "FadeOutRight";
210
+ SlideOutUp: "SlideOutUp";
211
+ SlideOutDown: "SlideOutDown";
212
+ SlideOutLeft: "SlideOutLeft";
213
+ SlideOutRight: "SlideOutRight";
214
+ ZoomOut: "ZoomOut";
215
+ ZoomOutRotate: "ZoomOutRotate";
216
+ ZoomOutUp: "ZoomOutUp";
217
+ ZoomOutDown: "ZoomOutDown";
218
+ ZoomOutLeft: "ZoomOutLeft";
219
+ ZoomOutRight: "ZoomOutRight";
220
+ ZoomOutEasyUp: "ZoomOutEasyUp";
221
+ ZoomOutEasyDown: "ZoomOutEasyDown";
222
+ BounceOut: "BounceOut";
223
+ BounceOutUp: "BounceOutUp";
224
+ BounceOutDown: "BounceOutDown";
225
+ BounceOutLeft: "BounceOutLeft";
226
+ BounceOutRight: "BounceOutRight";
227
+ FlipOutXUp: "FlipOutXUp";
228
+ FlipOutYLeft: "FlipOutYLeft";
229
+ FlipOutXDown: "FlipOutXDown";
230
+ FlipOutYRight: "FlipOutYRight";
231
+ FlipOutEasyX: "FlipOutEasyX";
232
+ FlipOutEasyY: "FlipOutEasyY";
233
+ StretchOutX: "StretchOutX";
234
+ StretchOutY: "StretchOutY";
235
+ RotateOutDownLeft: "RotateOutDownLeft";
236
+ RotateOutDownRight: "RotateOutDownRight";
237
+ RotateOutUpLeft: "RotateOutUpLeft";
238
+ RotateOutUpRight: "RotateOutUpRight";
239
+ RollOutLeft: "RollOutLeft";
240
+ RollOutRight: "RollOutRight";
241
+ PinwheelOut: "PinwheelOut";
242
+ LightSpeedOutLeft: "LightSpeedOutLeft";
243
+ LightSpeedOutRight: "LightSpeedOutRight";
244
+ }>;
245
+ duration: z.ZodOptional<z.ZodNumber>;
246
+ delay: z.ZodOptional<z.ZodNumber>;
247
+ easing: z.ZodOptional<z.ZodEnum<{
248
+ linear: "linear";
249
+ "ease-in": "ease-in";
250
+ "ease-out": "ease-out";
251
+ "ease-in-out": "ease-in-out";
252
+ }>>;
253
+ spring: z.ZodOptional<z.ZodObject<{
254
+ damping: z.ZodOptional<z.ZodNumber>;
255
+ stiffness: z.ZodOptional<z.ZodNumber>;
256
+ mass: z.ZodOptional<z.ZodNumber>;
257
+ }, z.core.$strip>>;
258
+ }, z.core.$strip>>;
259
+ layout: z.ZodOptional<z.ZodObject<{
260
+ preset: z.ZodEnum<{
261
+ LinearTransition: "LinearTransition";
262
+ FadingTransition: "FadingTransition";
263
+ SequencedTransition: "SequencedTransition";
264
+ JumpingTransition: "JumpingTransition";
265
+ CurvedTransition: "CurvedTransition";
266
+ EntryExitTransition: "EntryExitTransition";
267
+ }>;
268
+ duration: z.ZodOptional<z.ZodNumber>;
269
+ spring: z.ZodOptional<z.ZodObject<{
270
+ damping: z.ZodOptional<z.ZodNumber>;
271
+ stiffness: z.ZodOptional<z.ZodNumber>;
272
+ mass: z.ZodOptional<z.ZodNumber>;
273
+ }, z.core.$strip>>;
274
+ }, z.core.$strip>>;
275
+ effect: z.ZodOptional<z.ZodObject<{
276
+ preset: z.ZodEnum<{
277
+ rotate: "rotate";
278
+ pulse: "pulse";
279
+ fade: "fade";
280
+ shimmer: "shimmer";
281
+ bounce: "bounce";
282
+ }>;
283
+ duration: z.ZodOptional<z.ZodNumber>;
284
+ delay: z.ZodOptional<z.ZodNumber>;
285
+ easing: z.ZodOptional<z.ZodEnum<{
286
+ linear: "linear";
287
+ "ease-in": "ease-in";
288
+ "ease-out": "ease-out";
289
+ "ease-in-out": "ease-in-out";
290
+ }>>;
291
+ loop: z.ZodOptional<z.ZodBoolean>;
292
+ minScale: z.ZodOptional<z.ZodNumber>;
293
+ maxScale: z.ZodOptional<z.ZodNumber>;
294
+ minOpacity: z.ZodOptional<z.ZodNumber>;
295
+ degrees: z.ZodOptional<z.ZodNumber>;
296
+ }, z.core.$strip>>;
297
+ }, z.core.$strip>>;
298
+ content: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodObject<{
299
+ text: z.ZodString;
300
+ fontWeight: z.ZodOptional<z.ZodString>;
301
+ fontStyle: z.ZodOptional<z.ZodEnum<{
302
+ normal: "normal";
303
+ italic: "italic";
304
+ }>>;
305
+ fontFamily: z.ZodOptional<z.ZodString>;
306
+ fontSize: z.ZodOptional<z.ZodNumber>;
307
+ letterSpacing: z.ZodOptional<z.ZodNumber>;
308
+ lineHeight: z.ZodOptional<z.ZodNumber>;
309
+ color: z.ZodOptional<z.ZodString>;
310
+ backgroundColor: z.ZodOptional<z.ZodString>;
311
+ opacity: z.ZodOptional<z.ZodNumber>;
312
+ textTransform: z.ZodOptional<z.ZodEnum<{
313
+ none: "none";
314
+ capitalize: "capitalize";
315
+ uppercase: "uppercase";
316
+ lowercase: "lowercase";
317
+ }>>;
318
+ textDecorationLine: z.ZodOptional<z.ZodEnum<{
319
+ none: "none";
320
+ underline: "underline";
321
+ "line-through": "line-through";
322
+ "underline line-through": "underline line-through";
323
+ }>>;
324
+ textDecorationColor: z.ZodOptional<z.ZodString>;
325
+ textDecorationStyle: z.ZodOptional<z.ZodEnum<{
326
+ solid: "solid";
327
+ double: "double";
328
+ dotted: "dotted";
329
+ dashed: "dashed";
330
+ }>>;
331
+ }, z.core.$strip>>]>;
89
332
  mode: z.ZodOptional<z.ZodEnum<{
90
333
  plain: "plain";
91
334
  expression: "expression";
@@ -1 +1 @@
1
- {"version":3,"file":"TextElement.d.ts","sourceRoot":"","sources":["../../../../../src/UI/Pages/ComposableScreen/elements/TextElement.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,OAAO,EAAE,YAAY,EAAsB,MAAM,gBAAgB,CAAC;AAClE,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AACrC,OAAO,EAAE,aAAa,EAAgD,MAAM,UAAU,CAAC;AAGvF,MAAM,MAAM,gBAAgB,GAAG,YAAY,GAAG;IAC5C,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,CAAC,EAAE,OAAO,GAAG,YAAY,CAAC;IAC9B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAChC,SAAS,CAAC,EAAE,QAAQ,GAAG,QAAQ,CAAC;IAChC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,MAAM,GAAG,QAAQ,GAAG,OAAO,CAAC;IACxC,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB,CAAC;AAEF,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAWjC,CAAC;AAEH,KAAK,aAAa,GAAG,OAAO,CAAC,SAAS,EAAE;IAAE,IAAI,EAAE,MAAM,CAAA;CAAE,CAAC,CAAC;AAE1D,KAAK,KAAK,GAAG;IACX,OAAO,EAAE,aAAa,CAAC;IACvB,GAAG,EAAE,aAAa,CAAC;IACnB,UAAU,CAAC,EAAE,QAAQ,GAAG,QAAQ,GAAG,QAAQ,CAAC;CAC7C,CAAC;AAEF,eAAO,MAAM,oBAAoB,GAAI,8BAA8B,KAAK,KAAG,KAAK,CAAC,YAqFhF,CAAC"}
1
+ {"version":3,"file":"TextElement.d.ts","sourceRoot":"","sources":["../../../../../src/UI/Pages/ComposableScreen/elements/TextElement.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,OAAO,EAAE,YAAY,EAAsB,MAAM,gBAAgB,CAAC;AAClE,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AACrC,OAAO,EAAE,aAAa,EAAgD,MAAM,UAAU,CAAC;AAGvF,MAAM,MAAM,QAAQ,GAAG;IACrB,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,SAAS,CAAC,EAAE,QAAQ,GAAG,QAAQ,CAAC;IAChC,UAAU,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAChC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,aAAa,CAAC,EAAE,MAAM,GAAG,WAAW,GAAG,WAAW,GAAG,YAAY,CAAC;IAClE,kBAAkB,CAAC,EACf,MAAM,GACN,WAAW,GACX,cAAc,GACd,wBAAwB,CAAC;IAC7B,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,mBAAmB,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,QAAQ,GAAG,QAAQ,CAAC;CAChE,CAAC;AAEF,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAiBzB,CAAC;AAEH,MAAM,MAAM,gBAAgB,GAAG,YAAY,GAAG;IAC5C,OAAO,EAAE,MAAM,GAAG,QAAQ,EAAE,CAAC;IAC7B,IAAI,CAAC,EAAE,OAAO,GAAG,YAAY,CAAC;IAC9B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAChC,SAAS,CAAC,EAAE,QAAQ,GAAG,QAAQ,CAAC;IAChC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,MAAM,GAAG,QAAQ,GAAG,OAAO,CAAC;IACxC,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB,CAAC;AAEF,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAWjC,CAAC;AA0CH,KAAK,aAAa,GAAG,OAAO,CAAC,SAAS,EAAE;IAAE,IAAI,EAAE,MAAM,CAAA;CAAE,CAAC,CAAC;AAE1D,KAAK,KAAK,GAAG;IACX,OAAO,EAAE,aAAa,CAAC;IACvB,GAAG,EAAE,aAAa,CAAC;IACnB,UAAU,CAAC,EAAE,QAAQ,GAAG,QAAQ,GAAG,QAAQ,CAAC;CAC7C,CAAC;AAEF,eAAO,MAAM,oBAAoB,GAAI,8BAA8B,KAAK,KAAG,KAAK,CAAC,YA6FhF,CAAC"}