react-native-ui-lib 7.45.0-snapshot.7266 → 7.46.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.
- package/babel.config.js +0 -12
- package/index.js +0 -1
- package/lib/android/build.gradle +5 -5
- package/lib/android/src/main/java/com/wix/reactnativeuilib/UiLibPackageList.java +2 -0
- package/lib/android/src/main/java/com/wix/reactnativeuilib/highlighterview/HighlighterViewManager.java +23 -31
- package/lib/android/src/main/java/com/wix/reactnativeuilib/highlighterview/ReactHacks.java +30 -0
- package/lib/android/src/main/java/com/wix/reactnativeuilib/highlighterview/ReflectionUtils.java +34 -0
- package/lib/android/src/main/java/com/wix/reactnativeuilib/keyboardinput/utils/RuntimeUtils.java +1 -1
- package/lib/android/src/main/java/com/wix/reactnativeuilib/textinput/DefaultKeyListener.java +33 -0
- package/lib/android/src/main/java/com/wix/reactnativeuilib/textinput/KeyListenerProxy.java +53 -0
- package/lib/android/src/main/java/com/wix/reactnativeuilib/textinput/TextInputDelKeyHandlerModule.java +54 -0
- package/lib/android/src/main/java/com/wix/reactnativeuilib/textinput/TextInputDelKeyHandlerPackage.java +28 -0
- package/lib/android/src/main/java/com/wix/reactnativeuilib/textinput/ViewUtils.java +36 -0
- package/lib/components/{HighlighterOverlayView/index.d.ts → HighlighterOverlayView.d.ts} +1 -1
- package/lib/components/HighlighterOverlayView.js +40 -0
- package/lib/components/{HighlighterOverlayView/index.web.d.ts → HighlighterOverlayView.web.d.ts} +1 -1
- package/lib/components/Keyboard/{KeyboardAccessoryView → KeyboardInput}/CustomKeyboardView/CustomKeyboardView.android.d.ts +2 -5
- package/lib/components/Keyboard/KeyboardInput/CustomKeyboardView/CustomKeyboardView.android.js +28 -0
- package/lib/components/Keyboard/{KeyboardAccessoryView → KeyboardInput}/CustomKeyboardView/CustomKeyboardView.ios.d.ts +1 -1
- package/lib/components/Keyboard/{KeyboardAccessoryView → KeyboardInput}/CustomKeyboardView/CustomKeyboardView.ios.js +3 -3
- package/lib/components/Keyboard/{KeyboardAccessoryView/CustomKeyboardView → KeyboardInput}/CustomKeyboardViewBase.d.ts +0 -3
- package/lib/components/Keyboard/{KeyboardAccessoryView/CustomKeyboardView → KeyboardInput}/CustomKeyboardViewBase.js +1 -1
- package/lib/components/Keyboard/{KeyboardAccessoryView/index.d.ts → KeyboardInput/KeyboardAccessoryView.d.ts} +1 -11
- package/lib/components/Keyboard/{KeyboardAccessoryView/index.js → KeyboardInput/KeyboardAccessoryView.js} +5 -31
- package/lib/components/Keyboard/{KeyboardAccessoryView/KeyboardRegistry/index.d.ts → KeyboardInput/KeyboardRegistry.d.ts} +1 -1
- package/lib/components/Keyboard/{KeyboardAccessoryView/KeyboardRegistry/index.js → KeyboardInput/KeyboardRegistry.js} +1 -1
- package/lib/components/Keyboard/{KeyboardAccessoryView/KeyboardRegistry → KeyboardInput}/__tests__/KeyboardRegistry.spec.js +1 -1
- package/lib/components/Keyboard/{KeyboardAccessoryView → KeyboardInput}/keyboardAccessoryView.api.json +5 -5
- package/lib/components/Keyboard/{KeyboardAccessoryView/KeyboardRegistry → KeyboardInput}/keyboardRegistry.api.json +9 -9
- package/lib/components/Keyboard/KeyboardInput/utils/KeyboardUtils.d.ts +11 -0
- package/lib/components/Keyboard/KeyboardInput/utils/KeyboardUtils.js +17 -0
- package/lib/components/Keyboard/{KeyboardAccessoryView/KeyboardRegistry/EventEmitterManager → KeyboardInput/utils}/__tests__/EventEmitterManager.spec.js +1 -1
- package/lib/components/Keyboard/{KeyboardAwareInsetsView/index.d.ts → KeyboardTracking/KeyboardAwareInsetsView.d.ts} +1 -1
- package/lib/components/Keyboard/{KeyboardAwareInsetsView/index.js → KeyboardTracking/KeyboardAwareInsetsView.js} +1 -1
- package/lib/components/Keyboard/{KeyboardTrackingView → KeyboardTracking/KeyboardTrackingView}/KeyboardTrackingView.ios.d.ts +4 -1
- package/lib/components/Keyboard/{KeyboardTrackingView → KeyboardTracking/KeyboardTrackingView}/KeyboardTrackingView.ios.js +8 -5
- package/lib/components/Keyboard/{KeyboardTrackingView → KeyboardTracking/KeyboardTrackingView}/index.d.ts +2 -2
- package/lib/components/Keyboard/{KeyboardTrackingView → KeyboardTracking/KeyboardTrackingView}/keyboardTrackingView.api.json +20 -11
- package/lib/components/Keyboard/index.d.ts +6 -6
- package/lib/components/Keyboard/index.js +6 -6
- package/lib/components/SafeArea/SafeAreaInsetsManager.d.ts +7 -21
- package/lib/components/SafeArea/SafeAreaInsetsManager.js +31 -95
- package/lib/components/SafeArea/SafeAreaSpacerView.d.ts +2 -2
- package/lib/components/SafeArea/SafeAreaSpacerView.js +9 -63
- package/lib/components/index.d.ts +1 -1
- package/lib/components/index.js +1 -1
- package/lib/ios/reactnativeuilib/keyboardinput/rctcustomInputcontroller/RCTCustomInputControllerTemp.m +8 -52
- package/lib/ios/reactnativeuilib/keyboardinput/rctcustomInputcontroller/RCTCustomKeyboardViewControllerTemp.h +7 -1
- package/lib/ios/reactnativeuilib/keyboardinput/rctcustomInputcontroller/RCTCustomKeyboardViewControllerTemp.m +1 -1
- package/lib/ios/reactnativeuilib/keyboardtrackingview/KeyboardTrackingViewTempManager.m +41 -109
- package/lib/package.json +1 -1
- package/lib/react-native.config.js +3 -1
- package/metro.config.js +2 -2
- package/package.json +24 -24
- package/panningViews.d.ts +2 -0
- package/panningViews.js +1 -0
- package/react-native.config.js +3 -1
- package/sharedTransition.d.ts +2 -0
- package/sharedTransition.js +1 -0
- package/src/commons/Constants.js +5 -2
- package/src/components/KeyboardAwareScrollView/KeyboardAwareBase.js +1 -5
- package/src/components/actionSheet/index.d.ts +12 -2
- package/src/components/actionSheet/index.js +42 -3
- package/src/components/badge/index.d.ts +47 -107
- package/src/components/button/Button.driver.new.d.ts +1 -0
- package/src/components/button/Button.driver.new.js +4 -0
- package/src/components/button/button.api.json +1 -1
- package/src/components/button/index.d.ts +23 -53
- package/src/components/button/types.d.ts +1 -0
- package/src/components/colorPicker/ColorPickerDialog.d.ts +1 -1
- package/src/components/colorPicker/ColorPickerDialog.js +1 -1
- package/src/components/dateTimePicker/index.d.ts +5 -186
- package/src/components/dateTimePicker/index.js +4 -3
- package/src/components/dialog/DialogDismissibleView.d.ts +34 -0
- package/src/components/dialog/DialogDismissibleView.js +184 -0
- package/src/components/dialog/OverlayFadingBackground.d.ts +14 -0
- package/src/components/dialog/OverlayFadingBackground.js +45 -0
- package/src/components/dialog/dialog.api.json +37 -31
- package/src/components/dialog/index.d.ts +105 -13
- package/src/components/dialog/index.js +212 -204
- package/src/components/drawer/Swipeable.js +2 -1
- package/src/components/drawer/index.js +25 -31
- package/src/components/fadedScrollView/index.js +2 -7
- package/src/components/featureHighlight/index.d.ts +1 -1
- package/src/components/index.js +19 -0
- package/src/components/modal/index.d.ts +0 -5
- package/src/components/modal/index.js +10 -14
- package/src/components/modal/modal.api.json +0 -5
- package/src/components/panningViews/asPanViewConsumer.d.ts +3 -0
- package/src/components/panningViews/asPanViewConsumer.js +16 -0
- package/src/components/panningViews/panDismissibleView.d.ts +51 -0
- package/src/components/panningViews/panDismissibleView.js +350 -0
- package/src/components/panningViews/panGestureView.d.ts +23 -0
- package/src/components/panningViews/panGestureView.js +156 -0
- package/src/components/panningViews/panListenerView.d.ts +66 -0
- package/src/components/panningViews/panListenerView.js +155 -0
- package/src/components/panningViews/panResponderView.d.ts +19 -0
- package/src/components/panningViews/panResponderView.js +79 -0
- package/src/components/panningViews/panningContext.d.ts +3 -0
- package/src/components/panningViews/panningContext.js +4 -0
- package/src/components/panningViews/panningProvider.d.ts +73 -0
- package/src/components/panningViews/panningProvider.js +101 -0
- package/src/components/picker/Picker.driver.new.d.ts +3 -2
- package/src/components/picker/Picker.driver.new.js +3 -3
- package/src/components/picker/PickerItem.js +20 -6
- package/src/components/picker/PickerPresenter.d.ts +1 -0
- package/src/components/picker/PickerPresenter.js +23 -1
- package/src/components/picker/api/picker.api.json +1 -0
- package/src/components/picker/api/pickerItem.api.json +5 -0
- package/src/components/picker/helpers/useFieldType.d.ts +23 -53
- package/src/components/picker/helpers/usePickerLabel.d.ts +1 -1
- package/src/components/picker/helpers/usePickerLabel.js +3 -2
- package/src/components/picker/helpers/usePickerMigrationWarnings.d.ts +1 -1
- package/src/components/picker/helpers/usePickerMigrationWarnings.js +12 -0
- package/src/components/picker/helpers/usePickerSearch.d.ts +1 -1
- package/src/components/picker/helpers/usePickerSearch.js +8 -4
- package/src/components/picker/helpers/usePickerSelection.d.ts +1 -1
- package/src/components/picker/helpers/usePickerSelection.js +10 -2
- package/src/components/picker/index.js +22 -4
- package/src/components/picker/types.d.ts +24 -1
- package/src/components/segmentedControl/index.js +3 -3
- package/src/components/sharedTransition/ShareTransitionContext.js +3 -0
- package/src/components/sharedTransition/SharedArea.js +153 -0
- package/src/components/sharedTransition/SourceElement.js +44 -0
- package/src/components/sharedTransition/TargetElement.js +38 -0
- package/src/components/sharedTransition/index.js +9 -0
- package/src/components/slider/GradientSlider.d.ts +1 -1
- package/src/components/sortableGridList/SortableItem.js +4 -13
- package/src/components/sortableList/SortableListItem.js +4 -13
- package/src/components/stackAggregator/index.js +11 -16
- package/src/components/text/Text.driver.new.d.ts +2 -2
- package/src/components/text/Text.driver.new.js +2 -2
- package/src/components/textField/Input.js +1 -0
- package/src/components/textField/TextField.driver.new.d.ts +3 -2
- package/src/components/textField/TextField.driver.new.js +2 -2
- package/src/components/textField/presets/outline.d.ts +46 -106
- package/src/components/textField/presets/underline.d.ts +46 -106
- package/src/components/textField/usePreset.d.ts +44 -72
- package/src/incubator/dialog/dialog.api.json +54 -0
- package/src/{components → incubator}/dialog/dialogHeader.api.json +2 -2
- package/src/incubator/dialog/index.d.ts +15 -0
- package/src/incubator/dialog/index.js +218 -0
- package/src/{components → incubator}/dialog/types.d.ts +19 -0
- package/src/{components → incubator}/dialog/types.js +3 -1
- package/src/{components → incubator}/dialog/useDialogContent.d.ts +1 -1
- package/src/incubator/expandableOverlay/ExpandableOverlay.driver.js +1 -1
- package/src/incubator/expandableOverlay/index.d.ts +3 -42
- package/src/incubator/expandableOverlay/index.js +4 -1
- package/src/{hooks/useHiddenLocation/index.d.ts → incubator/hooks/useHiddenLocation.d.ts} +1 -1
- package/src/{hooks/useHiddenLocation/index.web.d.ts → incubator/hooks/useHiddenLocation.web.d.ts} +1 -1
- package/src/incubator/index.d.ts +2 -0
- package/src/incubator/index.js +2 -0
- package/src/{components → incubator}/panView/index.d.ts +3 -3
- package/src/{components → incubator}/panView/index.js +4 -4
- package/src/{components → incubator}/panView/usePanGesture.d.ts +1 -1
- package/src/incubator/toast/Toast.driver.new.d.ts +1 -0
- package/src/incubator/toast/index.js +1 -1
- package/src/index.d.ts +10 -3
- package/src/index.js +160 -41
- package/src/testkit/index.d.ts +1 -1
- package/src/testkit/index.js +1 -1
- package/src/testkit/new/Component.driver.d.ts +1 -4
- package/src/testkit/new/Component.driver.js +3 -3
- package/lib/components/HighlighterOverlayView/index.js +0 -49
- package/lib/components/Keyboard/KeyboardAccessoryView/CustomKeyboardView/CustomKeyboardView.android.js +0 -51
- package/lib/components/Keyboard/KeyboardAccessoryView/KeyboardUtils/index.d.ts +0 -26
- package/lib/components/Keyboard/KeyboardAccessoryView/KeyboardUtils/index.js +0 -91
- package/lib/components/SafeArea/__tests__/SafeAreaInsetsManager.spec.js +0 -274
- package/lib/components/SafeArea/index.d.ts +0 -10
- package/lib/components/SafeArea/index.js +0 -11
- package/panView.d.ts +0 -2
- package/panView.js +0 -1
- /package/lib/components/{HighlighterOverlayView/index.web.js → HighlighterOverlayView.web.js} +0 -0
- /package/lib/components/Keyboard/{KeyboardAccessoryView → KeyboardInput}/CustomKeyboardView/index.d.ts +0 -0
- /package/lib/components/Keyboard/{KeyboardAccessoryView → KeyboardInput}/CustomKeyboardView/index.js +0 -0
- /package/lib/components/Keyboard/{KeyboardAccessoryView → KeyboardInput}/CustomKeyboardView/index.web.d.ts +0 -0
- /package/lib/components/Keyboard/{KeyboardAccessoryView → KeyboardInput}/CustomKeyboardView/index.web.js +0 -0
- /package/lib/components/Keyboard/{KeyboardAccessoryView → KeyboardInput}/TextInputKeyboardManager/TextInputKeyboardManager.android.d.ts +0 -0
- /package/lib/components/Keyboard/{KeyboardAccessoryView → KeyboardInput}/TextInputKeyboardManager/TextInputKeyboardManager.android.js +0 -0
- /package/lib/components/Keyboard/{KeyboardAccessoryView → KeyboardInput}/TextInputKeyboardManager/TextInputKeyboardManager.ios.d.ts +0 -0
- /package/lib/components/Keyboard/{KeyboardAccessoryView → KeyboardInput}/TextInputKeyboardManager/TextInputKeyboardManager.ios.js +0 -0
- /package/lib/components/Keyboard/{KeyboardAccessoryView → KeyboardInput}/TextInputKeyboardManager/index.d.ts +0 -0
- /package/lib/components/Keyboard/{KeyboardAccessoryView → KeyboardInput}/TextInputKeyboardManager/index.js +0 -0
- /package/lib/components/Keyboard/{KeyboardAccessoryView/KeyboardRegistry/EventEmitterManager/index.d.ts → KeyboardInput/utils/EventEmitterManager.d.ts} +0 -0
- /package/lib/components/Keyboard/{KeyboardAccessoryView/KeyboardRegistry/EventEmitterManager/index.js → KeyboardInput/utils/EventEmitterManager.js} +0 -0
- /package/lib/components/Keyboard/{KeyboardTrackingView → KeyboardTracking/KeyboardTrackingView}/KeyboardTrackingView.android.d.ts +0 -0
- /package/lib/components/Keyboard/{KeyboardTrackingView → KeyboardTracking/KeyboardTrackingView}/KeyboardTrackingView.android.js +0 -0
- /package/lib/components/Keyboard/{KeyboardTrackingView → KeyboardTracking/KeyboardTrackingView}/index.js +0 -0
- /package/lib/components/Keyboard/{KeyboardTrackingView → KeyboardTracking/KeyboardTrackingView}/index.web.d.ts +0 -0
- /package/lib/components/Keyboard/{KeyboardTrackingView → KeyboardTracking/KeyboardTrackingView}/index.web.js +0 -0
- /package/lib/components/Keyboard/{KeyboardAwareInsetsView → KeyboardTracking}/keyboardAwareInsetsView.api.json +0 -0
- /package/src/{components → incubator}/dialog/Dialog.driver.new.d.ts +0 -0
- /package/src/{components → incubator}/dialog/Dialog.driver.new.js +0 -0
- /package/src/{components → incubator}/dialog/DialogHeader.d.ts +0 -0
- /package/src/{components → incubator}/dialog/DialogHeader.js +0 -0
- /package/src/{components → incubator}/dialog/useDialogContent.js +0 -0
- /package/src/{hooks/useHiddenLocation/index.js → incubator/hooks/useHiddenLocation.js} +0 -0
- /package/src/{hooks/useHiddenLocation/index.web.js → incubator/hooks/useHiddenLocation.web.js} +0 -0
- /package/src/{components → incubator}/panView/panningUtil.d.ts +0 -0
- /package/src/{components → incubator}/panView/panningUtil.js +0 -0
- /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?: "
|
|
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?:
|
|
57
|
-
borderBottomLeftRadius?:
|
|
58
|
-
borderBottomRightRadius?:
|
|
59
|
-
borderBottomStartRadius?:
|
|
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?:
|
|
64
|
-
borderEndStartRadius?:
|
|
63
|
+
borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
64
|
+
borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
65
65
|
borderLeftColor?: import("react-native").ColorValue | undefined;
|
|
66
|
-
borderRadius?:
|
|
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?:
|
|
70
|
-
borderStartStartRadius?:
|
|
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?:
|
|
74
|
-
borderTopLeftRadius?:
|
|
75
|
-
borderTopRightRadius?:
|
|
76
|
-
borderTopStartRadius?:
|
|
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
|
-
|
|
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
|
-
|
|
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?:
|
|
109
|
-
gap?:
|
|
110
|
-
columnGap?:
|
|
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" |
|
|
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 |
|
|
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
|
|
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
|
|
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?: "
|
|
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?:
|
|
411
|
-
borderBottomLeftRadius?:
|
|
412
|
-
borderBottomRightRadius?:
|
|
413
|
-
borderBottomStartRadius?:
|
|
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?:
|
|
418
|
-
borderEndStartRadius?:
|
|
387
|
+
borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
388
|
+
borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
419
389
|
borderLeftColor?: import("react-native").ColorValue | undefined;
|
|
420
|
-
borderRadius?:
|
|
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?:
|
|
424
|
-
borderStartStartRadius?:
|
|
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?:
|
|
428
|
-
borderTopLeftRadius?:
|
|
429
|
-
borderTopRightRadius?:
|
|
430
|
-
borderTopStartRadius?:
|
|
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
|
-
|
|
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
|
-
|
|
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?:
|
|
463
|
-
gap?:
|
|
464
|
-
columnGap?:
|
|
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" |
|
|
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 |
|
|
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
|
|
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
|
|
603
|
+
translateY: import("react-native").AnimatableNumericValue;
|
|
664
604
|
} & {
|
|
665
605
|
perspective?: undefined;
|
|
666
606
|
rotate?: undefined;
|