react-native-timer-picker 2.1.0 → 2.2.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/README.md +227 -152
- package/dist/commonjs/components/DurationScroll/DurationScroll.js +417 -0
- package/dist/commonjs/components/DurationScroll/DurationScroll.js.map +1 -0
- package/dist/commonjs/components/DurationScroll/index.js +20 -392
- package/dist/commonjs/components/DurationScroll/index.js.map +1 -1
- package/dist/commonjs/components/DurationScroll/types.js.map +1 -1
- package/dist/commonjs/components/Modal/Modal.js +107 -0
- package/dist/commonjs/components/Modal/Modal.js.map +1 -0
- package/dist/commonjs/components/Modal/index.js +20 -101
- package/dist/commonjs/components/Modal/index.js.map +1 -1
- package/dist/commonjs/components/TimerPicker/TimerPicker.js +225 -0
- package/dist/commonjs/components/TimerPicker/TimerPicker.js.map +1 -0
- package/dist/commonjs/components/TimerPicker/index.js +29 -166
- package/dist/commonjs/components/TimerPicker/index.js.map +1 -1
- package/dist/commonjs/components/TimerPicker/styles.js +1 -1
- package/dist/commonjs/components/TimerPicker/styles.js.map +1 -1
- package/dist/commonjs/components/TimerPicker/types.js.map +1 -1
- package/dist/commonjs/components/TimerPickerModal/TimerPickerModal.js +143 -0
- package/dist/commonjs/components/TimerPickerModal/TimerPickerModal.js.map +1 -0
- package/dist/commonjs/components/TimerPickerModal/index.js +30 -131
- package/dist/commonjs/components/TimerPickerModal/index.js.map +1 -1
- package/dist/commonjs/components/TimerPickerModal/types.js.map +1 -1
- package/dist/commonjs/index.js +9 -13
- package/dist/commonjs/index.js.map +1 -1
- package/dist/commonjs/tests/TimerPicker.test.js +4 -1
- package/dist/commonjs/tests/TimerPicker.test.js.map +1 -1
- package/dist/commonjs/utils/colorToRgba.js +35 -4
- package/dist/commonjs/utils/colorToRgba.js.map +1 -1
- package/dist/commonjs/utils/generateNumbers.js +67 -0
- package/dist/commonjs/utils/generateNumbers.js.map +1 -1
- package/dist/commonjs/utils/getAdjustedLimit.js +25 -0
- package/dist/commonjs/utils/getAdjustedLimit.js.map +1 -1
- package/dist/commonjs/utils/getDurationAndIndexFromScrollOffset.js +38 -0
- package/dist/commonjs/utils/getDurationAndIndexFromScrollOffset.js.map +1 -1
- package/dist/commonjs/utils/getInitialScrollIndex.js +38 -0
- package/dist/commonjs/utils/getInitialScrollIndex.js.map +1 -1
- package/dist/commonjs/utils/getSafeInitialValue.js +28 -0
- package/dist/commonjs/utils/getSafeInitialValue.js.map +1 -1
- package/dist/commonjs/utils/padNumber.js +25 -0
- package/dist/commonjs/utils/padNumber.js.map +1 -1
- package/dist/module/components/DurationScroll/DurationScroll.js +410 -0
- package/dist/module/components/DurationScroll/DurationScroll.js.map +1 -0
- package/dist/module/components/DurationScroll/index.js +2 -390
- package/dist/module/components/DurationScroll/index.js.map +1 -1
- package/dist/module/components/DurationScroll/types.js.map +1 -1
- package/dist/module/components/Modal/Modal.js +99 -0
- package/dist/module/components/Modal/Modal.js.map +1 -0
- package/dist/module/components/Modal/index.js +2 -98
- package/dist/module/components/Modal/index.js.map +1 -1
- package/dist/module/components/TimerPicker/TimerPicker.js +217 -0
- package/dist/module/components/TimerPicker/TimerPicker.js.map +1 -0
- package/dist/module/components/TimerPicker/index.js +3 -166
- package/dist/module/components/TimerPicker/index.js.map +1 -1
- package/dist/module/components/TimerPicker/styles.js +1 -1
- package/dist/module/components/TimerPicker/styles.js.map +1 -1
- package/dist/module/components/TimerPicker/types.js.map +1 -1
- package/dist/module/components/TimerPickerModal/TimerPickerModal.js +135 -0
- package/dist/module/components/TimerPickerModal/TimerPickerModal.js.map +1 -0
- package/dist/module/components/TimerPickerModal/index.js +3 -130
- package/dist/module/components/TimerPickerModal/index.js.map +1 -1
- package/dist/module/components/TimerPickerModal/types.js.map +1 -1
- package/dist/module/index.js +2 -6
- package/dist/module/index.js.map +1 -1
- package/dist/module/tests/TimerPicker.test.js +4 -1
- package/dist/module/tests/TimerPicker.test.js.map +1 -1
- package/dist/module/utils/colorToRgba.js +35 -4
- package/dist/module/utils/colorToRgba.js.map +1 -1
- package/dist/module/utils/generateNumbers.js +68 -0
- package/dist/module/utils/generateNumbers.js.map +1 -1
- package/dist/module/utils/getAdjustedLimit.js +25 -0
- package/dist/module/utils/getAdjustedLimit.js.map +1 -1
- package/dist/module/utils/getDurationAndIndexFromScrollOffset.js +38 -0
- package/dist/module/utils/getDurationAndIndexFromScrollOffset.js.map +1 -1
- package/dist/module/utils/getInitialScrollIndex.js +38 -0
- package/dist/module/utils/getInitialScrollIndex.js.map +1 -1
- package/dist/module/utils/getSafeInitialValue.js +28 -0
- package/dist/module/utils/getSafeInitialValue.js.map +1 -1
- package/dist/module/utils/padNumber.js +25 -0
- package/dist/module/utils/padNumber.js.map +1 -1
- package/dist/typescript/components/DurationScroll/DurationScroll.d.ts +4 -0
- package/dist/typescript/components/DurationScroll/index.d.ts +2 -4
- package/dist/typescript/components/DurationScroll/types.d.ts +13 -9
- package/dist/typescript/components/Modal/Modal.d.ts +5 -0
- package/dist/typescript/components/Modal/index.d.ts +2 -5
- package/dist/typescript/components/TimerPicker/TimerPicker.d.ts +4 -0
- package/dist/typescript/components/TimerPicker/index.d.ts +3 -4
- package/dist/typescript/components/TimerPicker/styles.d.ts +1169 -771
- package/dist/typescript/components/TimerPicker/types.d.ts +26 -10
- package/dist/typescript/components/TimerPickerModal/TimerPickerModal.d.ts +4 -0
- package/dist/typescript/components/TimerPickerModal/index.d.ts +3 -4
- package/dist/typescript/components/TimerPickerModal/styles.d.ts +722 -474
- package/dist/typescript/components/TimerPickerModal/types.d.ts +8 -5
- package/dist/typescript/index.d.ts +2 -6
- package/dist/typescript/utils/colorToRgba.d.ts +34 -0
- package/dist/typescript/utils/generateNumbers.d.ts +66 -0
- package/dist/typescript/utils/getAdjustedLimit.d.ts +27 -2
- package/dist/typescript/utils/getDurationAndIndexFromScrollOffset.d.ts +38 -0
- package/dist/typescript/utils/getInitialScrollIndex.d.ts +38 -0
- package/dist/typescript/utils/getSafeInitialValue.d.ts +29 -0
- package/dist/typescript/utils/padNumber.d.ts +25 -0
- package/package.json +10 -27
|
@@ -25,184 +25,244 @@ export declare const generateStyles: (customStyles: CustomTimerPickerStyles | un
|
|
|
25
25
|
pickerContainer: {
|
|
26
26
|
backfaceVisibility?: "visible" | "hidden" | undefined;
|
|
27
27
|
backgroundColor: string;
|
|
28
|
+
borderBlockColor?: import("react-native").ColorValue | undefined;
|
|
29
|
+
borderBlockEndColor?: import("react-native").ColorValue | undefined;
|
|
30
|
+
borderBlockStartColor?: import("react-native").ColorValue | undefined;
|
|
28
31
|
borderBottomColor?: import("react-native").ColorValue | undefined;
|
|
29
|
-
borderBottomEndRadius?:
|
|
30
|
-
borderBottomLeftRadius?:
|
|
31
|
-
borderBottomRightRadius?:
|
|
32
|
-
borderBottomStartRadius?:
|
|
33
|
-
borderBottomWidth?: number | undefined;
|
|
32
|
+
borderBottomEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
33
|
+
borderBottomLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
34
|
+
borderBottomRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
35
|
+
borderBottomStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
34
36
|
borderColor?: import("react-native").ColorValue | undefined;
|
|
37
|
+
borderCurve?: "circular" | "continuous" | undefined;
|
|
35
38
|
borderEndColor?: import("react-native").ColorValue | undefined;
|
|
39
|
+
borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
40
|
+
borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
36
41
|
borderLeftColor?: import("react-native").ColorValue | undefined;
|
|
37
|
-
|
|
38
|
-
borderRadius?: number | undefined;
|
|
42
|
+
borderRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
39
43
|
borderRightColor?: import("react-native").ColorValue | undefined;
|
|
40
|
-
borderRightWidth?: number | undefined;
|
|
41
44
|
borderStartColor?: import("react-native").ColorValue | undefined;
|
|
45
|
+
borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
46
|
+
borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
42
47
|
borderStyle?: "solid" | "dotted" | "dashed" | undefined;
|
|
43
48
|
borderTopColor?: import("react-native").ColorValue | undefined;
|
|
44
|
-
borderTopEndRadius?:
|
|
45
|
-
borderTopLeftRadius?:
|
|
46
|
-
borderTopRightRadius?:
|
|
47
|
-
borderTopStartRadius?:
|
|
48
|
-
|
|
49
|
-
borderWidth?: number | undefined;
|
|
50
|
-
opacity?: number | undefined;
|
|
51
|
-
testID?: string | undefined;
|
|
49
|
+
borderTopEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
50
|
+
borderTopLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
51
|
+
borderTopRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
52
|
+
borderTopStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
53
|
+
opacity?: import("react-native").AnimatableNumericValue | undefined;
|
|
52
54
|
elevation?: number | undefined;
|
|
55
|
+
pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined;
|
|
53
56
|
alignContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "stretch" | undefined;
|
|
54
57
|
alignItems?: import("react-native").FlexAlignType | undefined;
|
|
55
|
-
alignSelf?: import("react-native").FlexAlignType |
|
|
56
|
-
aspectRatio?: number | undefined;
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
58
|
+
alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
|
|
59
|
+
aspectRatio?: string | number | undefined;
|
|
60
|
+
borderBottomWidth?: number | undefined;
|
|
61
|
+
borderEndWidth?: number | undefined;
|
|
62
|
+
borderLeftWidth?: number | undefined;
|
|
63
|
+
borderRightWidth?: number | undefined;
|
|
64
|
+
borderStartWidth?: number | undefined;
|
|
65
|
+
borderTopWidth?: number | undefined;
|
|
66
|
+
borderWidth?: number | undefined;
|
|
67
|
+
bottom?: import("react-native").DimensionValue | undefined;
|
|
60
68
|
display?: "none" | "flex" | undefined;
|
|
61
|
-
end?:
|
|
69
|
+
end?: import("react-native").DimensionValue | undefined;
|
|
62
70
|
flex?: number | undefined;
|
|
63
|
-
flexBasis?:
|
|
71
|
+
flexBasis?: import("react-native").DimensionValue | undefined;
|
|
64
72
|
flexDirection: "row" | "column" | "row-reverse" | "column-reverse";
|
|
73
|
+
rowGap?: number | undefined;
|
|
74
|
+
gap?: number | undefined;
|
|
75
|
+
columnGap?: number | undefined;
|
|
65
76
|
flexGrow?: number | undefined;
|
|
66
77
|
flexShrink?: number | undefined;
|
|
67
78
|
flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
|
|
68
|
-
height?:
|
|
79
|
+
height?: import("react-native").DimensionValue | undefined;
|
|
80
|
+
inset?: import("react-native").DimensionValue | undefined;
|
|
81
|
+
insetBlock?: import("react-native").DimensionValue | undefined;
|
|
82
|
+
insetBlockEnd?: import("react-native").DimensionValue | undefined;
|
|
83
|
+
insetBlockStart?: import("react-native").DimensionValue | undefined;
|
|
84
|
+
insetInline?: import("react-native").DimensionValue | undefined;
|
|
85
|
+
insetInlineEnd?: import("react-native").DimensionValue | undefined;
|
|
86
|
+
insetInlineStart?: import("react-native").DimensionValue | undefined;
|
|
69
87
|
justifyContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
70
|
-
left?:
|
|
71
|
-
margin?:
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
88
|
+
left?: import("react-native").DimensionValue | undefined;
|
|
89
|
+
margin?: import("react-native").DimensionValue | undefined;
|
|
90
|
+
marginBlock?: import("react-native").DimensionValue | undefined;
|
|
91
|
+
marginBlockEnd?: import("react-native").DimensionValue | undefined;
|
|
92
|
+
marginBlockStart?: import("react-native").DimensionValue | undefined;
|
|
93
|
+
marginBottom?: import("react-native").DimensionValue | undefined;
|
|
94
|
+
marginEnd?: import("react-native").DimensionValue | undefined;
|
|
95
|
+
marginHorizontal?: import("react-native").DimensionValue | undefined;
|
|
96
|
+
marginInline?: import("react-native").DimensionValue | undefined;
|
|
97
|
+
marginInlineEnd?: import("react-native").DimensionValue | undefined;
|
|
98
|
+
marginInlineStart?: import("react-native").DimensionValue | undefined;
|
|
99
|
+
marginLeft?: import("react-native").DimensionValue | undefined;
|
|
100
|
+
marginRight: import("react-native").DimensionValue;
|
|
101
|
+
marginStart?: import("react-native").DimensionValue | undefined;
|
|
102
|
+
marginTop?: import("react-native").DimensionValue | undefined;
|
|
103
|
+
marginVertical?: import("react-native").DimensionValue | undefined;
|
|
104
|
+
maxHeight?: import("react-native").DimensionValue | undefined;
|
|
105
|
+
maxWidth?: import("react-native").DimensionValue | undefined;
|
|
106
|
+
minHeight?: import("react-native").DimensionValue | undefined;
|
|
107
|
+
minWidth?: import("react-native").DimensionValue | undefined;
|
|
84
108
|
overflow?: "visible" | "hidden" | "scroll" | undefined;
|
|
85
|
-
padding?:
|
|
86
|
-
paddingBottom?:
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
109
|
+
padding?: import("react-native").DimensionValue | undefined;
|
|
110
|
+
paddingBottom?: import("react-native").DimensionValue | undefined;
|
|
111
|
+
paddingBlock?: import("react-native").DimensionValue | undefined;
|
|
112
|
+
paddingBlockEnd?: import("react-native").DimensionValue | undefined;
|
|
113
|
+
paddingBlockStart?: import("react-native").DimensionValue | undefined;
|
|
114
|
+
paddingEnd?: import("react-native").DimensionValue | undefined;
|
|
115
|
+
paddingHorizontal?: import("react-native").DimensionValue | undefined;
|
|
116
|
+
paddingInline?: import("react-native").DimensionValue | undefined;
|
|
117
|
+
paddingInlineEnd?: import("react-native").DimensionValue | undefined;
|
|
118
|
+
paddingInlineStart?: import("react-native").DimensionValue | undefined;
|
|
119
|
+
paddingLeft?: import("react-native").DimensionValue | undefined;
|
|
120
|
+
paddingRight?: import("react-native").DimensionValue | undefined;
|
|
121
|
+
paddingStart?: import("react-native").DimensionValue | undefined;
|
|
122
|
+
paddingTop?: import("react-native").DimensionValue | undefined;
|
|
123
|
+
paddingVertical?: import("react-native").DimensionValue | undefined;
|
|
94
124
|
position?: "absolute" | "relative" | undefined;
|
|
95
|
-
right?:
|
|
96
|
-
start?:
|
|
97
|
-
top?:
|
|
98
|
-
width?:
|
|
125
|
+
right?: import("react-native").DimensionValue | undefined;
|
|
126
|
+
start?: import("react-native").DimensionValue | undefined;
|
|
127
|
+
top?: import("react-native").DimensionValue | undefined;
|
|
128
|
+
width?: import("react-native").DimensionValue | undefined;
|
|
99
129
|
zIndex?: number | undefined;
|
|
100
130
|
direction?: "inherit" | "ltr" | "rtl" | undefined;
|
|
101
131
|
shadowColor?: import("react-native").ColorValue | undefined;
|
|
102
|
-
shadowOffset?: {
|
|
132
|
+
shadowOffset?: Readonly<{
|
|
103
133
|
width: number;
|
|
104
134
|
height: number;
|
|
105
|
-
} | undefined;
|
|
106
|
-
shadowOpacity?:
|
|
135
|
+
}> | undefined;
|
|
136
|
+
shadowOpacity?: import("react-native").AnimatableNumericValue | undefined;
|
|
107
137
|
shadowRadius?: number | undefined;
|
|
108
138
|
transform?: (import("react-native").PerpectiveTransform | import("react-native").RotateTransform | import("react-native").RotateXTransform | import("react-native").RotateYTransform | import("react-native").RotateZTransform | import("react-native").ScaleTransform | import("react-native").ScaleXTransform | import("react-native").ScaleYTransform | import("react-native").TranslateXTransform | import("react-native").TranslateYTransform | import("react-native").SkewXTransform | import("react-native").SkewYTransform | import("react-native").MatrixTransform)[] | undefined;
|
|
109
139
|
transformMatrix?: number[] | undefined;
|
|
110
|
-
rotation?:
|
|
111
|
-
scaleX?:
|
|
112
|
-
scaleY?:
|
|
113
|
-
translateX?:
|
|
114
|
-
translateY?:
|
|
140
|
+
rotation?: import("react-native").AnimatableNumericValue | undefined;
|
|
141
|
+
scaleX?: import("react-native").AnimatableNumericValue | undefined;
|
|
142
|
+
scaleY?: import("react-native").AnimatableNumericValue | undefined;
|
|
143
|
+
translateX?: import("react-native").AnimatableNumericValue | undefined;
|
|
144
|
+
translateY?: import("react-native").AnimatableNumericValue | undefined;
|
|
115
145
|
};
|
|
116
146
|
pickerLabelContainer: {
|
|
117
147
|
backfaceVisibility?: "visible" | "hidden" | undefined;
|
|
118
148
|
backgroundColor?: import("react-native").ColorValue | undefined;
|
|
149
|
+
borderBlockColor?: import("react-native").ColorValue | undefined;
|
|
150
|
+
borderBlockEndColor?: import("react-native").ColorValue | undefined;
|
|
151
|
+
borderBlockStartColor?: import("react-native").ColorValue | undefined;
|
|
119
152
|
borderBottomColor?: import("react-native").ColorValue | undefined;
|
|
120
|
-
borderBottomEndRadius?:
|
|
121
|
-
borderBottomLeftRadius?:
|
|
122
|
-
borderBottomRightRadius?:
|
|
123
|
-
borderBottomStartRadius?:
|
|
124
|
-
borderBottomWidth?: number | undefined;
|
|
153
|
+
borderBottomEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
154
|
+
borderBottomLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
155
|
+
borderBottomRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
156
|
+
borderBottomStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
125
157
|
borderColor?: import("react-native").ColorValue | undefined;
|
|
158
|
+
borderCurve?: "circular" | "continuous" | undefined;
|
|
126
159
|
borderEndColor?: import("react-native").ColorValue | undefined;
|
|
160
|
+
borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
161
|
+
borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
127
162
|
borderLeftColor?: import("react-native").ColorValue | undefined;
|
|
128
|
-
|
|
129
|
-
borderRadius?: number | undefined;
|
|
163
|
+
borderRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
130
164
|
borderRightColor?: import("react-native").ColorValue | undefined;
|
|
131
|
-
borderRightWidth?: number | undefined;
|
|
132
165
|
borderStartColor?: import("react-native").ColorValue | undefined;
|
|
166
|
+
borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
167
|
+
borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
133
168
|
borderStyle?: "solid" | "dotted" | "dashed" | undefined;
|
|
134
169
|
borderTopColor?: import("react-native").ColorValue | undefined;
|
|
135
|
-
borderTopEndRadius?:
|
|
136
|
-
borderTopLeftRadius?:
|
|
137
|
-
borderTopRightRadius?:
|
|
138
|
-
borderTopStartRadius?:
|
|
139
|
-
|
|
140
|
-
borderWidth?: number | undefined;
|
|
141
|
-
opacity?: number | undefined;
|
|
142
|
-
testID?: string | undefined;
|
|
170
|
+
borderTopEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
171
|
+
borderTopLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
172
|
+
borderTopRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
173
|
+
borderTopStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
174
|
+
opacity?: import("react-native").AnimatableNumericValue | undefined;
|
|
143
175
|
elevation?: number | undefined;
|
|
176
|
+
pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined;
|
|
144
177
|
alignContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "stretch" | undefined;
|
|
145
178
|
alignItems?: import("react-native").FlexAlignType | undefined;
|
|
146
|
-
alignSelf?: import("react-native").FlexAlignType |
|
|
147
|
-
aspectRatio?: number | undefined;
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
179
|
+
alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
|
|
180
|
+
aspectRatio?: string | number | undefined;
|
|
181
|
+
borderBottomWidth?: number | undefined;
|
|
182
|
+
borderEndWidth?: number | undefined;
|
|
183
|
+
borderLeftWidth?: number | undefined;
|
|
184
|
+
borderRightWidth?: number | undefined;
|
|
185
|
+
borderStartWidth?: number | undefined;
|
|
186
|
+
borderTopWidth?: number | undefined;
|
|
187
|
+
borderWidth?: number | undefined;
|
|
188
|
+
bottom: import("react-native").DimensionValue;
|
|
151
189
|
display?: "none" | "flex" | undefined;
|
|
152
|
-
end?:
|
|
190
|
+
end?: import("react-native").DimensionValue | undefined;
|
|
153
191
|
flex?: number | undefined;
|
|
154
|
-
flexBasis?:
|
|
192
|
+
flexBasis?: import("react-native").DimensionValue | undefined;
|
|
155
193
|
flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
|
|
194
|
+
rowGap?: number | undefined;
|
|
195
|
+
gap?: number | undefined;
|
|
196
|
+
columnGap?: number | undefined;
|
|
156
197
|
flexGrow?: number | undefined;
|
|
157
198
|
flexShrink?: number | undefined;
|
|
158
199
|
flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
|
|
159
|
-
height?:
|
|
200
|
+
height?: import("react-native").DimensionValue | undefined;
|
|
201
|
+
inset?: import("react-native").DimensionValue | undefined;
|
|
202
|
+
insetBlock?: import("react-native").DimensionValue | undefined;
|
|
203
|
+
insetBlockEnd?: import("react-native").DimensionValue | undefined;
|
|
204
|
+
insetBlockStart?: import("react-native").DimensionValue | undefined;
|
|
205
|
+
insetInline?: import("react-native").DimensionValue | undefined;
|
|
206
|
+
insetInlineEnd?: import("react-native").DimensionValue | undefined;
|
|
207
|
+
insetInlineStart?: import("react-native").DimensionValue | undefined;
|
|
160
208
|
justifyContent: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly";
|
|
161
|
-
left?:
|
|
162
|
-
margin?:
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
209
|
+
left?: import("react-native").DimensionValue | undefined;
|
|
210
|
+
margin?: import("react-native").DimensionValue | undefined;
|
|
211
|
+
marginBlock?: import("react-native").DimensionValue | undefined;
|
|
212
|
+
marginBlockEnd?: import("react-native").DimensionValue | undefined;
|
|
213
|
+
marginBlockStart?: import("react-native").DimensionValue | undefined;
|
|
214
|
+
marginBottom?: import("react-native").DimensionValue | undefined;
|
|
215
|
+
marginEnd?: import("react-native").DimensionValue | undefined;
|
|
216
|
+
marginHorizontal?: import("react-native").DimensionValue | undefined;
|
|
217
|
+
marginInline?: import("react-native").DimensionValue | undefined;
|
|
218
|
+
marginInlineEnd?: import("react-native").DimensionValue | undefined;
|
|
219
|
+
marginInlineStart?: import("react-native").DimensionValue | undefined;
|
|
220
|
+
marginLeft?: import("react-native").DimensionValue | undefined;
|
|
221
|
+
marginRight?: import("react-native").DimensionValue | undefined;
|
|
222
|
+
marginStart?: import("react-native").DimensionValue | undefined;
|
|
223
|
+
marginTop?: import("react-native").DimensionValue | undefined;
|
|
224
|
+
marginVertical?: import("react-native").DimensionValue | undefined;
|
|
225
|
+
maxHeight?: import("react-native").DimensionValue | undefined;
|
|
226
|
+
maxWidth?: import("react-native").DimensionValue | undefined;
|
|
227
|
+
minHeight?: import("react-native").DimensionValue | undefined;
|
|
228
|
+
minWidth: import("react-native").DimensionValue;
|
|
175
229
|
overflow?: "visible" | "hidden" | "scroll" | undefined;
|
|
176
|
-
padding?:
|
|
177
|
-
paddingBottom?:
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
230
|
+
padding?: import("react-native").DimensionValue | undefined;
|
|
231
|
+
paddingBottom?: import("react-native").DimensionValue | undefined;
|
|
232
|
+
paddingBlock?: import("react-native").DimensionValue | undefined;
|
|
233
|
+
paddingBlockEnd?: import("react-native").DimensionValue | undefined;
|
|
234
|
+
paddingBlockStart?: import("react-native").DimensionValue | undefined;
|
|
235
|
+
paddingEnd?: import("react-native").DimensionValue | undefined;
|
|
236
|
+
paddingHorizontal?: import("react-native").DimensionValue | undefined;
|
|
237
|
+
paddingInline?: import("react-native").DimensionValue | undefined;
|
|
238
|
+
paddingInlineEnd?: import("react-native").DimensionValue | undefined;
|
|
239
|
+
paddingInlineStart?: import("react-native").DimensionValue | undefined;
|
|
240
|
+
paddingLeft?: import("react-native").DimensionValue | undefined;
|
|
241
|
+
paddingRight?: import("react-native").DimensionValue | undefined;
|
|
242
|
+
paddingStart?: import("react-native").DimensionValue | undefined;
|
|
243
|
+
paddingTop?: import("react-native").DimensionValue | undefined;
|
|
244
|
+
paddingVertical?: import("react-native").DimensionValue | undefined;
|
|
185
245
|
position: "absolute" | "relative";
|
|
186
|
-
right:
|
|
187
|
-
start?:
|
|
188
|
-
top:
|
|
189
|
-
width?:
|
|
246
|
+
right: import("react-native").DimensionValue;
|
|
247
|
+
start?: import("react-native").DimensionValue | undefined;
|
|
248
|
+
top: import("react-native").DimensionValue;
|
|
249
|
+
width?: import("react-native").DimensionValue | undefined;
|
|
190
250
|
zIndex?: number | undefined;
|
|
191
251
|
direction?: "inherit" | "ltr" | "rtl" | undefined;
|
|
192
252
|
shadowColor?: import("react-native").ColorValue | undefined;
|
|
193
|
-
shadowOffset?: {
|
|
253
|
+
shadowOffset?: Readonly<{
|
|
194
254
|
width: number;
|
|
195
255
|
height: number;
|
|
196
|
-
} | undefined;
|
|
197
|
-
shadowOpacity?:
|
|
256
|
+
}> | undefined;
|
|
257
|
+
shadowOpacity?: import("react-native").AnimatableNumericValue | undefined;
|
|
198
258
|
shadowRadius?: number | undefined;
|
|
199
259
|
transform?: (import("react-native").PerpectiveTransform | import("react-native").RotateTransform | import("react-native").RotateXTransform | import("react-native").RotateYTransform | import("react-native").RotateZTransform | import("react-native").ScaleTransform | import("react-native").ScaleXTransform | import("react-native").ScaleYTransform | import("react-native").TranslateXTransform | import("react-native").TranslateYTransform | import("react-native").SkewXTransform | import("react-native").SkewYTransform | import("react-native").MatrixTransform)[] | undefined;
|
|
200
260
|
transformMatrix?: number[] | undefined;
|
|
201
|
-
rotation?:
|
|
202
|
-
scaleX?:
|
|
203
|
-
scaleY?:
|
|
204
|
-
translateX?:
|
|
205
|
-
translateY?:
|
|
261
|
+
rotation?: import("react-native").AnimatableNumericValue | undefined;
|
|
262
|
+
scaleX?: import("react-native").AnimatableNumericValue | undefined;
|
|
263
|
+
scaleY?: import("react-native").AnimatableNumericValue | undefined;
|
|
264
|
+
translateX?: import("react-native").AnimatableNumericValue | undefined;
|
|
265
|
+
translateY?: import("react-native").AnimatableNumericValue | undefined;
|
|
206
266
|
};
|
|
207
267
|
pickerLabel: {
|
|
208
268
|
color: import("react-native").ColorValue;
|
|
@@ -212,7 +272,7 @@ export declare const generateStyles: (customStyles: CustomTimerPickerStyles | un
|
|
|
212
272
|
fontWeight: "bold" | "normal" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900";
|
|
213
273
|
letterSpacing?: number | undefined;
|
|
214
274
|
lineHeight?: number | undefined;
|
|
215
|
-
textAlign?: "
|
|
275
|
+
textAlign?: "auto" | "center" | "left" | "right" | "justify" | undefined;
|
|
216
276
|
textDecorationLine?: "none" | "underline" | "line-through" | "underline line-through" | undefined;
|
|
217
277
|
textDecorationStyle?: "solid" | "dotted" | "dashed" | "double" | undefined;
|
|
218
278
|
textDecorationColor?: import("react-native").ColorValue | undefined;
|
|
@@ -228,185 +288,247 @@ export declare const generateStyles: (customStyles: CustomTimerPickerStyles | un
|
|
|
228
288
|
writingDirection?: "auto" | "ltr" | "rtl" | undefined;
|
|
229
289
|
backfaceVisibility?: "visible" | "hidden" | undefined;
|
|
230
290
|
backgroundColor?: import("react-native").ColorValue | undefined;
|
|
291
|
+
borderBlockColor?: import("react-native").ColorValue | undefined;
|
|
292
|
+
borderBlockEndColor?: import("react-native").ColorValue | undefined;
|
|
293
|
+
borderBlockStartColor?: import("react-native").ColorValue | undefined;
|
|
231
294
|
borderBottomColor?: import("react-native").ColorValue | undefined;
|
|
232
|
-
borderBottomEndRadius?:
|
|
233
|
-
borderBottomLeftRadius?:
|
|
234
|
-
borderBottomRightRadius?:
|
|
235
|
-
borderBottomStartRadius?:
|
|
236
|
-
borderBottomWidth?: number | undefined;
|
|
295
|
+
borderBottomEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
296
|
+
borderBottomLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
297
|
+
borderBottomRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
298
|
+
borderBottomStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
237
299
|
borderColor?: import("react-native").ColorValue | undefined;
|
|
300
|
+
borderCurve?: "circular" | "continuous" | undefined;
|
|
238
301
|
borderEndColor?: import("react-native").ColorValue | undefined;
|
|
302
|
+
borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
303
|
+
borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
239
304
|
borderLeftColor?: import("react-native").ColorValue | undefined;
|
|
240
|
-
|
|
241
|
-
borderRadius?: number | undefined;
|
|
305
|
+
borderRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
242
306
|
borderRightColor?: import("react-native").ColorValue | undefined;
|
|
243
|
-
borderRightWidth?: number | undefined;
|
|
244
307
|
borderStartColor?: import("react-native").ColorValue | undefined;
|
|
308
|
+
borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
309
|
+
borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
245
310
|
borderStyle?: "solid" | "dotted" | "dashed" | undefined;
|
|
246
311
|
borderTopColor?: import("react-native").ColorValue | undefined;
|
|
247
|
-
borderTopEndRadius?:
|
|
248
|
-
borderTopLeftRadius?:
|
|
249
|
-
borderTopRightRadius?:
|
|
250
|
-
borderTopStartRadius?:
|
|
251
|
-
|
|
252
|
-
borderWidth?: number | undefined;
|
|
253
|
-
opacity?: number | undefined;
|
|
312
|
+
borderTopEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
313
|
+
borderTopLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
314
|
+
borderTopRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
315
|
+
borderTopStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
316
|
+
opacity?: import("react-native").AnimatableNumericValue | undefined;
|
|
254
317
|
elevation?: number | undefined;
|
|
318
|
+
pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined;
|
|
255
319
|
alignContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "stretch" | undefined;
|
|
256
320
|
alignItems?: import("react-native").FlexAlignType | undefined;
|
|
257
|
-
alignSelf?: import("react-native").FlexAlignType |
|
|
258
|
-
aspectRatio?: number | undefined;
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
321
|
+
alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
|
|
322
|
+
aspectRatio?: string | number | undefined;
|
|
323
|
+
borderBottomWidth?: number | undefined;
|
|
324
|
+
borderEndWidth?: number | undefined;
|
|
325
|
+
borderLeftWidth?: number | undefined;
|
|
326
|
+
borderRightWidth?: number | undefined;
|
|
327
|
+
borderStartWidth?: number | undefined;
|
|
328
|
+
borderTopWidth?: number | undefined;
|
|
329
|
+
borderWidth?: number | undefined;
|
|
330
|
+
bottom?: import("react-native").DimensionValue | undefined;
|
|
262
331
|
display?: "none" | "flex" | undefined;
|
|
263
|
-
end?:
|
|
332
|
+
end?: import("react-native").DimensionValue | undefined;
|
|
264
333
|
flex?: number | undefined;
|
|
265
|
-
flexBasis?:
|
|
334
|
+
flexBasis?: import("react-native").DimensionValue | undefined;
|
|
266
335
|
flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
|
|
336
|
+
rowGap?: number | undefined;
|
|
337
|
+
gap?: number | undefined;
|
|
338
|
+
columnGap?: number | undefined;
|
|
267
339
|
flexGrow?: number | undefined;
|
|
268
340
|
flexShrink?: number | undefined;
|
|
269
341
|
flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
|
|
270
|
-
height?:
|
|
342
|
+
height?: import("react-native").DimensionValue | undefined;
|
|
343
|
+
inset?: import("react-native").DimensionValue | undefined;
|
|
344
|
+
insetBlock?: import("react-native").DimensionValue | undefined;
|
|
345
|
+
insetBlockEnd?: import("react-native").DimensionValue | undefined;
|
|
346
|
+
insetBlockStart?: import("react-native").DimensionValue | undefined;
|
|
347
|
+
insetInline?: import("react-native").DimensionValue | undefined;
|
|
348
|
+
insetInlineEnd?: import("react-native").DimensionValue | undefined;
|
|
349
|
+
insetInlineStart?: import("react-native").DimensionValue | undefined;
|
|
271
350
|
justifyContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
272
|
-
left?:
|
|
273
|
-
margin?:
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
351
|
+
left?: import("react-native").DimensionValue | undefined;
|
|
352
|
+
margin?: import("react-native").DimensionValue | undefined;
|
|
353
|
+
marginBlock?: import("react-native").DimensionValue | undefined;
|
|
354
|
+
marginBlockEnd?: import("react-native").DimensionValue | undefined;
|
|
355
|
+
marginBlockStart?: import("react-native").DimensionValue | undefined;
|
|
356
|
+
marginBottom?: import("react-native").DimensionValue | undefined;
|
|
357
|
+
marginEnd?: import("react-native").DimensionValue | undefined;
|
|
358
|
+
marginHorizontal?: import("react-native").DimensionValue | undefined;
|
|
359
|
+
marginInline?: import("react-native").DimensionValue | undefined;
|
|
360
|
+
marginInlineEnd?: import("react-native").DimensionValue | undefined;
|
|
361
|
+
marginInlineStart?: import("react-native").DimensionValue | undefined;
|
|
362
|
+
marginLeft?: import("react-native").DimensionValue | undefined;
|
|
363
|
+
marginRight?: import("react-native").DimensionValue | undefined;
|
|
364
|
+
marginStart?: import("react-native").DimensionValue | undefined;
|
|
365
|
+
marginTop: import("react-native").DimensionValue;
|
|
366
|
+
marginVertical?: import("react-native").DimensionValue | undefined;
|
|
367
|
+
maxHeight?: import("react-native").DimensionValue | undefined;
|
|
368
|
+
maxWidth?: import("react-native").DimensionValue | undefined;
|
|
369
|
+
minHeight?: import("react-native").DimensionValue | undefined;
|
|
370
|
+
minWidth?: import("react-native").DimensionValue | undefined;
|
|
286
371
|
overflow?: "visible" | "hidden" | "scroll" | undefined;
|
|
287
|
-
padding?:
|
|
288
|
-
paddingBottom?:
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
372
|
+
padding?: import("react-native").DimensionValue | undefined;
|
|
373
|
+
paddingBottom?: import("react-native").DimensionValue | undefined;
|
|
374
|
+
paddingBlock?: import("react-native").DimensionValue | undefined;
|
|
375
|
+
paddingBlockEnd?: import("react-native").DimensionValue | undefined;
|
|
376
|
+
paddingBlockStart?: import("react-native").DimensionValue | undefined;
|
|
377
|
+
paddingEnd?: import("react-native").DimensionValue | undefined;
|
|
378
|
+
paddingHorizontal?: import("react-native").DimensionValue | undefined;
|
|
379
|
+
paddingInline?: import("react-native").DimensionValue | undefined;
|
|
380
|
+
paddingInlineEnd?: import("react-native").DimensionValue | undefined;
|
|
381
|
+
paddingInlineStart?: import("react-native").DimensionValue | undefined;
|
|
382
|
+
paddingLeft?: import("react-native").DimensionValue | undefined;
|
|
383
|
+
paddingRight?: import("react-native").DimensionValue | undefined;
|
|
384
|
+
paddingStart?: import("react-native").DimensionValue | undefined;
|
|
385
|
+
paddingTop?: import("react-native").DimensionValue | undefined;
|
|
386
|
+
paddingVertical?: import("react-native").DimensionValue | undefined;
|
|
296
387
|
position?: "absolute" | "relative" | undefined;
|
|
297
|
-
right?:
|
|
298
|
-
start?:
|
|
299
|
-
top?:
|
|
300
|
-
width?:
|
|
388
|
+
right?: import("react-native").DimensionValue | undefined;
|
|
389
|
+
start?: import("react-native").DimensionValue | undefined;
|
|
390
|
+
top?: import("react-native").DimensionValue | undefined;
|
|
391
|
+
width?: import("react-native").DimensionValue | undefined;
|
|
301
392
|
zIndex?: number | undefined;
|
|
302
393
|
direction?: "inherit" | "ltr" | "rtl" | undefined;
|
|
303
394
|
shadowColor?: import("react-native").ColorValue | undefined;
|
|
304
|
-
shadowOffset?: {
|
|
395
|
+
shadowOffset?: Readonly<{
|
|
305
396
|
width: number;
|
|
306
397
|
height: number;
|
|
307
|
-
} | undefined;
|
|
308
|
-
shadowOpacity?:
|
|
398
|
+
}> | undefined;
|
|
399
|
+
shadowOpacity?: import("react-native").AnimatableNumericValue | undefined;
|
|
309
400
|
shadowRadius?: number | undefined;
|
|
310
401
|
transform?: (import("react-native").PerpectiveTransform | import("react-native").RotateTransform | import("react-native").RotateXTransform | import("react-native").RotateYTransform | import("react-native").RotateZTransform | import("react-native").ScaleTransform | import("react-native").ScaleXTransform | import("react-native").ScaleYTransform | import("react-native").TranslateXTransform | import("react-native").TranslateYTransform | import("react-native").SkewXTransform | import("react-native").SkewYTransform | import("react-native").MatrixTransform)[] | undefined;
|
|
311
402
|
transformMatrix?: number[] | undefined;
|
|
312
|
-
rotation?:
|
|
313
|
-
scaleX?:
|
|
314
|
-
scaleY?:
|
|
315
|
-
translateX?:
|
|
316
|
-
translateY?:
|
|
317
|
-
textAlignVertical?: "
|
|
403
|
+
rotation?: import("react-native").AnimatableNumericValue | undefined;
|
|
404
|
+
scaleX?: import("react-native").AnimatableNumericValue | undefined;
|
|
405
|
+
scaleY?: import("react-native").AnimatableNumericValue | undefined;
|
|
406
|
+
translateX?: import("react-native").AnimatableNumericValue | undefined;
|
|
407
|
+
translateY?: import("react-native").AnimatableNumericValue | undefined;
|
|
408
|
+
textAlignVertical?: "auto" | "center" | "bottom" | "top" | undefined;
|
|
409
|
+
verticalAlign?: "auto" | "bottom" | "top" | "middle" | undefined;
|
|
318
410
|
includeFontPadding?: boolean | undefined;
|
|
319
411
|
};
|
|
320
412
|
pickerItemContainer: {
|
|
321
413
|
backfaceVisibility?: "visible" | "hidden" | undefined;
|
|
322
414
|
backgroundColor?: import("react-native").ColorValue | undefined;
|
|
415
|
+
borderBlockColor?: import("react-native").ColorValue | undefined;
|
|
416
|
+
borderBlockEndColor?: import("react-native").ColorValue | undefined;
|
|
417
|
+
borderBlockStartColor?: import("react-native").ColorValue | undefined;
|
|
323
418
|
borderBottomColor?: import("react-native").ColorValue | undefined;
|
|
324
|
-
borderBottomEndRadius?:
|
|
325
|
-
borderBottomLeftRadius?:
|
|
326
|
-
borderBottomRightRadius?:
|
|
327
|
-
borderBottomStartRadius?:
|
|
328
|
-
borderBottomWidth?: number | undefined;
|
|
419
|
+
borderBottomEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
420
|
+
borderBottomLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
421
|
+
borderBottomRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
422
|
+
borderBottomStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
329
423
|
borderColor?: import("react-native").ColorValue | undefined;
|
|
424
|
+
borderCurve?: "circular" | "continuous" | undefined;
|
|
330
425
|
borderEndColor?: import("react-native").ColorValue | undefined;
|
|
426
|
+
borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
427
|
+
borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
331
428
|
borderLeftColor?: import("react-native").ColorValue | undefined;
|
|
332
|
-
|
|
333
|
-
borderRadius?: number | undefined;
|
|
429
|
+
borderRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
334
430
|
borderRightColor?: import("react-native").ColorValue | undefined;
|
|
335
|
-
borderRightWidth?: number | undefined;
|
|
336
431
|
borderStartColor?: import("react-native").ColorValue | undefined;
|
|
432
|
+
borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
433
|
+
borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
337
434
|
borderStyle?: "solid" | "dotted" | "dashed" | undefined;
|
|
338
435
|
borderTopColor?: import("react-native").ColorValue | undefined;
|
|
339
|
-
borderTopEndRadius?:
|
|
340
|
-
borderTopLeftRadius?:
|
|
341
|
-
borderTopRightRadius?:
|
|
342
|
-
borderTopStartRadius?:
|
|
343
|
-
|
|
344
|
-
borderWidth?: number | undefined;
|
|
345
|
-
opacity?: number | undefined;
|
|
346
|
-
testID?: string | undefined;
|
|
436
|
+
borderTopEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
437
|
+
borderTopLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
438
|
+
borderTopRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
439
|
+
borderTopStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
440
|
+
opacity?: import("react-native").AnimatableNumericValue | undefined;
|
|
347
441
|
elevation?: number | undefined;
|
|
442
|
+
pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined;
|
|
348
443
|
alignContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "stretch" | undefined;
|
|
349
444
|
alignItems: import("react-native").FlexAlignType;
|
|
350
|
-
alignSelf?: import("react-native").FlexAlignType |
|
|
351
|
-
aspectRatio?: number | undefined;
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
445
|
+
alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
|
|
446
|
+
aspectRatio?: string | number | undefined;
|
|
447
|
+
borderBottomWidth?: number | undefined;
|
|
448
|
+
borderEndWidth?: number | undefined;
|
|
449
|
+
borderLeftWidth?: number | undefined;
|
|
450
|
+
borderRightWidth?: number | undefined;
|
|
451
|
+
borderStartWidth?: number | undefined;
|
|
452
|
+
borderTopWidth?: number | undefined;
|
|
453
|
+
borderWidth?: number | undefined;
|
|
454
|
+
bottom?: import("react-native").DimensionValue | undefined;
|
|
355
455
|
display?: "none" | "flex" | undefined;
|
|
356
|
-
end?:
|
|
456
|
+
end?: import("react-native").DimensionValue | undefined;
|
|
357
457
|
flex?: number | undefined;
|
|
358
|
-
flexBasis?:
|
|
458
|
+
flexBasis?: import("react-native").DimensionValue | undefined;
|
|
359
459
|
flexDirection: "row" | "column" | "row-reverse" | "column-reverse";
|
|
460
|
+
rowGap?: number | undefined;
|
|
461
|
+
gap?: number | undefined;
|
|
462
|
+
columnGap?: number | undefined;
|
|
360
463
|
flexGrow?: number | undefined;
|
|
361
464
|
flexShrink?: number | undefined;
|
|
362
465
|
flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
|
|
363
|
-
height: number;
|
|
466
|
+
height: import("react-native").DimensionValue & number;
|
|
467
|
+
inset?: import("react-native").DimensionValue | undefined;
|
|
468
|
+
insetBlock?: import("react-native").DimensionValue | undefined;
|
|
469
|
+
insetBlockEnd?: import("react-native").DimensionValue | undefined;
|
|
470
|
+
insetBlockStart?: import("react-native").DimensionValue | undefined;
|
|
471
|
+
insetInline?: import("react-native").DimensionValue | undefined;
|
|
472
|
+
insetInlineEnd?: import("react-native").DimensionValue | undefined;
|
|
473
|
+
insetInlineStart?: import("react-native").DimensionValue | undefined;
|
|
364
474
|
justifyContent: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly";
|
|
365
|
-
left?:
|
|
366
|
-
margin?:
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
475
|
+
left?: import("react-native").DimensionValue | undefined;
|
|
476
|
+
margin?: import("react-native").DimensionValue | undefined;
|
|
477
|
+
marginBlock?: import("react-native").DimensionValue | undefined;
|
|
478
|
+
marginBlockEnd?: import("react-native").DimensionValue | undefined;
|
|
479
|
+
marginBlockStart?: import("react-native").DimensionValue | undefined;
|
|
480
|
+
marginBottom?: import("react-native").DimensionValue | undefined;
|
|
481
|
+
marginEnd?: import("react-native").DimensionValue | undefined;
|
|
482
|
+
marginHorizontal?: import("react-native").DimensionValue | undefined;
|
|
483
|
+
marginInline?: import("react-native").DimensionValue | undefined;
|
|
484
|
+
marginInlineEnd?: import("react-native").DimensionValue | undefined;
|
|
485
|
+
marginInlineStart?: import("react-native").DimensionValue | undefined;
|
|
486
|
+
marginLeft?: import("react-native").DimensionValue | undefined;
|
|
487
|
+
marginRight?: import("react-native").DimensionValue | undefined;
|
|
488
|
+
marginStart?: import("react-native").DimensionValue | undefined;
|
|
489
|
+
marginTop?: import("react-native").DimensionValue | undefined;
|
|
490
|
+
marginVertical?: import("react-native").DimensionValue | undefined;
|
|
491
|
+
maxHeight?: import("react-native").DimensionValue | undefined;
|
|
492
|
+
maxWidth?: import("react-native").DimensionValue | undefined;
|
|
493
|
+
minHeight?: import("react-native").DimensionValue | undefined;
|
|
494
|
+
minWidth?: import("react-native").DimensionValue | undefined;
|
|
379
495
|
overflow?: "visible" | "hidden" | "scroll" | undefined;
|
|
380
|
-
padding?:
|
|
381
|
-
paddingBottom?:
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
496
|
+
padding?: import("react-native").DimensionValue | undefined;
|
|
497
|
+
paddingBottom?: import("react-native").DimensionValue | undefined;
|
|
498
|
+
paddingBlock?: import("react-native").DimensionValue | undefined;
|
|
499
|
+
paddingBlockEnd?: import("react-native").DimensionValue | undefined;
|
|
500
|
+
paddingBlockStart?: import("react-native").DimensionValue | undefined;
|
|
501
|
+
paddingEnd?: import("react-native").DimensionValue | undefined;
|
|
502
|
+
paddingHorizontal?: import("react-native").DimensionValue | undefined;
|
|
503
|
+
paddingInline?: import("react-native").DimensionValue | undefined;
|
|
504
|
+
paddingInlineEnd?: import("react-native").DimensionValue | undefined;
|
|
505
|
+
paddingInlineStart?: import("react-native").DimensionValue | undefined;
|
|
506
|
+
paddingLeft?: import("react-native").DimensionValue | undefined;
|
|
507
|
+
paddingRight?: import("react-native").DimensionValue | undefined;
|
|
508
|
+
paddingStart?: import("react-native").DimensionValue | undefined;
|
|
509
|
+
paddingTop?: import("react-native").DimensionValue | undefined;
|
|
510
|
+
paddingVertical?: import("react-native").DimensionValue | undefined;
|
|
389
511
|
position?: "absolute" | "relative" | undefined;
|
|
390
|
-
right?:
|
|
391
|
-
start?:
|
|
392
|
-
top?:
|
|
393
|
-
width:
|
|
512
|
+
right?: import("react-native").DimensionValue | undefined;
|
|
513
|
+
start?: import("react-native").DimensionValue | undefined;
|
|
514
|
+
top?: import("react-native").DimensionValue | undefined;
|
|
515
|
+
width: import("react-native").DimensionValue;
|
|
394
516
|
zIndex?: number | undefined;
|
|
395
517
|
direction?: "inherit" | "ltr" | "rtl" | undefined;
|
|
396
518
|
shadowColor?: import("react-native").ColorValue | undefined;
|
|
397
|
-
shadowOffset?: {
|
|
519
|
+
shadowOffset?: Readonly<{
|
|
398
520
|
width: number;
|
|
399
521
|
height: number;
|
|
400
|
-
} | undefined;
|
|
401
|
-
shadowOpacity?:
|
|
522
|
+
}> | undefined;
|
|
523
|
+
shadowOpacity?: import("react-native").AnimatableNumericValue | undefined;
|
|
402
524
|
shadowRadius?: number | undefined;
|
|
403
525
|
transform?: (import("react-native").PerpectiveTransform | import("react-native").RotateTransform | import("react-native").RotateXTransform | import("react-native").RotateYTransform | import("react-native").RotateZTransform | import("react-native").ScaleTransform | import("react-native").ScaleXTransform | import("react-native").ScaleYTransform | import("react-native").TranslateXTransform | import("react-native").TranslateYTransform | import("react-native").SkewXTransform | import("react-native").SkewYTransform | import("react-native").MatrixTransform)[] | undefined;
|
|
404
526
|
transformMatrix?: number[] | undefined;
|
|
405
|
-
rotation?:
|
|
406
|
-
scaleX?:
|
|
407
|
-
scaleY?:
|
|
408
|
-
translateX?:
|
|
409
|
-
translateY?:
|
|
527
|
+
rotation?: import("react-native").AnimatableNumericValue | undefined;
|
|
528
|
+
scaleX?: import("react-native").AnimatableNumericValue | undefined;
|
|
529
|
+
scaleY?: import("react-native").AnimatableNumericValue | undefined;
|
|
530
|
+
translateX?: import("react-native").AnimatableNumericValue | undefined;
|
|
531
|
+
translateY?: import("react-native").AnimatableNumericValue | undefined;
|
|
410
532
|
};
|
|
411
533
|
pickerItem: {
|
|
412
534
|
color: import("react-native").ColorValue;
|
|
@@ -416,7 +538,7 @@ export declare const generateStyles: (customStyles: CustomTimerPickerStyles | un
|
|
|
416
538
|
fontWeight?: "bold" | "normal" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900" | undefined;
|
|
417
539
|
letterSpacing?: number | undefined;
|
|
418
540
|
lineHeight?: number | undefined;
|
|
419
|
-
textAlign?: "
|
|
541
|
+
textAlign?: "auto" | "center" | "left" | "right" | "justify" | undefined;
|
|
420
542
|
textDecorationLine?: "none" | "underline" | "line-through" | "underline line-through" | undefined;
|
|
421
543
|
textDecorationStyle?: "solid" | "dotted" | "dashed" | "double" | undefined;
|
|
422
544
|
textDecorationColor?: import("react-native").ColorValue | undefined;
|
|
@@ -432,185 +554,247 @@ export declare const generateStyles: (customStyles: CustomTimerPickerStyles | un
|
|
|
432
554
|
writingDirection?: "auto" | "ltr" | "rtl" | undefined;
|
|
433
555
|
backfaceVisibility?: "visible" | "hidden" | undefined;
|
|
434
556
|
backgroundColor?: import("react-native").ColorValue | undefined;
|
|
557
|
+
borderBlockColor?: import("react-native").ColorValue | undefined;
|
|
558
|
+
borderBlockEndColor?: import("react-native").ColorValue | undefined;
|
|
559
|
+
borderBlockStartColor?: import("react-native").ColorValue | undefined;
|
|
435
560
|
borderBottomColor?: import("react-native").ColorValue | undefined;
|
|
436
|
-
borderBottomEndRadius?:
|
|
437
|
-
borderBottomLeftRadius?:
|
|
438
|
-
borderBottomRightRadius?:
|
|
439
|
-
borderBottomStartRadius?:
|
|
440
|
-
borderBottomWidth?: number | undefined;
|
|
561
|
+
borderBottomEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
562
|
+
borderBottomLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
563
|
+
borderBottomRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
564
|
+
borderBottomStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
441
565
|
borderColor?: import("react-native").ColorValue | undefined;
|
|
566
|
+
borderCurve?: "circular" | "continuous" | undefined;
|
|
442
567
|
borderEndColor?: import("react-native").ColorValue | undefined;
|
|
568
|
+
borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
569
|
+
borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
443
570
|
borderLeftColor?: import("react-native").ColorValue | undefined;
|
|
444
|
-
|
|
445
|
-
borderRadius?: number | undefined;
|
|
571
|
+
borderRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
446
572
|
borderRightColor?: import("react-native").ColorValue | undefined;
|
|
447
|
-
borderRightWidth?: number | undefined;
|
|
448
573
|
borderStartColor?: import("react-native").ColorValue | undefined;
|
|
574
|
+
borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
575
|
+
borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
449
576
|
borderStyle?: "solid" | "dotted" | "dashed" | undefined;
|
|
450
577
|
borderTopColor?: import("react-native").ColorValue | undefined;
|
|
451
|
-
borderTopEndRadius?:
|
|
452
|
-
borderTopLeftRadius?:
|
|
453
|
-
borderTopRightRadius?:
|
|
454
|
-
borderTopStartRadius?:
|
|
455
|
-
|
|
456
|
-
borderWidth?: number | undefined;
|
|
457
|
-
opacity?: number | undefined;
|
|
578
|
+
borderTopEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
579
|
+
borderTopLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
580
|
+
borderTopRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
581
|
+
borderTopStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
582
|
+
opacity?: import("react-native").AnimatableNumericValue | undefined;
|
|
458
583
|
elevation?: number | undefined;
|
|
584
|
+
pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined;
|
|
459
585
|
alignContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "stretch" | undefined;
|
|
460
586
|
alignItems?: import("react-native").FlexAlignType | undefined;
|
|
461
|
-
alignSelf?: import("react-native").FlexAlignType |
|
|
462
|
-
aspectRatio?: number | undefined;
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
587
|
+
alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
|
|
588
|
+
aspectRatio?: string | number | undefined;
|
|
589
|
+
borderBottomWidth?: number | undefined;
|
|
590
|
+
borderEndWidth?: number | undefined;
|
|
591
|
+
borderLeftWidth?: number | undefined;
|
|
592
|
+
borderRightWidth?: number | undefined;
|
|
593
|
+
borderStartWidth?: number | undefined;
|
|
594
|
+
borderTopWidth?: number | undefined;
|
|
595
|
+
borderWidth?: number | undefined;
|
|
596
|
+
bottom?: import("react-native").DimensionValue | undefined;
|
|
466
597
|
display?: "none" | "flex" | undefined;
|
|
467
|
-
end?:
|
|
598
|
+
end?: import("react-native").DimensionValue | undefined;
|
|
468
599
|
flex?: number | undefined;
|
|
469
|
-
flexBasis?:
|
|
600
|
+
flexBasis?: import("react-native").DimensionValue | undefined;
|
|
470
601
|
flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
|
|
602
|
+
rowGap?: number | undefined;
|
|
603
|
+
gap?: number | undefined;
|
|
604
|
+
columnGap?: number | undefined;
|
|
471
605
|
flexGrow?: number | undefined;
|
|
472
606
|
flexShrink?: number | undefined;
|
|
473
607
|
flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
|
|
474
|
-
height?:
|
|
608
|
+
height?: import("react-native").DimensionValue | undefined;
|
|
609
|
+
inset?: import("react-native").DimensionValue | undefined;
|
|
610
|
+
insetBlock?: import("react-native").DimensionValue | undefined;
|
|
611
|
+
insetBlockEnd?: import("react-native").DimensionValue | undefined;
|
|
612
|
+
insetBlockStart?: import("react-native").DimensionValue | undefined;
|
|
613
|
+
insetInline?: import("react-native").DimensionValue | undefined;
|
|
614
|
+
insetInlineEnd?: import("react-native").DimensionValue | undefined;
|
|
615
|
+
insetInlineStart?: import("react-native").DimensionValue | undefined;
|
|
475
616
|
justifyContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
476
|
-
left?:
|
|
477
|
-
margin?:
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
617
|
+
left?: import("react-native").DimensionValue | undefined;
|
|
618
|
+
margin?: import("react-native").DimensionValue | undefined;
|
|
619
|
+
marginBlock?: import("react-native").DimensionValue | undefined;
|
|
620
|
+
marginBlockEnd?: import("react-native").DimensionValue | undefined;
|
|
621
|
+
marginBlockStart?: import("react-native").DimensionValue | undefined;
|
|
622
|
+
marginBottom?: import("react-native").DimensionValue | undefined;
|
|
623
|
+
marginEnd?: import("react-native").DimensionValue | undefined;
|
|
624
|
+
marginHorizontal?: import("react-native").DimensionValue | undefined;
|
|
625
|
+
marginInline?: import("react-native").DimensionValue | undefined;
|
|
626
|
+
marginInlineEnd?: import("react-native").DimensionValue | undefined;
|
|
627
|
+
marginInlineStart?: import("react-native").DimensionValue | undefined;
|
|
628
|
+
marginLeft?: import("react-native").DimensionValue | undefined;
|
|
629
|
+
marginRight?: import("react-native").DimensionValue | undefined;
|
|
630
|
+
marginStart?: import("react-native").DimensionValue | undefined;
|
|
631
|
+
marginTop?: import("react-native").DimensionValue | undefined;
|
|
632
|
+
marginVertical?: import("react-native").DimensionValue | undefined;
|
|
633
|
+
maxHeight?: import("react-native").DimensionValue | undefined;
|
|
634
|
+
maxWidth?: import("react-native").DimensionValue | undefined;
|
|
635
|
+
minHeight?: import("react-native").DimensionValue | undefined;
|
|
636
|
+
minWidth?: import("react-native").DimensionValue | undefined;
|
|
490
637
|
overflow?: "visible" | "hidden" | "scroll" | undefined;
|
|
491
|
-
padding?:
|
|
492
|
-
paddingBottom?:
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
638
|
+
padding?: import("react-native").DimensionValue | undefined;
|
|
639
|
+
paddingBottom?: import("react-native").DimensionValue | undefined;
|
|
640
|
+
paddingBlock?: import("react-native").DimensionValue | undefined;
|
|
641
|
+
paddingBlockEnd?: import("react-native").DimensionValue | undefined;
|
|
642
|
+
paddingBlockStart?: import("react-native").DimensionValue | undefined;
|
|
643
|
+
paddingEnd?: import("react-native").DimensionValue | undefined;
|
|
644
|
+
paddingHorizontal?: import("react-native").DimensionValue | undefined;
|
|
645
|
+
paddingInline?: import("react-native").DimensionValue | undefined;
|
|
646
|
+
paddingInlineEnd?: import("react-native").DimensionValue | undefined;
|
|
647
|
+
paddingInlineStart?: import("react-native").DimensionValue | undefined;
|
|
648
|
+
paddingLeft?: import("react-native").DimensionValue | undefined;
|
|
649
|
+
paddingRight?: import("react-native").DimensionValue | undefined;
|
|
650
|
+
paddingStart?: import("react-native").DimensionValue | undefined;
|
|
651
|
+
paddingTop?: import("react-native").DimensionValue | undefined;
|
|
652
|
+
paddingVertical?: import("react-native").DimensionValue | undefined;
|
|
500
653
|
position?: "absolute" | "relative" | undefined;
|
|
501
|
-
right?:
|
|
502
|
-
start?:
|
|
503
|
-
top?:
|
|
504
|
-
width?:
|
|
654
|
+
right?: import("react-native").DimensionValue | undefined;
|
|
655
|
+
start?: import("react-native").DimensionValue | undefined;
|
|
656
|
+
top?: import("react-native").DimensionValue | undefined;
|
|
657
|
+
width?: import("react-native").DimensionValue | undefined;
|
|
505
658
|
zIndex?: number | undefined;
|
|
506
659
|
direction?: "inherit" | "ltr" | "rtl" | undefined;
|
|
507
660
|
shadowColor?: import("react-native").ColorValue | undefined;
|
|
508
|
-
shadowOffset?: {
|
|
661
|
+
shadowOffset?: Readonly<{
|
|
509
662
|
width: number;
|
|
510
663
|
height: number;
|
|
511
|
-
} | undefined;
|
|
512
|
-
shadowOpacity?:
|
|
664
|
+
}> | undefined;
|
|
665
|
+
shadowOpacity?: import("react-native").AnimatableNumericValue | undefined;
|
|
513
666
|
shadowRadius?: number | undefined;
|
|
514
667
|
transform?: (import("react-native").PerpectiveTransform | import("react-native").RotateTransform | import("react-native").RotateXTransform | import("react-native").RotateYTransform | import("react-native").RotateZTransform | import("react-native").ScaleTransform | import("react-native").ScaleXTransform | import("react-native").ScaleYTransform | import("react-native").TranslateXTransform | import("react-native").TranslateYTransform | import("react-native").SkewXTransform | import("react-native").SkewYTransform | import("react-native").MatrixTransform)[] | undefined;
|
|
515
668
|
transformMatrix?: number[] | undefined;
|
|
516
|
-
rotation?:
|
|
517
|
-
scaleX?:
|
|
518
|
-
scaleY?:
|
|
519
|
-
translateX?:
|
|
520
|
-
translateY?:
|
|
521
|
-
textAlignVertical: "
|
|
669
|
+
rotation?: import("react-native").AnimatableNumericValue | undefined;
|
|
670
|
+
scaleX?: import("react-native").AnimatableNumericValue | undefined;
|
|
671
|
+
scaleY?: import("react-native").AnimatableNumericValue | undefined;
|
|
672
|
+
translateX?: import("react-native").AnimatableNumericValue | undefined;
|
|
673
|
+
translateY?: import("react-native").AnimatableNumericValue | undefined;
|
|
674
|
+
textAlignVertical: "auto" | "center" | "bottom" | "top";
|
|
675
|
+
verticalAlign?: "auto" | "bottom" | "top" | "middle" | undefined;
|
|
522
676
|
includeFontPadding?: boolean | undefined;
|
|
523
677
|
};
|
|
524
678
|
pickerAmPmContainer: {
|
|
525
679
|
backfaceVisibility?: "visible" | "hidden" | undefined;
|
|
526
680
|
backgroundColor?: import("react-native").ColorValue | undefined;
|
|
681
|
+
borderBlockColor?: import("react-native").ColorValue | undefined;
|
|
682
|
+
borderBlockEndColor?: import("react-native").ColorValue | undefined;
|
|
683
|
+
borderBlockStartColor?: import("react-native").ColorValue | undefined;
|
|
527
684
|
borderBottomColor?: import("react-native").ColorValue | undefined;
|
|
528
|
-
borderBottomEndRadius?:
|
|
529
|
-
borderBottomLeftRadius?:
|
|
530
|
-
borderBottomRightRadius?:
|
|
531
|
-
borderBottomStartRadius?:
|
|
532
|
-
borderBottomWidth?: number | undefined;
|
|
685
|
+
borderBottomEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
686
|
+
borderBottomLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
687
|
+
borderBottomRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
688
|
+
borderBottomStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
533
689
|
borderColor?: import("react-native").ColorValue | undefined;
|
|
690
|
+
borderCurve?: "circular" | "continuous" | undefined;
|
|
534
691
|
borderEndColor?: import("react-native").ColorValue | undefined;
|
|
692
|
+
borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
693
|
+
borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
535
694
|
borderLeftColor?: import("react-native").ColorValue | undefined;
|
|
536
|
-
|
|
537
|
-
borderRadius?: number | undefined;
|
|
695
|
+
borderRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
538
696
|
borderRightColor?: import("react-native").ColorValue | undefined;
|
|
539
|
-
borderRightWidth?: number | undefined;
|
|
540
697
|
borderStartColor?: import("react-native").ColorValue | undefined;
|
|
698
|
+
borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
699
|
+
borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
541
700
|
borderStyle?: "solid" | "dotted" | "dashed" | undefined;
|
|
542
701
|
borderTopColor?: import("react-native").ColorValue | undefined;
|
|
543
|
-
borderTopEndRadius?:
|
|
544
|
-
borderTopLeftRadius?:
|
|
545
|
-
borderTopRightRadius?:
|
|
546
|
-
borderTopStartRadius?:
|
|
547
|
-
|
|
548
|
-
borderWidth?: number | undefined;
|
|
549
|
-
opacity?: number | undefined;
|
|
550
|
-
testID?: string | undefined;
|
|
702
|
+
borderTopEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
703
|
+
borderTopLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
704
|
+
borderTopRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
705
|
+
borderTopStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
706
|
+
opacity?: import("react-native").AnimatableNumericValue | undefined;
|
|
551
707
|
elevation?: number | undefined;
|
|
708
|
+
pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined;
|
|
552
709
|
alignContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "stretch" | undefined;
|
|
553
710
|
alignItems?: import("react-native").FlexAlignType | undefined;
|
|
554
|
-
alignSelf?: import("react-native").FlexAlignType |
|
|
555
|
-
aspectRatio?: number | undefined;
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
711
|
+
alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
|
|
712
|
+
aspectRatio?: string | number | undefined;
|
|
713
|
+
borderBottomWidth?: number | undefined;
|
|
714
|
+
borderEndWidth?: number | undefined;
|
|
715
|
+
borderLeftWidth?: number | undefined;
|
|
716
|
+
borderRightWidth?: number | undefined;
|
|
717
|
+
borderStartWidth?: number | undefined;
|
|
718
|
+
borderTopWidth?: number | undefined;
|
|
719
|
+
borderWidth?: number | undefined;
|
|
720
|
+
bottom: import("react-native").DimensionValue;
|
|
559
721
|
display?: "none" | "flex" | undefined;
|
|
560
|
-
end?:
|
|
722
|
+
end?: import("react-native").DimensionValue | undefined;
|
|
561
723
|
flex?: number | undefined;
|
|
562
|
-
flexBasis?:
|
|
724
|
+
flexBasis?: import("react-native").DimensionValue | undefined;
|
|
563
725
|
flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
|
|
726
|
+
rowGap?: number | undefined;
|
|
727
|
+
gap?: number | undefined;
|
|
728
|
+
columnGap?: number | undefined;
|
|
564
729
|
flexGrow?: number | undefined;
|
|
565
730
|
flexShrink?: number | undefined;
|
|
566
731
|
flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
|
|
567
|
-
height?:
|
|
732
|
+
height?: import("react-native").DimensionValue | undefined;
|
|
733
|
+
inset?: import("react-native").DimensionValue | undefined;
|
|
734
|
+
insetBlock?: import("react-native").DimensionValue | undefined;
|
|
735
|
+
insetBlockEnd?: import("react-native").DimensionValue | undefined;
|
|
736
|
+
insetBlockStart?: import("react-native").DimensionValue | undefined;
|
|
737
|
+
insetInline?: import("react-native").DimensionValue | undefined;
|
|
738
|
+
insetInlineEnd?: import("react-native").DimensionValue | undefined;
|
|
739
|
+
insetInlineStart?: import("react-native").DimensionValue | undefined;
|
|
568
740
|
justifyContent: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly";
|
|
569
|
-
left?:
|
|
570
|
-
margin?:
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
741
|
+
left?: import("react-native").DimensionValue | undefined;
|
|
742
|
+
margin?: import("react-native").DimensionValue | undefined;
|
|
743
|
+
marginBlock?: import("react-native").DimensionValue | undefined;
|
|
744
|
+
marginBlockEnd?: import("react-native").DimensionValue | undefined;
|
|
745
|
+
marginBlockStart?: import("react-native").DimensionValue | undefined;
|
|
746
|
+
marginBottom?: import("react-native").DimensionValue | undefined;
|
|
747
|
+
marginEnd?: import("react-native").DimensionValue | undefined;
|
|
748
|
+
marginHorizontal?: import("react-native").DimensionValue | undefined;
|
|
749
|
+
marginInline?: import("react-native").DimensionValue | undefined;
|
|
750
|
+
marginInlineEnd?: import("react-native").DimensionValue | undefined;
|
|
751
|
+
marginInlineStart?: import("react-native").DimensionValue | undefined;
|
|
752
|
+
marginLeft?: import("react-native").DimensionValue | undefined;
|
|
753
|
+
marginRight?: import("react-native").DimensionValue | undefined;
|
|
754
|
+
marginStart?: import("react-native").DimensionValue | undefined;
|
|
755
|
+
marginTop?: import("react-native").DimensionValue | undefined;
|
|
756
|
+
marginVertical?: import("react-native").DimensionValue | undefined;
|
|
757
|
+
maxHeight?: import("react-native").DimensionValue | undefined;
|
|
758
|
+
maxWidth?: import("react-native").DimensionValue | undefined;
|
|
759
|
+
minHeight?: import("react-native").DimensionValue | undefined;
|
|
760
|
+
minWidth?: import("react-native").DimensionValue | undefined;
|
|
583
761
|
overflow?: "visible" | "hidden" | "scroll" | undefined;
|
|
584
|
-
padding?:
|
|
585
|
-
paddingBottom?:
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
762
|
+
padding?: import("react-native").DimensionValue | undefined;
|
|
763
|
+
paddingBottom?: import("react-native").DimensionValue | undefined;
|
|
764
|
+
paddingBlock?: import("react-native").DimensionValue | undefined;
|
|
765
|
+
paddingBlockEnd?: import("react-native").DimensionValue | undefined;
|
|
766
|
+
paddingBlockStart?: import("react-native").DimensionValue | undefined;
|
|
767
|
+
paddingEnd?: import("react-native").DimensionValue | undefined;
|
|
768
|
+
paddingHorizontal?: import("react-native").DimensionValue | undefined;
|
|
769
|
+
paddingInline?: import("react-native").DimensionValue | undefined;
|
|
770
|
+
paddingInlineEnd?: import("react-native").DimensionValue | undefined;
|
|
771
|
+
paddingInlineStart?: import("react-native").DimensionValue | undefined;
|
|
772
|
+
paddingLeft?: import("react-native").DimensionValue | undefined;
|
|
773
|
+
paddingRight?: import("react-native").DimensionValue | undefined;
|
|
774
|
+
paddingStart?: import("react-native").DimensionValue | undefined;
|
|
775
|
+
paddingTop?: import("react-native").DimensionValue | undefined;
|
|
776
|
+
paddingVertical?: import("react-native").DimensionValue | undefined;
|
|
593
777
|
position: "absolute" | "relative";
|
|
594
|
-
right:
|
|
595
|
-
start?:
|
|
596
|
-
top:
|
|
597
|
-
width?:
|
|
778
|
+
right: import("react-native").DimensionValue;
|
|
779
|
+
start?: import("react-native").DimensionValue | undefined;
|
|
780
|
+
top: import("react-native").DimensionValue;
|
|
781
|
+
width?: import("react-native").DimensionValue | undefined;
|
|
598
782
|
zIndex?: number | undefined;
|
|
599
783
|
direction?: "inherit" | "ltr" | "rtl" | undefined;
|
|
600
784
|
shadowColor?: import("react-native").ColorValue | undefined;
|
|
601
|
-
shadowOffset?: {
|
|
785
|
+
shadowOffset?: Readonly<{
|
|
602
786
|
width: number;
|
|
603
787
|
height: number;
|
|
604
|
-
} | undefined;
|
|
605
|
-
shadowOpacity?:
|
|
788
|
+
}> | undefined;
|
|
789
|
+
shadowOpacity?: import("react-native").AnimatableNumericValue | undefined;
|
|
606
790
|
shadowRadius?: number | undefined;
|
|
607
791
|
transform?: (import("react-native").PerpectiveTransform | import("react-native").RotateTransform | import("react-native").RotateXTransform | import("react-native").RotateYTransform | import("react-native").RotateZTransform | import("react-native").ScaleTransform | import("react-native").ScaleXTransform | import("react-native").ScaleYTransform | import("react-native").TranslateXTransform | import("react-native").TranslateYTransform | import("react-native").SkewXTransform | import("react-native").SkewYTransform | import("react-native").MatrixTransform)[] | undefined;
|
|
608
792
|
transformMatrix?: number[] | undefined;
|
|
609
|
-
rotation?:
|
|
610
|
-
scaleX?:
|
|
611
|
-
scaleY?:
|
|
612
|
-
translateX?:
|
|
613
|
-
translateY?:
|
|
793
|
+
rotation?: import("react-native").AnimatableNumericValue | undefined;
|
|
794
|
+
scaleX?: import("react-native").AnimatableNumericValue | undefined;
|
|
795
|
+
scaleY?: import("react-native").AnimatableNumericValue | undefined;
|
|
796
|
+
translateX?: import("react-native").AnimatableNumericValue | undefined;
|
|
797
|
+
translateY?: import("react-native").AnimatableNumericValue | undefined;
|
|
614
798
|
};
|
|
615
799
|
pickerAmPmLabel: {
|
|
616
800
|
color: import("react-native").ColorValue;
|
|
@@ -620,7 +804,7 @@ export declare const generateStyles: (customStyles: CustomTimerPickerStyles | un
|
|
|
620
804
|
fontWeight: "bold" | "normal" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900";
|
|
621
805
|
letterSpacing?: number | undefined;
|
|
622
806
|
lineHeight?: number | undefined;
|
|
623
|
-
textAlign?: "
|
|
807
|
+
textAlign?: "auto" | "center" | "left" | "right" | "justify" | undefined;
|
|
624
808
|
textDecorationLine?: "none" | "underline" | "line-through" | "underline line-through" | undefined;
|
|
625
809
|
textDecorationStyle?: "solid" | "dotted" | "dashed" | "double" | undefined;
|
|
626
810
|
textDecorationColor?: import("react-native").ColorValue | undefined;
|
|
@@ -636,185 +820,247 @@ export declare const generateStyles: (customStyles: CustomTimerPickerStyles | un
|
|
|
636
820
|
writingDirection?: "auto" | "ltr" | "rtl" | undefined;
|
|
637
821
|
backfaceVisibility?: "visible" | "hidden" | undefined;
|
|
638
822
|
backgroundColor?: import("react-native").ColorValue | undefined;
|
|
823
|
+
borderBlockColor?: import("react-native").ColorValue | undefined;
|
|
824
|
+
borderBlockEndColor?: import("react-native").ColorValue | undefined;
|
|
825
|
+
borderBlockStartColor?: import("react-native").ColorValue | undefined;
|
|
639
826
|
borderBottomColor?: import("react-native").ColorValue | undefined;
|
|
640
|
-
borderBottomEndRadius?:
|
|
641
|
-
borderBottomLeftRadius?:
|
|
642
|
-
borderBottomRightRadius?:
|
|
643
|
-
borderBottomStartRadius?:
|
|
644
|
-
borderBottomWidth?: number | undefined;
|
|
827
|
+
borderBottomEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
828
|
+
borderBottomLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
829
|
+
borderBottomRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
830
|
+
borderBottomStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
645
831
|
borderColor?: import("react-native").ColorValue | undefined;
|
|
832
|
+
borderCurve?: "circular" | "continuous" | undefined;
|
|
646
833
|
borderEndColor?: import("react-native").ColorValue | undefined;
|
|
834
|
+
borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
835
|
+
borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
647
836
|
borderLeftColor?: import("react-native").ColorValue | undefined;
|
|
648
|
-
|
|
649
|
-
borderRadius?: number | undefined;
|
|
837
|
+
borderRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
650
838
|
borderRightColor?: import("react-native").ColorValue | undefined;
|
|
651
|
-
borderRightWidth?: number | undefined;
|
|
652
839
|
borderStartColor?: import("react-native").ColorValue | undefined;
|
|
840
|
+
borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
841
|
+
borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
653
842
|
borderStyle?: "solid" | "dotted" | "dashed" | undefined;
|
|
654
843
|
borderTopColor?: import("react-native").ColorValue | undefined;
|
|
655
|
-
borderTopEndRadius?:
|
|
656
|
-
borderTopLeftRadius?:
|
|
657
|
-
borderTopRightRadius?:
|
|
658
|
-
borderTopStartRadius?:
|
|
659
|
-
|
|
660
|
-
borderWidth?: number | undefined;
|
|
661
|
-
opacity?: number | undefined;
|
|
844
|
+
borderTopEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
845
|
+
borderTopLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
846
|
+
borderTopRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
847
|
+
borderTopStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
848
|
+
opacity?: import("react-native").AnimatableNumericValue | undefined;
|
|
662
849
|
elevation?: number | undefined;
|
|
850
|
+
pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined;
|
|
663
851
|
alignContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "stretch" | undefined;
|
|
664
852
|
alignItems?: import("react-native").FlexAlignType | undefined;
|
|
665
|
-
alignSelf?: import("react-native").FlexAlignType |
|
|
666
|
-
aspectRatio?: number | undefined;
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
853
|
+
alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
|
|
854
|
+
aspectRatio?: string | number | undefined;
|
|
855
|
+
borderBottomWidth?: number | undefined;
|
|
856
|
+
borderEndWidth?: number | undefined;
|
|
857
|
+
borderLeftWidth?: number | undefined;
|
|
858
|
+
borderRightWidth?: number | undefined;
|
|
859
|
+
borderStartWidth?: number | undefined;
|
|
860
|
+
borderTopWidth?: number | undefined;
|
|
861
|
+
borderWidth?: number | undefined;
|
|
862
|
+
bottom?: import("react-native").DimensionValue | undefined;
|
|
670
863
|
display?: "none" | "flex" | undefined;
|
|
671
|
-
end?:
|
|
864
|
+
end?: import("react-native").DimensionValue | undefined;
|
|
672
865
|
flex?: number | undefined;
|
|
673
|
-
flexBasis?:
|
|
866
|
+
flexBasis?: import("react-native").DimensionValue | undefined;
|
|
674
867
|
flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
|
|
868
|
+
rowGap?: number | undefined;
|
|
869
|
+
gap?: number | undefined;
|
|
870
|
+
columnGap?: number | undefined;
|
|
675
871
|
flexGrow?: number | undefined;
|
|
676
872
|
flexShrink?: number | undefined;
|
|
677
873
|
flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
|
|
678
|
-
height?:
|
|
874
|
+
height?: import("react-native").DimensionValue | undefined;
|
|
875
|
+
inset?: import("react-native").DimensionValue | undefined;
|
|
876
|
+
insetBlock?: import("react-native").DimensionValue | undefined;
|
|
877
|
+
insetBlockEnd?: import("react-native").DimensionValue | undefined;
|
|
878
|
+
insetBlockStart?: import("react-native").DimensionValue | undefined;
|
|
879
|
+
insetInline?: import("react-native").DimensionValue | undefined;
|
|
880
|
+
insetInlineEnd?: import("react-native").DimensionValue | undefined;
|
|
881
|
+
insetInlineStart?: import("react-native").DimensionValue | undefined;
|
|
679
882
|
justifyContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
680
|
-
left?:
|
|
681
|
-
margin?:
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
883
|
+
left?: import("react-native").DimensionValue | undefined;
|
|
884
|
+
margin?: import("react-native").DimensionValue | undefined;
|
|
885
|
+
marginBlock?: import("react-native").DimensionValue | undefined;
|
|
886
|
+
marginBlockEnd?: import("react-native").DimensionValue | undefined;
|
|
887
|
+
marginBlockStart?: import("react-native").DimensionValue | undefined;
|
|
888
|
+
marginBottom?: import("react-native").DimensionValue | undefined;
|
|
889
|
+
marginEnd?: import("react-native").DimensionValue | undefined;
|
|
890
|
+
marginHorizontal?: import("react-native").DimensionValue | undefined;
|
|
891
|
+
marginInline?: import("react-native").DimensionValue | undefined;
|
|
892
|
+
marginInlineEnd?: import("react-native").DimensionValue | undefined;
|
|
893
|
+
marginInlineStart?: import("react-native").DimensionValue | undefined;
|
|
894
|
+
marginLeft?: import("react-native").DimensionValue | undefined;
|
|
895
|
+
marginRight?: import("react-native").DimensionValue | undefined;
|
|
896
|
+
marginStart?: import("react-native").DimensionValue | undefined;
|
|
897
|
+
marginTop: import("react-native").DimensionValue;
|
|
898
|
+
marginVertical?: import("react-native").DimensionValue | undefined;
|
|
899
|
+
maxHeight?: import("react-native").DimensionValue | undefined;
|
|
900
|
+
maxWidth?: import("react-native").DimensionValue | undefined;
|
|
901
|
+
minHeight?: import("react-native").DimensionValue | undefined;
|
|
902
|
+
minWidth?: import("react-native").DimensionValue | undefined;
|
|
694
903
|
overflow?: "visible" | "hidden" | "scroll" | undefined;
|
|
695
|
-
padding?:
|
|
696
|
-
paddingBottom?:
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
904
|
+
padding?: import("react-native").DimensionValue | undefined;
|
|
905
|
+
paddingBottom?: import("react-native").DimensionValue | undefined;
|
|
906
|
+
paddingBlock?: import("react-native").DimensionValue | undefined;
|
|
907
|
+
paddingBlockEnd?: import("react-native").DimensionValue | undefined;
|
|
908
|
+
paddingBlockStart?: import("react-native").DimensionValue | undefined;
|
|
909
|
+
paddingEnd?: import("react-native").DimensionValue | undefined;
|
|
910
|
+
paddingHorizontal?: import("react-native").DimensionValue | undefined;
|
|
911
|
+
paddingInline?: import("react-native").DimensionValue | undefined;
|
|
912
|
+
paddingInlineEnd?: import("react-native").DimensionValue | undefined;
|
|
913
|
+
paddingInlineStart?: import("react-native").DimensionValue | undefined;
|
|
914
|
+
paddingLeft?: import("react-native").DimensionValue | undefined;
|
|
915
|
+
paddingRight?: import("react-native").DimensionValue | undefined;
|
|
916
|
+
paddingStart?: import("react-native").DimensionValue | undefined;
|
|
917
|
+
paddingTop?: import("react-native").DimensionValue | undefined;
|
|
918
|
+
paddingVertical?: import("react-native").DimensionValue | undefined;
|
|
704
919
|
position?: "absolute" | "relative" | undefined;
|
|
705
|
-
right?:
|
|
706
|
-
start?:
|
|
707
|
-
top?:
|
|
708
|
-
width?:
|
|
920
|
+
right?: import("react-native").DimensionValue | undefined;
|
|
921
|
+
start?: import("react-native").DimensionValue | undefined;
|
|
922
|
+
top?: import("react-native").DimensionValue | undefined;
|
|
923
|
+
width?: import("react-native").DimensionValue | undefined;
|
|
709
924
|
zIndex?: number | undefined;
|
|
710
925
|
direction?: "inherit" | "ltr" | "rtl" | undefined;
|
|
711
926
|
shadowColor?: import("react-native").ColorValue | undefined;
|
|
712
|
-
shadowOffset?: {
|
|
927
|
+
shadowOffset?: Readonly<{
|
|
713
928
|
width: number;
|
|
714
929
|
height: number;
|
|
715
|
-
} | undefined;
|
|
716
|
-
shadowOpacity?:
|
|
930
|
+
}> | undefined;
|
|
931
|
+
shadowOpacity?: import("react-native").AnimatableNumericValue | undefined;
|
|
717
932
|
shadowRadius?: number | undefined;
|
|
718
933
|
transform?: (import("react-native").PerpectiveTransform | import("react-native").RotateTransform | import("react-native").RotateXTransform | import("react-native").RotateYTransform | import("react-native").RotateZTransform | import("react-native").ScaleTransform | import("react-native").ScaleXTransform | import("react-native").ScaleYTransform | import("react-native").TranslateXTransform | import("react-native").TranslateYTransform | import("react-native").SkewXTransform | import("react-native").SkewYTransform | import("react-native").MatrixTransform)[] | undefined;
|
|
719
934
|
transformMatrix?: number[] | undefined;
|
|
720
|
-
rotation?:
|
|
721
|
-
scaleX?:
|
|
722
|
-
scaleY?:
|
|
723
|
-
translateX?:
|
|
724
|
-
translateY?:
|
|
725
|
-
textAlignVertical?: "
|
|
935
|
+
rotation?: import("react-native").AnimatableNumericValue | undefined;
|
|
936
|
+
scaleX?: import("react-native").AnimatableNumericValue | undefined;
|
|
937
|
+
scaleY?: import("react-native").AnimatableNumericValue | undefined;
|
|
938
|
+
translateX?: import("react-native").AnimatableNumericValue | undefined;
|
|
939
|
+
translateY?: import("react-native").AnimatableNumericValue | undefined;
|
|
940
|
+
textAlignVertical?: "auto" | "center" | "bottom" | "top" | undefined;
|
|
941
|
+
verticalAlign?: "auto" | "bottom" | "top" | "middle" | undefined;
|
|
726
942
|
includeFontPadding?: boolean | undefined;
|
|
727
943
|
};
|
|
728
944
|
disabledPickerContainer: {
|
|
729
945
|
backfaceVisibility?: "visible" | "hidden" | undefined;
|
|
730
946
|
backgroundColor?: import("react-native").ColorValue | undefined;
|
|
947
|
+
borderBlockColor?: import("react-native").ColorValue | undefined;
|
|
948
|
+
borderBlockEndColor?: import("react-native").ColorValue | undefined;
|
|
949
|
+
borderBlockStartColor?: import("react-native").ColorValue | undefined;
|
|
731
950
|
borderBottomColor?: import("react-native").ColorValue | undefined;
|
|
732
|
-
borderBottomEndRadius?:
|
|
733
|
-
borderBottomLeftRadius?:
|
|
734
|
-
borderBottomRightRadius?:
|
|
735
|
-
borderBottomStartRadius?:
|
|
736
|
-
borderBottomWidth?: number | undefined;
|
|
951
|
+
borderBottomEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
952
|
+
borderBottomLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
953
|
+
borderBottomRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
954
|
+
borderBottomStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
737
955
|
borderColor?: import("react-native").ColorValue | undefined;
|
|
956
|
+
borderCurve?: "circular" | "continuous" | undefined;
|
|
738
957
|
borderEndColor?: import("react-native").ColorValue | undefined;
|
|
958
|
+
borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
959
|
+
borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
739
960
|
borderLeftColor?: import("react-native").ColorValue | undefined;
|
|
740
|
-
|
|
741
|
-
borderRadius?: number | undefined;
|
|
961
|
+
borderRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
742
962
|
borderRightColor?: import("react-native").ColorValue | undefined;
|
|
743
|
-
borderRightWidth?: number | undefined;
|
|
744
963
|
borderStartColor?: import("react-native").ColorValue | undefined;
|
|
964
|
+
borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
965
|
+
borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
745
966
|
borderStyle?: "solid" | "dotted" | "dashed" | undefined;
|
|
746
967
|
borderTopColor?: import("react-native").ColorValue | undefined;
|
|
747
|
-
borderTopEndRadius?:
|
|
748
|
-
borderTopLeftRadius?:
|
|
749
|
-
borderTopRightRadius?:
|
|
750
|
-
borderTopStartRadius?:
|
|
751
|
-
|
|
752
|
-
borderWidth?: number | undefined;
|
|
753
|
-
opacity: number;
|
|
754
|
-
testID?: string | undefined;
|
|
968
|
+
borderTopEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
969
|
+
borderTopLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
970
|
+
borderTopRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
971
|
+
borderTopStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
972
|
+
opacity: import("react-native").AnimatableNumericValue;
|
|
755
973
|
elevation?: number | undefined;
|
|
974
|
+
pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined;
|
|
756
975
|
alignContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "stretch" | undefined;
|
|
757
976
|
alignItems?: import("react-native").FlexAlignType | undefined;
|
|
758
|
-
alignSelf?: import("react-native").FlexAlignType |
|
|
759
|
-
aspectRatio?: number | undefined;
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
977
|
+
alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
|
|
978
|
+
aspectRatio?: string | number | undefined;
|
|
979
|
+
borderBottomWidth?: number | undefined;
|
|
980
|
+
borderEndWidth?: number | undefined;
|
|
981
|
+
borderLeftWidth?: number | undefined;
|
|
982
|
+
borderRightWidth?: number | undefined;
|
|
983
|
+
borderStartWidth?: number | undefined;
|
|
984
|
+
borderTopWidth?: number | undefined;
|
|
985
|
+
borderWidth?: number | undefined;
|
|
986
|
+
bottom?: import("react-native").DimensionValue | undefined;
|
|
763
987
|
display?: "none" | "flex" | undefined;
|
|
764
|
-
end?:
|
|
988
|
+
end?: import("react-native").DimensionValue | undefined;
|
|
765
989
|
flex?: number | undefined;
|
|
766
|
-
flexBasis?:
|
|
990
|
+
flexBasis?: import("react-native").DimensionValue | undefined;
|
|
767
991
|
flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
|
|
992
|
+
rowGap?: number | undefined;
|
|
993
|
+
gap?: number | undefined;
|
|
994
|
+
columnGap?: number | undefined;
|
|
768
995
|
flexGrow?: number | undefined;
|
|
769
996
|
flexShrink?: number | undefined;
|
|
770
997
|
flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
|
|
771
|
-
height?:
|
|
998
|
+
height?: import("react-native").DimensionValue | undefined;
|
|
999
|
+
inset?: import("react-native").DimensionValue | undefined;
|
|
1000
|
+
insetBlock?: import("react-native").DimensionValue | undefined;
|
|
1001
|
+
insetBlockEnd?: import("react-native").DimensionValue | undefined;
|
|
1002
|
+
insetBlockStart?: import("react-native").DimensionValue | undefined;
|
|
1003
|
+
insetInline?: import("react-native").DimensionValue | undefined;
|
|
1004
|
+
insetInlineEnd?: import("react-native").DimensionValue | undefined;
|
|
1005
|
+
insetInlineStart?: import("react-native").DimensionValue | undefined;
|
|
772
1006
|
justifyContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
773
|
-
left?:
|
|
774
|
-
margin?:
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
1007
|
+
left?: import("react-native").DimensionValue | undefined;
|
|
1008
|
+
margin?: import("react-native").DimensionValue | undefined;
|
|
1009
|
+
marginBlock?: import("react-native").DimensionValue | undefined;
|
|
1010
|
+
marginBlockEnd?: import("react-native").DimensionValue | undefined;
|
|
1011
|
+
marginBlockStart?: import("react-native").DimensionValue | undefined;
|
|
1012
|
+
marginBottom?: import("react-native").DimensionValue | undefined;
|
|
1013
|
+
marginEnd?: import("react-native").DimensionValue | undefined;
|
|
1014
|
+
marginHorizontal?: import("react-native").DimensionValue | undefined;
|
|
1015
|
+
marginInline?: import("react-native").DimensionValue | undefined;
|
|
1016
|
+
marginInlineEnd?: import("react-native").DimensionValue | undefined;
|
|
1017
|
+
marginInlineStart?: import("react-native").DimensionValue | undefined;
|
|
1018
|
+
marginLeft?: import("react-native").DimensionValue | undefined;
|
|
1019
|
+
marginRight?: import("react-native").DimensionValue | undefined;
|
|
1020
|
+
marginStart?: import("react-native").DimensionValue | undefined;
|
|
1021
|
+
marginTop?: import("react-native").DimensionValue | undefined;
|
|
1022
|
+
marginVertical?: import("react-native").DimensionValue | undefined;
|
|
1023
|
+
maxHeight?: import("react-native").DimensionValue | undefined;
|
|
1024
|
+
maxWidth?: import("react-native").DimensionValue | undefined;
|
|
1025
|
+
minHeight?: import("react-native").DimensionValue | undefined;
|
|
1026
|
+
minWidth?: import("react-native").DimensionValue | undefined;
|
|
787
1027
|
overflow?: "visible" | "hidden" | "scroll" | undefined;
|
|
788
|
-
padding?:
|
|
789
|
-
paddingBottom?:
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
1028
|
+
padding?: import("react-native").DimensionValue | undefined;
|
|
1029
|
+
paddingBottom?: import("react-native").DimensionValue | undefined;
|
|
1030
|
+
paddingBlock?: import("react-native").DimensionValue | undefined;
|
|
1031
|
+
paddingBlockEnd?: import("react-native").DimensionValue | undefined;
|
|
1032
|
+
paddingBlockStart?: import("react-native").DimensionValue | undefined;
|
|
1033
|
+
paddingEnd?: import("react-native").DimensionValue | undefined;
|
|
1034
|
+
paddingHorizontal?: import("react-native").DimensionValue | undefined;
|
|
1035
|
+
paddingInline?: import("react-native").DimensionValue | undefined;
|
|
1036
|
+
paddingInlineEnd?: import("react-native").DimensionValue | undefined;
|
|
1037
|
+
paddingInlineStart?: import("react-native").DimensionValue | undefined;
|
|
1038
|
+
paddingLeft?: import("react-native").DimensionValue | undefined;
|
|
1039
|
+
paddingRight?: import("react-native").DimensionValue | undefined;
|
|
1040
|
+
paddingStart?: import("react-native").DimensionValue | undefined;
|
|
1041
|
+
paddingTop?: import("react-native").DimensionValue | undefined;
|
|
1042
|
+
paddingVertical?: import("react-native").DimensionValue | undefined;
|
|
797
1043
|
position?: "absolute" | "relative" | undefined;
|
|
798
|
-
right?:
|
|
799
|
-
start?:
|
|
800
|
-
top?:
|
|
801
|
-
width?:
|
|
1044
|
+
right?: import("react-native").DimensionValue | undefined;
|
|
1045
|
+
start?: import("react-native").DimensionValue | undefined;
|
|
1046
|
+
top?: import("react-native").DimensionValue | undefined;
|
|
1047
|
+
width?: import("react-native").DimensionValue | undefined;
|
|
802
1048
|
zIndex?: number | undefined;
|
|
803
1049
|
direction?: "inherit" | "ltr" | "rtl" | undefined;
|
|
804
1050
|
shadowColor?: import("react-native").ColorValue | undefined;
|
|
805
|
-
shadowOffset?: {
|
|
1051
|
+
shadowOffset?: Readonly<{
|
|
806
1052
|
width: number;
|
|
807
1053
|
height: number;
|
|
808
|
-
} | undefined;
|
|
809
|
-
shadowOpacity?:
|
|
1054
|
+
}> | undefined;
|
|
1055
|
+
shadowOpacity?: import("react-native").AnimatableNumericValue | undefined;
|
|
810
1056
|
shadowRadius?: number | undefined;
|
|
811
1057
|
transform?: (import("react-native").PerpectiveTransform | import("react-native").RotateTransform | import("react-native").RotateXTransform | import("react-native").RotateYTransform | import("react-native").RotateZTransform | import("react-native").ScaleTransform | import("react-native").ScaleXTransform | import("react-native").ScaleYTransform | import("react-native").TranslateXTransform | import("react-native").TranslateYTransform | import("react-native").SkewXTransform | import("react-native").SkewYTransform | import("react-native").MatrixTransform)[] | undefined;
|
|
812
1058
|
transformMatrix?: number[] | undefined;
|
|
813
|
-
rotation?:
|
|
814
|
-
scaleX?:
|
|
815
|
-
scaleY?:
|
|
816
|
-
translateX?:
|
|
817
|
-
translateY?:
|
|
1059
|
+
rotation?: import("react-native").AnimatableNumericValue | undefined;
|
|
1060
|
+
scaleX?: import("react-native").AnimatableNumericValue | undefined;
|
|
1061
|
+
scaleY?: import("react-native").AnimatableNumericValue | undefined;
|
|
1062
|
+
translateX?: import("react-native").AnimatableNumericValue | undefined;
|
|
1063
|
+
translateY?: import("react-native").AnimatableNumericValue | undefined;
|
|
818
1064
|
};
|
|
819
1065
|
disabledPickerItem: {
|
|
820
1066
|
color?: import("react-native").ColorValue | undefined;
|
|
@@ -824,7 +1070,7 @@ export declare const generateStyles: (customStyles: CustomTimerPickerStyles | un
|
|
|
824
1070
|
fontWeight?: "bold" | "normal" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900" | undefined;
|
|
825
1071
|
letterSpacing?: number | undefined;
|
|
826
1072
|
lineHeight?: number | undefined;
|
|
827
|
-
textAlign?: "
|
|
1073
|
+
textAlign?: "auto" | "center" | "left" | "right" | "justify" | undefined;
|
|
828
1074
|
textDecorationLine?: "none" | "underline" | "line-through" | "underline line-through" | undefined;
|
|
829
1075
|
textDecorationStyle?: "solid" | "dotted" | "dashed" | "double" | undefined;
|
|
830
1076
|
textDecorationColor?: import("react-native").ColorValue | undefined;
|
|
@@ -840,93 +1086,125 @@ export declare const generateStyles: (customStyles: CustomTimerPickerStyles | un
|
|
|
840
1086
|
writingDirection?: "auto" | "ltr" | "rtl" | undefined;
|
|
841
1087
|
backfaceVisibility?: "visible" | "hidden" | undefined;
|
|
842
1088
|
backgroundColor?: import("react-native").ColorValue | undefined;
|
|
1089
|
+
borderBlockColor?: import("react-native").ColorValue | undefined;
|
|
1090
|
+
borderBlockEndColor?: import("react-native").ColorValue | undefined;
|
|
1091
|
+
borderBlockStartColor?: import("react-native").ColorValue | undefined;
|
|
843
1092
|
borderBottomColor?: import("react-native").ColorValue | undefined;
|
|
844
|
-
borderBottomEndRadius?:
|
|
845
|
-
borderBottomLeftRadius?:
|
|
846
|
-
borderBottomRightRadius?:
|
|
847
|
-
borderBottomStartRadius?:
|
|
848
|
-
borderBottomWidth?: number | undefined;
|
|
1093
|
+
borderBottomEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1094
|
+
borderBottomLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1095
|
+
borderBottomRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1096
|
+
borderBottomStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
849
1097
|
borderColor?: import("react-native").ColorValue | undefined;
|
|
1098
|
+
borderCurve?: "circular" | "continuous" | undefined;
|
|
850
1099
|
borderEndColor?: import("react-native").ColorValue | undefined;
|
|
1100
|
+
borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1101
|
+
borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
851
1102
|
borderLeftColor?: import("react-native").ColorValue | undefined;
|
|
852
|
-
|
|
853
|
-
borderRadius?: number | undefined;
|
|
1103
|
+
borderRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
854
1104
|
borderRightColor?: import("react-native").ColorValue | undefined;
|
|
855
|
-
borderRightWidth?: number | undefined;
|
|
856
1105
|
borderStartColor?: import("react-native").ColorValue | undefined;
|
|
1106
|
+
borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1107
|
+
borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
857
1108
|
borderStyle?: "solid" | "dotted" | "dashed" | undefined;
|
|
858
1109
|
borderTopColor?: import("react-native").ColorValue | undefined;
|
|
859
|
-
borderTopEndRadius?:
|
|
860
|
-
borderTopLeftRadius?:
|
|
861
|
-
borderTopRightRadius?:
|
|
862
|
-
borderTopStartRadius?:
|
|
863
|
-
|
|
864
|
-
borderWidth?: number | undefined;
|
|
865
|
-
opacity: number;
|
|
1110
|
+
borderTopEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1111
|
+
borderTopLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1112
|
+
borderTopRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1113
|
+
borderTopStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1114
|
+
opacity: import("react-native").AnimatableNumericValue;
|
|
866
1115
|
elevation?: number | undefined;
|
|
1116
|
+
pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined;
|
|
867
1117
|
alignContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "stretch" | undefined;
|
|
868
1118
|
alignItems?: import("react-native").FlexAlignType | undefined;
|
|
869
|
-
alignSelf?: import("react-native").FlexAlignType |
|
|
870
|
-
aspectRatio?: number | undefined;
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
1119
|
+
alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
|
|
1120
|
+
aspectRatio?: string | number | undefined;
|
|
1121
|
+
borderBottomWidth?: number | undefined;
|
|
1122
|
+
borderEndWidth?: number | undefined;
|
|
1123
|
+
borderLeftWidth?: number | undefined;
|
|
1124
|
+
borderRightWidth?: number | undefined;
|
|
1125
|
+
borderStartWidth?: number | undefined;
|
|
1126
|
+
borderTopWidth?: number | undefined;
|
|
1127
|
+
borderWidth?: number | undefined;
|
|
1128
|
+
bottom?: import("react-native").DimensionValue | undefined;
|
|
874
1129
|
display?: "none" | "flex" | undefined;
|
|
875
|
-
end?:
|
|
1130
|
+
end?: import("react-native").DimensionValue | undefined;
|
|
876
1131
|
flex?: number | undefined;
|
|
877
|
-
flexBasis?:
|
|
1132
|
+
flexBasis?: import("react-native").DimensionValue | undefined;
|
|
878
1133
|
flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
|
|
1134
|
+
rowGap?: number | undefined;
|
|
1135
|
+
gap?: number | undefined;
|
|
1136
|
+
columnGap?: number | undefined;
|
|
879
1137
|
flexGrow?: number | undefined;
|
|
880
1138
|
flexShrink?: number | undefined;
|
|
881
1139
|
flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
|
|
882
|
-
height?:
|
|
1140
|
+
height?: import("react-native").DimensionValue | undefined;
|
|
1141
|
+
inset?: import("react-native").DimensionValue | undefined;
|
|
1142
|
+
insetBlock?: import("react-native").DimensionValue | undefined;
|
|
1143
|
+
insetBlockEnd?: import("react-native").DimensionValue | undefined;
|
|
1144
|
+
insetBlockStart?: import("react-native").DimensionValue | undefined;
|
|
1145
|
+
insetInline?: import("react-native").DimensionValue | undefined;
|
|
1146
|
+
insetInlineEnd?: import("react-native").DimensionValue | undefined;
|
|
1147
|
+
insetInlineStart?: import("react-native").DimensionValue | undefined;
|
|
883
1148
|
justifyContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
884
|
-
left?:
|
|
885
|
-
margin?:
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
1149
|
+
left?: import("react-native").DimensionValue | undefined;
|
|
1150
|
+
margin?: import("react-native").DimensionValue | undefined;
|
|
1151
|
+
marginBlock?: import("react-native").DimensionValue | undefined;
|
|
1152
|
+
marginBlockEnd?: import("react-native").DimensionValue | undefined;
|
|
1153
|
+
marginBlockStart?: import("react-native").DimensionValue | undefined;
|
|
1154
|
+
marginBottom?: import("react-native").DimensionValue | undefined;
|
|
1155
|
+
marginEnd?: import("react-native").DimensionValue | undefined;
|
|
1156
|
+
marginHorizontal?: import("react-native").DimensionValue | undefined;
|
|
1157
|
+
marginInline?: import("react-native").DimensionValue | undefined;
|
|
1158
|
+
marginInlineEnd?: import("react-native").DimensionValue | undefined;
|
|
1159
|
+
marginInlineStart?: import("react-native").DimensionValue | undefined;
|
|
1160
|
+
marginLeft?: import("react-native").DimensionValue | undefined;
|
|
1161
|
+
marginRight?: import("react-native").DimensionValue | undefined;
|
|
1162
|
+
marginStart?: import("react-native").DimensionValue | undefined;
|
|
1163
|
+
marginTop?: import("react-native").DimensionValue | undefined;
|
|
1164
|
+
marginVertical?: import("react-native").DimensionValue | undefined;
|
|
1165
|
+
maxHeight?: import("react-native").DimensionValue | undefined;
|
|
1166
|
+
maxWidth?: import("react-native").DimensionValue | undefined;
|
|
1167
|
+
minHeight?: import("react-native").DimensionValue | undefined;
|
|
1168
|
+
minWidth?: import("react-native").DimensionValue | undefined;
|
|
898
1169
|
overflow?: "visible" | "hidden" | "scroll" | undefined;
|
|
899
|
-
padding?:
|
|
900
|
-
paddingBottom?:
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
1170
|
+
padding?: import("react-native").DimensionValue | undefined;
|
|
1171
|
+
paddingBottom?: import("react-native").DimensionValue | undefined;
|
|
1172
|
+
paddingBlock?: import("react-native").DimensionValue | undefined;
|
|
1173
|
+
paddingBlockEnd?: import("react-native").DimensionValue | undefined;
|
|
1174
|
+
paddingBlockStart?: import("react-native").DimensionValue | undefined;
|
|
1175
|
+
paddingEnd?: import("react-native").DimensionValue | undefined;
|
|
1176
|
+
paddingHorizontal?: import("react-native").DimensionValue | undefined;
|
|
1177
|
+
paddingInline?: import("react-native").DimensionValue | undefined;
|
|
1178
|
+
paddingInlineEnd?: import("react-native").DimensionValue | undefined;
|
|
1179
|
+
paddingInlineStart?: import("react-native").DimensionValue | undefined;
|
|
1180
|
+
paddingLeft?: import("react-native").DimensionValue | undefined;
|
|
1181
|
+
paddingRight?: import("react-native").DimensionValue | undefined;
|
|
1182
|
+
paddingStart?: import("react-native").DimensionValue | undefined;
|
|
1183
|
+
paddingTop?: import("react-native").DimensionValue | undefined;
|
|
1184
|
+
paddingVertical?: import("react-native").DimensionValue | undefined;
|
|
908
1185
|
position?: "absolute" | "relative" | undefined;
|
|
909
|
-
right?:
|
|
910
|
-
start?:
|
|
911
|
-
top?:
|
|
912
|
-
width?:
|
|
1186
|
+
right?: import("react-native").DimensionValue | undefined;
|
|
1187
|
+
start?: import("react-native").DimensionValue | undefined;
|
|
1188
|
+
top?: import("react-native").DimensionValue | undefined;
|
|
1189
|
+
width?: import("react-native").DimensionValue | undefined;
|
|
913
1190
|
zIndex?: number | undefined;
|
|
914
1191
|
direction?: "inherit" | "ltr" | "rtl" | undefined;
|
|
915
1192
|
shadowColor?: import("react-native").ColorValue | undefined;
|
|
916
|
-
shadowOffset?: {
|
|
1193
|
+
shadowOffset?: Readonly<{
|
|
917
1194
|
width: number;
|
|
918
1195
|
height: number;
|
|
919
|
-
} | undefined;
|
|
920
|
-
shadowOpacity?:
|
|
1196
|
+
}> | undefined;
|
|
1197
|
+
shadowOpacity?: import("react-native").AnimatableNumericValue | undefined;
|
|
921
1198
|
shadowRadius?: number | undefined;
|
|
922
1199
|
transform?: (import("react-native").PerpectiveTransform | import("react-native").RotateTransform | import("react-native").RotateXTransform | import("react-native").RotateYTransform | import("react-native").RotateZTransform | import("react-native").ScaleTransform | import("react-native").ScaleXTransform | import("react-native").ScaleYTransform | import("react-native").TranslateXTransform | import("react-native").TranslateYTransform | import("react-native").SkewXTransform | import("react-native").SkewYTransform | import("react-native").MatrixTransform)[] | undefined;
|
|
923
1200
|
transformMatrix?: number[] | undefined;
|
|
924
|
-
rotation?:
|
|
925
|
-
scaleX?:
|
|
926
|
-
scaleY?:
|
|
927
|
-
translateX?:
|
|
928
|
-
translateY?:
|
|
929
|
-
textAlignVertical?: "
|
|
1201
|
+
rotation?: import("react-native").AnimatableNumericValue | undefined;
|
|
1202
|
+
scaleX?: import("react-native").AnimatableNumericValue | undefined;
|
|
1203
|
+
scaleY?: import("react-native").AnimatableNumericValue | undefined;
|
|
1204
|
+
translateX?: import("react-native").AnimatableNumericValue | undefined;
|
|
1205
|
+
translateY?: import("react-native").AnimatableNumericValue | undefined;
|
|
1206
|
+
textAlignVertical?: "auto" | "center" | "bottom" | "top" | undefined;
|
|
1207
|
+
verticalAlign?: "auto" | "bottom" | "top" | "middle" | undefined;
|
|
930
1208
|
includeFontPadding?: boolean | undefined;
|
|
931
1209
|
};
|
|
932
1210
|
maskedView: {
|
|
@@ -935,365 +1213,485 @@ export declare const generateStyles: (customStyles: CustomTimerPickerStyles | un
|
|
|
935
1213
|
pickerGradientOverlay: {
|
|
936
1214
|
backfaceVisibility?: "visible" | "hidden" | undefined;
|
|
937
1215
|
backgroundColor?: import("react-native").ColorValue | undefined;
|
|
1216
|
+
borderBlockColor?: import("react-native").ColorValue | undefined;
|
|
1217
|
+
borderBlockEndColor?: import("react-native").ColorValue | undefined;
|
|
1218
|
+
borderBlockStartColor?: import("react-native").ColorValue | undefined;
|
|
938
1219
|
borderBottomColor?: import("react-native").ColorValue | undefined;
|
|
939
|
-
borderBottomEndRadius?:
|
|
940
|
-
borderBottomLeftRadius?:
|
|
941
|
-
borderBottomRightRadius?:
|
|
942
|
-
borderBottomStartRadius?:
|
|
943
|
-
borderBottomWidth?: number | undefined;
|
|
1220
|
+
borderBottomEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1221
|
+
borderBottomLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1222
|
+
borderBottomRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1223
|
+
borderBottomStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
944
1224
|
borderColor?: import("react-native").ColorValue | undefined;
|
|
1225
|
+
borderCurve?: "circular" | "continuous" | undefined;
|
|
945
1226
|
borderEndColor?: import("react-native").ColorValue | undefined;
|
|
1227
|
+
borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1228
|
+
borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
946
1229
|
borderLeftColor?: import("react-native").ColorValue | undefined;
|
|
947
|
-
|
|
948
|
-
borderRadius?: number | undefined;
|
|
1230
|
+
borderRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
949
1231
|
borderRightColor?: import("react-native").ColorValue | undefined;
|
|
950
|
-
borderRightWidth?: number | undefined;
|
|
951
1232
|
borderStartColor?: import("react-native").ColorValue | undefined;
|
|
1233
|
+
borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1234
|
+
borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
952
1235
|
borderStyle?: "solid" | "dotted" | "dashed" | undefined;
|
|
953
1236
|
borderTopColor?: import("react-native").ColorValue | undefined;
|
|
954
|
-
borderTopEndRadius?:
|
|
955
|
-
borderTopLeftRadius?:
|
|
956
|
-
borderTopRightRadius?:
|
|
957
|
-
borderTopStartRadius?:
|
|
958
|
-
|
|
959
|
-
borderWidth?: number | undefined;
|
|
960
|
-
opacity?: number | undefined;
|
|
961
|
-
testID?: string | undefined;
|
|
1237
|
+
borderTopEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1238
|
+
borderTopLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1239
|
+
borderTopRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1240
|
+
borderTopStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1241
|
+
opacity?: import("react-native").AnimatableNumericValue | undefined;
|
|
962
1242
|
elevation?: number | undefined;
|
|
1243
|
+
pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined;
|
|
963
1244
|
alignContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "stretch" | undefined;
|
|
964
1245
|
alignItems?: import("react-native").FlexAlignType | undefined;
|
|
965
|
-
alignSelf?: import("react-native").FlexAlignType |
|
|
966
|
-
aspectRatio?: number | undefined;
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
1246
|
+
alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
|
|
1247
|
+
aspectRatio?: string | number | undefined;
|
|
1248
|
+
borderBottomWidth?: number | undefined;
|
|
1249
|
+
borderEndWidth?: number | undefined;
|
|
1250
|
+
borderLeftWidth?: number | undefined;
|
|
1251
|
+
borderRightWidth?: number | undefined;
|
|
1252
|
+
borderStartWidth?: number | undefined;
|
|
1253
|
+
borderTopWidth?: number | undefined;
|
|
1254
|
+
borderWidth?: number | undefined;
|
|
1255
|
+
bottom?: import("react-native").DimensionValue | undefined;
|
|
970
1256
|
display?: "none" | "flex" | undefined;
|
|
971
|
-
end?:
|
|
1257
|
+
end?: import("react-native").DimensionValue | undefined;
|
|
972
1258
|
flex?: number | undefined;
|
|
973
|
-
flexBasis?:
|
|
1259
|
+
flexBasis?: import("react-native").DimensionValue | undefined;
|
|
974
1260
|
flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
|
|
1261
|
+
rowGap?: number | undefined;
|
|
1262
|
+
gap?: number | undefined;
|
|
1263
|
+
columnGap?: number | undefined;
|
|
975
1264
|
flexGrow?: number | undefined;
|
|
976
1265
|
flexShrink?: number | undefined;
|
|
977
1266
|
flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
|
|
978
|
-
height:
|
|
1267
|
+
height: import("react-native").DimensionValue;
|
|
1268
|
+
inset?: import("react-native").DimensionValue | undefined;
|
|
1269
|
+
insetBlock?: import("react-native").DimensionValue | undefined;
|
|
1270
|
+
insetBlockEnd?: import("react-native").DimensionValue | undefined;
|
|
1271
|
+
insetBlockStart?: import("react-native").DimensionValue | undefined;
|
|
1272
|
+
insetInline?: import("react-native").DimensionValue | undefined;
|
|
1273
|
+
insetInlineEnd?: import("react-native").DimensionValue | undefined;
|
|
1274
|
+
insetInlineStart?: import("react-native").DimensionValue | undefined;
|
|
979
1275
|
justifyContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
980
|
-
left?:
|
|
981
|
-
margin?:
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
1276
|
+
left?: import("react-native").DimensionValue | undefined;
|
|
1277
|
+
margin?: import("react-native").DimensionValue | undefined;
|
|
1278
|
+
marginBlock?: import("react-native").DimensionValue | undefined;
|
|
1279
|
+
marginBlockEnd?: import("react-native").DimensionValue | undefined;
|
|
1280
|
+
marginBlockStart?: import("react-native").DimensionValue | undefined;
|
|
1281
|
+
marginBottom?: import("react-native").DimensionValue | undefined;
|
|
1282
|
+
marginEnd?: import("react-native").DimensionValue | undefined;
|
|
1283
|
+
marginHorizontal?: import("react-native").DimensionValue | undefined;
|
|
1284
|
+
marginInline?: import("react-native").DimensionValue | undefined;
|
|
1285
|
+
marginInlineEnd?: import("react-native").DimensionValue | undefined;
|
|
1286
|
+
marginInlineStart?: import("react-native").DimensionValue | undefined;
|
|
1287
|
+
marginLeft?: import("react-native").DimensionValue | undefined;
|
|
1288
|
+
marginRight?: import("react-native").DimensionValue | undefined;
|
|
1289
|
+
marginStart?: import("react-native").DimensionValue | undefined;
|
|
1290
|
+
marginTop?: import("react-native").DimensionValue | undefined;
|
|
1291
|
+
marginVertical?: import("react-native").DimensionValue | undefined;
|
|
1292
|
+
maxHeight?: import("react-native").DimensionValue | undefined;
|
|
1293
|
+
maxWidth?: import("react-native").DimensionValue | undefined;
|
|
1294
|
+
minHeight?: import("react-native").DimensionValue | undefined;
|
|
1295
|
+
minWidth?: import("react-native").DimensionValue | undefined;
|
|
994
1296
|
overflow?: "visible" | "hidden" | "scroll" | undefined;
|
|
995
|
-
padding?:
|
|
996
|
-
paddingBottom?:
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1297
|
+
padding?: import("react-native").DimensionValue | undefined;
|
|
1298
|
+
paddingBottom?: import("react-native").DimensionValue | undefined;
|
|
1299
|
+
paddingBlock?: import("react-native").DimensionValue | undefined;
|
|
1300
|
+
paddingBlockEnd?: import("react-native").DimensionValue | undefined;
|
|
1301
|
+
paddingBlockStart?: import("react-native").DimensionValue | undefined;
|
|
1302
|
+
paddingEnd?: import("react-native").DimensionValue | undefined;
|
|
1303
|
+
paddingHorizontal?: import("react-native").DimensionValue | undefined;
|
|
1304
|
+
paddingInline?: import("react-native").DimensionValue | undefined;
|
|
1305
|
+
paddingInlineEnd?: import("react-native").DimensionValue | undefined;
|
|
1306
|
+
paddingInlineStart?: import("react-native").DimensionValue | undefined;
|
|
1307
|
+
paddingLeft?: import("react-native").DimensionValue | undefined;
|
|
1308
|
+
paddingRight?: import("react-native").DimensionValue | undefined;
|
|
1309
|
+
paddingStart?: import("react-native").DimensionValue | undefined;
|
|
1310
|
+
paddingTop?: import("react-native").DimensionValue | undefined;
|
|
1311
|
+
paddingVertical?: import("react-native").DimensionValue | undefined;
|
|
1004
1312
|
position: "absolute" | "relative";
|
|
1005
|
-
right?:
|
|
1006
|
-
start?:
|
|
1007
|
-
top?:
|
|
1008
|
-
width:
|
|
1313
|
+
right?: import("react-native").DimensionValue | undefined;
|
|
1314
|
+
start?: import("react-native").DimensionValue | undefined;
|
|
1315
|
+
top?: import("react-native").DimensionValue | undefined;
|
|
1316
|
+
width: import("react-native").DimensionValue;
|
|
1009
1317
|
zIndex?: number | undefined;
|
|
1010
1318
|
direction?: "inherit" | "ltr" | "rtl" | undefined;
|
|
1011
1319
|
shadowColor?: import("react-native").ColorValue | undefined;
|
|
1012
|
-
shadowOffset?: {
|
|
1320
|
+
shadowOffset?: Readonly<{
|
|
1013
1321
|
width: number;
|
|
1014
1322
|
height: number;
|
|
1015
|
-
} | undefined;
|
|
1016
|
-
shadowOpacity?:
|
|
1323
|
+
}> | undefined;
|
|
1324
|
+
shadowOpacity?: import("react-native").AnimatableNumericValue | undefined;
|
|
1017
1325
|
shadowRadius?: number | undefined;
|
|
1018
1326
|
transform?: (import("react-native").PerpectiveTransform | import("react-native").RotateTransform | import("react-native").RotateXTransform | import("react-native").RotateYTransform | import("react-native").RotateZTransform | import("react-native").ScaleTransform | import("react-native").ScaleXTransform | import("react-native").ScaleYTransform | import("react-native").TranslateXTransform | import("react-native").TranslateYTransform | import("react-native").SkewXTransform | import("react-native").SkewYTransform | import("react-native").MatrixTransform)[] | undefined;
|
|
1019
1327
|
transformMatrix?: number[] | undefined;
|
|
1020
|
-
rotation?:
|
|
1021
|
-
scaleX?:
|
|
1022
|
-
scaleY?:
|
|
1023
|
-
translateX?:
|
|
1024
|
-
translateY?:
|
|
1328
|
+
rotation?: import("react-native").AnimatableNumericValue | undefined;
|
|
1329
|
+
scaleX?: import("react-native").AnimatableNumericValue | undefined;
|
|
1330
|
+
scaleY?: import("react-native").AnimatableNumericValue | undefined;
|
|
1331
|
+
translateX?: import("react-native").AnimatableNumericValue | undefined;
|
|
1332
|
+
translateY?: import("react-native").AnimatableNumericValue | undefined;
|
|
1025
1333
|
};
|
|
1026
1334
|
durationScrollFlatList: {
|
|
1027
1335
|
backfaceVisibility?: "visible" | "hidden" | undefined;
|
|
1028
1336
|
backgroundColor?: import("react-native").ColorValue | undefined;
|
|
1337
|
+
borderBlockColor?: import("react-native").ColorValue | undefined;
|
|
1338
|
+
borderBlockEndColor?: import("react-native").ColorValue | undefined;
|
|
1339
|
+
borderBlockStartColor?: import("react-native").ColorValue | undefined;
|
|
1029
1340
|
borderBottomColor?: import("react-native").ColorValue | undefined;
|
|
1030
|
-
borderBottomEndRadius?:
|
|
1031
|
-
borderBottomLeftRadius?:
|
|
1032
|
-
borderBottomRightRadius?:
|
|
1033
|
-
borderBottomStartRadius?:
|
|
1034
|
-
borderBottomWidth?: number | undefined;
|
|
1341
|
+
borderBottomEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1342
|
+
borderBottomLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1343
|
+
borderBottomRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1344
|
+
borderBottomStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1035
1345
|
borderColor?: import("react-native").ColorValue | undefined;
|
|
1346
|
+
borderCurve?: "circular" | "continuous" | undefined;
|
|
1036
1347
|
borderEndColor?: import("react-native").ColorValue | undefined;
|
|
1348
|
+
borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1349
|
+
borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1037
1350
|
borderLeftColor?: import("react-native").ColorValue | undefined;
|
|
1038
|
-
|
|
1039
|
-
borderRadius?: number | undefined;
|
|
1351
|
+
borderRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1040
1352
|
borderRightColor?: import("react-native").ColorValue | undefined;
|
|
1041
|
-
borderRightWidth?: number | undefined;
|
|
1042
1353
|
borderStartColor?: import("react-native").ColorValue | undefined;
|
|
1354
|
+
borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1355
|
+
borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1043
1356
|
borderStyle?: "solid" | "dotted" | "dashed" | undefined;
|
|
1044
1357
|
borderTopColor?: import("react-native").ColorValue | undefined;
|
|
1045
|
-
borderTopEndRadius?:
|
|
1046
|
-
borderTopLeftRadius?:
|
|
1047
|
-
borderTopRightRadius?:
|
|
1048
|
-
borderTopStartRadius?:
|
|
1049
|
-
|
|
1050
|
-
borderWidth?: number | undefined;
|
|
1051
|
-
opacity?: number | undefined;
|
|
1052
|
-
testID?: string | undefined;
|
|
1358
|
+
borderTopEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1359
|
+
borderTopLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1360
|
+
borderTopRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1361
|
+
borderTopStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1362
|
+
opacity?: import("react-native").AnimatableNumericValue | undefined;
|
|
1053
1363
|
elevation?: number | undefined;
|
|
1364
|
+
pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined;
|
|
1054
1365
|
alignContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "stretch" | undefined;
|
|
1055
1366
|
alignItems?: import("react-native").FlexAlignType | undefined;
|
|
1056
|
-
alignSelf?: import("react-native").FlexAlignType |
|
|
1057
|
-
aspectRatio?: number | undefined;
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1367
|
+
alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
|
|
1368
|
+
aspectRatio?: string | number | undefined;
|
|
1369
|
+
borderBottomWidth?: number | undefined;
|
|
1370
|
+
borderEndWidth?: number | undefined;
|
|
1371
|
+
borderLeftWidth?: number | undefined;
|
|
1372
|
+
borderRightWidth?: number | undefined;
|
|
1373
|
+
borderStartWidth?: number | undefined;
|
|
1374
|
+
borderTopWidth?: number | undefined;
|
|
1375
|
+
borderWidth?: number | undefined;
|
|
1376
|
+
bottom?: import("react-native").DimensionValue | undefined;
|
|
1061
1377
|
display?: "none" | "flex" | undefined;
|
|
1062
|
-
end?:
|
|
1378
|
+
end?: import("react-native").DimensionValue | undefined;
|
|
1063
1379
|
flex?: number | undefined;
|
|
1064
|
-
flexBasis?:
|
|
1380
|
+
flexBasis?: import("react-native").DimensionValue | undefined;
|
|
1065
1381
|
flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
|
|
1382
|
+
rowGap?: number | undefined;
|
|
1383
|
+
gap?: number | undefined;
|
|
1384
|
+
columnGap?: number | undefined;
|
|
1066
1385
|
flexGrow?: number | undefined;
|
|
1067
1386
|
flexShrink?: number | undefined;
|
|
1068
1387
|
flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
|
|
1069
|
-
height?:
|
|
1388
|
+
height?: import("react-native").DimensionValue | undefined;
|
|
1389
|
+
inset?: import("react-native").DimensionValue | undefined;
|
|
1390
|
+
insetBlock?: import("react-native").DimensionValue | undefined;
|
|
1391
|
+
insetBlockEnd?: import("react-native").DimensionValue | undefined;
|
|
1392
|
+
insetBlockStart?: import("react-native").DimensionValue | undefined;
|
|
1393
|
+
insetInline?: import("react-native").DimensionValue | undefined;
|
|
1394
|
+
insetInlineEnd?: import("react-native").DimensionValue | undefined;
|
|
1395
|
+
insetInlineStart?: import("react-native").DimensionValue | undefined;
|
|
1070
1396
|
justifyContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
1071
|
-
left?:
|
|
1072
|
-
margin?:
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1397
|
+
left?: import("react-native").DimensionValue | undefined;
|
|
1398
|
+
margin?: import("react-native").DimensionValue | undefined;
|
|
1399
|
+
marginBlock?: import("react-native").DimensionValue | undefined;
|
|
1400
|
+
marginBlockEnd?: import("react-native").DimensionValue | undefined;
|
|
1401
|
+
marginBlockStart?: import("react-native").DimensionValue | undefined;
|
|
1402
|
+
marginBottom?: import("react-native").DimensionValue | undefined;
|
|
1403
|
+
marginEnd?: import("react-native").DimensionValue | undefined;
|
|
1404
|
+
marginHorizontal?: import("react-native").DimensionValue | undefined;
|
|
1405
|
+
marginInline?: import("react-native").DimensionValue | undefined;
|
|
1406
|
+
marginInlineEnd?: import("react-native").DimensionValue | undefined;
|
|
1407
|
+
marginInlineStart?: import("react-native").DimensionValue | undefined;
|
|
1408
|
+
marginLeft?: import("react-native").DimensionValue | undefined;
|
|
1409
|
+
marginRight?: import("react-native").DimensionValue | undefined;
|
|
1410
|
+
marginStart?: import("react-native").DimensionValue | undefined;
|
|
1411
|
+
marginTop?: import("react-native").DimensionValue | undefined;
|
|
1412
|
+
marginVertical?: import("react-native").DimensionValue | undefined;
|
|
1413
|
+
maxHeight?: import("react-native").DimensionValue | undefined;
|
|
1414
|
+
maxWidth?: import("react-native").DimensionValue | undefined;
|
|
1415
|
+
minHeight?: import("react-native").DimensionValue | undefined;
|
|
1416
|
+
minWidth: import("react-native").DimensionValue;
|
|
1085
1417
|
overflow?: "visible" | "hidden" | "scroll" | undefined;
|
|
1086
|
-
padding?:
|
|
1087
|
-
paddingBottom?:
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1418
|
+
padding?: import("react-native").DimensionValue | undefined;
|
|
1419
|
+
paddingBottom?: import("react-native").DimensionValue | undefined;
|
|
1420
|
+
paddingBlock?: import("react-native").DimensionValue | undefined;
|
|
1421
|
+
paddingBlockEnd?: import("react-native").DimensionValue | undefined;
|
|
1422
|
+
paddingBlockStart?: import("react-native").DimensionValue | undefined;
|
|
1423
|
+
paddingEnd?: import("react-native").DimensionValue | undefined;
|
|
1424
|
+
paddingHorizontal?: import("react-native").DimensionValue | undefined;
|
|
1425
|
+
paddingInline?: import("react-native").DimensionValue | undefined;
|
|
1426
|
+
paddingInlineEnd?: import("react-native").DimensionValue | undefined;
|
|
1427
|
+
paddingInlineStart?: import("react-native").DimensionValue | undefined;
|
|
1428
|
+
paddingLeft?: import("react-native").DimensionValue | undefined;
|
|
1429
|
+
paddingRight?: import("react-native").DimensionValue | undefined;
|
|
1430
|
+
paddingStart?: import("react-native").DimensionValue | undefined;
|
|
1431
|
+
paddingTop?: import("react-native").DimensionValue | undefined;
|
|
1432
|
+
paddingVertical?: import("react-native").DimensionValue | undefined;
|
|
1095
1433
|
position?: "absolute" | "relative" | undefined;
|
|
1096
|
-
right?:
|
|
1097
|
-
start?:
|
|
1098
|
-
top?:
|
|
1099
|
-
width:
|
|
1434
|
+
right?: import("react-native").DimensionValue | undefined;
|
|
1435
|
+
start?: import("react-native").DimensionValue | undefined;
|
|
1436
|
+
top?: import("react-native").DimensionValue | undefined;
|
|
1437
|
+
width: import("react-native").DimensionValue;
|
|
1100
1438
|
zIndex?: number | undefined;
|
|
1101
1439
|
direction?: "inherit" | "ltr" | "rtl" | undefined;
|
|
1102
1440
|
shadowColor?: import("react-native").ColorValue | undefined;
|
|
1103
|
-
shadowOffset?: {
|
|
1441
|
+
shadowOffset?: Readonly<{
|
|
1104
1442
|
width: number;
|
|
1105
1443
|
height: number;
|
|
1106
|
-
} | undefined;
|
|
1107
|
-
shadowOpacity?:
|
|
1444
|
+
}> | undefined;
|
|
1445
|
+
shadowOpacity?: import("react-native").AnimatableNumericValue | undefined;
|
|
1108
1446
|
shadowRadius?: number | undefined;
|
|
1109
1447
|
transform?: (import("react-native").PerpectiveTransform | import("react-native").RotateTransform | import("react-native").RotateXTransform | import("react-native").RotateYTransform | import("react-native").RotateZTransform | import("react-native").ScaleTransform | import("react-native").ScaleXTransform | import("react-native").ScaleYTransform | import("react-native").TranslateXTransform | import("react-native").TranslateYTransform | import("react-native").SkewXTransform | import("react-native").SkewYTransform | import("react-native").MatrixTransform)[] | undefined;
|
|
1110
1448
|
transformMatrix?: number[] | undefined;
|
|
1111
|
-
rotation?:
|
|
1112
|
-
scaleX?:
|
|
1113
|
-
scaleY?:
|
|
1114
|
-
translateX?:
|
|
1115
|
-
translateY?:
|
|
1449
|
+
rotation?: import("react-native").AnimatableNumericValue | undefined;
|
|
1450
|
+
scaleX?: import("react-native").AnimatableNumericValue | undefined;
|
|
1451
|
+
scaleY?: import("react-native").AnimatableNumericValue | undefined;
|
|
1452
|
+
translateX?: import("react-native").AnimatableNumericValue | undefined;
|
|
1453
|
+
translateY?: import("react-native").AnimatableNumericValue | undefined;
|
|
1116
1454
|
};
|
|
1117
1455
|
durationScrollFlatListContainer: {
|
|
1118
1456
|
backfaceVisibility?: "visible" | "hidden" | undefined;
|
|
1119
1457
|
backgroundColor?: import("react-native").ColorValue | undefined;
|
|
1458
|
+
borderBlockColor?: import("react-native").ColorValue | undefined;
|
|
1459
|
+
borderBlockEndColor?: import("react-native").ColorValue | undefined;
|
|
1460
|
+
borderBlockStartColor?: import("react-native").ColorValue | undefined;
|
|
1120
1461
|
borderBottomColor?: import("react-native").ColorValue | undefined;
|
|
1121
|
-
borderBottomEndRadius?:
|
|
1122
|
-
borderBottomLeftRadius?:
|
|
1123
|
-
borderBottomRightRadius?:
|
|
1124
|
-
borderBottomStartRadius?:
|
|
1125
|
-
borderBottomWidth?: number | undefined;
|
|
1462
|
+
borderBottomEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1463
|
+
borderBottomLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1464
|
+
borderBottomRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1465
|
+
borderBottomStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1126
1466
|
borderColor?: import("react-native").ColorValue | undefined;
|
|
1467
|
+
borderCurve?: "circular" | "continuous" | undefined;
|
|
1127
1468
|
borderEndColor?: import("react-native").ColorValue | undefined;
|
|
1469
|
+
borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1470
|
+
borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1128
1471
|
borderLeftColor?: import("react-native").ColorValue | undefined;
|
|
1129
|
-
|
|
1130
|
-
borderRadius?: number | undefined;
|
|
1472
|
+
borderRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1131
1473
|
borderRightColor?: import("react-native").ColorValue | undefined;
|
|
1132
|
-
borderRightWidth?: number | undefined;
|
|
1133
1474
|
borderStartColor?: import("react-native").ColorValue | undefined;
|
|
1475
|
+
borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1476
|
+
borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1134
1477
|
borderStyle?: "solid" | "dotted" | "dashed" | undefined;
|
|
1135
1478
|
borderTopColor?: import("react-native").ColorValue | undefined;
|
|
1136
|
-
borderTopEndRadius?:
|
|
1137
|
-
borderTopLeftRadius?:
|
|
1138
|
-
borderTopRightRadius?:
|
|
1139
|
-
borderTopStartRadius?:
|
|
1140
|
-
|
|
1141
|
-
borderWidth?: number | undefined;
|
|
1142
|
-
opacity?: number | undefined;
|
|
1143
|
-
testID?: string | undefined;
|
|
1479
|
+
borderTopEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1480
|
+
borderTopLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1481
|
+
borderTopRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1482
|
+
borderTopStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1483
|
+
opacity?: import("react-native").AnimatableNumericValue | undefined;
|
|
1144
1484
|
elevation?: number | undefined;
|
|
1485
|
+
pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined;
|
|
1145
1486
|
alignContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "stretch" | undefined;
|
|
1146
1487
|
alignItems?: import("react-native").FlexAlignType | undefined;
|
|
1147
|
-
alignSelf?: import("react-native").FlexAlignType |
|
|
1148
|
-
aspectRatio?: number | undefined;
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1488
|
+
alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
|
|
1489
|
+
aspectRatio?: string | number | undefined;
|
|
1490
|
+
borderBottomWidth?: number | undefined;
|
|
1491
|
+
borderEndWidth?: number | undefined;
|
|
1492
|
+
borderLeftWidth?: number | undefined;
|
|
1493
|
+
borderRightWidth?: number | undefined;
|
|
1494
|
+
borderStartWidth?: number | undefined;
|
|
1495
|
+
borderTopWidth?: number | undefined;
|
|
1496
|
+
borderWidth?: number | undefined;
|
|
1497
|
+
bottom?: import("react-native").DimensionValue | undefined;
|
|
1152
1498
|
display?: "none" | "flex" | undefined;
|
|
1153
|
-
end?:
|
|
1499
|
+
end?: import("react-native").DimensionValue | undefined;
|
|
1154
1500
|
flex?: number | undefined;
|
|
1155
|
-
flexBasis?:
|
|
1501
|
+
flexBasis?: import("react-native").DimensionValue | undefined;
|
|
1156
1502
|
flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
|
|
1503
|
+
rowGap?: number | undefined;
|
|
1504
|
+
gap?: number | undefined;
|
|
1505
|
+
columnGap?: number | undefined;
|
|
1157
1506
|
flexGrow?: number | undefined;
|
|
1158
1507
|
flexShrink?: number | undefined;
|
|
1159
1508
|
flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
|
|
1160
|
-
height?:
|
|
1509
|
+
height?: import("react-native").DimensionValue | undefined;
|
|
1510
|
+
inset?: import("react-native").DimensionValue | undefined;
|
|
1511
|
+
insetBlock?: import("react-native").DimensionValue | undefined;
|
|
1512
|
+
insetBlockEnd?: import("react-native").DimensionValue | undefined;
|
|
1513
|
+
insetBlockStart?: import("react-native").DimensionValue | undefined;
|
|
1514
|
+
insetInline?: import("react-native").DimensionValue | undefined;
|
|
1515
|
+
insetInlineEnd?: import("react-native").DimensionValue | undefined;
|
|
1516
|
+
insetInlineStart?: import("react-native").DimensionValue | undefined;
|
|
1161
1517
|
justifyContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
1162
|
-
left?:
|
|
1163
|
-
margin?:
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1518
|
+
left?: import("react-native").DimensionValue | undefined;
|
|
1519
|
+
margin?: import("react-native").DimensionValue | undefined;
|
|
1520
|
+
marginBlock?: import("react-native").DimensionValue | undefined;
|
|
1521
|
+
marginBlockEnd?: import("react-native").DimensionValue | undefined;
|
|
1522
|
+
marginBlockStart?: import("react-native").DimensionValue | undefined;
|
|
1523
|
+
marginBottom?: import("react-native").DimensionValue | undefined;
|
|
1524
|
+
marginEnd?: import("react-native").DimensionValue | undefined;
|
|
1525
|
+
marginHorizontal?: import("react-native").DimensionValue | undefined;
|
|
1526
|
+
marginInline?: import("react-native").DimensionValue | undefined;
|
|
1527
|
+
marginInlineEnd?: import("react-native").DimensionValue | undefined;
|
|
1528
|
+
marginInlineStart?: import("react-native").DimensionValue | undefined;
|
|
1529
|
+
marginLeft?: import("react-native").DimensionValue | undefined;
|
|
1530
|
+
marginRight?: import("react-native").DimensionValue | undefined;
|
|
1531
|
+
marginStart?: import("react-native").DimensionValue | undefined;
|
|
1532
|
+
marginTop?: import("react-native").DimensionValue | undefined;
|
|
1533
|
+
marginVertical?: import("react-native").DimensionValue | undefined;
|
|
1534
|
+
maxHeight?: import("react-native").DimensionValue | undefined;
|
|
1535
|
+
maxWidth?: import("react-native").DimensionValue | undefined;
|
|
1536
|
+
minHeight?: import("react-native").DimensionValue | undefined;
|
|
1537
|
+
minWidth?: import("react-native").DimensionValue | undefined;
|
|
1176
1538
|
overflow: "visible" | "hidden" | "scroll";
|
|
1177
|
-
padding?:
|
|
1178
|
-
paddingBottom?:
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1539
|
+
padding?: import("react-native").DimensionValue | undefined;
|
|
1540
|
+
paddingBottom?: import("react-native").DimensionValue | undefined;
|
|
1541
|
+
paddingBlock?: import("react-native").DimensionValue | undefined;
|
|
1542
|
+
paddingBlockEnd?: import("react-native").DimensionValue | undefined;
|
|
1543
|
+
paddingBlockStart?: import("react-native").DimensionValue | undefined;
|
|
1544
|
+
paddingEnd?: import("react-native").DimensionValue | undefined;
|
|
1545
|
+
paddingHorizontal?: import("react-native").DimensionValue | undefined;
|
|
1546
|
+
paddingInline?: import("react-native").DimensionValue | undefined;
|
|
1547
|
+
paddingInlineEnd?: import("react-native").DimensionValue | undefined;
|
|
1548
|
+
paddingInlineStart?: import("react-native").DimensionValue | undefined;
|
|
1549
|
+
paddingLeft?: import("react-native").DimensionValue | undefined;
|
|
1550
|
+
paddingRight?: import("react-native").DimensionValue | undefined;
|
|
1551
|
+
paddingStart?: import("react-native").DimensionValue | undefined;
|
|
1552
|
+
paddingTop?: import("react-native").DimensionValue | undefined;
|
|
1553
|
+
paddingVertical?: import("react-native").DimensionValue | undefined;
|
|
1186
1554
|
position?: "absolute" | "relative" | undefined;
|
|
1187
|
-
right?:
|
|
1188
|
-
start?:
|
|
1189
|
-
top?:
|
|
1190
|
-
width?:
|
|
1555
|
+
right?: import("react-native").DimensionValue | undefined;
|
|
1556
|
+
start?: import("react-native").DimensionValue | undefined;
|
|
1557
|
+
top?: import("react-native").DimensionValue | undefined;
|
|
1558
|
+
width?: import("react-native").DimensionValue | undefined;
|
|
1191
1559
|
zIndex?: number | undefined;
|
|
1192
1560
|
direction?: "inherit" | "ltr" | "rtl" | undefined;
|
|
1193
1561
|
shadowColor?: import("react-native").ColorValue | undefined;
|
|
1194
|
-
shadowOffset?: {
|
|
1562
|
+
shadowOffset?: Readonly<{
|
|
1195
1563
|
width: number;
|
|
1196
1564
|
height: number;
|
|
1197
|
-
} | undefined;
|
|
1198
|
-
shadowOpacity?:
|
|
1565
|
+
}> | undefined;
|
|
1566
|
+
shadowOpacity?: import("react-native").AnimatableNumericValue | undefined;
|
|
1199
1567
|
shadowRadius?: number | undefined;
|
|
1200
1568
|
transform?: (import("react-native").PerpectiveTransform | import("react-native").RotateTransform | import("react-native").RotateXTransform | import("react-native").RotateYTransform | import("react-native").RotateZTransform | import("react-native").ScaleTransform | import("react-native").ScaleXTransform | import("react-native").ScaleYTransform | import("react-native").TranslateXTransform | import("react-native").TranslateYTransform | import("react-native").SkewXTransform | import("react-native").SkewYTransform | import("react-native").MatrixTransform)[] | undefined;
|
|
1201
1569
|
transformMatrix?: number[] | undefined;
|
|
1202
|
-
rotation?:
|
|
1203
|
-
scaleX?:
|
|
1204
|
-
scaleY?:
|
|
1205
|
-
translateX?:
|
|
1206
|
-
translateY?:
|
|
1570
|
+
rotation?: import("react-native").AnimatableNumericValue | undefined;
|
|
1571
|
+
scaleX?: import("react-native").AnimatableNumericValue | undefined;
|
|
1572
|
+
scaleY?: import("react-native").AnimatableNumericValue | undefined;
|
|
1573
|
+
translateX?: import("react-native").AnimatableNumericValue | undefined;
|
|
1574
|
+
translateY?: import("react-native").AnimatableNumericValue | undefined;
|
|
1207
1575
|
};
|
|
1208
1576
|
durationScrollFlatListContentContainer: {
|
|
1209
1577
|
backfaceVisibility?: "visible" | "hidden" | undefined;
|
|
1210
1578
|
backgroundColor?: import("react-native").ColorValue | undefined;
|
|
1579
|
+
borderBlockColor?: import("react-native").ColorValue | undefined;
|
|
1580
|
+
borderBlockEndColor?: import("react-native").ColorValue | undefined;
|
|
1581
|
+
borderBlockStartColor?: import("react-native").ColorValue | undefined;
|
|
1211
1582
|
borderBottomColor?: import("react-native").ColorValue | undefined;
|
|
1212
|
-
borderBottomEndRadius?:
|
|
1213
|
-
borderBottomLeftRadius?:
|
|
1214
|
-
borderBottomRightRadius?:
|
|
1215
|
-
borderBottomStartRadius?:
|
|
1216
|
-
borderBottomWidth?: number | undefined;
|
|
1583
|
+
borderBottomEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1584
|
+
borderBottomLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1585
|
+
borderBottomRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1586
|
+
borderBottomStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1217
1587
|
borderColor?: import("react-native").ColorValue | undefined;
|
|
1588
|
+
borderCurve?: "circular" | "continuous" | undefined;
|
|
1218
1589
|
borderEndColor?: import("react-native").ColorValue | undefined;
|
|
1590
|
+
borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1591
|
+
borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1219
1592
|
borderLeftColor?: import("react-native").ColorValue | undefined;
|
|
1220
|
-
|
|
1221
|
-
borderRadius?: number | undefined;
|
|
1593
|
+
borderRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1222
1594
|
borderRightColor?: import("react-native").ColorValue | undefined;
|
|
1223
|
-
borderRightWidth?: number | undefined;
|
|
1224
1595
|
borderStartColor?: import("react-native").ColorValue | undefined;
|
|
1596
|
+
borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1597
|
+
borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1225
1598
|
borderStyle?: "solid" | "dotted" | "dashed" | undefined;
|
|
1226
1599
|
borderTopColor?: import("react-native").ColorValue | undefined;
|
|
1227
|
-
borderTopEndRadius?:
|
|
1228
|
-
borderTopLeftRadius?:
|
|
1229
|
-
borderTopRightRadius?:
|
|
1230
|
-
borderTopStartRadius?:
|
|
1231
|
-
|
|
1232
|
-
borderWidth?: number | undefined;
|
|
1233
|
-
opacity?: number | undefined;
|
|
1234
|
-
testID?: string | undefined;
|
|
1600
|
+
borderTopEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1601
|
+
borderTopLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1602
|
+
borderTopRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1603
|
+
borderTopStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
1604
|
+
opacity?: import("react-native").AnimatableNumericValue | undefined;
|
|
1235
1605
|
elevation?: number | undefined;
|
|
1606
|
+
pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined;
|
|
1236
1607
|
alignContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "stretch" | undefined;
|
|
1237
1608
|
alignItems?: import("react-native").FlexAlignType | undefined;
|
|
1238
|
-
alignSelf?: import("react-native").FlexAlignType |
|
|
1239
|
-
aspectRatio?: number | undefined;
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1609
|
+
alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
|
|
1610
|
+
aspectRatio?: string | number | undefined;
|
|
1611
|
+
borderBottomWidth?: number | undefined;
|
|
1612
|
+
borderEndWidth?: number | undefined;
|
|
1613
|
+
borderLeftWidth?: number | undefined;
|
|
1614
|
+
borderRightWidth?: number | undefined;
|
|
1615
|
+
borderStartWidth?: number | undefined;
|
|
1616
|
+
borderTopWidth?: number | undefined;
|
|
1617
|
+
borderWidth?: number | undefined;
|
|
1618
|
+
bottom?: import("react-native").DimensionValue | undefined;
|
|
1243
1619
|
display?: "none" | "flex" | undefined;
|
|
1244
|
-
end?:
|
|
1620
|
+
end?: import("react-native").DimensionValue | undefined;
|
|
1245
1621
|
flex?: number | undefined;
|
|
1246
|
-
flexBasis?:
|
|
1622
|
+
flexBasis?: import("react-native").DimensionValue | undefined;
|
|
1247
1623
|
flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
|
|
1624
|
+
rowGap?: number | undefined;
|
|
1625
|
+
gap?: number | undefined;
|
|
1626
|
+
columnGap?: number | undefined;
|
|
1248
1627
|
flexGrow?: number | undefined;
|
|
1249
1628
|
flexShrink?: number | undefined;
|
|
1250
1629
|
flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
|
|
1251
|
-
height?:
|
|
1630
|
+
height?: import("react-native").DimensionValue | undefined;
|
|
1631
|
+
inset?: import("react-native").DimensionValue | undefined;
|
|
1632
|
+
insetBlock?: import("react-native").DimensionValue | undefined;
|
|
1633
|
+
insetBlockEnd?: import("react-native").DimensionValue | undefined;
|
|
1634
|
+
insetBlockStart?: import("react-native").DimensionValue | undefined;
|
|
1635
|
+
insetInline?: import("react-native").DimensionValue | undefined;
|
|
1636
|
+
insetInlineEnd?: import("react-native").DimensionValue | undefined;
|
|
1637
|
+
insetInlineStart?: import("react-native").DimensionValue | undefined;
|
|
1252
1638
|
justifyContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
1253
|
-
left?:
|
|
1254
|
-
margin?:
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1639
|
+
left?: import("react-native").DimensionValue | undefined;
|
|
1640
|
+
margin?: import("react-native").DimensionValue | undefined;
|
|
1641
|
+
marginBlock?: import("react-native").DimensionValue | undefined;
|
|
1642
|
+
marginBlockEnd?: import("react-native").DimensionValue | undefined;
|
|
1643
|
+
marginBlockStart?: import("react-native").DimensionValue | undefined;
|
|
1644
|
+
marginBottom?: import("react-native").DimensionValue | undefined;
|
|
1645
|
+
marginEnd?: import("react-native").DimensionValue | undefined;
|
|
1646
|
+
marginHorizontal?: import("react-native").DimensionValue | undefined;
|
|
1647
|
+
marginInline?: import("react-native").DimensionValue | undefined;
|
|
1648
|
+
marginInlineEnd?: import("react-native").DimensionValue | undefined;
|
|
1649
|
+
marginInlineStart?: import("react-native").DimensionValue | undefined;
|
|
1650
|
+
marginLeft?: import("react-native").DimensionValue | undefined;
|
|
1651
|
+
marginRight?: import("react-native").DimensionValue | undefined;
|
|
1652
|
+
marginStart?: import("react-native").DimensionValue | undefined;
|
|
1653
|
+
marginTop?: import("react-native").DimensionValue | undefined;
|
|
1654
|
+
marginVertical?: import("react-native").DimensionValue | undefined;
|
|
1655
|
+
maxHeight?: import("react-native").DimensionValue | undefined;
|
|
1656
|
+
maxWidth?: import("react-native").DimensionValue | undefined;
|
|
1657
|
+
minHeight?: import("react-native").DimensionValue | undefined;
|
|
1658
|
+
minWidth?: import("react-native").DimensionValue | undefined;
|
|
1267
1659
|
overflow?: "visible" | "hidden" | "scroll" | undefined;
|
|
1268
|
-
padding?:
|
|
1269
|
-
paddingBottom?:
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1660
|
+
padding?: import("react-native").DimensionValue | undefined;
|
|
1661
|
+
paddingBottom?: import("react-native").DimensionValue | undefined;
|
|
1662
|
+
paddingBlock?: import("react-native").DimensionValue | undefined;
|
|
1663
|
+
paddingBlockEnd?: import("react-native").DimensionValue | undefined;
|
|
1664
|
+
paddingBlockStart?: import("react-native").DimensionValue | undefined;
|
|
1665
|
+
paddingEnd?: import("react-native").DimensionValue | undefined;
|
|
1666
|
+
paddingHorizontal?: import("react-native").DimensionValue | undefined;
|
|
1667
|
+
paddingInline?: import("react-native").DimensionValue | undefined;
|
|
1668
|
+
paddingInlineEnd?: import("react-native").DimensionValue | undefined;
|
|
1669
|
+
paddingInlineStart?: import("react-native").DimensionValue | undefined;
|
|
1670
|
+
paddingLeft?: import("react-native").DimensionValue | undefined;
|
|
1671
|
+
paddingRight?: import("react-native").DimensionValue | undefined;
|
|
1672
|
+
paddingStart?: import("react-native").DimensionValue | undefined;
|
|
1673
|
+
paddingTop?: import("react-native").DimensionValue | undefined;
|
|
1674
|
+
paddingVertical?: import("react-native").DimensionValue | undefined;
|
|
1277
1675
|
position?: "absolute" | "relative" | undefined;
|
|
1278
|
-
right?:
|
|
1279
|
-
start?:
|
|
1280
|
-
top?:
|
|
1281
|
-
width?:
|
|
1676
|
+
right?: import("react-native").DimensionValue | undefined;
|
|
1677
|
+
start?: import("react-native").DimensionValue | undefined;
|
|
1678
|
+
top?: import("react-native").DimensionValue | undefined;
|
|
1679
|
+
width?: import("react-native").DimensionValue | undefined;
|
|
1282
1680
|
zIndex?: number | undefined;
|
|
1283
1681
|
direction?: "inherit" | "ltr" | "rtl" | undefined;
|
|
1284
1682
|
shadowColor?: import("react-native").ColorValue | undefined;
|
|
1285
|
-
shadowOffset?: {
|
|
1683
|
+
shadowOffset?: Readonly<{
|
|
1286
1684
|
width: number;
|
|
1287
1685
|
height: number;
|
|
1288
|
-
} | undefined;
|
|
1289
|
-
shadowOpacity?:
|
|
1686
|
+
}> | undefined;
|
|
1687
|
+
shadowOpacity?: import("react-native").AnimatableNumericValue | undefined;
|
|
1290
1688
|
shadowRadius?: number | undefined;
|
|
1291
1689
|
transform?: (import("react-native").PerpectiveTransform | import("react-native").RotateTransform | import("react-native").RotateXTransform | import("react-native").RotateYTransform | import("react-native").RotateZTransform | import("react-native").ScaleTransform | import("react-native").ScaleXTransform | import("react-native").ScaleYTransform | import("react-native").TranslateXTransform | import("react-native").TranslateYTransform | import("react-native").SkewXTransform | import("react-native").SkewYTransform | import("react-native").MatrixTransform)[] | undefined;
|
|
1292
1690
|
transformMatrix?: number[] | undefined;
|
|
1293
|
-
rotation?:
|
|
1294
|
-
scaleX?:
|
|
1295
|
-
scaleY?:
|
|
1296
|
-
translateX?:
|
|
1297
|
-
translateY?:
|
|
1691
|
+
rotation?: import("react-native").AnimatableNumericValue | undefined;
|
|
1692
|
+
scaleX?: import("react-native").AnimatableNumericValue | undefined;
|
|
1693
|
+
scaleY?: import("react-native").AnimatableNumericValue | undefined;
|
|
1694
|
+
translateX?: import("react-native").AnimatableNumericValue | undefined;
|
|
1695
|
+
translateY?: import("react-native").AnimatableNumericValue | undefined;
|
|
1298
1696
|
};
|
|
1299
1697
|
};
|