react-native-ui-lib 7.43.0 → 7.44.0-snapshot.7204
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.
- package/babel.config.js +12 -0
- package/index.js +1 -0
- package/lib/android/build.gradle +5 -5
- package/lib/android/src/main/java/com/wix/reactnativeuilib/UiLibPackageList.java +0 -2
- package/lib/android/src/main/java/com/wix/reactnativeuilib/highlighterview/HighlighterViewManager.java +31 -23
- package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/utils/RuntimeUtils.java +1 -1
- package/lib/components/HighlighterOverlayView/HighlighterViewNativeComponent.d.ts +61 -0
- package/lib/components/HighlighterOverlayView/HighlighterViewNativeComponent.js +2 -0
- package/lib/components/{HighlighterOverlayView.web.d.ts → HighlighterOverlayView/index.d.ts} +1 -1
- package/lib/components/HighlighterOverlayView/index.js +49 -0
- package/lib/components/Keyboard/{KeyboardInput → KeyboardAccessoryView}/CustomKeyboardView/CustomKeyboardView.android.d.ts +5 -2
- package/lib/components/Keyboard/KeyboardAccessoryView/CustomKeyboardView/CustomKeyboardView.android.js +51 -0
- package/lib/components/Keyboard/{KeyboardInput → KeyboardAccessoryView}/CustomKeyboardView/CustomKeyboardView.ios.d.ts +1 -1
- package/lib/components/Keyboard/{KeyboardInput → KeyboardAccessoryView}/CustomKeyboardView/CustomKeyboardView.ios.js +3 -3
- package/lib/components/Keyboard/{KeyboardInput → KeyboardAccessoryView/CustomKeyboardView}/CustomKeyboardViewBase.d.ts +3 -0
- package/lib/components/Keyboard/{KeyboardInput → KeyboardAccessoryView/CustomKeyboardView}/CustomKeyboardViewBase.js +1 -1
- package/lib/components/Keyboard/{KeyboardInput/utils → KeyboardAccessoryView/KeyboardRegistry/EventEmitterManager}/__tests__/EventEmitterManager.spec.js +1 -1
- package/lib/components/Keyboard/{KeyboardInput → KeyboardAccessoryView/KeyboardRegistry}/__tests__/KeyboardRegistry.spec.js +1 -1
- package/lib/components/Keyboard/{KeyboardInput/KeyboardRegistry.d.ts → KeyboardAccessoryView/KeyboardRegistry/index.d.ts} +1 -1
- package/lib/components/Keyboard/{KeyboardInput/KeyboardRegistry.js → KeyboardAccessoryView/KeyboardRegistry/index.js} +1 -1
- package/lib/components/Keyboard/{KeyboardInput → KeyboardAccessoryView/KeyboardRegistry}/keyboardRegistry.api.json +9 -9
- package/lib/components/Keyboard/KeyboardAccessoryView/KeyboardUtils/index.d.ts +26 -0
- package/lib/components/Keyboard/KeyboardAccessoryView/KeyboardUtils/index.js +91 -0
- package/lib/components/Keyboard/{KeyboardInput/KeyboardAccessoryView.d.ts → KeyboardAccessoryView/index.d.ts} +11 -1
- package/lib/components/Keyboard/{KeyboardInput/KeyboardAccessoryView.js → KeyboardAccessoryView/index.js} +31 -5
- package/lib/components/Keyboard/{KeyboardInput → KeyboardAccessoryView}/keyboardAccessoryView.api.json +5 -5
- package/lib/components/Keyboard/{KeyboardTracking/KeyboardAwareInsetsView.d.ts → KeyboardAwareInsetsView/index.d.ts} +1 -1
- package/lib/components/Keyboard/{KeyboardTracking/KeyboardAwareInsetsView.js → KeyboardAwareInsetsView/index.js} +1 -1
- package/lib/components/Keyboard/{KeyboardTracking/KeyboardTrackingView → KeyboardTrackingView}/KeyboardTrackingView.ios.d.ts +1 -4
- package/lib/components/Keyboard/{KeyboardTracking/KeyboardTrackingView → KeyboardTrackingView}/KeyboardTrackingView.ios.js +5 -8
- package/lib/components/Keyboard/KeyboardTrackingView/KeyboardTrackingViewNativeComponent.d.ts +58 -0
- package/lib/components/Keyboard/KeyboardTrackingView/KeyboardTrackingViewNativeComponent.js +2 -0
- package/lib/components/Keyboard/{KeyboardTracking/KeyboardTrackingView → KeyboardTrackingView}/index.d.ts +2 -2
- package/lib/components/Keyboard/{KeyboardTracking/KeyboardTrackingView → KeyboardTrackingView}/keyboardTrackingView.api.json +11 -20
- package/lib/components/Keyboard/index.d.ts +6 -6
- package/lib/components/Keyboard/index.js +6 -6
- package/lib/components/SafeArea/SafeAreaInsetsManager.d.ts +8 -3
- package/lib/components/SafeArea/SafeAreaInsetsManager.js +89 -23
- package/lib/components/SafeArea/SafeAreaSpacerView.js +60 -9
- package/lib/package.json +1 -1
- package/lib/react-native.config.js +1 -3
- package/metro.config.js +2 -2
- package/package.json +24 -24
- package/react-native.config.js +1 -3
- package/src/commons/Constants.d.ts +1 -0
- package/src/commons/Constants.js +15 -6
- package/src/components/KeyboardAwareScrollView/KeyboardAwareBase.js +5 -1
- package/src/components/badge/index.d.ts +107 -47
- package/src/components/button/button.api.json +1 -1
- package/src/components/button/index.d.ts +53 -23
- package/src/components/button/types.d.ts +0 -1
- package/src/components/chip/index.js +37 -14
- package/src/components/drawer/Swipeable.js +1 -2
- package/src/components/drawer/index.js +31 -25
- package/src/components/expandableSection/index.js +3 -2
- package/src/components/fadedScrollView/index.js +7 -2
- package/src/components/picker/helpers/useFieldType.d.ts +53 -23
- package/src/components/slider/GradientSlider.d.ts +1 -1
- package/src/components/sortableGridList/SortableItem.js +13 -4
- package/src/components/sortableList/SortableListItem.js +13 -4
- package/src/components/stackAggregator/index.js +16 -11
- package/src/components/textField/Input.js +0 -1
- package/src/components/textField/presets/outline.d.ts +106 -46
- package/src/components/textField/presets/underline.d.ts +106 -46
- package/src/components/textField/usePreset.d.ts +72 -44
- package/src/incubator/dialog/index.js +1 -1
- package/src/incubator/dialog/useDialogContent.d.ts +1 -1
- package/lib/android/src/main/java/com/wix/reactnativeuilib/highlighterview/ReactHacks.java +0 -30
- package/lib/android/src/main/java/com/wix/reactnativeuilib/highlighterview/ReflectionUtils.java +0 -34
- package/lib/android/src/main/java/com/wix/reactnativeuilib/textinput/DefaultKeyListener.java +0 -33
- package/lib/android/src/main/java/com/wix/reactnativeuilib/textinput/KeyListenerProxy.java +0 -53
- package/lib/android/src/main/java/com/wix/reactnativeuilib/textinput/TextInputDelKeyHandlerModule.java +0 -54
- package/lib/android/src/main/java/com/wix/reactnativeuilib/textinput/TextInputDelKeyHandlerPackage.java +0 -28
- package/lib/android/src/main/java/com/wix/reactnativeuilib/textinput/ViewUtils.java +0 -36
- package/lib/components/HighlighterOverlayView.js +0 -40
- package/lib/components/Keyboard/KeyboardInput/CustomKeyboardView/CustomKeyboardView.android.js +0 -28
- package/lib/components/Keyboard/KeyboardInput/utils/KeyboardUtils.d.ts +0 -11
- package/lib/components/Keyboard/KeyboardInput/utils/KeyboardUtils.js +0 -17
- /package/lib/components/{HighlighterOverlayView.d.ts → HighlighterOverlayView/index.web.d.ts} +0 -0
- /package/lib/components/{HighlighterOverlayView.web.js → HighlighterOverlayView/index.web.js} +0 -0
- /package/lib/components/Keyboard/{KeyboardInput → KeyboardAccessoryView}/CustomKeyboardView/index.d.ts +0 -0
- /package/lib/components/Keyboard/{KeyboardInput → KeyboardAccessoryView}/CustomKeyboardView/index.js +0 -0
- /package/lib/components/Keyboard/{KeyboardInput → KeyboardAccessoryView}/CustomKeyboardView/index.web.d.ts +0 -0
- /package/lib/components/Keyboard/{KeyboardInput → KeyboardAccessoryView}/CustomKeyboardView/index.web.js +0 -0
- /package/lib/components/Keyboard/{KeyboardInput/utils/EventEmitterManager.d.ts → KeyboardAccessoryView/KeyboardRegistry/EventEmitterManager/index.d.ts} +0 -0
- /package/lib/components/Keyboard/{KeyboardInput/utils/EventEmitterManager.js → KeyboardAccessoryView/KeyboardRegistry/EventEmitterManager/index.js} +0 -0
- /package/lib/components/Keyboard/{KeyboardInput → KeyboardAccessoryView}/TextInputKeyboardManager/TextInputKeyboardManager.android.d.ts +0 -0
- /package/lib/components/Keyboard/{KeyboardInput → KeyboardAccessoryView}/TextInputKeyboardManager/TextInputKeyboardManager.android.js +0 -0
- /package/lib/components/Keyboard/{KeyboardInput → KeyboardAccessoryView}/TextInputKeyboardManager/TextInputKeyboardManager.ios.d.ts +0 -0
- /package/lib/components/Keyboard/{KeyboardInput → KeyboardAccessoryView}/TextInputKeyboardManager/TextInputKeyboardManager.ios.js +0 -0
- /package/lib/components/Keyboard/{KeyboardInput → KeyboardAccessoryView}/TextInputKeyboardManager/index.d.ts +0 -0
- /package/lib/components/Keyboard/{KeyboardInput → KeyboardAccessoryView}/TextInputKeyboardManager/index.js +0 -0
- /package/lib/components/Keyboard/{KeyboardTracking → KeyboardAwareInsetsView}/keyboardAwareInsetsView.api.json +0 -0
- /package/lib/components/Keyboard/{KeyboardTracking/KeyboardTrackingView → KeyboardTrackingView}/KeyboardTrackingView.android.d.ts +0 -0
- /package/lib/components/Keyboard/{KeyboardTracking/KeyboardTrackingView → KeyboardTrackingView}/KeyboardTrackingView.android.js +0 -0
- /package/lib/components/Keyboard/{KeyboardTracking/KeyboardTrackingView → KeyboardTrackingView}/index.js +0 -0
- /package/lib/components/Keyboard/{KeyboardTracking/KeyboardTrackingView → KeyboardTrackingView}/index.web.d.ts +0 -0
- /package/lib/components/Keyboard/{KeyboardTracking/KeyboardTrackingView → KeyboardTrackingView}/index.web.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?: "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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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;
|