react-native-ui-lib 7.44.0-snapshot.7228 → 7.44.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 (182) hide show
  1. package/babel.config.js +0 -12
  2. package/index.js +0 -1
  3. package/lib/android/build.gradle +5 -5
  4. package/lib/android/src/main/java/com/wix/reactnativeuilib/UiLibPackageList.java +2 -0
  5. package/lib/android/src/main/java/com/wix/reactnativeuilib/highlighterview/HighlighterViewManager.java +23 -31
  6. package/lib/android/src/main/java/com/wix/reactnativeuilib/highlighterview/ReactHacks.java +30 -0
  7. package/lib/android/src/main/java/com/wix/reactnativeuilib/highlighterview/ReflectionUtils.java +34 -0
  8. package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/utils/RuntimeUtils.java +1 -1
  9. package/lib/android/src/main/java/com/wix/reactnativeuilib/textinput/DefaultKeyListener.java +33 -0
  10. package/lib/android/src/main/java/com/wix/reactnativeuilib/textinput/KeyListenerProxy.java +53 -0
  11. package/lib/android/src/main/java/com/wix/reactnativeuilib/textinput/TextInputDelKeyHandlerModule.java +54 -0
  12. package/lib/android/src/main/java/com/wix/reactnativeuilib/textinput/TextInputDelKeyHandlerPackage.java +28 -0
  13. package/lib/android/src/main/java/com/wix/reactnativeuilib/textinput/ViewUtils.java +36 -0
  14. package/lib/components/{HighlighterOverlayView/index.d.ts → HighlighterOverlayView.d.ts} +1 -1
  15. package/lib/components/HighlighterOverlayView.js +40 -0
  16. package/lib/components/{HighlighterOverlayView/index.web.d.ts → HighlighterOverlayView.web.d.ts} +1 -1
  17. package/lib/components/Keyboard/{KeyboardAccessoryView → KeyboardInput}/CustomKeyboardView/CustomKeyboardView.android.d.ts +2 -5
  18. package/lib/components/Keyboard/KeyboardInput/CustomKeyboardView/CustomKeyboardView.android.js +28 -0
  19. package/lib/components/Keyboard/{KeyboardAccessoryView → KeyboardInput}/CustomKeyboardView/CustomKeyboardView.ios.d.ts +1 -1
  20. package/lib/components/Keyboard/{KeyboardAccessoryView → KeyboardInput}/CustomKeyboardView/CustomKeyboardView.ios.js +3 -3
  21. package/lib/components/Keyboard/{KeyboardAccessoryView/CustomKeyboardView → KeyboardInput}/CustomKeyboardViewBase.d.ts +0 -3
  22. package/lib/components/Keyboard/{KeyboardAccessoryView/CustomKeyboardView → KeyboardInput}/CustomKeyboardViewBase.js +1 -1
  23. package/lib/components/Keyboard/{KeyboardAccessoryView/index.d.ts → KeyboardInput/KeyboardAccessoryView.d.ts} +1 -11
  24. package/lib/components/Keyboard/{KeyboardAccessoryView/index.js → KeyboardInput/KeyboardAccessoryView.js} +5 -31
  25. package/lib/components/Keyboard/{KeyboardAccessoryView/KeyboardRegistry/index.d.ts → KeyboardInput/KeyboardRegistry.d.ts} +1 -1
  26. package/lib/components/Keyboard/{KeyboardAccessoryView/KeyboardRegistry/index.js → KeyboardInput/KeyboardRegistry.js} +1 -1
  27. package/lib/components/Keyboard/{KeyboardAccessoryView/KeyboardRegistry → KeyboardInput}/__tests__/KeyboardRegistry.spec.js +1 -1
  28. package/lib/components/Keyboard/{KeyboardAccessoryView → KeyboardInput}/keyboardAccessoryView.api.json +5 -5
  29. package/lib/components/Keyboard/{KeyboardAccessoryView/KeyboardRegistry → KeyboardInput}/keyboardRegistry.api.json +9 -9
  30. package/lib/components/Keyboard/KeyboardInput/utils/KeyboardUtils.d.ts +11 -0
  31. package/lib/components/Keyboard/KeyboardInput/utils/KeyboardUtils.js +17 -0
  32. package/lib/components/Keyboard/{KeyboardAccessoryView/KeyboardRegistry/EventEmitterManager → KeyboardInput/utils}/__tests__/EventEmitterManager.spec.js +1 -1
  33. package/lib/components/Keyboard/{KeyboardAwareInsetsView/index.d.ts → KeyboardTracking/KeyboardAwareInsetsView.d.ts} +1 -1
  34. package/lib/components/Keyboard/{KeyboardAwareInsetsView/index.js → KeyboardTracking/KeyboardAwareInsetsView.js} +1 -1
  35. package/lib/components/Keyboard/{KeyboardTrackingView → KeyboardTracking/KeyboardTrackingView}/KeyboardTrackingView.ios.d.ts +4 -1
  36. package/lib/components/Keyboard/{KeyboardTrackingView → KeyboardTracking/KeyboardTrackingView}/KeyboardTrackingView.ios.js +8 -5
  37. package/lib/components/Keyboard/{KeyboardTrackingView → KeyboardTracking/KeyboardTrackingView}/index.d.ts +2 -2
  38. package/lib/components/Keyboard/{KeyboardTrackingView → KeyboardTracking/KeyboardTrackingView}/keyboardTrackingView.api.json +20 -11
  39. package/lib/components/Keyboard/index.d.ts +6 -6
  40. package/lib/components/Keyboard/index.js +6 -6
  41. package/lib/components/SafeArea/SafeAreaInsetsManager.d.ts +3 -8
  42. package/lib/components/SafeArea/SafeAreaInsetsManager.js +24 -87
  43. package/lib/components/SafeArea/SafeAreaSpacerView.d.ts +2 -2
  44. package/lib/components/SafeArea/SafeAreaSpacerView.js +9 -63
  45. package/lib/components/index.d.ts +1 -1
  46. package/lib/components/index.js +1 -1
  47. package/lib/package.json +1 -1
  48. package/lib/react-native.config.js +3 -1
  49. package/metro.config.js +2 -2
  50. package/package.json +23 -23
  51. package/panningViews.d.ts +2 -0
  52. package/panningViews.js +1 -0
  53. package/react-native.config.js +3 -1
  54. package/sharedTransition.d.ts +2 -0
  55. package/sharedTransition.js +1 -0
  56. package/src/commons/Constants.js +2 -7
  57. package/src/components/KeyboardAwareScrollView/KeyboardAwareBase.js +1 -5
  58. package/src/components/actionSheet/index.d.ts +12 -2
  59. package/src/components/actionSheet/index.js +42 -3
  60. package/src/components/badge/index.d.ts +47 -107
  61. package/src/components/button/button.api.json +1 -1
  62. package/src/components/button/index.d.ts +23 -53
  63. package/src/components/button/types.d.ts +1 -0
  64. package/src/components/colorPicker/ColorPickerDialog.d.ts +1 -1
  65. package/src/components/colorPicker/ColorPickerDialog.js +1 -1
  66. package/src/components/dateTimePicker/index.d.ts +5 -186
  67. package/src/components/dateTimePicker/index.js +2 -1
  68. package/src/components/dialog/DialogDismissibleView.d.ts +34 -0
  69. package/src/components/dialog/DialogDismissibleView.js +184 -0
  70. package/src/components/dialog/OverlayFadingBackground.d.ts +14 -0
  71. package/src/components/dialog/OverlayFadingBackground.js +45 -0
  72. package/src/components/dialog/dialog.api.json +37 -31
  73. package/src/components/dialog/index.d.ts +105 -13
  74. package/src/components/dialog/index.js +212 -204
  75. package/src/components/drawer/Swipeable.js +2 -1
  76. package/src/components/drawer/index.js +25 -31
  77. package/src/components/fadedScrollView/index.js +2 -7
  78. package/src/components/featureHighlight/index.d.ts +1 -1
  79. package/src/components/index.js +19 -0
  80. package/src/components/panningViews/asPanViewConsumer.d.ts +3 -0
  81. package/src/components/panningViews/asPanViewConsumer.js +16 -0
  82. package/src/components/panningViews/panDismissibleView.d.ts +51 -0
  83. package/src/components/panningViews/panDismissibleView.js +350 -0
  84. package/src/components/panningViews/panGestureView.d.ts +23 -0
  85. package/src/components/panningViews/panGestureView.js +156 -0
  86. package/src/components/panningViews/panListenerView.d.ts +66 -0
  87. package/src/components/panningViews/panListenerView.js +155 -0
  88. package/src/components/panningViews/panResponderView.d.ts +19 -0
  89. package/src/components/panningViews/panResponderView.js +79 -0
  90. package/src/components/panningViews/panningContext.d.ts +3 -0
  91. package/src/components/panningViews/panningContext.js +4 -0
  92. package/src/components/panningViews/panningProvider.d.ts +73 -0
  93. package/src/components/panningViews/panningProvider.js +101 -0
  94. package/src/components/picker/Picker.driver.new.js +1 -1
  95. package/src/components/picker/PickerItem.js +20 -6
  96. package/src/components/picker/PickerPresenter.d.ts +1 -0
  97. package/src/components/picker/PickerPresenter.js +23 -1
  98. package/src/components/picker/api/picker.api.json +1 -0
  99. package/src/components/picker/api/pickerItem.api.json +5 -0
  100. package/src/components/picker/helpers/useFieldType.d.ts +23 -53
  101. package/src/components/picker/helpers/usePickerLabel.d.ts +1 -1
  102. package/src/components/picker/helpers/usePickerLabel.js +3 -2
  103. package/src/components/picker/helpers/usePickerMigrationWarnings.d.ts +1 -1
  104. package/src/components/picker/helpers/usePickerMigrationWarnings.js +12 -0
  105. package/src/components/picker/helpers/usePickerSearch.d.ts +1 -1
  106. package/src/components/picker/helpers/usePickerSearch.js +8 -4
  107. package/src/components/picker/helpers/usePickerSelection.d.ts +1 -1
  108. package/src/components/picker/helpers/usePickerSelection.js +10 -2
  109. package/src/components/picker/index.js +22 -4
  110. package/src/components/picker/types.d.ts +24 -1
  111. package/src/components/sharedTransition/ShareTransitionContext.js +3 -0
  112. package/src/components/sharedTransition/SharedArea.js +153 -0
  113. package/src/components/sharedTransition/SourceElement.js +44 -0
  114. package/src/components/sharedTransition/TargetElement.js +38 -0
  115. package/src/components/sharedTransition/index.js +9 -0
  116. package/src/components/slider/GradientSlider.d.ts +1 -1
  117. package/src/components/sortableGridList/SortableItem.js +4 -13
  118. package/src/components/sortableList/SortableListItem.js +4 -13
  119. package/src/components/stackAggregator/index.js +11 -16
  120. package/src/components/textField/Input.js +1 -0
  121. package/src/components/textField/presets/outline.d.ts +46 -106
  122. package/src/components/textField/presets/underline.d.ts +46 -106
  123. package/src/components/textField/usePreset.d.ts +44 -72
  124. package/src/incubator/dialog/dialog.api.json +54 -0
  125. package/src/{components → incubator}/dialog/dialogHeader.api.json +2 -2
  126. package/src/incubator/dialog/index.d.ts +15 -0
  127. package/src/incubator/dialog/index.js +218 -0
  128. package/src/{components → incubator}/dialog/types.d.ts +19 -0
  129. package/src/{components → incubator}/dialog/types.js +3 -1
  130. package/src/{components → incubator}/dialog/useDialogContent.d.ts +1 -1
  131. package/src/incubator/expandableOverlay/ExpandableOverlay.driver.js +1 -1
  132. package/src/incubator/expandableOverlay/index.d.ts +3 -42
  133. package/src/incubator/expandableOverlay/index.js +4 -1
  134. package/src/{hooks/useHiddenLocation/index.d.ts → incubator/hooks/useHiddenLocation.d.ts} +1 -1
  135. package/src/{hooks/useHiddenLocation/index.web.d.ts → incubator/hooks/useHiddenLocation.web.d.ts} +1 -1
  136. package/src/incubator/index.d.ts +2 -0
  137. package/src/incubator/index.js +2 -0
  138. package/src/{components → incubator}/panView/index.d.ts +3 -3
  139. package/src/{components → incubator}/panView/index.js +4 -4
  140. package/src/{components → incubator}/panView/usePanGesture.d.ts +1 -1
  141. package/src/incubator/toast/index.js +1 -1
  142. package/src/index.d.ts +10 -3
  143. package/src/index.js +160 -41
  144. package/src/testkit/index.d.ts +1 -1
  145. package/src/testkit/index.js +1 -1
  146. package/lib/components/HighlighterOverlayView/index.js +0 -49
  147. package/lib/components/Keyboard/KeyboardAccessoryView/CustomKeyboardView/CustomKeyboardView.android.js +0 -51
  148. package/lib/components/Keyboard/KeyboardAccessoryView/KeyboardUtils/index.d.ts +0 -26
  149. package/lib/components/Keyboard/KeyboardAccessoryView/KeyboardUtils/index.js +0 -91
  150. package/lib/components/SafeArea/index.d.ts +0 -10
  151. package/lib/components/SafeArea/index.js +0 -11
  152. package/panView.d.ts +0 -2
  153. package/panView.js +0 -1
  154. /package/lib/components/{HighlighterOverlayView/index.web.js → HighlighterOverlayView.web.js} +0 -0
  155. /package/lib/components/Keyboard/{KeyboardAccessoryView → KeyboardInput}/CustomKeyboardView/index.d.ts +0 -0
  156. /package/lib/components/Keyboard/{KeyboardAccessoryView → KeyboardInput}/CustomKeyboardView/index.js +0 -0
  157. /package/lib/components/Keyboard/{KeyboardAccessoryView → KeyboardInput}/CustomKeyboardView/index.web.d.ts +0 -0
  158. /package/lib/components/Keyboard/{KeyboardAccessoryView → KeyboardInput}/CustomKeyboardView/index.web.js +0 -0
  159. /package/lib/components/Keyboard/{KeyboardAccessoryView → KeyboardInput}/TextInputKeyboardManager/TextInputKeyboardManager.android.d.ts +0 -0
  160. /package/lib/components/Keyboard/{KeyboardAccessoryView → KeyboardInput}/TextInputKeyboardManager/TextInputKeyboardManager.android.js +0 -0
  161. /package/lib/components/Keyboard/{KeyboardAccessoryView → KeyboardInput}/TextInputKeyboardManager/TextInputKeyboardManager.ios.d.ts +0 -0
  162. /package/lib/components/Keyboard/{KeyboardAccessoryView → KeyboardInput}/TextInputKeyboardManager/TextInputKeyboardManager.ios.js +0 -0
  163. /package/lib/components/Keyboard/{KeyboardAccessoryView → KeyboardInput}/TextInputKeyboardManager/index.d.ts +0 -0
  164. /package/lib/components/Keyboard/{KeyboardAccessoryView → KeyboardInput}/TextInputKeyboardManager/index.js +0 -0
  165. /package/lib/components/Keyboard/{KeyboardAccessoryView/KeyboardRegistry/EventEmitterManager/index.d.ts → KeyboardInput/utils/EventEmitterManager.d.ts} +0 -0
  166. /package/lib/components/Keyboard/{KeyboardAccessoryView/KeyboardRegistry/EventEmitterManager/index.js → KeyboardInput/utils/EventEmitterManager.js} +0 -0
  167. /package/lib/components/Keyboard/{KeyboardTrackingView → KeyboardTracking/KeyboardTrackingView}/KeyboardTrackingView.android.d.ts +0 -0
  168. /package/lib/components/Keyboard/{KeyboardTrackingView → KeyboardTracking/KeyboardTrackingView}/KeyboardTrackingView.android.js +0 -0
  169. /package/lib/components/Keyboard/{KeyboardTrackingView → KeyboardTracking/KeyboardTrackingView}/index.js +0 -0
  170. /package/lib/components/Keyboard/{KeyboardTrackingView → KeyboardTracking/KeyboardTrackingView}/index.web.d.ts +0 -0
  171. /package/lib/components/Keyboard/{KeyboardTrackingView → KeyboardTracking/KeyboardTrackingView}/index.web.js +0 -0
  172. /package/lib/components/Keyboard/{KeyboardAwareInsetsView → KeyboardTracking}/keyboardAwareInsetsView.api.json +0 -0
  173. /package/src/{components → incubator}/dialog/Dialog.driver.new.d.ts +0 -0
  174. /package/src/{components → incubator}/dialog/Dialog.driver.new.js +0 -0
  175. /package/src/{components → incubator}/dialog/DialogHeader.d.ts +0 -0
  176. /package/src/{components → incubator}/dialog/DialogHeader.js +0 -0
  177. /package/src/{components → incubator}/dialog/useDialogContent.js +0 -0
  178. /package/src/{hooks/useHiddenLocation/index.js → incubator/hooks/useHiddenLocation.js} +0 -0
  179. /package/src/{hooks/useHiddenLocation/index.web.js → incubator/hooks/useHiddenLocation.web.js} +0 -0
  180. /package/src/{components → incubator}/panView/panningUtil.d.ts +0 -0
  181. /package/src/{components → incubator}/panView/panningUtil.js +0 -0
  182. /package/src/{components → incubator}/panView/usePanGesture.js +0 -0
@@ -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?: "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;
34
+ fontWeight?: "normal" | "bold" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900" | 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,41 +53,31 @@ 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?: 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;
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;
60
60
  borderColor?: import("react-native").ColorValue | undefined;
61
61
  borderCurve?: "circular" | "continuous" | undefined;
62
62
  borderEndColor?: import("react-native").ColorValue | undefined;
63
- borderEndEndRadius?: string | import("react-native").AnimatableNumericValue | undefined;
64
- borderEndStartRadius?: string | import("react-native").AnimatableNumericValue | undefined;
63
+ borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
64
+ borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
65
65
  borderLeftColor?: import("react-native").ColorValue | undefined;
66
- borderRadius?: string | import("react-native").AnimatableNumericValue | undefined;
66
+ borderRadius?: import("react-native").AnimatableNumericValue | undefined;
67
67
  borderRightColor?: import("react-native").ColorValue | undefined;
68
68
  borderStartColor?: import("react-native").ColorValue | undefined;
69
- borderStartEndRadius?: string | import("react-native").AnimatableNumericValue | undefined;
70
- borderStartStartRadius?: string | import("react-native").AnimatableNumericValue | undefined;
69
+ borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
70
+ borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
71
71
  borderStyle?: "solid" | "dotted" | "dashed" | undefined;
72
72
  borderTopColor?: import("react-native").ColorValue | 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;
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;
81
77
  opacity?: import("react-native").AnimatableNumericValue | undefined;
82
78
  elevation?: number | undefined;
83
79
  pointerEvents?: "auto" | "none" | "box-none" | "box-only" | 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;
80
+ alignContent?: "center" | "flex-start" | "flex-end" | "stretch" | "space-between" | "space-around" | undefined;
91
81
  alignItems?: import("react-native").FlexAlignType | undefined;
92
82
  alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
93
83
  aspectRatio?: string | number | undefined;
@@ -99,15 +89,14 @@ declare const _default: {
99
89
  borderTopWidth?: number | undefined;
100
90
  borderWidth?: number | undefined;
101
91
  bottom?: import("react-native").DimensionValue | undefined;
102
- boxSizing?: "border-box" | "content-box" | undefined;
103
- display?: "none" | "flex" | "contents" | undefined;
92
+ display?: "none" | "flex" | undefined;
104
93
  end?: import("react-native").DimensionValue | undefined;
105
94
  flex?: number | undefined;
106
95
  flexBasis?: import("react-native").DimensionValue | undefined;
107
96
  flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
108
- rowGap?: string | number | undefined;
109
- gap?: string | number | undefined;
110
- columnGap?: string | number | undefined;
97
+ rowGap?: number | undefined;
98
+ gap?: number | undefined;
99
+ columnGap?: number | undefined;
111
100
  flexGrow?: number | undefined;
112
101
  flexShrink?: number | undefined;
113
102
  flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
@@ -136,32 +125,13 @@ declare const _default: {
136
125
  paddingStart?: import("react-native").DimensionValue | undefined;
137
126
  paddingTop?: import("react-native").DimensionValue | undefined;
138
127
  paddingVertical?: import("react-native").DimensionValue | undefined;
139
- position?: "absolute" | "relative" | "static" | undefined;
128
+ position?: "absolute" | "relative" | undefined;
140
129
  right?: import("react-native").DimensionValue | undefined;
141
130
  start?: import("react-native").DimensionValue | undefined;
142
131
  top?: import("react-native").DimensionValue | undefined;
143
132
  width?: import("react-native").DimensionValue | undefined;
144
133
  zIndex?: number | undefined;
145
134
  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;
165
135
  shadowColor?: import("react-native").ColorValue | undefined;
166
136
  shadowOffset?: Readonly<{
167
137
  width: number;
@@ -169,7 +139,7 @@ declare const _default: {
169
139
  }> | undefined;
170
140
  shadowOpacity?: import("react-native").AnimatableNumericValue | undefined;
171
141
  shadowRadius?: number | undefined;
172
- transform?: string | readonly (({
142
+ transform?: string | (({
173
143
  perspective: import("react-native").AnimatableNumericValue;
174
144
  } & {
175
145
  rotate?: undefined;
@@ -290,7 +260,7 @@ declare const _default: {
290
260
  skewY?: undefined;
291
261
  matrix?: undefined;
292
262
  }) | ({
293
- translateX: import("react-native").AnimatableNumericValue | `${number}%`;
263
+ translateX: import("react-native").AnimatableNumericValue;
294
264
  } & {
295
265
  perspective?: undefined;
296
266
  rotate?: undefined;
@@ -305,7 +275,7 @@ declare const _default: {
305
275
  skewY?: undefined;
306
276
  matrix?: undefined;
307
277
  }) | ({
308
- translateY: import("react-native").AnimatableNumericValue | `${number}%`;
278
+ translateY: import("react-native").AnimatableNumericValue;
309
279
  } & {
310
280
  perspective?: undefined;
311
281
  rotate?: undefined;
@@ -384,7 +354,7 @@ declare const _default: {
384
354
  fontFamily?: string | undefined;
385
355
  fontSize?: number | undefined;
386
356
  fontStyle?: "normal" | "italic" | 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;
357
+ fontWeight?: "normal" | "bold" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900" | undefined;
388
358
  letterSpacing?: number | undefined;
389
359
  lineHeight?: number | undefined;
390
360
  textAlign?: "auto" | "left" | "right" | "center" | "justify" | undefined;
@@ -407,41 +377,31 @@ declare const _default: {
407
377
  borderBlockEndColor?: import("react-native").ColorValue | undefined;
408
378
  borderBlockStartColor?: import("react-native").ColorValue | undefined;
409
379
  borderBottomColor?: import("react-native").ColorValue | 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;
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;
414
384
  borderColor?: import("react-native").ColorValue | undefined;
415
385
  borderCurve?: "circular" | "continuous" | undefined;
416
386
  borderEndColor?: import("react-native").ColorValue | undefined;
417
- borderEndEndRadius?: string | import("react-native").AnimatableNumericValue | undefined;
418
- borderEndStartRadius?: string | import("react-native").AnimatableNumericValue | undefined;
387
+ borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
388
+ borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
419
389
  borderLeftColor?: import("react-native").ColorValue | undefined;
420
- borderRadius?: string | import("react-native").AnimatableNumericValue | undefined;
390
+ borderRadius?: import("react-native").AnimatableNumericValue | undefined;
421
391
  borderRightColor?: import("react-native").ColorValue | undefined;
422
392
  borderStartColor?: import("react-native").ColorValue | undefined;
423
- borderStartEndRadius?: string | import("react-native").AnimatableNumericValue | undefined;
424
- borderStartStartRadius?: string | import("react-native").AnimatableNumericValue | undefined;
393
+ borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
394
+ borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
425
395
  borderStyle?: "solid" | "dotted" | "dashed" | undefined;
426
396
  borderTopColor?: import("react-native").ColorValue | 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;
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;
435
401
  opacity?: import("react-native").AnimatableNumericValue | undefined;
436
402
  elevation?: number | undefined;
437
403
  pointerEvents?: "auto" | "none" | "box-none" | "box-only" | 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;
404
+ alignContent?: "center" | "flex-start" | "flex-end" | "stretch" | "space-between" | "space-around" | undefined;
445
405
  alignItems?: import("react-native").FlexAlignType | undefined;
446
406
  alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
447
407
  aspectRatio?: string | number | undefined;
@@ -453,15 +413,14 @@ declare const _default: {
453
413
  borderTopWidth?: number | undefined;
454
414
  borderWidth?: number | undefined;
455
415
  bottom?: import("react-native").DimensionValue | undefined;
456
- boxSizing?: "border-box" | "content-box" | undefined;
457
- display?: "none" | "flex" | "contents" | undefined;
416
+ display?: "none" | "flex" | undefined;
458
417
  end?: import("react-native").DimensionValue | undefined;
459
418
  flex?: number | undefined;
460
419
  flexBasis?: import("react-native").DimensionValue | undefined;
461
420
  flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
462
- rowGap?: string | number | undefined;
463
- gap?: string | number | undefined;
464
- columnGap?: string | number | undefined;
421
+ rowGap?: number | undefined;
422
+ gap?: number | undefined;
423
+ columnGap?: number | undefined;
465
424
  flexGrow?: number | undefined;
466
425
  flexShrink?: number | undefined;
467
426
  flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
@@ -491,32 +450,13 @@ declare const _default: {
491
450
  paddingStart?: import("react-native").DimensionValue | undefined;
492
451
  paddingTop?: import("react-native").DimensionValue | undefined;
493
452
  paddingVertical?: import("react-native").DimensionValue | undefined;
494
- position?: "absolute" | "relative" | "static" | undefined;
453
+ position?: "absolute" | "relative" | undefined;
495
454
  right?: import("react-native").DimensionValue | undefined;
496
455
  start?: import("react-native").DimensionValue | undefined;
497
456
  top?: import("react-native").DimensionValue | undefined;
498
457
  width?: import("react-native").DimensionValue | undefined;
499
458
  zIndex?: number | undefined;
500
459
  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;
520
460
  shadowColor?: import("react-native").ColorValue | undefined;
521
461
  shadowOffset?: Readonly<{
522
462
  width: number;
@@ -524,7 +464,7 @@ declare const _default: {
524
464
  }> | undefined;
525
465
  shadowOpacity?: import("react-native").AnimatableNumericValue | undefined;
526
466
  shadowRadius?: number | undefined;
527
- transform?: string | readonly (({
467
+ transform?: string | (({
528
468
  perspective: import("react-native").AnimatableNumericValue;
529
469
  } & {
530
470
  rotate?: undefined;
@@ -645,7 +585,7 @@ declare const _default: {
645
585
  skewY?: undefined;
646
586
  matrix?: undefined;
647
587
  }) | ({
648
- translateX: import("react-native").AnimatableNumericValue | `${number}%`;
588
+ translateX: import("react-native").AnimatableNumericValue;
649
589
  } & {
650
590
  perspective?: undefined;
651
591
  rotate?: undefined;
@@ -660,7 +600,7 @@ declare const _default: {
660
600
  skewY?: undefined;
661
601
  matrix?: undefined;
662
602
  }) | ({
663
- translateY: import("react-native").AnimatableNumericValue | `${number}%`;
603
+ translateY: import("react-native").AnimatableNumericValue;
664
604
  } & {
665
605
  perspective?: undefined;
666
606
  rotate?: undefined;