react-native-timer-picker 2.1.1 → 2.2.1
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 +250 -174
- 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.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/DurationScroll.test.js +94 -0
- package/dist/commonjs/tests/DurationScroll.test.js.map +1 -1
- package/dist/commonjs/tests/Modal.test.js +79 -2
- package/dist/commonjs/tests/Modal.test.js.map +1 -1
- package/dist/commonjs/tests/TimerPicker.test.js +119 -1
- package/dist/commonjs/tests/TimerPicker.test.js.map +1 -1
- package/dist/commonjs/tests/TimerPickerModal.test.js +120 -0
- package/dist/commonjs/tests/TimerPickerModal.test.js.map +1 -1
- package/dist/commonjs/tests/colorToRgba.test.js +176 -0
- package/dist/commonjs/tests/colorToRgba.test.js.map +1 -0
- package/dist/commonjs/tests/generateNumbers.test.js +350 -0
- package/dist/commonjs/tests/generateNumbers.test.js.map +1 -0
- package/dist/commonjs/tests/getAdjustedLimit.test.js +324 -0
- package/dist/commonjs/tests/getAdjustedLimit.test.js.map +1 -0
- package/dist/commonjs/tests/getDurationAndIndexFromScrollOffset.test.js +424 -0
- package/dist/commonjs/tests/getDurationAndIndexFromScrollOffset.test.js.map +1 -0
- package/dist/commonjs/tests/getInitialScrollIndex.test.js +396 -0
- package/dist/commonjs/tests/getInitialScrollIndex.test.js.map +1 -0
- package/dist/commonjs/tests/getSafeInitialValue.test.js +497 -0
- package/dist/commonjs/tests/getSafeInitialValue.test.js.map +1 -0
- package/dist/commonjs/tests/padNumber.test.js +301 -0
- package/dist/commonjs/tests/padNumber.test.js.map +1 -0
- package/dist/commonjs/utils/colorToRgba.js +40 -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 +28 -3
- 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.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/DurationScroll.test.js +94 -0
- package/dist/module/tests/DurationScroll.test.js.map +1 -1
- package/dist/module/tests/Modal.test.js +80 -3
- package/dist/module/tests/Modal.test.js.map +1 -1
- package/dist/module/tests/TimerPicker.test.js +119 -1
- package/dist/module/tests/TimerPicker.test.js.map +1 -1
- package/dist/module/tests/TimerPickerModal.test.js +121 -1
- package/dist/module/tests/TimerPickerModal.test.js.map +1 -1
- package/dist/module/tests/colorToRgba.test.js +174 -0
- package/dist/module/tests/colorToRgba.test.js.map +1 -0
- package/dist/module/tests/generateNumbers.test.js +348 -0
- package/dist/module/tests/generateNumbers.test.js.map +1 -0
- package/dist/module/tests/getAdjustedLimit.test.js +322 -0
- package/dist/module/tests/getAdjustedLimit.test.js.map +1 -0
- package/dist/module/tests/getDurationAndIndexFromScrollOffset.test.js +422 -0
- package/dist/module/tests/getDurationAndIndexFromScrollOffset.test.js.map +1 -0
- package/dist/module/tests/getInitialScrollIndex.test.js +394 -0
- package/dist/module/tests/getInitialScrollIndex.test.js.map +1 -0
- package/dist/module/tests/getSafeInitialValue.test.js +495 -0
- package/dist/module/tests/getSafeInitialValue.test.js.map +1 -0
- package/dist/module/tests/padNumber.test.js +299 -0
- package/dist/module/tests/padNumber.test.js.map +1 -0
- package/dist/module/utils/colorToRgba.js +40 -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 +28 -3
- 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 +922 -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 +570 -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 +12 -30
|
@@ -16,274 +16,307 @@ export declare const generateStyles: (customStyles: CustomTimerPickerModalStyles
|
|
|
16
16
|
alignItems: undefined;
|
|
17
17
|
backfaceVisibility?: "visible" | "hidden" | undefined;
|
|
18
18
|
backgroundColor?: import("react-native").ColorValue | undefined;
|
|
19
|
+
borderBlockColor?: import("react-native").ColorValue | undefined;
|
|
20
|
+
borderBlockEndColor?: import("react-native").ColorValue | undefined;
|
|
21
|
+
borderBlockStartColor?: import("react-native").ColorValue | undefined;
|
|
19
22
|
borderBottomColor?: import("react-native").ColorValue | undefined;
|
|
20
|
-
borderBottomEndRadius?:
|
|
21
|
-
borderBottomLeftRadius?:
|
|
22
|
-
borderBottomRightRadius?:
|
|
23
|
-
borderBottomStartRadius?:
|
|
24
|
-
borderBottomWidth?: number | undefined;
|
|
23
|
+
borderBottomEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
24
|
+
borderBottomLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
25
|
+
borderBottomRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
26
|
+
borderBottomStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
25
27
|
borderColor?: import("react-native").ColorValue | undefined;
|
|
28
|
+
borderCurve?: "circular" | "continuous" | undefined;
|
|
26
29
|
borderEndColor?: import("react-native").ColorValue | undefined;
|
|
30
|
+
borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
31
|
+
borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
27
32
|
borderLeftColor?: import("react-native").ColorValue | undefined;
|
|
28
|
-
|
|
29
|
-
borderRadius?: number | undefined;
|
|
33
|
+
borderRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
30
34
|
borderRightColor?: import("react-native").ColorValue | undefined;
|
|
31
|
-
borderRightWidth?: number | undefined;
|
|
32
35
|
borderStartColor?: import("react-native").ColorValue | undefined;
|
|
36
|
+
borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
37
|
+
borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
33
38
|
borderStyle?: "solid" | "dotted" | "dashed" | undefined;
|
|
34
39
|
borderTopColor?: import("react-native").ColorValue | undefined;
|
|
35
|
-
borderTopEndRadius?:
|
|
36
|
-
borderTopLeftRadius?:
|
|
37
|
-
borderTopRightRadius?:
|
|
38
|
-
borderTopStartRadius?:
|
|
39
|
-
|
|
40
|
-
borderWidth?: number | undefined;
|
|
41
|
-
opacity?: number | undefined;
|
|
42
|
-
testID?: string | undefined;
|
|
40
|
+
borderTopEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
41
|
+
borderTopLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
42
|
+
borderTopRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
43
|
+
borderTopStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
44
|
+
opacity?: import("react-native").AnimatableNumericValue | undefined;
|
|
43
45
|
elevation?: number | undefined;
|
|
46
|
+
pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined;
|
|
44
47
|
alignContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "stretch" | undefined;
|
|
45
|
-
alignSelf?: import("react-native").FlexAlignType |
|
|
46
|
-
aspectRatio?: number | undefined;
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
48
|
+
alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
|
|
49
|
+
aspectRatio?: string | number | undefined;
|
|
50
|
+
borderBottomWidth?: number | undefined;
|
|
51
|
+
borderEndWidth?: number | undefined;
|
|
52
|
+
borderLeftWidth?: number | undefined;
|
|
53
|
+
borderRightWidth?: number | undefined;
|
|
54
|
+
borderStartWidth?: number | undefined;
|
|
55
|
+
borderTopWidth?: number | undefined;
|
|
56
|
+
borderWidth?: number | undefined;
|
|
57
|
+
bottom?: import("react-native").DimensionValue | undefined;
|
|
50
58
|
display?: "none" | "flex" | undefined;
|
|
51
|
-
end?:
|
|
59
|
+
end?: import("react-native").DimensionValue | undefined;
|
|
52
60
|
flex?: number | undefined;
|
|
53
|
-
flexBasis?:
|
|
61
|
+
flexBasis?: import("react-native").DimensionValue | undefined;
|
|
54
62
|
flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
|
|
63
|
+
rowGap?: number | undefined;
|
|
64
|
+
gap?: number | undefined;
|
|
65
|
+
columnGap?: number | undefined;
|
|
55
66
|
flexGrow?: number | undefined;
|
|
56
67
|
flexShrink?: number | undefined;
|
|
57
68
|
flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
|
|
58
|
-
height?:
|
|
69
|
+
height?: import("react-native").DimensionValue | undefined;
|
|
59
70
|
justifyContent: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly";
|
|
60
|
-
left?:
|
|
61
|
-
margin?:
|
|
62
|
-
marginBottom?:
|
|
63
|
-
marginEnd?:
|
|
64
|
-
marginHorizontal?:
|
|
65
|
-
marginLeft?:
|
|
66
|
-
marginRight?:
|
|
67
|
-
marginStart?:
|
|
68
|
-
marginTop?:
|
|
69
|
-
marginVertical?:
|
|
70
|
-
maxHeight?:
|
|
71
|
-
maxWidth?:
|
|
72
|
-
minHeight?:
|
|
73
|
-
minWidth?:
|
|
71
|
+
left?: import("react-native").DimensionValue | undefined;
|
|
72
|
+
margin?: import("react-native").DimensionValue | undefined;
|
|
73
|
+
marginBottom?: import("react-native").DimensionValue | undefined;
|
|
74
|
+
marginEnd?: import("react-native").DimensionValue | undefined;
|
|
75
|
+
marginHorizontal?: import("react-native").DimensionValue | undefined;
|
|
76
|
+
marginLeft?: import("react-native").DimensionValue | undefined;
|
|
77
|
+
marginRight?: import("react-native").DimensionValue | undefined;
|
|
78
|
+
marginStart?: import("react-native").DimensionValue | undefined;
|
|
79
|
+
marginTop?: import("react-native").DimensionValue | undefined;
|
|
80
|
+
marginVertical?: import("react-native").DimensionValue | undefined;
|
|
81
|
+
maxHeight?: import("react-native").DimensionValue | undefined;
|
|
82
|
+
maxWidth?: import("react-native").DimensionValue | undefined;
|
|
83
|
+
minHeight?: import("react-native").DimensionValue | undefined;
|
|
84
|
+
minWidth?: import("react-native").DimensionValue | undefined;
|
|
74
85
|
overflow: "visible" | "hidden" | "scroll";
|
|
75
|
-
padding?:
|
|
76
|
-
paddingBottom?:
|
|
77
|
-
paddingEnd?:
|
|
78
|
-
paddingHorizontal?:
|
|
79
|
-
paddingLeft?:
|
|
80
|
-
paddingRight?:
|
|
81
|
-
paddingStart?:
|
|
82
|
-
paddingTop?:
|
|
83
|
-
paddingVertical?:
|
|
86
|
+
padding?: import("react-native").DimensionValue | undefined;
|
|
87
|
+
paddingBottom?: import("react-native").DimensionValue | undefined;
|
|
88
|
+
paddingEnd?: import("react-native").DimensionValue | undefined;
|
|
89
|
+
paddingHorizontal?: import("react-native").DimensionValue | undefined;
|
|
90
|
+
paddingLeft?: import("react-native").DimensionValue | undefined;
|
|
91
|
+
paddingRight?: import("react-native").DimensionValue | undefined;
|
|
92
|
+
paddingStart?: import("react-native").DimensionValue | undefined;
|
|
93
|
+
paddingTop?: import("react-native").DimensionValue | undefined;
|
|
94
|
+
paddingVertical?: import("react-native").DimensionValue | undefined;
|
|
84
95
|
position?: "absolute" | "relative" | undefined;
|
|
85
|
-
right?:
|
|
86
|
-
start?:
|
|
87
|
-
top?:
|
|
88
|
-
width?:
|
|
96
|
+
right?: import("react-native").DimensionValue | undefined;
|
|
97
|
+
start?: import("react-native").DimensionValue | undefined;
|
|
98
|
+
top?: import("react-native").DimensionValue | undefined;
|
|
99
|
+
width?: import("react-native").DimensionValue | undefined;
|
|
89
100
|
zIndex?: number | undefined;
|
|
90
101
|
direction?: "inherit" | "ltr" | "rtl" | undefined;
|
|
91
102
|
shadowColor?: import("react-native").ColorValue | undefined;
|
|
92
|
-
shadowOffset?: {
|
|
103
|
+
shadowOffset?: Readonly<{
|
|
93
104
|
width: number;
|
|
94
105
|
height: number;
|
|
95
|
-
} | undefined;
|
|
96
|
-
shadowOpacity?:
|
|
106
|
+
}> | undefined;
|
|
107
|
+
shadowOpacity?: import("react-native").AnimatableNumericValue | undefined;
|
|
97
108
|
shadowRadius?: number | undefined;
|
|
98
109
|
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;
|
|
99
110
|
transformMatrix?: number[] | undefined;
|
|
100
|
-
rotation?:
|
|
101
|
-
scaleX?:
|
|
102
|
-
scaleY?:
|
|
103
|
-
translateX?:
|
|
104
|
-
translateY?:
|
|
111
|
+
rotation?: import("react-native").AnimatableNumericValue | undefined;
|
|
112
|
+
scaleX?: import("react-native").AnimatableNumericValue | undefined;
|
|
113
|
+
scaleY?: import("react-native").AnimatableNumericValue | undefined;
|
|
114
|
+
translateX?: import("react-native").AnimatableNumericValue | undefined;
|
|
115
|
+
translateY?: import("react-native").AnimatableNumericValue | undefined;
|
|
105
116
|
};
|
|
106
117
|
contentContainer: {
|
|
107
118
|
paddingHorizontal: number;
|
|
108
119
|
paddingVertical: number;
|
|
109
120
|
backfaceVisibility?: "visible" | "hidden" | undefined;
|
|
110
121
|
backgroundColor: import("react-native").ColorValue;
|
|
122
|
+
borderBlockColor?: import("react-native").ColorValue | undefined;
|
|
123
|
+
borderBlockEndColor?: import("react-native").ColorValue | undefined;
|
|
124
|
+
borderBlockStartColor?: import("react-native").ColorValue | undefined;
|
|
111
125
|
borderBottomColor?: import("react-native").ColorValue | undefined;
|
|
112
|
-
borderBottomEndRadius?:
|
|
113
|
-
borderBottomLeftRadius?:
|
|
114
|
-
borderBottomRightRadius?:
|
|
115
|
-
borderBottomStartRadius?:
|
|
116
|
-
borderBottomWidth?: number | undefined;
|
|
126
|
+
borderBottomEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
127
|
+
borderBottomLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
128
|
+
borderBottomRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
129
|
+
borderBottomStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
117
130
|
borderColor?: import("react-native").ColorValue | undefined;
|
|
131
|
+
borderCurve?: "circular" | "continuous" | undefined;
|
|
118
132
|
borderEndColor?: import("react-native").ColorValue | undefined;
|
|
133
|
+
borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
134
|
+
borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
119
135
|
borderLeftColor?: import("react-native").ColorValue | undefined;
|
|
120
|
-
|
|
121
|
-
borderRadius: number;
|
|
136
|
+
borderRadius: import("react-native").AnimatableNumericValue;
|
|
122
137
|
borderRightColor?: import("react-native").ColorValue | undefined;
|
|
123
|
-
borderRightWidth?: number | undefined;
|
|
124
138
|
borderStartColor?: import("react-native").ColorValue | undefined;
|
|
139
|
+
borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
140
|
+
borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
125
141
|
borderStyle?: "solid" | "dotted" | "dashed" | undefined;
|
|
126
142
|
borderTopColor?: import("react-native").ColorValue | undefined;
|
|
127
|
-
borderTopEndRadius?:
|
|
128
|
-
borderTopLeftRadius?:
|
|
129
|
-
borderTopRightRadius?:
|
|
130
|
-
borderTopStartRadius?:
|
|
131
|
-
|
|
132
|
-
borderWidth?: number | undefined;
|
|
133
|
-
opacity?: number | undefined;
|
|
134
|
-
testID?: string | undefined;
|
|
143
|
+
borderTopEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
144
|
+
borderTopLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
145
|
+
borderTopRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
146
|
+
borderTopStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
147
|
+
opacity?: import("react-native").AnimatableNumericValue | undefined;
|
|
135
148
|
elevation?: number | undefined;
|
|
149
|
+
pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined;
|
|
136
150
|
alignContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "stretch" | undefined;
|
|
137
151
|
alignItems: import("react-native").FlexAlignType;
|
|
138
|
-
alignSelf?: import("react-native").FlexAlignType |
|
|
139
|
-
aspectRatio?: number | undefined;
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
152
|
+
alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
|
|
153
|
+
aspectRatio?: string | number | undefined;
|
|
154
|
+
borderBottomWidth?: number | undefined;
|
|
155
|
+
borderEndWidth?: number | undefined;
|
|
156
|
+
borderLeftWidth?: number | undefined;
|
|
157
|
+
borderRightWidth?: number | undefined;
|
|
158
|
+
borderStartWidth?: number | undefined;
|
|
159
|
+
borderTopWidth?: number | undefined;
|
|
160
|
+
borderWidth?: number | undefined;
|
|
161
|
+
bottom?: import("react-native").DimensionValue | undefined;
|
|
143
162
|
display?: "none" | "flex" | undefined;
|
|
144
|
-
end?:
|
|
163
|
+
end?: import("react-native").DimensionValue | undefined;
|
|
145
164
|
flex?: number | undefined;
|
|
146
|
-
flexBasis?:
|
|
165
|
+
flexBasis?: import("react-native").DimensionValue | undefined;
|
|
147
166
|
flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
|
|
167
|
+
rowGap?: number | undefined;
|
|
168
|
+
gap?: number | undefined;
|
|
169
|
+
columnGap?: number | undefined;
|
|
148
170
|
flexGrow?: number | undefined;
|
|
149
171
|
flexShrink?: number | undefined;
|
|
150
172
|
flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
|
|
151
|
-
height?:
|
|
173
|
+
height?: import("react-native").DimensionValue | undefined;
|
|
152
174
|
justifyContent: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly";
|
|
153
|
-
left?:
|
|
154
|
-
margin?:
|
|
155
|
-
marginBottom?:
|
|
156
|
-
marginEnd?:
|
|
157
|
-
marginHorizontal?:
|
|
158
|
-
marginLeft?:
|
|
159
|
-
marginRight?:
|
|
160
|
-
marginStart?:
|
|
161
|
-
marginTop?:
|
|
162
|
-
marginVertical?:
|
|
163
|
-
maxHeight?:
|
|
164
|
-
maxWidth?:
|
|
165
|
-
minHeight?:
|
|
166
|
-
minWidth?:
|
|
175
|
+
left?: import("react-native").DimensionValue | undefined;
|
|
176
|
+
margin?: import("react-native").DimensionValue | undefined;
|
|
177
|
+
marginBottom?: import("react-native").DimensionValue | undefined;
|
|
178
|
+
marginEnd?: import("react-native").DimensionValue | undefined;
|
|
179
|
+
marginHorizontal?: import("react-native").DimensionValue | undefined;
|
|
180
|
+
marginLeft?: import("react-native").DimensionValue | undefined;
|
|
181
|
+
marginRight?: import("react-native").DimensionValue | undefined;
|
|
182
|
+
marginStart?: import("react-native").DimensionValue | undefined;
|
|
183
|
+
marginTop?: import("react-native").DimensionValue | undefined;
|
|
184
|
+
marginVertical?: import("react-native").DimensionValue | undefined;
|
|
185
|
+
maxHeight?: import("react-native").DimensionValue | undefined;
|
|
186
|
+
maxWidth?: import("react-native").DimensionValue | undefined;
|
|
187
|
+
minHeight?: import("react-native").DimensionValue | undefined;
|
|
188
|
+
minWidth?: import("react-native").DimensionValue | undefined;
|
|
167
189
|
overflow: "visible" | "hidden" | "scroll";
|
|
168
|
-
padding?:
|
|
169
|
-
paddingBottom?:
|
|
170
|
-
paddingEnd?:
|
|
171
|
-
paddingLeft?:
|
|
172
|
-
paddingRight?:
|
|
173
|
-
paddingStart?:
|
|
174
|
-
paddingTop?:
|
|
190
|
+
padding?: import("react-native").DimensionValue | undefined;
|
|
191
|
+
paddingBottom?: import("react-native").DimensionValue | undefined;
|
|
192
|
+
paddingEnd?: import("react-native").DimensionValue | undefined;
|
|
193
|
+
paddingLeft?: import("react-native").DimensionValue | undefined;
|
|
194
|
+
paddingRight?: import("react-native").DimensionValue | undefined;
|
|
195
|
+
paddingStart?: import("react-native").DimensionValue | undefined;
|
|
196
|
+
paddingTop?: import("react-native").DimensionValue | undefined;
|
|
175
197
|
position?: "absolute" | "relative" | undefined;
|
|
176
|
-
right?:
|
|
177
|
-
start?:
|
|
178
|
-
top?:
|
|
179
|
-
width?:
|
|
198
|
+
right?: import("react-native").DimensionValue | undefined;
|
|
199
|
+
start?: import("react-native").DimensionValue | undefined;
|
|
200
|
+
top?: import("react-native").DimensionValue | undefined;
|
|
201
|
+
width?: import("react-native").DimensionValue | undefined;
|
|
180
202
|
zIndex?: number | undefined;
|
|
181
203
|
direction?: "inherit" | "ltr" | "rtl" | undefined;
|
|
182
204
|
shadowColor?: import("react-native").ColorValue | undefined;
|
|
183
|
-
shadowOffset?: {
|
|
205
|
+
shadowOffset?: Readonly<{
|
|
184
206
|
width: number;
|
|
185
207
|
height: number;
|
|
186
|
-
} | undefined;
|
|
187
|
-
shadowOpacity?:
|
|
208
|
+
}> | undefined;
|
|
209
|
+
shadowOpacity?: import("react-native").AnimatableNumericValue | undefined;
|
|
188
210
|
shadowRadius?: number | undefined;
|
|
189
211
|
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;
|
|
190
212
|
transformMatrix?: number[] | undefined;
|
|
191
|
-
rotation?:
|
|
192
|
-
scaleX?:
|
|
193
|
-
scaleY?:
|
|
194
|
-
translateX?:
|
|
195
|
-
translateY?:
|
|
213
|
+
rotation?: import("react-native").AnimatableNumericValue | undefined;
|
|
214
|
+
scaleX?: import("react-native").AnimatableNumericValue | undefined;
|
|
215
|
+
scaleY?: import("react-native").AnimatableNumericValue | undefined;
|
|
216
|
+
translateX?: import("react-native").AnimatableNumericValue | undefined;
|
|
217
|
+
translateY?: import("react-native").AnimatableNumericValue | undefined;
|
|
196
218
|
};
|
|
197
219
|
buttonContainer: {
|
|
198
220
|
backfaceVisibility?: "visible" | "hidden" | undefined;
|
|
199
221
|
backgroundColor?: import("react-native").ColorValue | undefined;
|
|
222
|
+
borderBlockColor?: import("react-native").ColorValue | undefined;
|
|
223
|
+
borderBlockEndColor?: import("react-native").ColorValue | undefined;
|
|
224
|
+
borderBlockStartColor?: import("react-native").ColorValue | undefined;
|
|
200
225
|
borderBottomColor?: import("react-native").ColorValue | undefined;
|
|
201
|
-
borderBottomEndRadius?:
|
|
202
|
-
borderBottomLeftRadius?:
|
|
203
|
-
borderBottomRightRadius?:
|
|
204
|
-
borderBottomStartRadius?:
|
|
205
|
-
borderBottomWidth?: number | undefined;
|
|
226
|
+
borderBottomEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
227
|
+
borderBottomLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
228
|
+
borderBottomRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
229
|
+
borderBottomStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
206
230
|
borderColor?: import("react-native").ColorValue | undefined;
|
|
231
|
+
borderCurve?: "circular" | "continuous" | undefined;
|
|
207
232
|
borderEndColor?: import("react-native").ColorValue | undefined;
|
|
233
|
+
borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
234
|
+
borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
208
235
|
borderLeftColor?: import("react-native").ColorValue | undefined;
|
|
209
|
-
|
|
210
|
-
borderRadius?: number | undefined;
|
|
236
|
+
borderRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
211
237
|
borderRightColor?: import("react-native").ColorValue | undefined;
|
|
212
|
-
borderRightWidth?: number | undefined;
|
|
213
238
|
borderStartColor?: import("react-native").ColorValue | undefined;
|
|
239
|
+
borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
240
|
+
borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
214
241
|
borderStyle?: "solid" | "dotted" | "dashed" | undefined;
|
|
215
242
|
borderTopColor?: import("react-native").ColorValue | undefined;
|
|
216
|
-
borderTopEndRadius?:
|
|
217
|
-
borderTopLeftRadius?:
|
|
218
|
-
borderTopRightRadius?:
|
|
219
|
-
borderTopStartRadius?:
|
|
220
|
-
|
|
221
|
-
borderWidth?: number | undefined;
|
|
222
|
-
opacity?: number | undefined;
|
|
223
|
-
testID?: string | undefined;
|
|
243
|
+
borderTopEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
244
|
+
borderTopLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
245
|
+
borderTopRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
246
|
+
borderTopStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
247
|
+
opacity?: import("react-native").AnimatableNumericValue | undefined;
|
|
224
248
|
elevation?: number | undefined;
|
|
249
|
+
pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined;
|
|
225
250
|
alignContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "stretch" | undefined;
|
|
226
251
|
alignItems?: import("react-native").FlexAlignType | undefined;
|
|
227
|
-
alignSelf?: import("react-native").FlexAlignType |
|
|
228
|
-
aspectRatio?: number | undefined;
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
252
|
+
alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
|
|
253
|
+
aspectRatio?: string | number | undefined;
|
|
254
|
+
borderBottomWidth?: number | undefined;
|
|
255
|
+
borderEndWidth?: number | undefined;
|
|
256
|
+
borderLeftWidth?: number | undefined;
|
|
257
|
+
borderRightWidth?: number | undefined;
|
|
258
|
+
borderStartWidth?: number | undefined;
|
|
259
|
+
borderTopWidth?: number | undefined;
|
|
260
|
+
borderWidth?: number | undefined;
|
|
261
|
+
bottom?: import("react-native").DimensionValue | undefined;
|
|
232
262
|
display?: "none" | "flex" | undefined;
|
|
233
|
-
end?:
|
|
263
|
+
end?: import("react-native").DimensionValue | undefined;
|
|
234
264
|
flex?: number | undefined;
|
|
235
|
-
flexBasis?:
|
|
265
|
+
flexBasis?: import("react-native").DimensionValue | undefined;
|
|
236
266
|
flexDirection: "row" | "column" | "row-reverse" | "column-reverse";
|
|
267
|
+
rowGap?: number | undefined;
|
|
268
|
+
gap?: number | undefined;
|
|
269
|
+
columnGap?: number | undefined;
|
|
237
270
|
flexGrow?: number | undefined;
|
|
238
271
|
flexShrink?: number | undefined;
|
|
239
272
|
flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
|
|
240
|
-
height?:
|
|
273
|
+
height?: import("react-native").DimensionValue | undefined;
|
|
241
274
|
justifyContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
242
|
-
left?:
|
|
243
|
-
margin?:
|
|
244
|
-
marginBottom:
|
|
245
|
-
marginEnd?:
|
|
246
|
-
marginHorizontal?:
|
|
247
|
-
marginLeft?:
|
|
248
|
-
marginRight?:
|
|
249
|
-
marginStart?:
|
|
250
|
-
marginTop:
|
|
251
|
-
marginVertical?:
|
|
252
|
-
maxHeight?:
|
|
253
|
-
maxWidth?:
|
|
254
|
-
minHeight?:
|
|
255
|
-
minWidth?:
|
|
275
|
+
left?: import("react-native").DimensionValue | undefined;
|
|
276
|
+
margin?: import("react-native").DimensionValue | undefined;
|
|
277
|
+
marginBottom: import("react-native").DimensionValue;
|
|
278
|
+
marginEnd?: import("react-native").DimensionValue | undefined;
|
|
279
|
+
marginHorizontal?: import("react-native").DimensionValue | undefined;
|
|
280
|
+
marginLeft?: import("react-native").DimensionValue | undefined;
|
|
281
|
+
marginRight?: import("react-native").DimensionValue | undefined;
|
|
282
|
+
marginStart?: import("react-native").DimensionValue | undefined;
|
|
283
|
+
marginTop: import("react-native").DimensionValue;
|
|
284
|
+
marginVertical?: import("react-native").DimensionValue | undefined;
|
|
285
|
+
maxHeight?: import("react-native").DimensionValue | undefined;
|
|
286
|
+
maxWidth?: import("react-native").DimensionValue | undefined;
|
|
287
|
+
minHeight?: import("react-native").DimensionValue | undefined;
|
|
288
|
+
minWidth?: import("react-native").DimensionValue | undefined;
|
|
256
289
|
overflow?: "visible" | "hidden" | "scroll" | undefined;
|
|
257
|
-
padding?:
|
|
258
|
-
paddingBottom?:
|
|
259
|
-
paddingEnd?:
|
|
260
|
-
paddingHorizontal?:
|
|
261
|
-
paddingLeft?:
|
|
262
|
-
paddingRight?:
|
|
263
|
-
paddingStart?:
|
|
264
|
-
paddingTop?:
|
|
265
|
-
paddingVertical?:
|
|
290
|
+
padding?: import("react-native").DimensionValue | undefined;
|
|
291
|
+
paddingBottom?: import("react-native").DimensionValue | undefined;
|
|
292
|
+
paddingEnd?: import("react-native").DimensionValue | undefined;
|
|
293
|
+
paddingHorizontal?: import("react-native").DimensionValue | undefined;
|
|
294
|
+
paddingLeft?: import("react-native").DimensionValue | undefined;
|
|
295
|
+
paddingRight?: import("react-native").DimensionValue | undefined;
|
|
296
|
+
paddingStart?: import("react-native").DimensionValue | undefined;
|
|
297
|
+
paddingTop?: import("react-native").DimensionValue | undefined;
|
|
298
|
+
paddingVertical?: import("react-native").DimensionValue | undefined;
|
|
266
299
|
position?: "absolute" | "relative" | undefined;
|
|
267
|
-
right?:
|
|
268
|
-
start?:
|
|
269
|
-
top?:
|
|
270
|
-
width?:
|
|
300
|
+
right?: import("react-native").DimensionValue | undefined;
|
|
301
|
+
start?: import("react-native").DimensionValue | undefined;
|
|
302
|
+
top?: import("react-native").DimensionValue | undefined;
|
|
303
|
+
width?: import("react-native").DimensionValue | undefined;
|
|
271
304
|
zIndex?: number | undefined;
|
|
272
305
|
direction?: "inherit" | "ltr" | "rtl" | undefined;
|
|
273
306
|
shadowColor?: import("react-native").ColorValue | undefined;
|
|
274
|
-
shadowOffset?: {
|
|
307
|
+
shadowOffset?: Readonly<{
|
|
275
308
|
width: number;
|
|
276
309
|
height: number;
|
|
277
|
-
} | undefined;
|
|
278
|
-
shadowOpacity?:
|
|
310
|
+
}> | undefined;
|
|
311
|
+
shadowOpacity?: import("react-native").AnimatableNumericValue | undefined;
|
|
279
312
|
shadowRadius?: number | undefined;
|
|
280
313
|
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;
|
|
281
314
|
transformMatrix?: number[] | undefined;
|
|
282
|
-
rotation?:
|
|
283
|
-
scaleX?:
|
|
284
|
-
scaleY?:
|
|
285
|
-
translateX?:
|
|
286
|
-
translateY?:
|
|
315
|
+
rotation?: import("react-native").AnimatableNumericValue | undefined;
|
|
316
|
+
scaleX?: import("react-native").AnimatableNumericValue | undefined;
|
|
317
|
+
scaleY?: import("react-native").AnimatableNumericValue | undefined;
|
|
318
|
+
translateX?: import("react-native").AnimatableNumericValue | undefined;
|
|
319
|
+
translateY?: import("react-native").AnimatableNumericValue | undefined;
|
|
287
320
|
};
|
|
288
321
|
button: {
|
|
289
322
|
color?: import("react-native").ColorValue | undefined;
|
|
@@ -293,7 +326,7 @@ export declare const generateStyles: (customStyles: CustomTimerPickerModalStyles
|
|
|
293
326
|
fontWeight?: "bold" | "normal" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900" | undefined;
|
|
294
327
|
letterSpacing?: number | undefined;
|
|
295
328
|
lineHeight?: number | undefined;
|
|
296
|
-
textAlign?: "
|
|
329
|
+
textAlign?: "auto" | "center" | "left" | "right" | "justify" | undefined;
|
|
297
330
|
textDecorationLine?: "none" | "underline" | "line-through" | "underline line-through" | undefined;
|
|
298
331
|
textDecorationStyle?: "solid" | "dotted" | "dashed" | "double" | undefined;
|
|
299
332
|
textDecorationColor?: import("react-native").ColorValue | undefined;
|
|
@@ -309,93 +342,106 @@ export declare const generateStyles: (customStyles: CustomTimerPickerModalStyles
|
|
|
309
342
|
writingDirection?: "auto" | "ltr" | "rtl" | undefined;
|
|
310
343
|
backfaceVisibility?: "visible" | "hidden" | undefined;
|
|
311
344
|
backgroundColor?: import("react-native").ColorValue | undefined;
|
|
345
|
+
borderBlockColor?: import("react-native").ColorValue | undefined;
|
|
346
|
+
borderBlockEndColor?: import("react-native").ColorValue | undefined;
|
|
347
|
+
borderBlockStartColor?: import("react-native").ColorValue | undefined;
|
|
312
348
|
borderBottomColor?: import("react-native").ColorValue | undefined;
|
|
313
|
-
borderBottomEndRadius?:
|
|
314
|
-
borderBottomLeftRadius?:
|
|
315
|
-
borderBottomRightRadius?:
|
|
316
|
-
borderBottomStartRadius?:
|
|
317
|
-
borderBottomWidth?: number | undefined;
|
|
349
|
+
borderBottomEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
350
|
+
borderBottomLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
351
|
+
borderBottomRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
352
|
+
borderBottomStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
318
353
|
borderColor?: import("react-native").ColorValue | undefined;
|
|
354
|
+
borderCurve?: "circular" | "continuous" | undefined;
|
|
319
355
|
borderEndColor?: import("react-native").ColorValue | undefined;
|
|
356
|
+
borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
357
|
+
borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
320
358
|
borderLeftColor?: import("react-native").ColorValue | undefined;
|
|
321
|
-
|
|
322
|
-
borderRadius: number;
|
|
359
|
+
borderRadius: import("react-native").AnimatableNumericValue;
|
|
323
360
|
borderRightColor?: import("react-native").ColorValue | undefined;
|
|
324
|
-
borderRightWidth?: number | undefined;
|
|
325
361
|
borderStartColor?: import("react-native").ColorValue | undefined;
|
|
362
|
+
borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
363
|
+
borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
326
364
|
borderStyle?: "solid" | "dotted" | "dashed" | undefined;
|
|
327
365
|
borderTopColor?: import("react-native").ColorValue | undefined;
|
|
328
|
-
borderTopEndRadius?:
|
|
329
|
-
borderTopLeftRadius?:
|
|
330
|
-
borderTopRightRadius?:
|
|
331
|
-
borderTopStartRadius?:
|
|
332
|
-
|
|
333
|
-
borderWidth: number;
|
|
334
|
-
opacity?: number | undefined;
|
|
366
|
+
borderTopEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
367
|
+
borderTopLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
368
|
+
borderTopRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
369
|
+
borderTopStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
370
|
+
opacity?: import("react-native").AnimatableNumericValue | undefined;
|
|
335
371
|
elevation?: number | undefined;
|
|
372
|
+
pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined;
|
|
336
373
|
alignContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "stretch" | undefined;
|
|
337
374
|
alignItems?: import("react-native").FlexAlignType | undefined;
|
|
338
|
-
alignSelf?: import("react-native").FlexAlignType |
|
|
339
|
-
aspectRatio?: number | undefined;
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
375
|
+
alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
|
|
376
|
+
aspectRatio?: string | number | undefined;
|
|
377
|
+
borderBottomWidth?: number | undefined;
|
|
378
|
+
borderEndWidth?: number | undefined;
|
|
379
|
+
borderLeftWidth?: number | undefined;
|
|
380
|
+
borderRightWidth?: number | undefined;
|
|
381
|
+
borderStartWidth?: number | undefined;
|
|
382
|
+
borderTopWidth?: number | undefined;
|
|
383
|
+
borderWidth: number;
|
|
384
|
+
bottom?: import("react-native").DimensionValue | undefined;
|
|
343
385
|
display?: "none" | "flex" | undefined;
|
|
344
|
-
end?:
|
|
386
|
+
end?: import("react-native").DimensionValue | undefined;
|
|
345
387
|
flex?: number | undefined;
|
|
346
|
-
flexBasis?:
|
|
388
|
+
flexBasis?: import("react-native").DimensionValue | undefined;
|
|
347
389
|
flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
|
|
390
|
+
rowGap?: number | undefined;
|
|
391
|
+
gap?: number | undefined;
|
|
392
|
+
columnGap?: number | undefined;
|
|
348
393
|
flexGrow?: number | undefined;
|
|
349
394
|
flexShrink?: number | undefined;
|
|
350
395
|
flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
|
|
351
|
-
height?:
|
|
396
|
+
height?: import("react-native").DimensionValue | undefined;
|
|
352
397
|
justifyContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
353
|
-
left?:
|
|
354
|
-
margin?:
|
|
355
|
-
marginBottom?:
|
|
356
|
-
marginEnd?:
|
|
357
|
-
marginHorizontal:
|
|
358
|
-
marginLeft?:
|
|
359
|
-
marginRight?:
|
|
360
|
-
marginStart?:
|
|
361
|
-
marginTop?:
|
|
362
|
-
marginVertical?:
|
|
363
|
-
maxHeight?:
|
|
364
|
-
maxWidth?:
|
|
365
|
-
minHeight?:
|
|
366
|
-
minWidth?:
|
|
398
|
+
left?: import("react-native").DimensionValue | undefined;
|
|
399
|
+
margin?: import("react-native").DimensionValue | undefined;
|
|
400
|
+
marginBottom?: import("react-native").DimensionValue | undefined;
|
|
401
|
+
marginEnd?: import("react-native").DimensionValue | undefined;
|
|
402
|
+
marginHorizontal: import("react-native").DimensionValue;
|
|
403
|
+
marginLeft?: import("react-native").DimensionValue | undefined;
|
|
404
|
+
marginRight?: import("react-native").DimensionValue | undefined;
|
|
405
|
+
marginStart?: import("react-native").DimensionValue | undefined;
|
|
406
|
+
marginTop?: import("react-native").DimensionValue | undefined;
|
|
407
|
+
marginVertical?: import("react-native").DimensionValue | undefined;
|
|
408
|
+
maxHeight?: import("react-native").DimensionValue | undefined;
|
|
409
|
+
maxWidth?: import("react-native").DimensionValue | undefined;
|
|
410
|
+
minHeight?: import("react-native").DimensionValue | undefined;
|
|
411
|
+
minWidth?: import("react-native").DimensionValue | undefined;
|
|
367
412
|
overflow: "visible" | "hidden" | "scroll";
|
|
368
|
-
padding?:
|
|
369
|
-
paddingBottom?:
|
|
370
|
-
paddingEnd?:
|
|
371
|
-
paddingHorizontal:
|
|
372
|
-
paddingLeft?:
|
|
373
|
-
paddingRight?:
|
|
374
|
-
paddingStart?:
|
|
375
|
-
paddingTop?:
|
|
376
|
-
paddingVertical:
|
|
413
|
+
padding?: import("react-native").DimensionValue | undefined;
|
|
414
|
+
paddingBottom?: import("react-native").DimensionValue | undefined;
|
|
415
|
+
paddingEnd?: import("react-native").DimensionValue | undefined;
|
|
416
|
+
paddingHorizontal: import("react-native").DimensionValue;
|
|
417
|
+
paddingLeft?: import("react-native").DimensionValue | undefined;
|
|
418
|
+
paddingRight?: import("react-native").DimensionValue | undefined;
|
|
419
|
+
paddingStart?: import("react-native").DimensionValue | undefined;
|
|
420
|
+
paddingTop?: import("react-native").DimensionValue | undefined;
|
|
421
|
+
paddingVertical: import("react-native").DimensionValue;
|
|
377
422
|
position?: "absolute" | "relative" | undefined;
|
|
378
|
-
right?:
|
|
379
|
-
start?:
|
|
380
|
-
top?:
|
|
381
|
-
width?:
|
|
423
|
+
right?: import("react-native").DimensionValue | undefined;
|
|
424
|
+
start?: import("react-native").DimensionValue | undefined;
|
|
425
|
+
top?: import("react-native").DimensionValue | undefined;
|
|
426
|
+
width?: import("react-native").DimensionValue | undefined;
|
|
382
427
|
zIndex?: number | undefined;
|
|
383
428
|
direction?: "inherit" | "ltr" | "rtl" | undefined;
|
|
384
429
|
shadowColor?: import("react-native").ColorValue | undefined;
|
|
385
|
-
shadowOffset?: {
|
|
430
|
+
shadowOffset?: Readonly<{
|
|
386
431
|
width: number;
|
|
387
432
|
height: number;
|
|
388
|
-
} | undefined;
|
|
389
|
-
shadowOpacity?:
|
|
433
|
+
}> | undefined;
|
|
434
|
+
shadowOpacity?: import("react-native").AnimatableNumericValue | undefined;
|
|
390
435
|
shadowRadius?: number | undefined;
|
|
391
436
|
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;
|
|
392
437
|
transformMatrix?: number[] | undefined;
|
|
393
|
-
rotation?:
|
|
394
|
-
scaleX?:
|
|
395
|
-
scaleY?:
|
|
396
|
-
translateX?:
|
|
397
|
-
translateY?:
|
|
398
|
-
textAlignVertical?: "
|
|
438
|
+
rotation?: import("react-native").AnimatableNumericValue | undefined;
|
|
439
|
+
scaleX?: import("react-native").AnimatableNumericValue | undefined;
|
|
440
|
+
scaleY?: import("react-native").AnimatableNumericValue | undefined;
|
|
441
|
+
translateX?: import("react-native").AnimatableNumericValue | undefined;
|
|
442
|
+
translateY?: import("react-native").AnimatableNumericValue | undefined;
|
|
443
|
+
textAlignVertical?: "auto" | "center" | "bottom" | "top" | undefined;
|
|
444
|
+
verticalAlign?: "auto" | "bottom" | "top" | "middle" | undefined;
|
|
399
445
|
includeFontPadding?: boolean | undefined;
|
|
400
446
|
};
|
|
401
447
|
cancelButton: {
|
|
@@ -406,7 +452,7 @@ export declare const generateStyles: (customStyles: CustomTimerPickerModalStyles
|
|
|
406
452
|
fontWeight?: "bold" | "normal" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900" | undefined;
|
|
407
453
|
letterSpacing?: number | undefined;
|
|
408
454
|
lineHeight?: number | undefined;
|
|
409
|
-
textAlign?: "
|
|
455
|
+
textAlign?: "auto" | "center" | "left" | "right" | "justify" | undefined;
|
|
410
456
|
textDecorationLine?: "none" | "underline" | "line-through" | "underline line-through" | undefined;
|
|
411
457
|
textDecorationStyle?: "solid" | "dotted" | "dashed" | "double" | undefined;
|
|
412
458
|
textDecorationColor?: import("react-native").ColorValue | undefined;
|
|
@@ -422,93 +468,106 @@ export declare const generateStyles: (customStyles: CustomTimerPickerModalStyles
|
|
|
422
468
|
writingDirection?: "auto" | "ltr" | "rtl" | undefined;
|
|
423
469
|
backfaceVisibility?: "visible" | "hidden" | undefined;
|
|
424
470
|
backgroundColor: import("react-native").ColorValue | undefined;
|
|
471
|
+
borderBlockColor?: import("react-native").ColorValue | undefined;
|
|
472
|
+
borderBlockEndColor?: import("react-native").ColorValue | undefined;
|
|
473
|
+
borderBlockStartColor?: import("react-native").ColorValue | undefined;
|
|
425
474
|
borderBottomColor?: import("react-native").ColorValue | undefined;
|
|
426
|
-
borderBottomEndRadius?:
|
|
427
|
-
borderBottomLeftRadius?:
|
|
428
|
-
borderBottomRightRadius?:
|
|
429
|
-
borderBottomStartRadius?:
|
|
430
|
-
borderBottomWidth?: number | undefined;
|
|
475
|
+
borderBottomEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
476
|
+
borderBottomLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
477
|
+
borderBottomRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
478
|
+
borderBottomStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
431
479
|
borderColor: import("react-native").ColorValue;
|
|
480
|
+
borderCurve?: "circular" | "continuous" | undefined;
|
|
432
481
|
borderEndColor?: import("react-native").ColorValue | undefined;
|
|
482
|
+
borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
483
|
+
borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
433
484
|
borderLeftColor?: import("react-native").ColorValue | undefined;
|
|
434
|
-
|
|
435
|
-
borderRadius?: number | undefined;
|
|
485
|
+
borderRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
436
486
|
borderRightColor?: import("react-native").ColorValue | undefined;
|
|
437
|
-
borderRightWidth?: number | undefined;
|
|
438
487
|
borderStartColor?: import("react-native").ColorValue | undefined;
|
|
488
|
+
borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
489
|
+
borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
439
490
|
borderStyle?: "solid" | "dotted" | "dashed" | undefined;
|
|
440
491
|
borderTopColor?: import("react-native").ColorValue | undefined;
|
|
441
|
-
borderTopEndRadius?:
|
|
442
|
-
borderTopLeftRadius?:
|
|
443
|
-
borderTopRightRadius?:
|
|
444
|
-
borderTopStartRadius?:
|
|
445
|
-
|
|
446
|
-
borderWidth?: number | undefined;
|
|
447
|
-
opacity?: number | undefined;
|
|
492
|
+
borderTopEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
493
|
+
borderTopLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
494
|
+
borderTopRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
495
|
+
borderTopStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
496
|
+
opacity?: import("react-native").AnimatableNumericValue | undefined;
|
|
448
497
|
elevation?: number | undefined;
|
|
498
|
+
pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined;
|
|
449
499
|
alignContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "stretch" | undefined;
|
|
450
500
|
alignItems?: import("react-native").FlexAlignType | undefined;
|
|
451
|
-
alignSelf?: import("react-native").FlexAlignType |
|
|
452
|
-
aspectRatio?: number | undefined;
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
501
|
+
alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
|
|
502
|
+
aspectRatio?: string | number | undefined;
|
|
503
|
+
borderBottomWidth?: number | undefined;
|
|
504
|
+
borderEndWidth?: number | undefined;
|
|
505
|
+
borderLeftWidth?: number | undefined;
|
|
506
|
+
borderRightWidth?: number | undefined;
|
|
507
|
+
borderStartWidth?: number | undefined;
|
|
508
|
+
borderTopWidth?: number | undefined;
|
|
509
|
+
borderWidth?: number | undefined;
|
|
510
|
+
bottom?: import("react-native").DimensionValue | undefined;
|
|
456
511
|
display?: "none" | "flex" | undefined;
|
|
457
|
-
end?:
|
|
512
|
+
end?: import("react-native").DimensionValue | undefined;
|
|
458
513
|
flex?: number | undefined;
|
|
459
|
-
flexBasis?:
|
|
514
|
+
flexBasis?: import("react-native").DimensionValue | undefined;
|
|
460
515
|
flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
|
|
516
|
+
rowGap?: number | undefined;
|
|
517
|
+
gap?: number | undefined;
|
|
518
|
+
columnGap?: number | undefined;
|
|
461
519
|
flexGrow?: number | undefined;
|
|
462
520
|
flexShrink?: number | undefined;
|
|
463
521
|
flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
|
|
464
|
-
height?:
|
|
522
|
+
height?: import("react-native").DimensionValue | undefined;
|
|
465
523
|
justifyContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
466
|
-
left?:
|
|
467
|
-
margin?:
|
|
468
|
-
marginBottom?:
|
|
469
|
-
marginEnd?:
|
|
470
|
-
marginHorizontal?:
|
|
471
|
-
marginLeft?:
|
|
472
|
-
marginRight?:
|
|
473
|
-
marginStart?:
|
|
474
|
-
marginTop?:
|
|
475
|
-
marginVertical?:
|
|
476
|
-
maxHeight?:
|
|
477
|
-
maxWidth?:
|
|
478
|
-
minHeight?:
|
|
479
|
-
minWidth?:
|
|
524
|
+
left?: import("react-native").DimensionValue | undefined;
|
|
525
|
+
margin?: import("react-native").DimensionValue | undefined;
|
|
526
|
+
marginBottom?: import("react-native").DimensionValue | undefined;
|
|
527
|
+
marginEnd?: import("react-native").DimensionValue | undefined;
|
|
528
|
+
marginHorizontal?: import("react-native").DimensionValue | undefined;
|
|
529
|
+
marginLeft?: import("react-native").DimensionValue | undefined;
|
|
530
|
+
marginRight?: import("react-native").DimensionValue | undefined;
|
|
531
|
+
marginStart?: import("react-native").DimensionValue | undefined;
|
|
532
|
+
marginTop?: import("react-native").DimensionValue | undefined;
|
|
533
|
+
marginVertical?: import("react-native").DimensionValue | undefined;
|
|
534
|
+
maxHeight?: import("react-native").DimensionValue | undefined;
|
|
535
|
+
maxWidth?: import("react-native").DimensionValue | undefined;
|
|
536
|
+
minHeight?: import("react-native").DimensionValue | undefined;
|
|
537
|
+
minWidth?: import("react-native").DimensionValue | undefined;
|
|
480
538
|
overflow?: "visible" | "hidden" | "scroll" | undefined;
|
|
481
|
-
padding?:
|
|
482
|
-
paddingBottom?:
|
|
483
|
-
paddingEnd?:
|
|
484
|
-
paddingHorizontal?:
|
|
485
|
-
paddingLeft?:
|
|
486
|
-
paddingRight?:
|
|
487
|
-
paddingStart?:
|
|
488
|
-
paddingTop?:
|
|
489
|
-
paddingVertical?:
|
|
539
|
+
padding?: import("react-native").DimensionValue | undefined;
|
|
540
|
+
paddingBottom?: import("react-native").DimensionValue | undefined;
|
|
541
|
+
paddingEnd?: import("react-native").DimensionValue | undefined;
|
|
542
|
+
paddingHorizontal?: import("react-native").DimensionValue | undefined;
|
|
543
|
+
paddingLeft?: import("react-native").DimensionValue | undefined;
|
|
544
|
+
paddingRight?: import("react-native").DimensionValue | undefined;
|
|
545
|
+
paddingStart?: import("react-native").DimensionValue | undefined;
|
|
546
|
+
paddingTop?: import("react-native").DimensionValue | undefined;
|
|
547
|
+
paddingVertical?: import("react-native").DimensionValue | undefined;
|
|
490
548
|
position?: "absolute" | "relative" | undefined;
|
|
491
|
-
right?:
|
|
492
|
-
start?:
|
|
493
|
-
top?:
|
|
494
|
-
width?:
|
|
549
|
+
right?: import("react-native").DimensionValue | undefined;
|
|
550
|
+
start?: import("react-native").DimensionValue | undefined;
|
|
551
|
+
top?: import("react-native").DimensionValue | undefined;
|
|
552
|
+
width?: import("react-native").DimensionValue | undefined;
|
|
495
553
|
zIndex?: number | undefined;
|
|
496
554
|
direction?: "inherit" | "ltr" | "rtl" | undefined;
|
|
497
555
|
shadowColor?: import("react-native").ColorValue | undefined;
|
|
498
|
-
shadowOffset?: {
|
|
556
|
+
shadowOffset?: Readonly<{
|
|
499
557
|
width: number;
|
|
500
558
|
height: number;
|
|
501
|
-
} | undefined;
|
|
502
|
-
shadowOpacity?:
|
|
559
|
+
}> | undefined;
|
|
560
|
+
shadowOpacity?: import("react-native").AnimatableNumericValue | undefined;
|
|
503
561
|
shadowRadius?: number | undefined;
|
|
504
562
|
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;
|
|
505
563
|
transformMatrix?: number[] | undefined;
|
|
506
|
-
rotation?:
|
|
507
|
-
scaleX?:
|
|
508
|
-
scaleY?:
|
|
509
|
-
translateX?:
|
|
510
|
-
translateY?:
|
|
511
|
-
textAlignVertical?: "
|
|
564
|
+
rotation?: import("react-native").AnimatableNumericValue | undefined;
|
|
565
|
+
scaleX?: import("react-native").AnimatableNumericValue | undefined;
|
|
566
|
+
scaleY?: import("react-native").AnimatableNumericValue | undefined;
|
|
567
|
+
translateX?: import("react-native").AnimatableNumericValue | undefined;
|
|
568
|
+
translateY?: import("react-native").AnimatableNumericValue | undefined;
|
|
569
|
+
textAlignVertical?: "auto" | "center" | "bottom" | "top" | undefined;
|
|
570
|
+
verticalAlign?: "auto" | "bottom" | "top" | "middle" | undefined;
|
|
512
571
|
includeFontPadding?: boolean | undefined;
|
|
513
572
|
};
|
|
514
573
|
confirmButton: {
|
|
@@ -519,7 +578,7 @@ export declare const generateStyles: (customStyles: CustomTimerPickerModalStyles
|
|
|
519
578
|
fontWeight?: "bold" | "normal" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900" | undefined;
|
|
520
579
|
letterSpacing?: number | undefined;
|
|
521
580
|
lineHeight?: number | undefined;
|
|
522
|
-
textAlign?: "
|
|
581
|
+
textAlign?: "auto" | "center" | "left" | "right" | "justify" | undefined;
|
|
523
582
|
textDecorationLine?: "none" | "underline" | "line-through" | "underline line-through" | undefined;
|
|
524
583
|
textDecorationStyle?: "solid" | "dotted" | "dashed" | "double" | undefined;
|
|
525
584
|
textDecorationColor?: import("react-native").ColorValue | undefined;
|
|
@@ -535,93 +594,106 @@ export declare const generateStyles: (customStyles: CustomTimerPickerModalStyles
|
|
|
535
594
|
writingDirection?: "auto" | "ltr" | "rtl" | undefined;
|
|
536
595
|
backfaceVisibility?: "visible" | "hidden" | undefined;
|
|
537
596
|
backgroundColor: import("react-native").ColorValue | undefined;
|
|
597
|
+
borderBlockColor?: import("react-native").ColorValue | undefined;
|
|
598
|
+
borderBlockEndColor?: import("react-native").ColorValue | undefined;
|
|
599
|
+
borderBlockStartColor?: import("react-native").ColorValue | undefined;
|
|
538
600
|
borderBottomColor?: import("react-native").ColorValue | undefined;
|
|
539
|
-
borderBottomEndRadius?:
|
|
540
|
-
borderBottomLeftRadius?:
|
|
541
|
-
borderBottomRightRadius?:
|
|
542
|
-
borderBottomStartRadius?:
|
|
543
|
-
borderBottomWidth?: number | undefined;
|
|
601
|
+
borderBottomEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
602
|
+
borderBottomLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
603
|
+
borderBottomRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
604
|
+
borderBottomStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
544
605
|
borderColor: import("react-native").ColorValue;
|
|
606
|
+
borderCurve?: "circular" | "continuous" | undefined;
|
|
545
607
|
borderEndColor?: import("react-native").ColorValue | undefined;
|
|
608
|
+
borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
609
|
+
borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
546
610
|
borderLeftColor?: import("react-native").ColorValue | undefined;
|
|
547
|
-
|
|
548
|
-
borderRadius?: number | undefined;
|
|
611
|
+
borderRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
549
612
|
borderRightColor?: import("react-native").ColorValue | undefined;
|
|
550
|
-
borderRightWidth?: number | undefined;
|
|
551
613
|
borderStartColor?: import("react-native").ColorValue | undefined;
|
|
614
|
+
borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
615
|
+
borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
552
616
|
borderStyle?: "solid" | "dotted" | "dashed" | undefined;
|
|
553
617
|
borderTopColor?: import("react-native").ColorValue | undefined;
|
|
554
|
-
borderTopEndRadius?:
|
|
555
|
-
borderTopLeftRadius?:
|
|
556
|
-
borderTopRightRadius?:
|
|
557
|
-
borderTopStartRadius?:
|
|
558
|
-
|
|
559
|
-
borderWidth?: number | undefined;
|
|
560
|
-
opacity?: number | undefined;
|
|
618
|
+
borderTopEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
619
|
+
borderTopLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
620
|
+
borderTopRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
621
|
+
borderTopStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
622
|
+
opacity?: import("react-native").AnimatableNumericValue | undefined;
|
|
561
623
|
elevation?: number | undefined;
|
|
624
|
+
pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined;
|
|
562
625
|
alignContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "stretch" | undefined;
|
|
563
626
|
alignItems?: import("react-native").FlexAlignType | undefined;
|
|
564
|
-
alignSelf?: import("react-native").FlexAlignType |
|
|
565
|
-
aspectRatio?: number | undefined;
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
627
|
+
alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
|
|
628
|
+
aspectRatio?: string | number | undefined;
|
|
629
|
+
borderBottomWidth?: number | undefined;
|
|
630
|
+
borderEndWidth?: number | undefined;
|
|
631
|
+
borderLeftWidth?: number | undefined;
|
|
632
|
+
borderRightWidth?: number | undefined;
|
|
633
|
+
borderStartWidth?: number | undefined;
|
|
634
|
+
borderTopWidth?: number | undefined;
|
|
635
|
+
borderWidth?: number | undefined;
|
|
636
|
+
bottom?: import("react-native").DimensionValue | undefined;
|
|
569
637
|
display?: "none" | "flex" | undefined;
|
|
570
|
-
end?:
|
|
638
|
+
end?: import("react-native").DimensionValue | undefined;
|
|
571
639
|
flex?: number | undefined;
|
|
572
|
-
flexBasis?:
|
|
640
|
+
flexBasis?: import("react-native").DimensionValue | undefined;
|
|
573
641
|
flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
|
|
642
|
+
rowGap?: number | undefined;
|
|
643
|
+
gap?: number | undefined;
|
|
644
|
+
columnGap?: number | undefined;
|
|
574
645
|
flexGrow?: number | undefined;
|
|
575
646
|
flexShrink?: number | undefined;
|
|
576
647
|
flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
|
|
577
|
-
height?:
|
|
648
|
+
height?: import("react-native").DimensionValue | undefined;
|
|
578
649
|
justifyContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
579
|
-
left?:
|
|
580
|
-
margin?:
|
|
581
|
-
marginBottom?:
|
|
582
|
-
marginEnd?:
|
|
583
|
-
marginHorizontal?:
|
|
584
|
-
marginLeft?:
|
|
585
|
-
marginRight?:
|
|
586
|
-
marginStart?:
|
|
587
|
-
marginTop?:
|
|
588
|
-
marginVertical?:
|
|
589
|
-
maxHeight?:
|
|
590
|
-
maxWidth?:
|
|
591
|
-
minHeight?:
|
|
592
|
-
minWidth?:
|
|
650
|
+
left?: import("react-native").DimensionValue | undefined;
|
|
651
|
+
margin?: import("react-native").DimensionValue | undefined;
|
|
652
|
+
marginBottom?: import("react-native").DimensionValue | undefined;
|
|
653
|
+
marginEnd?: import("react-native").DimensionValue | undefined;
|
|
654
|
+
marginHorizontal?: import("react-native").DimensionValue | undefined;
|
|
655
|
+
marginLeft?: import("react-native").DimensionValue | undefined;
|
|
656
|
+
marginRight?: import("react-native").DimensionValue | undefined;
|
|
657
|
+
marginStart?: import("react-native").DimensionValue | undefined;
|
|
658
|
+
marginTop?: import("react-native").DimensionValue | undefined;
|
|
659
|
+
marginVertical?: import("react-native").DimensionValue | undefined;
|
|
660
|
+
maxHeight?: import("react-native").DimensionValue | undefined;
|
|
661
|
+
maxWidth?: import("react-native").DimensionValue | undefined;
|
|
662
|
+
minHeight?: import("react-native").DimensionValue | undefined;
|
|
663
|
+
minWidth?: import("react-native").DimensionValue | undefined;
|
|
593
664
|
overflow?: "visible" | "hidden" | "scroll" | undefined;
|
|
594
|
-
padding?:
|
|
595
|
-
paddingBottom?:
|
|
596
|
-
paddingEnd?:
|
|
597
|
-
paddingHorizontal?:
|
|
598
|
-
paddingLeft?:
|
|
599
|
-
paddingRight?:
|
|
600
|
-
paddingStart?:
|
|
601
|
-
paddingTop?:
|
|
602
|
-
paddingVertical?:
|
|
665
|
+
padding?: import("react-native").DimensionValue | undefined;
|
|
666
|
+
paddingBottom?: import("react-native").DimensionValue | undefined;
|
|
667
|
+
paddingEnd?: import("react-native").DimensionValue | undefined;
|
|
668
|
+
paddingHorizontal?: import("react-native").DimensionValue | undefined;
|
|
669
|
+
paddingLeft?: import("react-native").DimensionValue | undefined;
|
|
670
|
+
paddingRight?: import("react-native").DimensionValue | undefined;
|
|
671
|
+
paddingStart?: import("react-native").DimensionValue | undefined;
|
|
672
|
+
paddingTop?: import("react-native").DimensionValue | undefined;
|
|
673
|
+
paddingVertical?: import("react-native").DimensionValue | undefined;
|
|
603
674
|
position?: "absolute" | "relative" | undefined;
|
|
604
|
-
right?:
|
|
605
|
-
start?:
|
|
606
|
-
top?:
|
|
607
|
-
width?:
|
|
675
|
+
right?: import("react-native").DimensionValue | undefined;
|
|
676
|
+
start?: import("react-native").DimensionValue | undefined;
|
|
677
|
+
top?: import("react-native").DimensionValue | undefined;
|
|
678
|
+
width?: import("react-native").DimensionValue | undefined;
|
|
608
679
|
zIndex?: number | undefined;
|
|
609
680
|
direction?: "inherit" | "ltr" | "rtl" | undefined;
|
|
610
681
|
shadowColor?: import("react-native").ColorValue | undefined;
|
|
611
|
-
shadowOffset?: {
|
|
682
|
+
shadowOffset?: Readonly<{
|
|
612
683
|
width: number;
|
|
613
684
|
height: number;
|
|
614
|
-
} | undefined;
|
|
615
|
-
shadowOpacity?:
|
|
685
|
+
}> | undefined;
|
|
686
|
+
shadowOpacity?: import("react-native").AnimatableNumericValue | undefined;
|
|
616
687
|
shadowRadius?: number | undefined;
|
|
617
688
|
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;
|
|
618
689
|
transformMatrix?: number[] | undefined;
|
|
619
|
-
rotation?:
|
|
620
|
-
scaleX?:
|
|
621
|
-
scaleY?:
|
|
622
|
-
translateX?:
|
|
623
|
-
translateY?:
|
|
624
|
-
textAlignVertical?: "
|
|
690
|
+
rotation?: import("react-native").AnimatableNumericValue | undefined;
|
|
691
|
+
scaleX?: import("react-native").AnimatableNumericValue | undefined;
|
|
692
|
+
scaleY?: import("react-native").AnimatableNumericValue | undefined;
|
|
693
|
+
translateX?: import("react-native").AnimatableNumericValue | undefined;
|
|
694
|
+
translateY?: import("react-native").AnimatableNumericValue | undefined;
|
|
695
|
+
textAlignVertical?: "auto" | "center" | "bottom" | "top" | undefined;
|
|
696
|
+
verticalAlign?: "auto" | "bottom" | "top" | "middle" | undefined;
|
|
625
697
|
includeFontPadding?: boolean | undefined;
|
|
626
698
|
};
|
|
627
699
|
modalTitle: {
|
|
@@ -632,7 +704,7 @@ export declare const generateStyles: (customStyles: CustomTimerPickerModalStyles
|
|
|
632
704
|
fontWeight: "bold" | "normal" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900";
|
|
633
705
|
letterSpacing?: number | undefined;
|
|
634
706
|
lineHeight?: number | undefined;
|
|
635
|
-
textAlign?: "
|
|
707
|
+
textAlign?: "auto" | "center" | "left" | "right" | "justify" | undefined;
|
|
636
708
|
textDecorationLine?: "none" | "underline" | "line-through" | "underline line-through" | undefined;
|
|
637
709
|
textDecorationStyle?: "solid" | "dotted" | "dashed" | "double" | undefined;
|
|
638
710
|
textDecorationColor?: import("react-native").ColorValue | undefined;
|
|
@@ -648,186 +720,210 @@ export declare const generateStyles: (customStyles: CustomTimerPickerModalStyles
|
|
|
648
720
|
writingDirection?: "auto" | "ltr" | "rtl" | undefined;
|
|
649
721
|
backfaceVisibility?: "visible" | "hidden" | undefined;
|
|
650
722
|
backgroundColor?: import("react-native").ColorValue | undefined;
|
|
723
|
+
borderBlockColor?: import("react-native").ColorValue | undefined;
|
|
724
|
+
borderBlockEndColor?: import("react-native").ColorValue | undefined;
|
|
725
|
+
borderBlockStartColor?: import("react-native").ColorValue | undefined;
|
|
651
726
|
borderBottomColor?: import("react-native").ColorValue | undefined;
|
|
652
|
-
borderBottomEndRadius?:
|
|
653
|
-
borderBottomLeftRadius?:
|
|
654
|
-
borderBottomRightRadius?:
|
|
655
|
-
borderBottomStartRadius?:
|
|
656
|
-
borderBottomWidth?: number | undefined;
|
|
727
|
+
borderBottomEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
728
|
+
borderBottomLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
729
|
+
borderBottomRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
730
|
+
borderBottomStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
657
731
|
borderColor?: import("react-native").ColorValue | undefined;
|
|
732
|
+
borderCurve?: "circular" | "continuous" | undefined;
|
|
658
733
|
borderEndColor?: import("react-native").ColorValue | undefined;
|
|
734
|
+
borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
735
|
+
borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
659
736
|
borderLeftColor?: import("react-native").ColorValue | undefined;
|
|
660
|
-
|
|
661
|
-
borderRadius?: number | undefined;
|
|
737
|
+
borderRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
662
738
|
borderRightColor?: import("react-native").ColorValue | undefined;
|
|
663
|
-
borderRightWidth?: number | undefined;
|
|
664
739
|
borderStartColor?: import("react-native").ColorValue | undefined;
|
|
740
|
+
borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
741
|
+
borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
665
742
|
borderStyle?: "solid" | "dotted" | "dashed" | undefined;
|
|
666
743
|
borderTopColor?: import("react-native").ColorValue | undefined;
|
|
667
|
-
borderTopEndRadius?:
|
|
668
|
-
borderTopLeftRadius?:
|
|
669
|
-
borderTopRightRadius?:
|
|
670
|
-
borderTopStartRadius?:
|
|
671
|
-
|
|
672
|
-
borderWidth?: number | undefined;
|
|
673
|
-
opacity?: number | undefined;
|
|
744
|
+
borderTopEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
745
|
+
borderTopLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
746
|
+
borderTopRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
747
|
+
borderTopStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
748
|
+
opacity?: import("react-native").AnimatableNumericValue | undefined;
|
|
674
749
|
elevation?: number | undefined;
|
|
750
|
+
pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined;
|
|
675
751
|
alignContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "stretch" | undefined;
|
|
676
752
|
alignItems?: import("react-native").FlexAlignType | undefined;
|
|
677
|
-
alignSelf?: import("react-native").FlexAlignType |
|
|
678
|
-
aspectRatio?: number | undefined;
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
753
|
+
alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
|
|
754
|
+
aspectRatio?: string | number | undefined;
|
|
755
|
+
borderBottomWidth?: number | undefined;
|
|
756
|
+
borderEndWidth?: number | undefined;
|
|
757
|
+
borderLeftWidth?: number | undefined;
|
|
758
|
+
borderRightWidth?: number | undefined;
|
|
759
|
+
borderStartWidth?: number | undefined;
|
|
760
|
+
borderTopWidth?: number | undefined;
|
|
761
|
+
borderWidth?: number | undefined;
|
|
762
|
+
bottom?: import("react-native").DimensionValue | undefined;
|
|
682
763
|
display?: "none" | "flex" | undefined;
|
|
683
|
-
end?:
|
|
764
|
+
end?: import("react-native").DimensionValue | undefined;
|
|
684
765
|
flex?: number | undefined;
|
|
685
|
-
flexBasis?:
|
|
766
|
+
flexBasis?: import("react-native").DimensionValue | undefined;
|
|
686
767
|
flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
|
|
768
|
+
rowGap?: number | undefined;
|
|
769
|
+
gap?: number | undefined;
|
|
770
|
+
columnGap?: number | undefined;
|
|
687
771
|
flexGrow?: number | undefined;
|
|
688
772
|
flexShrink?: number | undefined;
|
|
689
773
|
flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
|
|
690
|
-
height?:
|
|
774
|
+
height?: import("react-native").DimensionValue | undefined;
|
|
691
775
|
justifyContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
692
|
-
left?:
|
|
693
|
-
margin?:
|
|
694
|
-
marginBottom:
|
|
695
|
-
marginEnd?:
|
|
696
|
-
marginHorizontal?:
|
|
697
|
-
marginLeft?:
|
|
698
|
-
marginRight?:
|
|
699
|
-
marginStart?:
|
|
700
|
-
marginTop:
|
|
701
|
-
marginVertical?:
|
|
702
|
-
maxHeight?:
|
|
703
|
-
maxWidth?:
|
|
704
|
-
minHeight?:
|
|
705
|
-
minWidth?:
|
|
776
|
+
left?: import("react-native").DimensionValue | undefined;
|
|
777
|
+
margin?: import("react-native").DimensionValue | undefined;
|
|
778
|
+
marginBottom: import("react-native").DimensionValue;
|
|
779
|
+
marginEnd?: import("react-native").DimensionValue | undefined;
|
|
780
|
+
marginHorizontal?: import("react-native").DimensionValue | undefined;
|
|
781
|
+
marginLeft?: import("react-native").DimensionValue | undefined;
|
|
782
|
+
marginRight?: import("react-native").DimensionValue | undefined;
|
|
783
|
+
marginStart?: import("react-native").DimensionValue | undefined;
|
|
784
|
+
marginTop: import("react-native").DimensionValue;
|
|
785
|
+
marginVertical?: import("react-native").DimensionValue | undefined;
|
|
786
|
+
maxHeight?: import("react-native").DimensionValue | undefined;
|
|
787
|
+
maxWidth?: import("react-native").DimensionValue | undefined;
|
|
788
|
+
minHeight?: import("react-native").DimensionValue | undefined;
|
|
789
|
+
minWidth?: import("react-native").DimensionValue | undefined;
|
|
706
790
|
overflow?: "visible" | "hidden" | "scroll" | undefined;
|
|
707
|
-
padding?:
|
|
708
|
-
paddingBottom?:
|
|
709
|
-
paddingEnd?:
|
|
710
|
-
paddingHorizontal?:
|
|
711
|
-
paddingLeft?:
|
|
712
|
-
paddingRight?:
|
|
713
|
-
paddingStart?:
|
|
714
|
-
paddingTop?:
|
|
715
|
-
paddingVertical?:
|
|
791
|
+
padding?: import("react-native").DimensionValue | undefined;
|
|
792
|
+
paddingBottom?: import("react-native").DimensionValue | undefined;
|
|
793
|
+
paddingEnd?: import("react-native").DimensionValue | undefined;
|
|
794
|
+
paddingHorizontal?: import("react-native").DimensionValue | undefined;
|
|
795
|
+
paddingLeft?: import("react-native").DimensionValue | undefined;
|
|
796
|
+
paddingRight?: import("react-native").DimensionValue | undefined;
|
|
797
|
+
paddingStart?: import("react-native").DimensionValue | undefined;
|
|
798
|
+
paddingTop?: import("react-native").DimensionValue | undefined;
|
|
799
|
+
paddingVertical?: import("react-native").DimensionValue | undefined;
|
|
716
800
|
position?: "absolute" | "relative" | undefined;
|
|
717
|
-
right?:
|
|
718
|
-
start?:
|
|
719
|
-
top?:
|
|
720
|
-
width?:
|
|
801
|
+
right?: import("react-native").DimensionValue | undefined;
|
|
802
|
+
start?: import("react-native").DimensionValue | undefined;
|
|
803
|
+
top?: import("react-native").DimensionValue | undefined;
|
|
804
|
+
width?: import("react-native").DimensionValue | undefined;
|
|
721
805
|
zIndex?: number | undefined;
|
|
722
806
|
direction?: "inherit" | "ltr" | "rtl" | undefined;
|
|
723
807
|
shadowColor?: import("react-native").ColorValue | undefined;
|
|
724
|
-
shadowOffset?: {
|
|
808
|
+
shadowOffset?: Readonly<{
|
|
725
809
|
width: number;
|
|
726
810
|
height: number;
|
|
727
|
-
} | undefined;
|
|
728
|
-
shadowOpacity?:
|
|
811
|
+
}> | undefined;
|
|
812
|
+
shadowOpacity?: import("react-native").AnimatableNumericValue | undefined;
|
|
729
813
|
shadowRadius?: number | undefined;
|
|
730
814
|
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;
|
|
731
815
|
transformMatrix?: number[] | undefined;
|
|
732
|
-
rotation?:
|
|
733
|
-
scaleX?:
|
|
734
|
-
scaleY?:
|
|
735
|
-
translateX?:
|
|
736
|
-
translateY?:
|
|
737
|
-
textAlignVertical?: "
|
|
816
|
+
rotation?: import("react-native").AnimatableNumericValue | undefined;
|
|
817
|
+
scaleX?: import("react-native").AnimatableNumericValue | undefined;
|
|
818
|
+
scaleY?: import("react-native").AnimatableNumericValue | undefined;
|
|
819
|
+
translateX?: import("react-native").AnimatableNumericValue | undefined;
|
|
820
|
+
translateY?: import("react-native").AnimatableNumericValue | undefined;
|
|
821
|
+
textAlignVertical?: "auto" | "center" | "bottom" | "top" | undefined;
|
|
822
|
+
verticalAlign?: "auto" | "bottom" | "top" | "middle" | undefined;
|
|
738
823
|
includeFontPadding?: boolean | undefined;
|
|
739
824
|
};
|
|
740
825
|
timerPickerStyles: {
|
|
741
826
|
pickerContainer: {
|
|
742
827
|
backfaceVisibility?: "visible" | "hidden" | undefined;
|
|
743
828
|
backgroundColor?: string | undefined;
|
|
829
|
+
borderBlockColor?: import("react-native").ColorValue | undefined;
|
|
830
|
+
borderBlockEndColor?: import("react-native").ColorValue | undefined;
|
|
831
|
+
borderBlockStartColor?: import("react-native").ColorValue | undefined;
|
|
744
832
|
borderBottomColor?: import("react-native").ColorValue | undefined;
|
|
745
|
-
borderBottomEndRadius?:
|
|
746
|
-
borderBottomLeftRadius?:
|
|
747
|
-
borderBottomRightRadius?:
|
|
748
|
-
borderBottomStartRadius?:
|
|
749
|
-
borderBottomWidth?: number | undefined;
|
|
833
|
+
borderBottomEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
834
|
+
borderBottomLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
835
|
+
borderBottomRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
836
|
+
borderBottomStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
750
837
|
borderColor?: import("react-native").ColorValue | undefined;
|
|
838
|
+
borderCurve?: "circular" | "continuous" | undefined;
|
|
751
839
|
borderEndColor?: import("react-native").ColorValue | undefined;
|
|
840
|
+
borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
841
|
+
borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
752
842
|
borderLeftColor?: import("react-native").ColorValue | undefined;
|
|
753
|
-
|
|
754
|
-
borderRadius?: number | undefined;
|
|
843
|
+
borderRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
755
844
|
borderRightColor?: import("react-native").ColorValue | undefined;
|
|
756
|
-
borderRightWidth?: number | undefined;
|
|
757
845
|
borderStartColor?: import("react-native").ColorValue | undefined;
|
|
846
|
+
borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
847
|
+
borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
758
848
|
borderStyle?: "solid" | "dotted" | "dashed" | undefined;
|
|
759
849
|
borderTopColor?: import("react-native").ColorValue | undefined;
|
|
760
|
-
borderTopEndRadius?:
|
|
761
|
-
borderTopLeftRadius?:
|
|
762
|
-
borderTopRightRadius?:
|
|
763
|
-
borderTopStartRadius?:
|
|
764
|
-
|
|
765
|
-
borderWidth?: number | undefined;
|
|
766
|
-
opacity?: number | undefined;
|
|
767
|
-
testID?: string | undefined;
|
|
850
|
+
borderTopEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
851
|
+
borderTopLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
852
|
+
borderTopRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
853
|
+
borderTopStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
854
|
+
opacity?: import("react-native").AnimatableNumericValue | undefined;
|
|
768
855
|
elevation?: number | undefined;
|
|
856
|
+
pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined;
|
|
769
857
|
alignContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "stretch" | undefined;
|
|
770
858
|
alignItems?: import("react-native").FlexAlignType | undefined;
|
|
771
|
-
alignSelf?: import("react-native").FlexAlignType |
|
|
772
|
-
aspectRatio?: number | undefined;
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
859
|
+
alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
|
|
860
|
+
aspectRatio?: string | number | undefined;
|
|
861
|
+
borderBottomWidth?: number | undefined;
|
|
862
|
+
borderEndWidth?: number | undefined;
|
|
863
|
+
borderLeftWidth?: number | undefined;
|
|
864
|
+
borderRightWidth?: number | undefined;
|
|
865
|
+
borderStartWidth?: number | undefined;
|
|
866
|
+
borderTopWidth?: number | undefined;
|
|
867
|
+
borderWidth?: number | undefined;
|
|
868
|
+
bottom?: import("react-native").DimensionValue | undefined;
|
|
776
869
|
display?: "none" | "flex" | undefined;
|
|
777
|
-
end?:
|
|
870
|
+
end?: import("react-native").DimensionValue | undefined;
|
|
778
871
|
flex?: number | undefined;
|
|
779
|
-
flexBasis?:
|
|
872
|
+
flexBasis?: import("react-native").DimensionValue | undefined;
|
|
780
873
|
flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
|
|
874
|
+
rowGap?: number | undefined;
|
|
875
|
+
gap?: number | undefined;
|
|
876
|
+
columnGap?: number | undefined;
|
|
781
877
|
flexGrow?: number | undefined;
|
|
782
878
|
flexShrink?: number | undefined;
|
|
783
879
|
flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
|
|
784
|
-
height?:
|
|
880
|
+
height?: import("react-native").DimensionValue | undefined;
|
|
785
881
|
justifyContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
786
|
-
left?:
|
|
787
|
-
margin?:
|
|
788
|
-
marginBottom?:
|
|
789
|
-
marginEnd?:
|
|
790
|
-
marginHorizontal?:
|
|
791
|
-
marginLeft?:
|
|
792
|
-
marginRight?:
|
|
793
|
-
marginStart?:
|
|
794
|
-
marginTop?:
|
|
795
|
-
marginVertical?:
|
|
796
|
-
maxHeight?:
|
|
797
|
-
maxWidth?:
|
|
798
|
-
minHeight?:
|
|
799
|
-
minWidth?:
|
|
882
|
+
left?: import("react-native").DimensionValue | undefined;
|
|
883
|
+
margin?: import("react-native").DimensionValue | undefined;
|
|
884
|
+
marginBottom?: import("react-native").DimensionValue | undefined;
|
|
885
|
+
marginEnd?: import("react-native").DimensionValue | undefined;
|
|
886
|
+
marginHorizontal?: import("react-native").DimensionValue | undefined;
|
|
887
|
+
marginLeft?: import("react-native").DimensionValue | undefined;
|
|
888
|
+
marginRight?: import("react-native").DimensionValue | undefined;
|
|
889
|
+
marginStart?: import("react-native").DimensionValue | undefined;
|
|
890
|
+
marginTop?: import("react-native").DimensionValue | undefined;
|
|
891
|
+
marginVertical?: import("react-native").DimensionValue | undefined;
|
|
892
|
+
maxHeight?: import("react-native").DimensionValue | undefined;
|
|
893
|
+
maxWidth?: import("react-native").DimensionValue | undefined;
|
|
894
|
+
minHeight?: import("react-native").DimensionValue | undefined;
|
|
895
|
+
minWidth?: import("react-native").DimensionValue | undefined;
|
|
800
896
|
overflow?: "visible" | "hidden" | "scroll" | undefined;
|
|
801
|
-
padding?:
|
|
802
|
-
paddingBottom?:
|
|
803
|
-
paddingEnd?:
|
|
804
|
-
paddingHorizontal:
|
|
805
|
-
paddingLeft?:
|
|
806
|
-
paddingRight?:
|
|
807
|
-
paddingStart?:
|
|
808
|
-
paddingTop:
|
|
809
|
-
paddingVertical?:
|
|
897
|
+
padding?: import("react-native").DimensionValue | undefined;
|
|
898
|
+
paddingBottom?: import("react-native").DimensionValue | undefined;
|
|
899
|
+
paddingEnd?: import("react-native").DimensionValue | undefined;
|
|
900
|
+
paddingHorizontal: import("react-native").DimensionValue;
|
|
901
|
+
paddingLeft?: import("react-native").DimensionValue | undefined;
|
|
902
|
+
paddingRight?: import("react-native").DimensionValue | undefined;
|
|
903
|
+
paddingStart?: import("react-native").DimensionValue | undefined;
|
|
904
|
+
paddingTop: import("react-native").DimensionValue;
|
|
905
|
+
paddingVertical?: import("react-native").DimensionValue | undefined;
|
|
810
906
|
position?: "absolute" | "relative" | undefined;
|
|
811
|
-
right?:
|
|
812
|
-
start?:
|
|
813
|
-
top?:
|
|
814
|
-
width?:
|
|
907
|
+
right?: import("react-native").DimensionValue | undefined;
|
|
908
|
+
start?: import("react-native").DimensionValue | undefined;
|
|
909
|
+
top?: import("react-native").DimensionValue | undefined;
|
|
910
|
+
width?: import("react-native").DimensionValue | undefined;
|
|
815
911
|
zIndex?: number | undefined;
|
|
816
912
|
direction?: "inherit" | "ltr" | "rtl" | undefined;
|
|
817
913
|
shadowColor?: import("react-native").ColorValue | undefined;
|
|
818
|
-
shadowOffset?: {
|
|
914
|
+
shadowOffset?: Readonly<{
|
|
819
915
|
width: number;
|
|
820
916
|
height: number;
|
|
821
|
-
} | undefined;
|
|
822
|
-
shadowOpacity?:
|
|
917
|
+
}> | undefined;
|
|
918
|
+
shadowOpacity?: import("react-native").AnimatableNumericValue | undefined;
|
|
823
919
|
shadowRadius?: number | undefined;
|
|
824
920
|
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;
|
|
825
921
|
transformMatrix?: number[] | undefined;
|
|
826
|
-
rotation?:
|
|
827
|
-
scaleX?:
|
|
828
|
-
scaleY?:
|
|
829
|
-
translateX?:
|
|
830
|
-
translateY?:
|
|
922
|
+
rotation?: import("react-native").AnimatableNumericValue | undefined;
|
|
923
|
+
scaleX?: import("react-native").AnimatableNumericValue | undefined;
|
|
924
|
+
scaleY?: import("react-native").AnimatableNumericValue | undefined;
|
|
925
|
+
translateX?: import("react-native").AnimatableNumericValue | undefined;
|
|
926
|
+
translateY?: import("react-native").AnimatableNumericValue | undefined;
|
|
831
927
|
};
|
|
832
928
|
backgroundColor?: string | undefined;
|
|
833
929
|
disabledPickerContainer?: ViewStyle | undefined;
|