react-native-ui-lib 7.46.3 → 8.0.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 (214) hide show
  1. package/babel.config.js +12 -0
  2. package/incubator.d.ts +2 -2
  3. package/incubator.js +0 -2
  4. package/index.js +1 -0
  5. package/lib/android/build.gradle +5 -5
  6. package/lib/android/src/main/java/com/wix/reactnativeuilib/UiLibPackageList.java +0 -2
  7. package/lib/android/src/main/java/com/wix/reactnativeuilib/highlighterview/HighlighterViewManager.java +31 -23
  8. package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/utils/RuntimeUtils.java +1 -1
  9. package/lib/components/{HighlighterOverlayView.d.ts → HighlighterOverlayView/index.d.ts} +1 -1
  10. package/lib/components/HighlighterOverlayView/index.js +49 -0
  11. package/lib/components/{HighlighterOverlayView.web.d.ts → HighlighterOverlayView/index.web.d.ts} +1 -1
  12. package/lib/components/Keyboard/{KeyboardInput → KeyboardAccessoryView}/CustomKeyboardView/CustomKeyboardView.android.d.ts +5 -2
  13. package/lib/components/Keyboard/KeyboardAccessoryView/CustomKeyboardView/CustomKeyboardView.android.js +51 -0
  14. package/lib/components/Keyboard/{KeyboardInput → KeyboardAccessoryView}/CustomKeyboardView/CustomKeyboardView.ios.d.ts +1 -1
  15. package/lib/components/Keyboard/{KeyboardInput → KeyboardAccessoryView}/CustomKeyboardView/CustomKeyboardView.ios.js +3 -3
  16. package/lib/components/Keyboard/{KeyboardInput → KeyboardAccessoryView/CustomKeyboardView}/CustomKeyboardViewBase.d.ts +3 -0
  17. package/lib/components/Keyboard/{KeyboardInput → KeyboardAccessoryView/CustomKeyboardView}/CustomKeyboardViewBase.js +1 -1
  18. package/lib/components/Keyboard/{KeyboardInput/utils → KeyboardAccessoryView/KeyboardRegistry/EventEmitterManager}/__tests__/EventEmitterManager.spec.js +1 -1
  19. package/lib/components/Keyboard/{KeyboardInput → KeyboardAccessoryView/KeyboardRegistry}/__tests__/KeyboardRegistry.spec.js +1 -1
  20. package/lib/components/Keyboard/{KeyboardInput/KeyboardRegistry.d.ts → KeyboardAccessoryView/KeyboardRegistry/index.d.ts} +1 -1
  21. package/lib/components/Keyboard/{KeyboardInput/KeyboardRegistry.js → KeyboardAccessoryView/KeyboardRegistry/index.js} +1 -1
  22. package/lib/components/Keyboard/{KeyboardInput → KeyboardAccessoryView/KeyboardRegistry}/keyboardRegistry.api.json +9 -9
  23. package/lib/components/Keyboard/KeyboardAccessoryView/KeyboardUtils/index.d.ts +26 -0
  24. package/lib/components/Keyboard/KeyboardAccessoryView/KeyboardUtils/index.js +91 -0
  25. package/lib/components/Keyboard/{KeyboardInput/KeyboardAccessoryView.d.ts → KeyboardAccessoryView/index.d.ts} +11 -1
  26. package/lib/components/Keyboard/{KeyboardInput/KeyboardAccessoryView.js → KeyboardAccessoryView/index.js} +31 -5
  27. package/lib/components/Keyboard/{KeyboardInput → KeyboardAccessoryView}/keyboardAccessoryView.api.json +5 -5
  28. package/lib/components/Keyboard/{KeyboardTracking/KeyboardAwareInsetsView.d.ts → KeyboardAwareInsetsView/index.d.ts} +1 -1
  29. package/lib/components/Keyboard/{KeyboardTracking/KeyboardAwareInsetsView.js → KeyboardAwareInsetsView/index.js} +1 -1
  30. package/lib/components/Keyboard/{KeyboardTracking/KeyboardTrackingView → KeyboardTrackingView}/KeyboardTrackingView.ios.d.ts +1 -4
  31. package/lib/components/Keyboard/{KeyboardTracking/KeyboardTrackingView → KeyboardTrackingView}/KeyboardTrackingView.ios.js +5 -8
  32. package/lib/components/Keyboard/{KeyboardTracking/KeyboardTrackingView → KeyboardTrackingView}/index.d.ts +2 -2
  33. package/lib/components/Keyboard/{KeyboardTracking/KeyboardTrackingView → KeyboardTrackingView}/keyboardTrackingView.api.json +11 -20
  34. package/lib/components/Keyboard/index.d.ts +6 -6
  35. package/lib/components/Keyboard/index.js +6 -6
  36. package/lib/components/SafeArea/SafeAreaInsetsManager.d.ts +21 -7
  37. package/lib/components/SafeArea/SafeAreaInsetsManager.js +95 -31
  38. package/lib/components/SafeArea/SafeAreaSpacerView.d.ts +2 -2
  39. package/lib/components/SafeArea/SafeAreaSpacerView.js +63 -9
  40. package/lib/components/SafeArea/__tests__/SafeAreaInsetsManager.spec.js +274 -0
  41. package/lib/components/SafeArea/index.d.ts +10 -0
  42. package/lib/components/SafeArea/index.js +11 -0
  43. package/lib/components/index.d.ts +1 -1
  44. package/lib/components/index.js +1 -1
  45. package/lib/ios/reactnativeuilib/keyboardinput/rctcustomInputcontroller/RCTCustomInputControllerTemp.m +56 -8
  46. package/lib/ios/reactnativeuilib/keyboardinput/rctcustomInputcontroller/RCTCustomKeyboardViewControllerTemp.h +1 -7
  47. package/lib/ios/reactnativeuilib/keyboardinput/rctcustomInputcontroller/RCTCustomKeyboardViewControllerTemp.m +1 -1
  48. package/lib/ios/reactnativeuilib/keyboardtrackingview/KeyboardTrackingViewTempManager.m +134 -44
  49. package/lib/package.json +3 -3
  50. package/lib/react-native.config.js +1 -3
  51. package/metro.config.js +2 -2
  52. package/package.json +33 -32
  53. package/panView.d.ts +2 -0
  54. package/panView.js +1 -0
  55. package/scripts/release/prReleaseNotesCommon.js +15 -4
  56. package/src/commons/Constants.js +2 -5
  57. package/src/commons/modifiers.d.ts +1 -0
  58. package/src/commons/modifiers.js +5 -2
  59. package/src/components/KeyboardAwareScrollView/KeyboardAwareBase.js +5 -1
  60. package/src/components/actionSheet/index.d.ts +2 -12
  61. package/src/components/actionSheet/index.js +3 -42
  62. package/src/components/animatedImage/index.js +12 -2
  63. package/src/components/badge/index.d.ts +107 -47
  64. package/src/components/button/button.api.json +1 -1
  65. package/src/components/button/index.d.ts +53 -23
  66. package/src/components/button/types.d.ts +0 -1
  67. package/src/components/colorPicker/ColorPickerDialog.d.ts +1 -1
  68. package/src/components/colorPicker/ColorPickerDialog.js +1 -1
  69. package/src/components/dateTimePicker/index.d.ts +186 -5
  70. package/src/components/dateTimePicker/index.js +3 -4
  71. package/src/components/dialog/dialog.api.json +34 -35
  72. package/src/{incubator → components}/dialog/dialogHeader.api.json +2 -2
  73. package/src/components/dialog/index.d.ts +13 -105
  74. package/src/components/dialog/index.js +205 -212
  75. package/src/{incubator → components}/dialog/types.d.ts +7 -19
  76. package/src/{incubator → components}/dialog/types.js +1 -3
  77. package/src/{incubator → components}/dialog/useDialogContent.d.ts +1 -1
  78. package/src/components/drawer/Swipeable.js +1 -2
  79. package/src/components/drawer/index.js +31 -25
  80. package/src/components/fadedScrollView/index.js +7 -2
  81. package/src/components/featureHighlight/index.d.ts +1 -1
  82. package/src/components/hint/index.d.ts +0 -8
  83. package/src/components/hint/index.js +4 -6
  84. package/src/components/image/index.js +4 -0
  85. package/src/components/index.js +0 -19
  86. package/src/components/marquee/types.js +4 -1
  87. package/src/components/modal/index.d.ts +5 -0
  88. package/src/components/modal/index.js +14 -10
  89. package/src/components/modal/modal.api.json +5 -0
  90. package/src/{incubator → components}/panView/index.d.ts +3 -3
  91. package/src/{incubator → components}/panView/index.js +4 -4
  92. package/src/{incubator → components}/panView/usePanGesture.d.ts +1 -1
  93. package/src/components/picker/Picker.driver.new.d.ts +2 -2
  94. package/src/components/picker/Picker.driver.new.js +3 -3
  95. package/src/components/picker/PickerItem.js +6 -20
  96. package/src/components/picker/PickerPresenter.d.ts +0 -1
  97. package/src/components/picker/PickerPresenter.js +1 -23
  98. package/src/components/picker/api/picker.api.json +0 -1
  99. package/src/components/picker/api/pickerItem.api.json +0 -5
  100. package/src/components/picker/helpers/useFieldType.d.ts +53 -23
  101. package/src/components/picker/helpers/usePickerLabel.d.ts +1 -1
  102. package/src/components/picker/helpers/usePickerLabel.js +2 -3
  103. package/src/components/picker/helpers/usePickerMigrationWarnings.d.ts +1 -1
  104. package/src/components/picker/helpers/usePickerMigrationWarnings.js +0 -12
  105. package/src/components/picker/helpers/usePickerSearch.d.ts +1 -1
  106. package/src/components/picker/helpers/usePickerSearch.js +4 -8
  107. package/src/components/picker/helpers/usePickerSelection.d.ts +1 -1
  108. package/src/components/picker/helpers/usePickerSelection.js +2 -10
  109. package/src/components/picker/index.js +4 -22
  110. package/src/components/picker/types.d.ts +1 -24
  111. package/src/components/segmentedControl/index.js +3 -3
  112. package/src/components/slider/GradientSlider.d.ts +1 -1
  113. package/src/components/slider/index.js +1 -1
  114. package/src/components/sortableGridList/SortableItem.js +13 -4
  115. package/src/components/sortableList/SortableListItem.js +13 -4
  116. package/src/components/stackAggregator/index.js +16 -11
  117. package/src/components/tabController/TabPage.js +18 -14
  118. package/src/components/text/Text.driver.new.d.ts +2 -2
  119. package/src/components/text/Text.driver.new.js +2 -2
  120. package/src/components/text/index.js +2 -3
  121. package/src/components/textField/Input.js +0 -1
  122. package/src/components/textField/TextField.driver.new.d.ts +2 -2
  123. package/src/components/textField/TextField.driver.new.js +2 -2
  124. package/src/components/textField/presets/outline.d.ts +106 -46
  125. package/src/components/textField/presets/underline.d.ts +106 -46
  126. package/src/components/textField/types.js +1 -0
  127. package/src/components/textField/usePreset.d.ts +72 -44
  128. package/src/components/timeline/types.js +3 -0
  129. package/src/{incubator/hooks/useHiddenLocation.web.d.ts → hooks/useHiddenLocation/index.d.ts} +1 -1
  130. package/src/{incubator/hooks/useHiddenLocation.d.ts → hooks/useHiddenLocation/index.web.d.ts} +1 -1
  131. package/src/incubator/expandableOverlay/ExpandableOverlay.driver.js +1 -1
  132. package/src/incubator/expandableOverlay/index.d.ts +42 -3
  133. package/src/incubator/expandableOverlay/index.js +1 -4
  134. package/src/incubator/index.d.ts +0 -2
  135. package/src/incubator/index.js +0 -2
  136. package/src/incubator/slider/SliderPresenter.js +2 -1
  137. package/src/incubator/toast/index.js +1 -1
  138. package/src/index.d.ts +3 -10
  139. package/src/index.js +42 -162
  140. package/src/testkit/index.d.ts +1 -1
  141. package/src/testkit/index.js +1 -1
  142. package/src/testkit/new/Component.driver.d.ts +4 -1
  143. package/src/testkit/new/Component.driver.js +3 -3
  144. package/lib/android/src/main/java/com/wix/reactnativeuilib/highlighterview/ReactHacks.java +0 -30
  145. package/lib/android/src/main/java/com/wix/reactnativeuilib/highlighterview/ReflectionUtils.java +0 -34
  146. package/lib/android/src/main/java/com/wix/reactnativeuilib/textinput/DefaultKeyListener.java +0 -33
  147. package/lib/android/src/main/java/com/wix/reactnativeuilib/textinput/KeyListenerProxy.java +0 -53
  148. package/lib/android/src/main/java/com/wix/reactnativeuilib/textinput/TextInputDelKeyHandlerModule.java +0 -54
  149. package/lib/android/src/main/java/com/wix/reactnativeuilib/textinput/TextInputDelKeyHandlerPackage.java +0 -28
  150. package/lib/android/src/main/java/com/wix/reactnativeuilib/textinput/ViewUtils.java +0 -36
  151. package/lib/components/HighlighterOverlayView.js +0 -40
  152. package/lib/components/Keyboard/KeyboardInput/CustomKeyboardView/CustomKeyboardView.android.js +0 -28
  153. package/lib/components/Keyboard/KeyboardInput/utils/KeyboardUtils.d.ts +0 -11
  154. package/lib/components/Keyboard/KeyboardInput/utils/KeyboardUtils.js +0 -17
  155. package/panningViews.d.ts +0 -2
  156. package/panningViews.js +0 -1
  157. package/react-native.config.js +0 -22
  158. package/sharedTransition.d.ts +0 -2
  159. package/sharedTransition.js +0 -1
  160. package/src/components/dialog/DialogDismissibleView.d.ts +0 -34
  161. package/src/components/dialog/DialogDismissibleView.js +0 -184
  162. package/src/components/dialog/OverlayFadingBackground.d.ts +0 -14
  163. package/src/components/dialog/OverlayFadingBackground.js +0 -45
  164. package/src/components/panningViews/asPanViewConsumer.d.ts +0 -3
  165. package/src/components/panningViews/asPanViewConsumer.js +0 -16
  166. package/src/components/panningViews/panDismissibleView.d.ts +0 -51
  167. package/src/components/panningViews/panDismissibleView.js +0 -350
  168. package/src/components/panningViews/panGestureView.d.ts +0 -23
  169. package/src/components/panningViews/panGestureView.js +0 -156
  170. package/src/components/panningViews/panListenerView.d.ts +0 -66
  171. package/src/components/panningViews/panListenerView.js +0 -155
  172. package/src/components/panningViews/panResponderView.d.ts +0 -19
  173. package/src/components/panningViews/panResponderView.js +0 -79
  174. package/src/components/panningViews/panningContext.d.ts +0 -3
  175. package/src/components/panningViews/panningContext.js +0 -4
  176. package/src/components/panningViews/panningProvider.d.ts +0 -73
  177. package/src/components/panningViews/panningProvider.js +0 -101
  178. package/src/components/sharedTransition/ShareTransitionContext.js +0 -3
  179. package/src/components/sharedTransition/SharedArea.js +0 -153
  180. package/src/components/sharedTransition/SourceElement.js +0 -44
  181. package/src/components/sharedTransition/TargetElement.js +0 -38
  182. package/src/components/sharedTransition/index.js +0 -9
  183. package/src/incubator/dialog/dialog.api.json +0 -54
  184. package/src/incubator/dialog/index.d.ts +0 -15
  185. package/src/incubator/dialog/index.js +0 -218
  186. /package/lib/components/{HighlighterOverlayView.web.js → HighlighterOverlayView/index.web.js} +0 -0
  187. /package/lib/components/Keyboard/{KeyboardInput → KeyboardAccessoryView}/CustomKeyboardView/index.d.ts +0 -0
  188. /package/lib/components/Keyboard/{KeyboardInput → KeyboardAccessoryView}/CustomKeyboardView/index.js +0 -0
  189. /package/lib/components/Keyboard/{KeyboardInput → KeyboardAccessoryView}/CustomKeyboardView/index.web.d.ts +0 -0
  190. /package/lib/components/Keyboard/{KeyboardInput → KeyboardAccessoryView}/CustomKeyboardView/index.web.js +0 -0
  191. /package/lib/components/Keyboard/{KeyboardInput/utils/EventEmitterManager.d.ts → KeyboardAccessoryView/KeyboardRegistry/EventEmitterManager/index.d.ts} +0 -0
  192. /package/lib/components/Keyboard/{KeyboardInput/utils/EventEmitterManager.js → KeyboardAccessoryView/KeyboardRegistry/EventEmitterManager/index.js} +0 -0
  193. /package/lib/components/Keyboard/{KeyboardInput → KeyboardAccessoryView}/TextInputKeyboardManager/TextInputKeyboardManager.android.d.ts +0 -0
  194. /package/lib/components/Keyboard/{KeyboardInput → KeyboardAccessoryView}/TextInputKeyboardManager/TextInputKeyboardManager.android.js +0 -0
  195. /package/lib/components/Keyboard/{KeyboardInput → KeyboardAccessoryView}/TextInputKeyboardManager/TextInputKeyboardManager.ios.d.ts +0 -0
  196. /package/lib/components/Keyboard/{KeyboardInput → KeyboardAccessoryView}/TextInputKeyboardManager/TextInputKeyboardManager.ios.js +0 -0
  197. /package/lib/components/Keyboard/{KeyboardInput → KeyboardAccessoryView}/TextInputKeyboardManager/index.d.ts +0 -0
  198. /package/lib/components/Keyboard/{KeyboardInput → KeyboardAccessoryView}/TextInputKeyboardManager/index.js +0 -0
  199. /package/lib/components/Keyboard/{KeyboardTracking → KeyboardAwareInsetsView}/keyboardAwareInsetsView.api.json +0 -0
  200. /package/lib/components/Keyboard/{KeyboardTracking/KeyboardTrackingView → KeyboardTrackingView}/KeyboardTrackingView.android.d.ts +0 -0
  201. /package/lib/components/Keyboard/{KeyboardTracking/KeyboardTrackingView → KeyboardTrackingView}/KeyboardTrackingView.android.js +0 -0
  202. /package/lib/components/Keyboard/{KeyboardTracking/KeyboardTrackingView → KeyboardTrackingView}/index.js +0 -0
  203. /package/lib/components/Keyboard/{KeyboardTracking/KeyboardTrackingView → KeyboardTrackingView}/index.web.d.ts +0 -0
  204. /package/lib/components/Keyboard/{KeyboardTracking/KeyboardTrackingView → KeyboardTrackingView}/index.web.js +0 -0
  205. /package/src/{incubator → components}/dialog/Dialog.driver.new.d.ts +0 -0
  206. /package/src/{incubator → components}/dialog/Dialog.driver.new.js +0 -0
  207. /package/src/{incubator → components}/dialog/DialogHeader.d.ts +0 -0
  208. /package/src/{incubator → components}/dialog/DialogHeader.js +0 -0
  209. /package/src/{incubator → components}/dialog/useDialogContent.js +0 -0
  210. /package/src/{incubator → components}/panView/panningUtil.d.ts +0 -0
  211. /package/src/{incubator → components}/panView/panningUtil.js +0 -0
  212. /package/src/{incubator → components}/panView/usePanGesture.js +0 -0
  213. /package/src/{incubator/hooks/useHiddenLocation.js → hooks/useHiddenLocation/index.js} +0 -0
  214. /package/src/{incubator/hooks/useHiddenLocation.web.js → hooks/useHiddenLocation/index.web.js} +0 -0
@@ -36,7 +36,7 @@ declare const _default: {
36
36
  fontFamily?: string | undefined;
37
37
  fontSize?: number | undefined;
38
38
  fontStyle?: "normal" | "italic" | undefined;
39
- fontWeight?: "normal" | "bold" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900" | undefined;
39
+ fontWeight?: "black" | 900 | 600 | "light" | 100 | "normal" | "bold" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900" | 200 | 300 | 400 | 500 | 700 | 800 | "ultralight" | "thin" | "medium" | "regular" | "semibold" | "condensedBold" | "condensed" | "heavy" | undefined;
40
40
  letterSpacing?: number | undefined;
41
41
  textAlign?: "auto" | "left" | "right" | "center" | "justify" | undefined;
42
42
  textDecorationLine?: "none" | "underline" | "line-through" | "underline line-through" | undefined;
@@ -58,31 +58,41 @@ declare const _default: {
58
58
  borderBlockEndColor?: import("react-native").ColorValue | undefined;
59
59
  borderBlockStartColor?: import("react-native").ColorValue | undefined;
60
60
  borderBottomColor?: import("react-native").ColorValue | undefined;
61
- borderBottomEndRadius?: import("react-native").AnimatableNumericValue | undefined;
62
- borderBottomLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
63
- borderBottomRightRadius?: import("react-native").AnimatableNumericValue | undefined;
64
- borderBottomStartRadius?: import("react-native").AnimatableNumericValue | undefined;
61
+ borderBottomEndRadius?: string | import("react-native").AnimatableNumericValue | undefined;
62
+ borderBottomLeftRadius?: string | import("react-native").AnimatableNumericValue | undefined;
63
+ borderBottomRightRadius?: string | import("react-native").AnimatableNumericValue | undefined;
64
+ borderBottomStartRadius?: string | import("react-native").AnimatableNumericValue | undefined;
65
65
  borderColor?: import("react-native").ColorValue | undefined;
66
66
  borderCurve?: "circular" | "continuous" | undefined;
67
67
  borderEndColor?: import("react-native").ColorValue | undefined;
68
- borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
69
- borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
68
+ borderEndEndRadius?: string | import("react-native").AnimatableNumericValue | undefined;
69
+ borderEndStartRadius?: string | import("react-native").AnimatableNumericValue | undefined;
70
70
  borderLeftColor?: import("react-native").ColorValue | undefined;
71
- borderRadius?: import("react-native").AnimatableNumericValue | undefined;
71
+ borderRadius?: string | import("react-native").AnimatableNumericValue | undefined;
72
72
  borderRightColor?: import("react-native").ColorValue | undefined;
73
73
  borderStartColor?: import("react-native").ColorValue | undefined;
74
- borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
75
- borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
74
+ borderStartEndRadius?: string | import("react-native").AnimatableNumericValue | undefined;
75
+ borderStartStartRadius?: string | import("react-native").AnimatableNumericValue | undefined;
76
76
  borderStyle?: "solid" | "dotted" | "dashed" | undefined;
77
77
  borderTopColor?: import("react-native").ColorValue | undefined;
78
- borderTopEndRadius?: import("react-native").AnimatableNumericValue | undefined;
79
- borderTopLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
80
- borderTopRightRadius?: import("react-native").AnimatableNumericValue | undefined;
81
- borderTopStartRadius?: import("react-native").AnimatableNumericValue | undefined;
78
+ borderTopEndRadius?: string | import("react-native").AnimatableNumericValue | undefined;
79
+ borderTopLeftRadius?: string | import("react-native").AnimatableNumericValue | undefined;
80
+ borderTopRightRadius?: string | import("react-native").AnimatableNumericValue | undefined;
81
+ borderTopStartRadius?: string | import("react-native").AnimatableNumericValue | undefined;
82
+ outlineColor?: import("react-native").ColorValue | undefined;
83
+ outlineOffset?: import("react-native").AnimatableNumericValue | undefined;
84
+ outlineStyle?: "solid" | "dotted" | "dashed" | undefined;
85
+ outlineWidth?: import("react-native").AnimatableNumericValue | undefined;
82
86
  opacity?: import("react-native").AnimatableNumericValue | undefined;
83
87
  elevation?: number | undefined;
84
88
  pointerEvents?: "auto" | "none" | "box-none" | "box-only" | undefined;
85
- alignContent?: "center" | "flex-start" | "flex-end" | "stretch" | "space-between" | "space-around" | undefined;
89
+ isolation?: "auto" | "isolate" | undefined;
90
+ cursor?: import("react-native").CursorValue | undefined;
91
+ boxShadow?: string | readonly import("react-native").BoxShadowValue[] | undefined;
92
+ filter?: string | readonly import("react-native").FilterFunction[] | undefined;
93
+ mixBlendMode?: import("react-native").BlendMode | undefined;
94
+ experimental_backgroundImage?: string | readonly import("react-native").GradientValue[] | undefined;
95
+ alignContent?: "center" | "flex-start" | "flex-end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
86
96
  alignItems?: import("react-native").FlexAlignType | undefined;
87
97
  alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
88
98
  aspectRatio?: string | number | undefined;
@@ -94,14 +104,15 @@ declare const _default: {
94
104
  borderTopWidth?: number | undefined;
95
105
  borderWidth?: number | undefined;
96
106
  bottom?: import("react-native").DimensionValue | undefined;
97
- display?: "none" | "flex" | undefined;
107
+ boxSizing?: "border-box" | "content-box" | undefined;
108
+ display?: "none" | "flex" | "contents" | undefined;
98
109
  end?: import("react-native").DimensionValue | undefined;
99
110
  flex?: number | undefined;
100
111
  flexBasis?: import("react-native").DimensionValue | undefined;
101
112
  flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
102
- rowGap?: number | undefined;
103
- gap?: number | undefined;
104
- columnGap?: number | undefined;
113
+ rowGap?: string | number | undefined;
114
+ gap?: string | number | undefined;
115
+ columnGap?: string | number | undefined;
105
116
  flexGrow?: number | undefined;
106
117
  flexShrink?: number | undefined;
107
118
  flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
@@ -130,13 +141,32 @@ declare const _default: {
130
141
  paddingStart?: import("react-native").DimensionValue | undefined;
131
142
  paddingTop?: import("react-native").DimensionValue | undefined;
132
143
  paddingVertical?: import("react-native").DimensionValue | undefined;
133
- position?: "absolute" | "relative" | undefined;
144
+ position?: "absolute" | "relative" | "static" | undefined;
134
145
  right?: import("react-native").DimensionValue | undefined;
135
146
  start?: import("react-native").DimensionValue | undefined;
136
147
  top?: import("react-native").DimensionValue | undefined;
137
148
  width?: import("react-native").DimensionValue | undefined;
138
149
  zIndex?: number | undefined;
139
150
  direction?: "ltr" | "rtl" | "inherit" | undefined;
151
+ inset?: import("react-native").DimensionValue | undefined;
152
+ insetBlock?: import("react-native").DimensionValue | undefined;
153
+ insetBlockEnd?: import("react-native").DimensionValue | undefined;
154
+ insetBlockStart?: import("react-native").DimensionValue | undefined;
155
+ insetInline?: import("react-native").DimensionValue | undefined;
156
+ insetInlineEnd?: import("react-native").DimensionValue | undefined;
157
+ insetInlineStart?: import("react-native").DimensionValue | undefined;
158
+ marginBlock?: import("react-native").DimensionValue | undefined;
159
+ marginBlockEnd?: import("react-native").DimensionValue | undefined;
160
+ marginBlockStart?: import("react-native").DimensionValue | undefined;
161
+ marginInline?: import("react-native").DimensionValue | undefined;
162
+ marginInlineEnd?: import("react-native").DimensionValue | undefined;
163
+ marginInlineStart?: import("react-native").DimensionValue | undefined;
164
+ paddingBlock?: import("react-native").DimensionValue | undefined;
165
+ paddingBlockEnd?: import("react-native").DimensionValue | undefined;
166
+ paddingBlockStart?: import("react-native").DimensionValue | undefined;
167
+ paddingInline?: import("react-native").DimensionValue | undefined;
168
+ paddingInlineEnd?: import("react-native").DimensionValue | undefined;
169
+ paddingInlineStart?: import("react-native").DimensionValue | undefined;
140
170
  shadowColor?: import("react-native").ColorValue | undefined;
141
171
  shadowOffset?: Readonly<{
142
172
  width: number;
@@ -144,7 +174,7 @@ declare const _default: {
144
174
  }> | undefined;
145
175
  shadowOpacity?: import("react-native").AnimatableNumericValue | undefined;
146
176
  shadowRadius?: number | undefined;
147
- transform?: string | (({
177
+ transform?: string | readonly (({
148
178
  perspective: import("react-native").AnimatableNumericValue;
149
179
  } & {
150
180
  rotate?: undefined;
@@ -265,7 +295,7 @@ declare const _default: {
265
295
  skewY?: undefined;
266
296
  matrix?: undefined;
267
297
  }) | ({
268
- translateX: import("react-native").AnimatableNumericValue;
298
+ translateX: import("react-native").AnimatableNumericValue | `${number}%`;
269
299
  } & {
270
300
  perspective?: undefined;
271
301
  rotate?: undefined;
@@ -280,7 +310,7 @@ declare const _default: {
280
310
  skewY?: undefined;
281
311
  matrix?: undefined;
282
312
  }) | ({
283
- translateY: import("react-native").AnimatableNumericValue;
313
+ translateY: import("react-native").AnimatableNumericValue | `${number}%`;
284
314
  } & {
285
315
  perspective?: undefined;
286
316
  rotate?: undefined;
@@ -356,7 +386,7 @@ declare const _default: {
356
386
  fontFamily?: string | undefined;
357
387
  fontSize?: number | undefined;
358
388
  fontStyle?: "normal" | "italic" | undefined;
359
- fontWeight?: "normal" | "bold" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900" | undefined;
389
+ fontWeight?: "black" | 900 | 600 | "light" | 100 | "normal" | "bold" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900" | 200 | 300 | 400 | 500 | 700 | 800 | "ultralight" | "thin" | "medium" | "regular" | "semibold" | "condensedBold" | "condensed" | "heavy" | undefined;
360
390
  letterSpacing?: number | undefined;
361
391
  lineHeight?: number | undefined;
362
392
  textAlign?: "auto" | "left" | "right" | "center" | "justify" | undefined;
@@ -379,31 +409,41 @@ declare const _default: {
379
409
  borderBlockEndColor?: import("react-native").ColorValue | undefined;
380
410
  borderBlockStartColor?: import("react-native").ColorValue | undefined;
381
411
  borderBottomColor?: import("react-native").ColorValue | undefined;
382
- borderBottomEndRadius?: import("react-native").AnimatableNumericValue | undefined;
383
- borderBottomLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
384
- borderBottomRightRadius?: import("react-native").AnimatableNumericValue | undefined;
385
- borderBottomStartRadius?: import("react-native").AnimatableNumericValue | undefined;
412
+ borderBottomEndRadius?: string | import("react-native").AnimatableNumericValue | undefined;
413
+ borderBottomLeftRadius?: string | import("react-native").AnimatableNumericValue | undefined;
414
+ borderBottomRightRadius?: string | import("react-native").AnimatableNumericValue | undefined;
415
+ borderBottomStartRadius?: string | import("react-native").AnimatableNumericValue | undefined;
386
416
  borderColor?: import("react-native").ColorValue | undefined;
387
417
  borderCurve?: "circular" | "continuous" | undefined;
388
418
  borderEndColor?: import("react-native").ColorValue | undefined;
389
- borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
390
- borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
419
+ borderEndEndRadius?: string | import("react-native").AnimatableNumericValue | undefined;
420
+ borderEndStartRadius?: string | import("react-native").AnimatableNumericValue | undefined;
391
421
  borderLeftColor?: import("react-native").ColorValue | undefined;
392
- borderRadius?: import("react-native").AnimatableNumericValue | undefined;
422
+ borderRadius?: string | import("react-native").AnimatableNumericValue | undefined;
393
423
  borderRightColor?: import("react-native").ColorValue | undefined;
394
424
  borderStartColor?: import("react-native").ColorValue | undefined;
395
- borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
396
- borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
425
+ borderStartEndRadius?: string | import("react-native").AnimatableNumericValue | undefined;
426
+ borderStartStartRadius?: string | import("react-native").AnimatableNumericValue | undefined;
397
427
  borderStyle?: "solid" | "dotted" | "dashed" | undefined;
398
428
  borderTopColor?: import("react-native").ColorValue | undefined;
399
- borderTopEndRadius?: import("react-native").AnimatableNumericValue | undefined;
400
- borderTopLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
401
- borderTopRightRadius?: import("react-native").AnimatableNumericValue | undefined;
402
- borderTopStartRadius?: import("react-native").AnimatableNumericValue | undefined;
429
+ borderTopEndRadius?: string | import("react-native").AnimatableNumericValue | undefined;
430
+ borderTopLeftRadius?: string | import("react-native").AnimatableNumericValue | undefined;
431
+ borderTopRightRadius?: string | import("react-native").AnimatableNumericValue | undefined;
432
+ borderTopStartRadius?: string | import("react-native").AnimatableNumericValue | undefined;
433
+ outlineColor?: import("react-native").ColorValue | undefined;
434
+ outlineOffset?: import("react-native").AnimatableNumericValue | undefined;
435
+ outlineStyle?: "solid" | "dotted" | "dashed" | undefined;
436
+ outlineWidth?: import("react-native").AnimatableNumericValue | undefined;
403
437
  opacity?: import("react-native").AnimatableNumericValue | undefined;
404
438
  elevation?: number | undefined;
405
439
  pointerEvents?: "auto" | "none" | "box-none" | "box-only" | undefined;
406
- alignContent?: "center" | "flex-start" | "flex-end" | "stretch" | "space-between" | "space-around" | undefined;
440
+ isolation?: "auto" | "isolate" | undefined;
441
+ cursor?: import("react-native").CursorValue | undefined;
442
+ boxShadow?: string | readonly import("react-native").BoxShadowValue[] | undefined;
443
+ filter?: string | readonly import("react-native").FilterFunction[] | undefined;
444
+ mixBlendMode?: import("react-native").BlendMode | undefined;
445
+ experimental_backgroundImage?: string | readonly import("react-native").GradientValue[] | undefined;
446
+ alignContent?: "center" | "flex-start" | "flex-end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
407
447
  alignItems?: import("react-native").FlexAlignType | undefined;
408
448
  alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
409
449
  aspectRatio?: string | number | undefined;
@@ -415,14 +455,15 @@ declare const _default: {
415
455
  borderTopWidth?: number | undefined;
416
456
  borderWidth?: number | undefined;
417
457
  bottom?: import("react-native").DimensionValue | undefined;
418
- display?: "none" | "flex" | undefined;
458
+ boxSizing?: "border-box" | "content-box" | undefined;
459
+ display?: "none" | "flex" | "contents" | undefined;
419
460
  end?: import("react-native").DimensionValue | undefined;
420
461
  flex?: number | undefined;
421
462
  flexBasis?: import("react-native").DimensionValue | undefined;
422
463
  flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
423
- rowGap?: number | undefined;
424
- gap?: number | undefined;
425
- columnGap?: number | undefined;
464
+ rowGap?: string | number | undefined;
465
+ gap?: string | number | undefined;
466
+ columnGap?: string | number | undefined;
426
467
  flexGrow?: number | undefined;
427
468
  flexShrink?: number | undefined;
428
469
  flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
@@ -452,13 +493,32 @@ declare const _default: {
452
493
  paddingStart?: import("react-native").DimensionValue | undefined;
453
494
  paddingTop?: import("react-native").DimensionValue | undefined;
454
495
  paddingVertical?: import("react-native").DimensionValue | undefined;
455
- position?: "absolute" | "relative" | undefined;
496
+ position?: "absolute" | "relative" | "static" | undefined;
456
497
  right?: import("react-native").DimensionValue | undefined;
457
498
  start?: import("react-native").DimensionValue | undefined;
458
499
  top?: import("react-native").DimensionValue | undefined;
459
500
  width?: import("react-native").DimensionValue | undefined;
460
501
  zIndex?: number | undefined;
461
502
  direction?: "ltr" | "rtl" | "inherit" | undefined;
503
+ inset?: import("react-native").DimensionValue | undefined;
504
+ insetBlock?: import("react-native").DimensionValue | undefined;
505
+ insetBlockEnd?: import("react-native").DimensionValue | undefined;
506
+ insetBlockStart?: import("react-native").DimensionValue | undefined;
507
+ insetInline?: import("react-native").DimensionValue | undefined;
508
+ insetInlineEnd?: import("react-native").DimensionValue | undefined;
509
+ insetInlineStart?: import("react-native").DimensionValue | undefined;
510
+ marginBlock?: import("react-native").DimensionValue | undefined;
511
+ marginBlockEnd?: import("react-native").DimensionValue | undefined;
512
+ marginBlockStart?: import("react-native").DimensionValue | undefined;
513
+ marginInline?: import("react-native").DimensionValue | undefined;
514
+ marginInlineEnd?: import("react-native").DimensionValue | undefined;
515
+ marginInlineStart?: import("react-native").DimensionValue | undefined;
516
+ paddingBlock?: import("react-native").DimensionValue | undefined;
517
+ paddingBlockEnd?: import("react-native").DimensionValue | undefined;
518
+ paddingBlockStart?: import("react-native").DimensionValue | undefined;
519
+ paddingInline?: import("react-native").DimensionValue | undefined;
520
+ paddingInlineEnd?: import("react-native").DimensionValue | undefined;
521
+ paddingInlineStart?: import("react-native").DimensionValue | undefined;
462
522
  shadowColor?: import("react-native").ColorValue | undefined;
463
523
  shadowOffset?: Readonly<{
464
524
  width: number;
@@ -466,7 +526,7 @@ declare const _default: {
466
526
  }> | undefined;
467
527
  shadowOpacity?: import("react-native").AnimatableNumericValue | undefined;
468
528
  shadowRadius?: number | undefined;
469
- transform?: string | (({
529
+ transform?: string | readonly (({
470
530
  perspective: import("react-native").AnimatableNumericValue;
471
531
  } & {
472
532
  rotate?: undefined;
@@ -587,7 +647,7 @@ declare const _default: {
587
647
  skewY?: undefined;
588
648
  matrix?: undefined;
589
649
  }) | ({
590
- translateX: import("react-native").AnimatableNumericValue;
650
+ translateX: import("react-native").AnimatableNumericValue | `${number}%`;
591
651
  } & {
592
652
  perspective?: undefined;
593
653
  rotate?: undefined;
@@ -602,7 +662,7 @@ declare const _default: {
602
662
  skewY?: undefined;
603
663
  matrix?: undefined;
604
664
  }) | ({
605
- translateY: import("react-native").AnimatableNumericValue;
665
+ translateY: import("react-native").AnimatableNumericValue | `${number}%`;
606
666
  } & {
607
667
  perspective?: undefined;
608
668
  rotate?: undefined;
@@ -31,7 +31,7 @@ declare const _default: {
31
31
  fontFamily?: string | undefined;
32
32
  fontSize?: number | undefined;
33
33
  fontStyle?: "normal" | "italic" | undefined;
34
- fontWeight?: "normal" | "bold" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900" | undefined;
34
+ fontWeight?: "black" | 900 | 600 | "light" | 100 | "normal" | "bold" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900" | 200 | 300 | 400 | 500 | 700 | 800 | "ultralight" | "thin" | "medium" | "regular" | "semibold" | "condensedBold" | "condensed" | "heavy" | undefined;
35
35
  letterSpacing?: number | undefined;
36
36
  textAlign?: "auto" | "left" | "right" | "center" | "justify" | undefined;
37
37
  textDecorationLine?: "none" | "underline" | "line-through" | "underline line-through" | undefined;
@@ -53,31 +53,41 @@ declare const _default: {
53
53
  borderBlockEndColor?: import("react-native").ColorValue | undefined;
54
54
  borderBlockStartColor?: import("react-native").ColorValue | undefined;
55
55
  borderBottomColor?: import("react-native").ColorValue | undefined;
56
- borderBottomEndRadius?: import("react-native").AnimatableNumericValue | undefined;
57
- borderBottomLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
58
- borderBottomRightRadius?: import("react-native").AnimatableNumericValue | undefined;
59
- borderBottomStartRadius?: import("react-native").AnimatableNumericValue | undefined;
56
+ borderBottomEndRadius?: string | import("react-native").AnimatableNumericValue | undefined;
57
+ borderBottomLeftRadius?: string | import("react-native").AnimatableNumericValue | undefined;
58
+ borderBottomRightRadius?: string | import("react-native").AnimatableNumericValue | undefined;
59
+ borderBottomStartRadius?: string | import("react-native").AnimatableNumericValue | undefined;
60
60
  borderColor?: import("react-native").ColorValue | undefined;
61
61
  borderCurve?: "circular" | "continuous" | undefined;
62
62
  borderEndColor?: import("react-native").ColorValue | undefined;
63
- borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
64
- borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
63
+ borderEndEndRadius?: string | import("react-native").AnimatableNumericValue | undefined;
64
+ borderEndStartRadius?: string | import("react-native").AnimatableNumericValue | undefined;
65
65
  borderLeftColor?: import("react-native").ColorValue | undefined;
66
- borderRadius?: import("react-native").AnimatableNumericValue | undefined;
66
+ borderRadius?: string | import("react-native").AnimatableNumericValue | undefined;
67
67
  borderRightColor?: import("react-native").ColorValue | undefined;
68
68
  borderStartColor?: import("react-native").ColorValue | undefined;
69
- borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
70
- borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
69
+ borderStartEndRadius?: string | import("react-native").AnimatableNumericValue | undefined;
70
+ borderStartStartRadius?: string | import("react-native").AnimatableNumericValue | undefined;
71
71
  borderStyle?: "solid" | "dotted" | "dashed" | undefined;
72
72
  borderTopColor?: import("react-native").ColorValue | undefined;
73
- borderTopEndRadius?: import("react-native").AnimatableNumericValue | undefined;
74
- borderTopLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
75
- borderTopRightRadius?: import("react-native").AnimatableNumericValue | undefined;
76
- borderTopStartRadius?: import("react-native").AnimatableNumericValue | undefined;
73
+ borderTopEndRadius?: string | import("react-native").AnimatableNumericValue | undefined;
74
+ borderTopLeftRadius?: string | import("react-native").AnimatableNumericValue | undefined;
75
+ borderTopRightRadius?: string | import("react-native").AnimatableNumericValue | undefined;
76
+ borderTopStartRadius?: string | import("react-native").AnimatableNumericValue | undefined;
77
+ outlineColor?: import("react-native").ColorValue | undefined;
78
+ outlineOffset?: import("react-native").AnimatableNumericValue | undefined;
79
+ outlineStyle?: "solid" | "dotted" | "dashed" | undefined;
80
+ outlineWidth?: import("react-native").AnimatableNumericValue | undefined;
77
81
  opacity?: import("react-native").AnimatableNumericValue | undefined;
78
82
  elevation?: number | undefined;
79
83
  pointerEvents?: "auto" | "none" | "box-none" | "box-only" | undefined;
80
- alignContent?: "center" | "flex-start" | "flex-end" | "stretch" | "space-between" | "space-around" | undefined;
84
+ isolation?: "auto" | "isolate" | undefined;
85
+ cursor?: import("react-native").CursorValue | undefined;
86
+ boxShadow?: string | readonly import("react-native").BoxShadowValue[] | undefined;
87
+ filter?: string | readonly import("react-native").FilterFunction[] | undefined;
88
+ mixBlendMode?: import("react-native").BlendMode | undefined;
89
+ experimental_backgroundImage?: string | readonly import("react-native").GradientValue[] | undefined;
90
+ alignContent?: "center" | "flex-start" | "flex-end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
81
91
  alignItems?: import("react-native").FlexAlignType | undefined;
82
92
  alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
83
93
  aspectRatio?: string | number | undefined;
@@ -89,14 +99,15 @@ declare const _default: {
89
99
  borderTopWidth?: number | undefined;
90
100
  borderWidth?: number | undefined;
91
101
  bottom?: import("react-native").DimensionValue | undefined;
92
- display?: "none" | "flex" | undefined;
102
+ boxSizing?: "border-box" | "content-box" | undefined;
103
+ display?: "none" | "flex" | "contents" | undefined;
93
104
  end?: import("react-native").DimensionValue | undefined;
94
105
  flex?: number | undefined;
95
106
  flexBasis?: import("react-native").DimensionValue | undefined;
96
107
  flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
97
- rowGap?: number | undefined;
98
- gap?: number | undefined;
99
- columnGap?: number | undefined;
108
+ rowGap?: string | number | undefined;
109
+ gap?: string | number | undefined;
110
+ columnGap?: string | number | undefined;
100
111
  flexGrow?: number | undefined;
101
112
  flexShrink?: number | undefined;
102
113
  flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
@@ -125,13 +136,32 @@ declare const _default: {
125
136
  paddingStart?: import("react-native").DimensionValue | undefined;
126
137
  paddingTop?: import("react-native").DimensionValue | undefined;
127
138
  paddingVertical?: import("react-native").DimensionValue | undefined;
128
- position?: "absolute" | "relative" | undefined;
139
+ position?: "absolute" | "relative" | "static" | undefined;
129
140
  right?: import("react-native").DimensionValue | undefined;
130
141
  start?: import("react-native").DimensionValue | undefined;
131
142
  top?: import("react-native").DimensionValue | undefined;
132
143
  width?: import("react-native").DimensionValue | undefined;
133
144
  zIndex?: number | undefined;
134
145
  direction?: "ltr" | "rtl" | "inherit" | undefined;
146
+ inset?: import("react-native").DimensionValue | undefined;
147
+ insetBlock?: import("react-native").DimensionValue | undefined;
148
+ insetBlockEnd?: import("react-native").DimensionValue | undefined;
149
+ insetBlockStart?: import("react-native").DimensionValue | undefined;
150
+ insetInline?: import("react-native").DimensionValue | undefined;
151
+ insetInlineEnd?: import("react-native").DimensionValue | undefined;
152
+ insetInlineStart?: import("react-native").DimensionValue | undefined;
153
+ marginBlock?: import("react-native").DimensionValue | undefined;
154
+ marginBlockEnd?: import("react-native").DimensionValue | undefined;
155
+ marginBlockStart?: import("react-native").DimensionValue | undefined;
156
+ marginInline?: import("react-native").DimensionValue | undefined;
157
+ marginInlineEnd?: import("react-native").DimensionValue | undefined;
158
+ marginInlineStart?: import("react-native").DimensionValue | undefined;
159
+ paddingBlock?: import("react-native").DimensionValue | undefined;
160
+ paddingBlockEnd?: import("react-native").DimensionValue | undefined;
161
+ paddingBlockStart?: import("react-native").DimensionValue | undefined;
162
+ paddingInline?: import("react-native").DimensionValue | undefined;
163
+ paddingInlineEnd?: import("react-native").DimensionValue | undefined;
164
+ paddingInlineStart?: import("react-native").DimensionValue | undefined;
135
165
  shadowColor?: import("react-native").ColorValue | undefined;
136
166
  shadowOffset?: Readonly<{
137
167
  width: number;
@@ -139,7 +169,7 @@ declare const _default: {
139
169
  }> | undefined;
140
170
  shadowOpacity?: import("react-native").AnimatableNumericValue | undefined;
141
171
  shadowRadius?: number | undefined;
142
- transform?: string | (({
172
+ transform?: string | readonly (({
143
173
  perspective: import("react-native").AnimatableNumericValue;
144
174
  } & {
145
175
  rotate?: undefined;
@@ -260,7 +290,7 @@ declare const _default: {
260
290
  skewY?: undefined;
261
291
  matrix?: undefined;
262
292
  }) | ({
263
- translateX: import("react-native").AnimatableNumericValue;
293
+ translateX: import("react-native").AnimatableNumericValue | `${number}%`;
264
294
  } & {
265
295
  perspective?: undefined;
266
296
  rotate?: undefined;
@@ -275,7 +305,7 @@ declare const _default: {
275
305
  skewY?: undefined;
276
306
  matrix?: undefined;
277
307
  }) | ({
278
- translateY: import("react-native").AnimatableNumericValue;
308
+ translateY: import("react-native").AnimatableNumericValue | `${number}%`;
279
309
  } & {
280
310
  perspective?: undefined;
281
311
  rotate?: undefined;
@@ -354,7 +384,7 @@ declare const _default: {
354
384
  fontFamily?: string | undefined;
355
385
  fontSize?: number | undefined;
356
386
  fontStyle?: "normal" | "italic" | undefined;
357
- fontWeight?: "normal" | "bold" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900" | undefined;
387
+ fontWeight?: "black" | 900 | 600 | "light" | 100 | "normal" | "bold" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900" | 200 | 300 | 400 | 500 | 700 | 800 | "ultralight" | "thin" | "medium" | "regular" | "semibold" | "condensedBold" | "condensed" | "heavy" | undefined;
358
388
  letterSpacing?: number | undefined;
359
389
  lineHeight?: number | undefined;
360
390
  textAlign?: "auto" | "left" | "right" | "center" | "justify" | undefined;
@@ -377,31 +407,41 @@ declare const _default: {
377
407
  borderBlockEndColor?: import("react-native").ColorValue | undefined;
378
408
  borderBlockStartColor?: import("react-native").ColorValue | undefined;
379
409
  borderBottomColor?: import("react-native").ColorValue | undefined;
380
- borderBottomEndRadius?: import("react-native").AnimatableNumericValue | undefined;
381
- borderBottomLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
382
- borderBottomRightRadius?: import("react-native").AnimatableNumericValue | undefined;
383
- borderBottomStartRadius?: import("react-native").AnimatableNumericValue | undefined;
410
+ borderBottomEndRadius?: string | import("react-native").AnimatableNumericValue | undefined;
411
+ borderBottomLeftRadius?: string | import("react-native").AnimatableNumericValue | undefined;
412
+ borderBottomRightRadius?: string | import("react-native").AnimatableNumericValue | undefined;
413
+ borderBottomStartRadius?: string | import("react-native").AnimatableNumericValue | undefined;
384
414
  borderColor?: import("react-native").ColorValue | undefined;
385
415
  borderCurve?: "circular" | "continuous" | undefined;
386
416
  borderEndColor?: import("react-native").ColorValue | undefined;
387
- borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
388
- borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
417
+ borderEndEndRadius?: string | import("react-native").AnimatableNumericValue | undefined;
418
+ borderEndStartRadius?: string | import("react-native").AnimatableNumericValue | undefined;
389
419
  borderLeftColor?: import("react-native").ColorValue | undefined;
390
- borderRadius?: import("react-native").AnimatableNumericValue | undefined;
420
+ borderRadius?: string | import("react-native").AnimatableNumericValue | undefined;
391
421
  borderRightColor?: import("react-native").ColorValue | undefined;
392
422
  borderStartColor?: import("react-native").ColorValue | undefined;
393
- borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
394
- borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
423
+ borderStartEndRadius?: string | import("react-native").AnimatableNumericValue | undefined;
424
+ borderStartStartRadius?: string | import("react-native").AnimatableNumericValue | undefined;
395
425
  borderStyle?: "solid" | "dotted" | "dashed" | undefined;
396
426
  borderTopColor?: import("react-native").ColorValue | undefined;
397
- borderTopEndRadius?: import("react-native").AnimatableNumericValue | undefined;
398
- borderTopLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
399
- borderTopRightRadius?: import("react-native").AnimatableNumericValue | undefined;
400
- borderTopStartRadius?: import("react-native").AnimatableNumericValue | undefined;
427
+ borderTopEndRadius?: string | import("react-native").AnimatableNumericValue | undefined;
428
+ borderTopLeftRadius?: string | import("react-native").AnimatableNumericValue | undefined;
429
+ borderTopRightRadius?: string | import("react-native").AnimatableNumericValue | undefined;
430
+ borderTopStartRadius?: string | import("react-native").AnimatableNumericValue | undefined;
431
+ outlineColor?: import("react-native").ColorValue | undefined;
432
+ outlineOffset?: import("react-native").AnimatableNumericValue | undefined;
433
+ outlineStyle?: "solid" | "dotted" | "dashed" | undefined;
434
+ outlineWidth?: import("react-native").AnimatableNumericValue | undefined;
401
435
  opacity?: import("react-native").AnimatableNumericValue | undefined;
402
436
  elevation?: number | undefined;
403
437
  pointerEvents?: "auto" | "none" | "box-none" | "box-only" | undefined;
404
- alignContent?: "center" | "flex-start" | "flex-end" | "stretch" | "space-between" | "space-around" | undefined;
438
+ isolation?: "auto" | "isolate" | undefined;
439
+ cursor?: import("react-native").CursorValue | undefined;
440
+ boxShadow?: string | readonly import("react-native").BoxShadowValue[] | undefined;
441
+ filter?: string | readonly import("react-native").FilterFunction[] | undefined;
442
+ mixBlendMode?: import("react-native").BlendMode | undefined;
443
+ experimental_backgroundImage?: string | readonly import("react-native").GradientValue[] | undefined;
444
+ alignContent?: "center" | "flex-start" | "flex-end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
405
445
  alignItems?: import("react-native").FlexAlignType | undefined;
406
446
  alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
407
447
  aspectRatio?: string | number | undefined;
@@ -413,14 +453,15 @@ declare const _default: {
413
453
  borderTopWidth?: number | undefined;
414
454
  borderWidth?: number | undefined;
415
455
  bottom?: import("react-native").DimensionValue | undefined;
416
- display?: "none" | "flex" | undefined;
456
+ boxSizing?: "border-box" | "content-box" | undefined;
457
+ display?: "none" | "flex" | "contents" | undefined;
417
458
  end?: import("react-native").DimensionValue | undefined;
418
459
  flex?: number | undefined;
419
460
  flexBasis?: import("react-native").DimensionValue | undefined;
420
461
  flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
421
- rowGap?: number | undefined;
422
- gap?: number | undefined;
423
- columnGap?: number | undefined;
462
+ rowGap?: string | number | undefined;
463
+ gap?: string | number | undefined;
464
+ columnGap?: string | number | undefined;
424
465
  flexGrow?: number | undefined;
425
466
  flexShrink?: number | undefined;
426
467
  flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
@@ -450,13 +491,32 @@ declare const _default: {
450
491
  paddingStart?: import("react-native").DimensionValue | undefined;
451
492
  paddingTop?: import("react-native").DimensionValue | undefined;
452
493
  paddingVertical?: import("react-native").DimensionValue | undefined;
453
- position?: "absolute" | "relative" | undefined;
494
+ position?: "absolute" | "relative" | "static" | undefined;
454
495
  right?: import("react-native").DimensionValue | undefined;
455
496
  start?: import("react-native").DimensionValue | undefined;
456
497
  top?: import("react-native").DimensionValue | undefined;
457
498
  width?: import("react-native").DimensionValue | undefined;
458
499
  zIndex?: number | undefined;
459
500
  direction?: "ltr" | "rtl" | "inherit" | undefined;
501
+ inset?: import("react-native").DimensionValue | undefined;
502
+ insetBlock?: import("react-native").DimensionValue | undefined;
503
+ insetBlockEnd?: import("react-native").DimensionValue | undefined;
504
+ insetBlockStart?: import("react-native").DimensionValue | undefined;
505
+ insetInline?: import("react-native").DimensionValue | undefined;
506
+ insetInlineEnd?: import("react-native").DimensionValue | undefined;
507
+ insetInlineStart?: import("react-native").DimensionValue | undefined;
508
+ marginBlock?: import("react-native").DimensionValue | undefined;
509
+ marginBlockEnd?: import("react-native").DimensionValue | undefined;
510
+ marginBlockStart?: import("react-native").DimensionValue | undefined;
511
+ marginInline?: import("react-native").DimensionValue | undefined;
512
+ marginInlineEnd?: import("react-native").DimensionValue | undefined;
513
+ marginInlineStart?: import("react-native").DimensionValue | undefined;
514
+ paddingBlock?: import("react-native").DimensionValue | undefined;
515
+ paddingBlockEnd?: import("react-native").DimensionValue | undefined;
516
+ paddingBlockStart?: import("react-native").DimensionValue | undefined;
517
+ paddingInline?: import("react-native").DimensionValue | undefined;
518
+ paddingInlineEnd?: import("react-native").DimensionValue | undefined;
519
+ paddingInlineStart?: import("react-native").DimensionValue | undefined;
460
520
  shadowColor?: import("react-native").ColorValue | undefined;
461
521
  shadowOffset?: Readonly<{
462
522
  width: number;
@@ -464,7 +524,7 @@ declare const _default: {
464
524
  }> | undefined;
465
525
  shadowOpacity?: import("react-native").AnimatableNumericValue | undefined;
466
526
  shadowRadius?: number | undefined;
467
- transform?: string | (({
527
+ transform?: string | readonly (({
468
528
  perspective: import("react-native").AnimatableNumericValue;
469
529
  } & {
470
530
  rotate?: undefined;
@@ -585,7 +645,7 @@ declare const _default: {
585
645
  skewY?: undefined;
586
646
  matrix?: undefined;
587
647
  }) | ({
588
- translateX: import("react-native").AnimatableNumericValue;
648
+ translateX: import("react-native").AnimatableNumericValue | `${number}%`;
589
649
  } & {
590
650
  perspective?: undefined;
591
651
  rotate?: undefined;
@@ -600,7 +660,7 @@ declare const _default: {
600
660
  skewY?: undefined;
601
661
  matrix?: undefined;
602
662
  }) | ({
603
- translateY: import("react-native").AnimatableNumericValue;
663
+ translateY: import("react-native").AnimatableNumericValue | `${number}%`;
604
664
  } & {
605
665
  perspective?: undefined;
606
666
  rotate?: undefined;
@@ -5,6 +5,7 @@ export let ValidationMessagePosition = /*#__PURE__*/function (ValidationMessageP
5
5
  }({});
6
6
  export let Presets = /*#__PURE__*/function (Presets) {
7
7
  Presets["DEFAULT"] = "default";
8
+ // TODO: remove
8
9
  Presets["UNDERLINE"] = "underline";
9
10
  Presets["OUTLINE"] = "outline";
10
11
  return Presets;