react-native-timer-picker 2.3.1 → 2.5.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 +108 -116
- package/dist/commonjs/components/DurationScroll/DurationScroll.js +15 -27
- package/dist/commonjs/components/DurationScroll/DurationScroll.js.map +1 -1
- package/dist/commonjs/components/DurationScroll/types.js.map +1 -1
- package/dist/commonjs/components/PickerItem/PickerItem.js +47 -0
- package/dist/commonjs/components/PickerItem/PickerItem.js.map +1 -0
- package/dist/commonjs/components/PickerItem/index.js +14 -0
- package/dist/commonjs/components/PickerItem/index.js.map +1 -0
- package/dist/commonjs/components/TimerPicker/TimerPicker.js +11 -7
- package/dist/commonjs/components/TimerPicker/TimerPicker.js.map +1 -1
- package/dist/commonjs/components/TimerPicker/styles.js +45 -18
- package/dist/commonjs/components/TimerPicker/styles.js.map +1 -1
- package/dist/commonjs/components/TimerPickerModal/styles.js +4 -15
- package/dist/commonjs/components/TimerPickerModal/styles.js.map +1 -1
- package/dist/commonjs/tests/Modal.test.js +2 -22
- package/dist/commonjs/tests/Modal.test.js.map +1 -1
- package/dist/commonjs/tests/TimerPickerModal.test.js +53 -53
- package/dist/commonjs/tests/TimerPickerModal.test.js.map +1 -1
- package/dist/commonjs/tests/generateNumbers.test.js +35 -35
- package/dist/commonjs/tests/generateNumbers.test.js.map +1 -1
- package/dist/commonjs/tests/padNumber.test.js +18 -18
- package/dist/commonjs/tests/padNumber.test.js.map +1 -1
- package/dist/commonjs/utils/generateNumbers.js +4 -3
- package/dist/commonjs/utils/generateNumbers.js.map +1 -1
- package/dist/commonjs/utils/padNumber.js +7 -7
- package/dist/commonjs/utils/padNumber.js.map +1 -1
- package/dist/module/components/DurationScroll/DurationScroll.js +14 -27
- package/dist/module/components/DurationScroll/DurationScroll.js.map +1 -1
- package/dist/module/components/DurationScroll/types.js.map +1 -1
- package/dist/module/components/PickerItem/PickerItem.js +40 -0
- package/dist/module/components/PickerItem/PickerItem.js.map +1 -0
- package/dist/module/components/PickerItem/index.js +2 -0
- package/dist/module/components/PickerItem/index.js.map +1 -0
- package/dist/module/components/TimerPicker/TimerPicker.js +11 -7
- package/dist/module/components/TimerPicker/TimerPicker.js.map +1 -1
- package/dist/module/components/TimerPicker/styles.js +45 -18
- package/dist/module/components/TimerPicker/styles.js.map +1 -1
- package/dist/module/components/TimerPickerModal/styles.js +4 -15
- package/dist/module/components/TimerPickerModal/styles.js.map +1 -1
- package/dist/module/tests/Modal.test.js +2 -22
- package/dist/module/tests/Modal.test.js.map +1 -1
- package/dist/module/tests/TimerPickerModal.test.js +9 -9
- package/dist/module/tests/TimerPickerModal.test.js.map +1 -1
- package/dist/module/tests/generateNumbers.test.js +35 -35
- package/dist/module/tests/generateNumbers.test.js.map +1 -1
- package/dist/module/tests/padNumber.test.js +18 -18
- package/dist/module/tests/padNumber.test.js.map +1 -1
- package/dist/module/utils/generateNumbers.js +4 -3
- package/dist/module/utils/generateNumbers.js.map +1 -1
- package/dist/module/utils/padNumber.js +7 -7
- package/dist/module/utils/padNumber.js.map +1 -1
- package/dist/typescript/components/DurationScroll/types.d.ts +1 -0
- package/dist/typescript/components/PickerItem/PickerItem.d.ts +15 -0
- package/dist/typescript/components/PickerItem/index.d.ts +1 -0
- package/dist/typescript/components/TimerPicker/styles.d.ts +153 -25
- package/dist/typescript/components/TimerPickerModal/styles.d.ts +256 -254
- package/dist/typescript/utils/padNumber.d.ts +1 -1
- package/package.json +1 -1
|
@@ -6,6 +6,7 @@ export interface CustomTimerPickerStyles {
|
|
|
6
6
|
durationScrollFlatList?: ViewStyle;
|
|
7
7
|
durationScrollFlatListContainer?: ViewStyle;
|
|
8
8
|
durationScrollFlatListContentContainer?: ViewStyle;
|
|
9
|
+
labelOffsetPercentage?: number;
|
|
9
10
|
pickerAmPmContainer?: ViewStyle;
|
|
10
11
|
pickerAmPmLabel?: TextStyle;
|
|
11
12
|
pickerContainer?: ViewStyle & {
|
|
@@ -18,6 +19,7 @@ export interface CustomTimerPickerStyles {
|
|
|
18
19
|
};
|
|
19
20
|
pickerLabel?: TextStyle;
|
|
20
21
|
pickerLabelContainer?: ViewStyle;
|
|
22
|
+
selectedPickerItem?: TextStyle;
|
|
21
23
|
text?: TextStyle;
|
|
22
24
|
theme?: "light" | "dark";
|
|
23
25
|
}
|
|
@@ -84,7 +86,7 @@ export declare const generateStyles: (customStyles: CustomTimerPickerStyles | un
|
|
|
84
86
|
marginEnd?: import("react-native").DimensionValue | undefined;
|
|
85
87
|
marginHorizontal?: import("react-native").DimensionValue | undefined;
|
|
86
88
|
marginLeft?: import("react-native").DimensionValue | undefined;
|
|
87
|
-
marginRight
|
|
89
|
+
marginRight?: import("react-native").DimensionValue | undefined;
|
|
88
90
|
marginStart?: import("react-native").DimensionValue | undefined;
|
|
89
91
|
marginTop?: import("react-native").DimensionValue | undefined;
|
|
90
92
|
marginVertical?: import("react-native").DimensionValue | undefined;
|
|
@@ -106,7 +108,7 @@ export declare const generateStyles: (customStyles: CustomTimerPickerStyles | un
|
|
|
106
108
|
right?: import("react-native").DimensionValue | undefined;
|
|
107
109
|
start?: import("react-native").DimensionValue | undefined;
|
|
108
110
|
top?: import("react-native").DimensionValue | undefined;
|
|
109
|
-
width
|
|
111
|
+
width: import("react-native").DimensionValue;
|
|
110
112
|
zIndex?: number | undefined;
|
|
111
113
|
direction?: "inherit" | "ltr" | "rtl" | undefined;
|
|
112
114
|
shadowColor?: import("react-native").ColorValue | undefined;
|
|
@@ -180,7 +182,7 @@ export declare const generateStyles: (customStyles: CustomTimerPickerStyles | un
|
|
|
180
182
|
flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
|
|
181
183
|
height?: import("react-native").DimensionValue | undefined;
|
|
182
184
|
justifyContent: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly";
|
|
183
|
-
left
|
|
185
|
+
left: import("react-native").DimensionValue;
|
|
184
186
|
margin?: import("react-native").DimensionValue | undefined;
|
|
185
187
|
marginBottom?: import("react-native").DimensionValue | undefined;
|
|
186
188
|
marginEnd?: import("react-native").DimensionValue | undefined;
|
|
@@ -188,12 +190,12 @@ export declare const generateStyles: (customStyles: CustomTimerPickerStyles | un
|
|
|
188
190
|
marginLeft?: import("react-native").DimensionValue | undefined;
|
|
189
191
|
marginRight?: import("react-native").DimensionValue | undefined;
|
|
190
192
|
marginStart?: import("react-native").DimensionValue | undefined;
|
|
191
|
-
marginTop
|
|
193
|
+
marginTop: import("react-native").DimensionValue;
|
|
192
194
|
marginVertical?: import("react-native").DimensionValue | undefined;
|
|
193
195
|
maxHeight?: import("react-native").DimensionValue | undefined;
|
|
194
196
|
maxWidth?: import("react-native").DimensionValue | undefined;
|
|
195
197
|
minHeight?: import("react-native").DimensionValue | undefined;
|
|
196
|
-
minWidth
|
|
198
|
+
minWidth?: import("react-native").DimensionValue | undefined;
|
|
197
199
|
overflow?: "visible" | "hidden" | "scroll" | undefined;
|
|
198
200
|
padding?: import("react-native").DimensionValue | undefined;
|
|
199
201
|
paddingBottom?: import("react-native").DimensionValue | undefined;
|
|
@@ -205,7 +207,7 @@ export declare const generateStyles: (customStyles: CustomTimerPickerStyles | un
|
|
|
205
207
|
paddingTop?: import("react-native").DimensionValue | undefined;
|
|
206
208
|
paddingVertical?: import("react-native").DimensionValue | undefined;
|
|
207
209
|
position: "absolute" | "relative";
|
|
208
|
-
right
|
|
210
|
+
right?: import("react-native").DimensionValue | undefined;
|
|
209
211
|
start?: import("react-native").DimensionValue | undefined;
|
|
210
212
|
top: import("react-native").DimensionValue;
|
|
211
213
|
width?: import("react-native").DimensionValue | undefined;
|
|
@@ -231,7 +233,7 @@ export declare const generateStyles: (customStyles: CustomTimerPickerStyles | un
|
|
|
231
233
|
fontFamily?: string | undefined;
|
|
232
234
|
fontSize: number;
|
|
233
235
|
fontStyle?: "normal" | "italic" | undefined;
|
|
234
|
-
fontWeight: "bold" | "
|
|
236
|
+
fontWeight: "bold" | "100" | "normal" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900";
|
|
235
237
|
letterSpacing?: number | undefined;
|
|
236
238
|
lineHeight?: number | undefined;
|
|
237
239
|
textAlign?: "auto" | "center" | "left" | "right" | "justify" | undefined;
|
|
@@ -311,7 +313,7 @@ export declare const generateStyles: (customStyles: CustomTimerPickerStyles | un
|
|
|
311
313
|
marginLeft?: import("react-native").DimensionValue | undefined;
|
|
312
314
|
marginRight?: import("react-native").DimensionValue | undefined;
|
|
313
315
|
marginStart?: import("react-native").DimensionValue | undefined;
|
|
314
|
-
marginTop
|
|
316
|
+
marginTop?: import("react-native").DimensionValue | undefined;
|
|
315
317
|
marginVertical?: import("react-native").DimensionValue | undefined;
|
|
316
318
|
maxHeight?: import("react-native").DimensionValue | undefined;
|
|
317
319
|
maxWidth?: import("react-native").DimensionValue | undefined;
|
|
@@ -436,7 +438,7 @@ export declare const generateStyles: (customStyles: CustomTimerPickerStyles | un
|
|
|
436
438
|
right?: import("react-native").DimensionValue | undefined;
|
|
437
439
|
start?: import("react-native").DimensionValue | undefined;
|
|
438
440
|
top?: import("react-native").DimensionValue | undefined;
|
|
439
|
-
width
|
|
441
|
+
width?: import("react-native").DimensionValue | undefined;
|
|
440
442
|
zIndex?: number | undefined;
|
|
441
443
|
direction?: "inherit" | "ltr" | "rtl" | undefined;
|
|
442
444
|
shadowColor?: import("react-native").ColorValue | undefined;
|
|
@@ -459,7 +461,7 @@ export declare const generateStyles: (customStyles: CustomTimerPickerStyles | un
|
|
|
459
461
|
fontFamily?: string | undefined;
|
|
460
462
|
fontSize: number;
|
|
461
463
|
fontStyle?: "normal" | "italic" | undefined;
|
|
462
|
-
fontWeight?: "bold" | "
|
|
464
|
+
fontWeight?: "bold" | "100" | "normal" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900" | undefined;
|
|
463
465
|
letterSpacing?: number | undefined;
|
|
464
466
|
lineHeight?: number | undefined;
|
|
465
467
|
textAlign?: "auto" | "center" | "left" | "right" | "justify" | undefined;
|
|
@@ -545,7 +547,133 @@ export declare const generateStyles: (customStyles: CustomTimerPickerStyles | un
|
|
|
545
547
|
maxWidth?: import("react-native").DimensionValue | undefined;
|
|
546
548
|
minHeight?: import("react-native").DimensionValue | undefined;
|
|
547
549
|
minWidth?: import("react-native").DimensionValue | undefined;
|
|
548
|
-
overflow
|
|
550
|
+
overflow: "visible" | "hidden" | "scroll";
|
|
551
|
+
padding?: import("react-native").DimensionValue | undefined;
|
|
552
|
+
paddingBottom?: import("react-native").DimensionValue | undefined;
|
|
553
|
+
paddingEnd?: import("react-native").DimensionValue | undefined;
|
|
554
|
+
paddingHorizontal?: import("react-native").DimensionValue | undefined;
|
|
555
|
+
paddingLeft?: import("react-native").DimensionValue | undefined;
|
|
556
|
+
paddingRight?: import("react-native").DimensionValue | undefined;
|
|
557
|
+
paddingStart?: import("react-native").DimensionValue | undefined;
|
|
558
|
+
paddingTop?: import("react-native").DimensionValue | undefined;
|
|
559
|
+
paddingVertical?: import("react-native").DimensionValue | undefined;
|
|
560
|
+
position?: "absolute" | "relative" | undefined;
|
|
561
|
+
right?: import("react-native").DimensionValue | undefined;
|
|
562
|
+
start?: import("react-native").DimensionValue | undefined;
|
|
563
|
+
top?: import("react-native").DimensionValue | undefined;
|
|
564
|
+
width?: import("react-native").DimensionValue | undefined;
|
|
565
|
+
zIndex?: number | undefined;
|
|
566
|
+
direction?: "inherit" | "ltr" | "rtl" | undefined;
|
|
567
|
+
shadowColor?: import("react-native").ColorValue | undefined;
|
|
568
|
+
shadowOffset?: Readonly<{
|
|
569
|
+
width: number;
|
|
570
|
+
height: number;
|
|
571
|
+
}> | undefined;
|
|
572
|
+
shadowOpacity?: import("react-native").AnimatableNumericValue | undefined;
|
|
573
|
+
shadowRadius?: number | undefined;
|
|
574
|
+
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;
|
|
575
|
+
transformMatrix?: number[] | undefined;
|
|
576
|
+
rotation?: import("react-native").AnimatableNumericValue | undefined;
|
|
577
|
+
scaleX?: import("react-native").AnimatableNumericValue | undefined;
|
|
578
|
+
scaleY?: import("react-native").AnimatableNumericValue | undefined;
|
|
579
|
+
translateX?: import("react-native").AnimatableNumericValue | undefined;
|
|
580
|
+
translateY?: import("react-native").AnimatableNumericValue | undefined;
|
|
581
|
+
textAlignVertical: "auto" | "center" | "bottom" | "top";
|
|
582
|
+
verticalAlign?: "auto" | "bottom" | "top" | "middle" | undefined;
|
|
583
|
+
includeFontPadding?: boolean | undefined;
|
|
584
|
+
};
|
|
585
|
+
selectedPickerItem: {
|
|
586
|
+
color: import("react-native").ColorValue;
|
|
587
|
+
fontFamily?: string | undefined;
|
|
588
|
+
fontSize: number;
|
|
589
|
+
fontStyle?: "normal" | "italic" | undefined;
|
|
590
|
+
fontWeight?: "bold" | "100" | "normal" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900" | undefined;
|
|
591
|
+
letterSpacing?: number | undefined;
|
|
592
|
+
lineHeight?: number | undefined;
|
|
593
|
+
textAlign?: "auto" | "center" | "left" | "right" | "justify" | undefined;
|
|
594
|
+
textDecorationLine?: "none" | "underline" | "line-through" | "underline line-through" | undefined;
|
|
595
|
+
textDecorationStyle?: "solid" | "dotted" | "dashed" | "double" | undefined;
|
|
596
|
+
textDecorationColor?: import("react-native").ColorValue | undefined;
|
|
597
|
+
textShadowColor?: import("react-native").ColorValue | undefined;
|
|
598
|
+
textShadowOffset?: {
|
|
599
|
+
width: number;
|
|
600
|
+
height: number;
|
|
601
|
+
} | undefined;
|
|
602
|
+
textShadowRadius?: number | undefined;
|
|
603
|
+
textTransform?: "none" | "capitalize" | "uppercase" | "lowercase" | undefined;
|
|
604
|
+
testID?: string | undefined;
|
|
605
|
+
fontVariant?: import("react-native").FontVariant[] | undefined;
|
|
606
|
+
writingDirection?: "auto" | "ltr" | "rtl" | undefined;
|
|
607
|
+
backfaceVisibility?: "visible" | "hidden" | undefined;
|
|
608
|
+
backgroundColor?: import("react-native").ColorValue | undefined;
|
|
609
|
+
borderBlockColor?: import("react-native").ColorValue | undefined;
|
|
610
|
+
borderBlockEndColor?: import("react-native").ColorValue | undefined;
|
|
611
|
+
borderBlockStartColor?: import("react-native").ColorValue | undefined;
|
|
612
|
+
borderBottomColor?: import("react-native").ColorValue | undefined;
|
|
613
|
+
borderBottomEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
614
|
+
borderBottomLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
615
|
+
borderBottomRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
616
|
+
borderBottomStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
617
|
+
borderColor?: import("react-native").ColorValue | undefined;
|
|
618
|
+
borderCurve?: "circular" | "continuous" | undefined;
|
|
619
|
+
borderEndColor?: import("react-native").ColorValue | undefined;
|
|
620
|
+
borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
621
|
+
borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
622
|
+
borderLeftColor?: import("react-native").ColorValue | undefined;
|
|
623
|
+
borderRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
624
|
+
borderRightColor?: import("react-native").ColorValue | undefined;
|
|
625
|
+
borderStartColor?: import("react-native").ColorValue | undefined;
|
|
626
|
+
borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
627
|
+
borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
628
|
+
borderStyle?: "solid" | "dotted" | "dashed" | undefined;
|
|
629
|
+
borderTopColor?: import("react-native").ColorValue | undefined;
|
|
630
|
+
borderTopEndRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
631
|
+
borderTopLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
632
|
+
borderTopRightRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
633
|
+
borderTopStartRadius?: import("react-native").AnimatableNumericValue | undefined;
|
|
634
|
+
opacity?: import("react-native").AnimatableNumericValue | undefined;
|
|
635
|
+
elevation?: number | undefined;
|
|
636
|
+
pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined;
|
|
637
|
+
alignContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "stretch" | undefined;
|
|
638
|
+
alignItems?: import("react-native").FlexAlignType | undefined;
|
|
639
|
+
alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
|
|
640
|
+
aspectRatio?: string | number | undefined;
|
|
641
|
+
borderBottomWidth?: number | undefined;
|
|
642
|
+
borderEndWidth?: number | undefined;
|
|
643
|
+
borderLeftWidth?: number | undefined;
|
|
644
|
+
borderRightWidth?: number | undefined;
|
|
645
|
+
borderStartWidth?: number | undefined;
|
|
646
|
+
borderTopWidth?: number | undefined;
|
|
647
|
+
borderWidth?: number | undefined;
|
|
648
|
+
bottom?: import("react-native").DimensionValue | undefined;
|
|
649
|
+
display?: "none" | "flex" | undefined;
|
|
650
|
+
end?: import("react-native").DimensionValue | undefined;
|
|
651
|
+
flex?: number | undefined;
|
|
652
|
+
flexBasis?: import("react-native").DimensionValue | undefined;
|
|
653
|
+
flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
|
|
654
|
+
rowGap?: number | undefined;
|
|
655
|
+
gap?: number | undefined;
|
|
656
|
+
columnGap?: number | undefined;
|
|
657
|
+
flexGrow?: number | undefined;
|
|
658
|
+
flexShrink?: number | undefined;
|
|
659
|
+
flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
|
|
660
|
+
height?: import("react-native").DimensionValue | undefined;
|
|
661
|
+
justifyContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
662
|
+
left?: import("react-native").DimensionValue | undefined;
|
|
663
|
+
margin?: import("react-native").DimensionValue | undefined;
|
|
664
|
+
marginBottom?: import("react-native").DimensionValue | undefined;
|
|
665
|
+
marginEnd?: import("react-native").DimensionValue | undefined;
|
|
666
|
+
marginHorizontal?: import("react-native").DimensionValue | undefined;
|
|
667
|
+
marginLeft?: import("react-native").DimensionValue | undefined;
|
|
668
|
+
marginRight?: import("react-native").DimensionValue | undefined;
|
|
669
|
+
marginStart?: import("react-native").DimensionValue | undefined;
|
|
670
|
+
marginTop?: import("react-native").DimensionValue | undefined;
|
|
671
|
+
marginVertical?: import("react-native").DimensionValue | undefined;
|
|
672
|
+
maxHeight?: import("react-native").DimensionValue | undefined;
|
|
673
|
+
maxWidth?: import("react-native").DimensionValue | undefined;
|
|
674
|
+
minHeight?: import("react-native").DimensionValue | undefined;
|
|
675
|
+
minWidth?: import("react-native").DimensionValue | undefined;
|
|
676
|
+
overflow: "visible" | "hidden" | "scroll";
|
|
549
677
|
padding?: import("react-native").DimensionValue | undefined;
|
|
550
678
|
paddingBottom?: import("react-native").DimensionValue | undefined;
|
|
551
679
|
paddingEnd?: import("react-native").DimensionValue | undefined;
|
|
@@ -636,7 +764,7 @@ export declare const generateStyles: (customStyles: CustomTimerPickerStyles | un
|
|
|
636
764
|
flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
|
|
637
765
|
height?: import("react-native").DimensionValue | undefined;
|
|
638
766
|
justifyContent: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly";
|
|
639
|
-
left
|
|
767
|
+
left: import("react-native").DimensionValue;
|
|
640
768
|
margin?: import("react-native").DimensionValue | undefined;
|
|
641
769
|
marginBottom?: import("react-native").DimensionValue | undefined;
|
|
642
770
|
marginEnd?: import("react-native").DimensionValue | undefined;
|
|
@@ -644,7 +772,7 @@ export declare const generateStyles: (customStyles: CustomTimerPickerStyles | un
|
|
|
644
772
|
marginLeft?: import("react-native").DimensionValue | undefined;
|
|
645
773
|
marginRight?: import("react-native").DimensionValue | undefined;
|
|
646
774
|
marginStart?: import("react-native").DimensionValue | undefined;
|
|
647
|
-
marginTop
|
|
775
|
+
marginTop: import("react-native").DimensionValue;
|
|
648
776
|
marginVertical?: import("react-native").DimensionValue | undefined;
|
|
649
777
|
maxHeight?: import("react-native").DimensionValue | undefined;
|
|
650
778
|
maxWidth?: import("react-native").DimensionValue | undefined;
|
|
@@ -661,7 +789,7 @@ export declare const generateStyles: (customStyles: CustomTimerPickerStyles | un
|
|
|
661
789
|
paddingTop?: import("react-native").DimensionValue | undefined;
|
|
662
790
|
paddingVertical?: import("react-native").DimensionValue | undefined;
|
|
663
791
|
position: "absolute" | "relative";
|
|
664
|
-
right
|
|
792
|
+
right?: import("react-native").DimensionValue | undefined;
|
|
665
793
|
start?: import("react-native").DimensionValue | undefined;
|
|
666
794
|
top: import("react-native").DimensionValue;
|
|
667
795
|
width?: import("react-native").DimensionValue | undefined;
|
|
@@ -687,7 +815,7 @@ export declare const generateStyles: (customStyles: CustomTimerPickerStyles | un
|
|
|
687
815
|
fontFamily?: string | undefined;
|
|
688
816
|
fontSize: number;
|
|
689
817
|
fontStyle?: "normal" | "italic" | undefined;
|
|
690
|
-
fontWeight: "bold" | "
|
|
818
|
+
fontWeight: "bold" | "100" | "normal" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900";
|
|
691
819
|
letterSpacing?: number | undefined;
|
|
692
820
|
lineHeight?: number | undefined;
|
|
693
821
|
textAlign?: "auto" | "center" | "left" | "right" | "justify" | undefined;
|
|
@@ -767,7 +895,7 @@ export declare const generateStyles: (customStyles: CustomTimerPickerStyles | un
|
|
|
767
895
|
marginLeft?: import("react-native").DimensionValue | undefined;
|
|
768
896
|
marginRight?: import("react-native").DimensionValue | undefined;
|
|
769
897
|
marginStart?: import("react-native").DimensionValue | undefined;
|
|
770
|
-
marginTop
|
|
898
|
+
marginTop?: import("react-native").DimensionValue | undefined;
|
|
771
899
|
marginVertical?: import("react-native").DimensionValue | undefined;
|
|
772
900
|
maxHeight?: import("react-native").DimensionValue | undefined;
|
|
773
901
|
maxWidth?: import("react-native").DimensionValue | undefined;
|
|
@@ -915,7 +1043,7 @@ export declare const generateStyles: (customStyles: CustomTimerPickerStyles | un
|
|
|
915
1043
|
fontFamily?: string | undefined;
|
|
916
1044
|
fontSize?: number | undefined;
|
|
917
1045
|
fontStyle?: "normal" | "italic" | undefined;
|
|
918
|
-
fontWeight?: "bold" | "
|
|
1046
|
+
fontWeight?: "bold" | "100" | "normal" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900" | undefined;
|
|
919
1047
|
letterSpacing?: number | undefined;
|
|
920
1048
|
lineHeight?: number | undefined;
|
|
921
1049
|
textAlign?: "auto" | "center" | "left" | "right" | "justify" | undefined;
|
|
@@ -1141,7 +1269,7 @@ export declare const generateStyles: (customStyles: CustomTimerPickerStyles | un
|
|
|
1141
1269
|
translateX?: import("react-native").AnimatableNumericValue | undefined;
|
|
1142
1270
|
translateY?: import("react-native").AnimatableNumericValue | undefined;
|
|
1143
1271
|
};
|
|
1144
|
-
|
|
1272
|
+
durationScrollFlatListContainer: {
|
|
1145
1273
|
backfaceVisibility?: "visible" | "hidden" | undefined;
|
|
1146
1274
|
backgroundColor?: import("react-native").ColorValue | undefined;
|
|
1147
1275
|
borderBlockColor?: import("react-native").ColorValue | undefined;
|
|
@@ -1186,7 +1314,7 @@ export declare const generateStyles: (customStyles: CustomTimerPickerStyles | un
|
|
|
1186
1314
|
bottom?: import("react-native").DimensionValue | undefined;
|
|
1187
1315
|
display?: "none" | "flex" | undefined;
|
|
1188
1316
|
end?: import("react-native").DimensionValue | undefined;
|
|
1189
|
-
flex
|
|
1317
|
+
flex: number;
|
|
1190
1318
|
flexBasis?: import("react-native").DimensionValue | undefined;
|
|
1191
1319
|
flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
|
|
1192
1320
|
rowGap?: number | undefined;
|
|
@@ -1210,7 +1338,7 @@ export declare const generateStyles: (customStyles: CustomTimerPickerStyles | un
|
|
|
1210
1338
|
maxHeight?: import("react-native").DimensionValue | undefined;
|
|
1211
1339
|
maxWidth?: import("react-native").DimensionValue | undefined;
|
|
1212
1340
|
minHeight?: import("react-native").DimensionValue | undefined;
|
|
1213
|
-
minWidth
|
|
1341
|
+
minWidth?: import("react-native").DimensionValue | undefined;
|
|
1214
1342
|
overflow?: "visible" | "hidden" | "scroll" | undefined;
|
|
1215
1343
|
padding?: import("react-native").DimensionValue | undefined;
|
|
1216
1344
|
paddingBottom?: import("react-native").DimensionValue | undefined;
|
|
@@ -1225,7 +1353,7 @@ export declare const generateStyles: (customStyles: CustomTimerPickerStyles | un
|
|
|
1225
1353
|
right?: import("react-native").DimensionValue | undefined;
|
|
1226
1354
|
start?: import("react-native").DimensionValue | undefined;
|
|
1227
1355
|
top?: import("react-native").DimensionValue | undefined;
|
|
1228
|
-
width
|
|
1356
|
+
width?: import("react-native").DimensionValue | undefined;
|
|
1229
1357
|
zIndex?: number | undefined;
|
|
1230
1358
|
direction?: "inherit" | "ltr" | "rtl" | undefined;
|
|
1231
1359
|
shadowColor?: import("react-native").ColorValue | undefined;
|
|
@@ -1243,7 +1371,7 @@ export declare const generateStyles: (customStyles: CustomTimerPickerStyles | un
|
|
|
1243
1371
|
translateX?: import("react-native").AnimatableNumericValue | undefined;
|
|
1244
1372
|
translateY?: import("react-native").AnimatableNumericValue | undefined;
|
|
1245
1373
|
};
|
|
1246
|
-
|
|
1374
|
+
durationScrollFlatList: {
|
|
1247
1375
|
backfaceVisibility?: "visible" | "hidden" | undefined;
|
|
1248
1376
|
backgroundColor?: import("react-native").ColorValue | undefined;
|
|
1249
1377
|
borderBlockColor?: import("react-native").ColorValue | undefined;
|
|
@@ -1305,7 +1433,7 @@ export declare const generateStyles: (customStyles: CustomTimerPickerStyles | un
|
|
|
1305
1433
|
marginEnd?: import("react-native").DimensionValue | undefined;
|
|
1306
1434
|
marginHorizontal?: import("react-native").DimensionValue | undefined;
|
|
1307
1435
|
marginLeft?: import("react-native").DimensionValue | undefined;
|
|
1308
|
-
marginRight
|
|
1436
|
+
marginRight: import("react-native").DimensionValue;
|
|
1309
1437
|
marginStart?: import("react-native").DimensionValue | undefined;
|
|
1310
1438
|
marginTop?: import("react-native").DimensionValue | undefined;
|
|
1311
1439
|
marginVertical?: import("react-native").DimensionValue | undefined;
|
|
@@ -1313,13 +1441,13 @@ export declare const generateStyles: (customStyles: CustomTimerPickerStyles | un
|
|
|
1313
1441
|
maxWidth?: import("react-native").DimensionValue | undefined;
|
|
1314
1442
|
minHeight?: import("react-native").DimensionValue | undefined;
|
|
1315
1443
|
minWidth?: import("react-native").DimensionValue | undefined;
|
|
1316
|
-
overflow
|
|
1444
|
+
overflow?: "visible" | "hidden" | "scroll" | undefined;
|
|
1317
1445
|
padding?: import("react-native").DimensionValue | undefined;
|
|
1318
1446
|
paddingBottom?: import("react-native").DimensionValue | undefined;
|
|
1319
1447
|
paddingEnd?: import("react-native").DimensionValue | undefined;
|
|
1320
1448
|
paddingHorizontal?: import("react-native").DimensionValue | undefined;
|
|
1321
1449
|
paddingLeft?: import("react-native").DimensionValue | undefined;
|
|
1322
|
-
paddingRight
|
|
1450
|
+
paddingRight: import("react-native").DimensionValue;
|
|
1323
1451
|
paddingStart?: import("react-native").DimensionValue | undefined;
|
|
1324
1452
|
paddingTop?: import("react-native").DimensionValue | undefined;
|
|
1325
1453
|
paddingVertical?: import("react-native").DimensionValue | undefined;
|