@mustmove/overlay-kit-rn 1.0.84 → 1.0.86
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/dist/index.d.mts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +332 -53
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +332 -53
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -4
package/dist/index.d.mts
CHANGED
|
@@ -17,6 +17,7 @@ declare const overlay: {
|
|
|
17
17
|
keyboardBlurBehavior?: "restore" | "none";
|
|
18
18
|
androidKeyboardInputMode?: "adjustResize" | "adjustPan";
|
|
19
19
|
enableDynamicSizing?: boolean;
|
|
20
|
+
closeFunction?: () => void;
|
|
20
21
|
animationType?: "none" | "slide" | "fade" | "bounceIn" | "bounceInDown" | "bounceInUp" | "bounceInLeft" | "bounceInRight" | "bounceOut" | "bounceOutDown" | "bounceOutUp" | "bounceOutLeft" | "bounceOutRight" | "fadeIn" | "fadeInDown" | "fadeInDownBig" | "fadeInUp" | "fadeInUpBig" | "fadeInLeft" | "fadeInLeftBig" | "fadeInRight" | "fadeInRightBig" | "fadeOut" | "fadeOutDown" | "fadeOutDownBig" | "fadeOutUp" | "fadeOutUpBig" | "fadeOutLeft" | "fadeOutLeftBig" | "fadeOutRight" | "fadeOutRightBig";
|
|
21
22
|
swipeDirection?: "up" | "down" | "left" | "right" | Array<"up" | "down" | "left" | "right">;
|
|
22
23
|
footerComponent?: React.FC<_gorhom_bottom_sheet.BottomSheetFooterProps>;
|
|
@@ -33,6 +34,7 @@ declare const overlay: {
|
|
|
33
34
|
keyboardBlurBehavior?: "restore" | "none";
|
|
34
35
|
androidKeyboardInputMode?: "adjustResize" | "adjustPan";
|
|
35
36
|
enableDynamicSizing?: boolean;
|
|
37
|
+
closeFunction?: () => void;
|
|
36
38
|
animationType?: "none" | "slide" | "fade" | "bounceIn" | "bounceInDown" | "bounceInUp" | "bounceInLeft" | "bounceInRight" | "bounceOut" | "bounceOutDown" | "bounceOutUp" | "bounceOutLeft" | "bounceOutRight" | "fadeIn" | "fadeInDown" | "fadeInDownBig" | "fadeInUp" | "fadeInUpBig" | "fadeInLeft" | "fadeInLeftBig" | "fadeInRight" | "fadeInRightBig" | "fadeOut" | "fadeOutDown" | "fadeOutDownBig" | "fadeOutUp" | "fadeOutUpBig" | "fadeOutLeft" | "fadeOutLeftBig" | "fadeOutRight" | "fadeOutRightBig";
|
|
37
39
|
swipeDirection?: "up" | "down" | "left" | "right" | Array<"up" | "down" | "left" | "right">;
|
|
38
40
|
footerComponent?: React.FC<_gorhom_bottom_sheet.BottomSheetFooterProps>;
|
|
@@ -68,6 +70,7 @@ declare function experimental_createOverlayContext(): {
|
|
|
68
70
|
keyboardBlurBehavior?: "restore" | "none";
|
|
69
71
|
androidKeyboardInputMode?: "adjustResize" | "adjustPan";
|
|
70
72
|
enableDynamicSizing?: boolean;
|
|
73
|
+
closeFunction?: () => void;
|
|
71
74
|
animationType?: "none" | "slide" | "fade" | "bounceIn" | "bounceInDown" | "bounceInUp" | "bounceInLeft" | "bounceInRight" | "bounceOut" | "bounceOutDown" | "bounceOutUp" | "bounceOutLeft" | "bounceOutRight" | "fadeIn" | "fadeInDown" | "fadeInDownBig" | "fadeInUp" | "fadeInUpBig" | "fadeInLeft" | "fadeInLeftBig" | "fadeInRight" | "fadeInRightBig" | "fadeOut" | "fadeOutDown" | "fadeOutDownBig" | "fadeOutUp" | "fadeOutUpBig" | "fadeOutLeft" | "fadeOutLeftBig" | "fadeOutRight" | "fadeOutRightBig";
|
|
72
75
|
swipeDirection?: "up" | "down" | "left" | "right" | Array<"up" | "down" | "left" | "right">;
|
|
73
76
|
footerComponent?: React.FC<_gorhom_bottom_sheet.BottomSheetFooterProps>;
|
|
@@ -84,6 +87,7 @@ declare function experimental_createOverlayContext(): {
|
|
|
84
87
|
keyboardBlurBehavior?: "restore" | "none";
|
|
85
88
|
androidKeyboardInputMode?: "adjustResize" | "adjustPan";
|
|
86
89
|
enableDynamicSizing?: boolean;
|
|
90
|
+
closeFunction?: () => void;
|
|
87
91
|
animationType?: "none" | "slide" | "fade" | "bounceIn" | "bounceInDown" | "bounceInUp" | "bounceInLeft" | "bounceInRight" | "bounceOut" | "bounceOutDown" | "bounceOutUp" | "bounceOutLeft" | "bounceOutRight" | "fadeIn" | "fadeInDown" | "fadeInDownBig" | "fadeInUp" | "fadeInUpBig" | "fadeInLeft" | "fadeInLeftBig" | "fadeInRight" | "fadeInRightBig" | "fadeOut" | "fadeOutDown" | "fadeOutDownBig" | "fadeOutUp" | "fadeOutUpBig" | "fadeOutLeft" | "fadeOutLeftBig" | "fadeOutRight" | "fadeOutRightBig";
|
|
88
92
|
swipeDirection?: "up" | "down" | "left" | "right" | Array<"up" | "down" | "left" | "right">;
|
|
89
93
|
footerComponent?: React.FC<_gorhom_bottom_sheet.BottomSheetFooterProps>;
|
package/dist/index.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ declare const overlay: {
|
|
|
17
17
|
keyboardBlurBehavior?: "restore" | "none";
|
|
18
18
|
androidKeyboardInputMode?: "adjustResize" | "adjustPan";
|
|
19
19
|
enableDynamicSizing?: boolean;
|
|
20
|
+
closeFunction?: () => void;
|
|
20
21
|
animationType?: "none" | "slide" | "fade" | "bounceIn" | "bounceInDown" | "bounceInUp" | "bounceInLeft" | "bounceInRight" | "bounceOut" | "bounceOutDown" | "bounceOutUp" | "bounceOutLeft" | "bounceOutRight" | "fadeIn" | "fadeInDown" | "fadeInDownBig" | "fadeInUp" | "fadeInUpBig" | "fadeInLeft" | "fadeInLeftBig" | "fadeInRight" | "fadeInRightBig" | "fadeOut" | "fadeOutDown" | "fadeOutDownBig" | "fadeOutUp" | "fadeOutUpBig" | "fadeOutLeft" | "fadeOutLeftBig" | "fadeOutRight" | "fadeOutRightBig";
|
|
21
22
|
swipeDirection?: "up" | "down" | "left" | "right" | Array<"up" | "down" | "left" | "right">;
|
|
22
23
|
footerComponent?: React.FC<_gorhom_bottom_sheet.BottomSheetFooterProps>;
|
|
@@ -33,6 +34,7 @@ declare const overlay: {
|
|
|
33
34
|
keyboardBlurBehavior?: "restore" | "none";
|
|
34
35
|
androidKeyboardInputMode?: "adjustResize" | "adjustPan";
|
|
35
36
|
enableDynamicSizing?: boolean;
|
|
37
|
+
closeFunction?: () => void;
|
|
36
38
|
animationType?: "none" | "slide" | "fade" | "bounceIn" | "bounceInDown" | "bounceInUp" | "bounceInLeft" | "bounceInRight" | "bounceOut" | "bounceOutDown" | "bounceOutUp" | "bounceOutLeft" | "bounceOutRight" | "fadeIn" | "fadeInDown" | "fadeInDownBig" | "fadeInUp" | "fadeInUpBig" | "fadeInLeft" | "fadeInLeftBig" | "fadeInRight" | "fadeInRightBig" | "fadeOut" | "fadeOutDown" | "fadeOutDownBig" | "fadeOutUp" | "fadeOutUpBig" | "fadeOutLeft" | "fadeOutLeftBig" | "fadeOutRight" | "fadeOutRightBig";
|
|
37
39
|
swipeDirection?: "up" | "down" | "left" | "right" | Array<"up" | "down" | "left" | "right">;
|
|
38
40
|
footerComponent?: React.FC<_gorhom_bottom_sheet.BottomSheetFooterProps>;
|
|
@@ -68,6 +70,7 @@ declare function experimental_createOverlayContext(): {
|
|
|
68
70
|
keyboardBlurBehavior?: "restore" | "none";
|
|
69
71
|
androidKeyboardInputMode?: "adjustResize" | "adjustPan";
|
|
70
72
|
enableDynamicSizing?: boolean;
|
|
73
|
+
closeFunction?: () => void;
|
|
71
74
|
animationType?: "none" | "slide" | "fade" | "bounceIn" | "bounceInDown" | "bounceInUp" | "bounceInLeft" | "bounceInRight" | "bounceOut" | "bounceOutDown" | "bounceOutUp" | "bounceOutLeft" | "bounceOutRight" | "fadeIn" | "fadeInDown" | "fadeInDownBig" | "fadeInUp" | "fadeInUpBig" | "fadeInLeft" | "fadeInLeftBig" | "fadeInRight" | "fadeInRightBig" | "fadeOut" | "fadeOutDown" | "fadeOutDownBig" | "fadeOutUp" | "fadeOutUpBig" | "fadeOutLeft" | "fadeOutLeftBig" | "fadeOutRight" | "fadeOutRightBig";
|
|
72
75
|
swipeDirection?: "up" | "down" | "left" | "right" | Array<"up" | "down" | "left" | "right">;
|
|
73
76
|
footerComponent?: React.FC<_gorhom_bottom_sheet.BottomSheetFooterProps>;
|
|
@@ -84,6 +87,7 @@ declare function experimental_createOverlayContext(): {
|
|
|
84
87
|
keyboardBlurBehavior?: "restore" | "none";
|
|
85
88
|
androidKeyboardInputMode?: "adjustResize" | "adjustPan";
|
|
86
89
|
enableDynamicSizing?: boolean;
|
|
90
|
+
closeFunction?: () => void;
|
|
87
91
|
animationType?: "none" | "slide" | "fade" | "bounceIn" | "bounceInDown" | "bounceInUp" | "bounceInLeft" | "bounceInRight" | "bounceOut" | "bounceOutDown" | "bounceOutUp" | "bounceOutLeft" | "bounceOutRight" | "fadeIn" | "fadeInDown" | "fadeInDownBig" | "fadeInUp" | "fadeInUpBig" | "fadeInLeft" | "fadeInLeftBig" | "fadeInRight" | "fadeInRightBig" | "fadeOut" | "fadeOutDown" | "fadeOutDownBig" | "fadeOutUp" | "fadeOutUpBig" | "fadeOutLeft" | "fadeOutLeftBig" | "fadeOutRight" | "fadeOutRightBig";
|
|
88
92
|
swipeDirection?: "up" | "down" | "left" | "right" | Array<"up" | "down" | "left" | "right">;
|
|
89
93
|
footerComponent?: React.FC<_gorhom_bottom_sheet.BottomSheetFooterProps>;
|