react-native-screen-transitions 1.0.2 → 1.0.3
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 +5 -5
- package/dist/index.d.ts +5 -5
- package/dist/index.js +201 -233
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +188 -220
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -61,7 +61,7 @@ interface ScreenInterpolationProps {
|
|
|
61
61
|
};
|
|
62
62
|
/** The safe area insets for the screen. */
|
|
63
63
|
insets: EdgeInsets;
|
|
64
|
-
/** A flag indicating if the current
|
|
64
|
+
/** A flag indicating if the current screen is in the process of closing. */
|
|
65
65
|
closing: boolean;
|
|
66
66
|
}
|
|
67
67
|
type GestureValues = {
|
|
@@ -152,7 +152,7 @@ declare const _default: {
|
|
|
152
152
|
id?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
153
153
|
needsOffscreenAlphaCompositing?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
154
154
|
onLayout?: ((event: react_native.LayoutChangeEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.LayoutChangeEvent) => void) | undefined> | undefined;
|
|
155
|
-
pointerEvents?: "
|
|
155
|
+
pointerEvents?: "auto" | "none" | "box-none" | "box-only" | react_native_reanimated.SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
|
|
156
156
|
removeClippedSubviews?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
157
157
|
testID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
158
158
|
nativeID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
@@ -254,7 +254,7 @@ declare const _default: {
|
|
|
254
254
|
id?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
255
255
|
needsOffscreenAlphaCompositing?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
256
256
|
onLayout?: ((event: react_native.LayoutChangeEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.LayoutChangeEvent) => void) | undefined> | undefined;
|
|
257
|
-
pointerEvents?: "
|
|
257
|
+
pointerEvents?: "auto" | "none" | "box-none" | "box-only" | react_native_reanimated.SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
|
|
258
258
|
removeClippedSubviews?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
259
259
|
testID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
260
260
|
nativeID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
@@ -357,7 +357,7 @@ declare const _default: {
|
|
|
357
357
|
id?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
358
358
|
needsOffscreenAlphaCompositing?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
359
359
|
onLayout?: ((event: react_native.LayoutChangeEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.LayoutChangeEvent) => void) | undefined> | undefined;
|
|
360
|
-
pointerEvents?: "
|
|
360
|
+
pointerEvents?: "auto" | "none" | "box-none" | "box-only" | react_native_reanimated.SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
|
|
361
361
|
removeClippedSubviews?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
362
362
|
testID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
363
363
|
nativeID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
@@ -479,7 +479,7 @@ declare const _default: {
|
|
|
479
479
|
id?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
480
480
|
needsOffscreenAlphaCompositing?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
481
481
|
onLayout?: ((event: react_native.LayoutChangeEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.LayoutChangeEvent) => void) | undefined> | undefined;
|
|
482
|
-
pointerEvents?: "
|
|
482
|
+
pointerEvents?: "auto" | "none" | "box-none" | "box-only" | react_native_reanimated.SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
|
|
483
483
|
removeClippedSubviews?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
484
484
|
testID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
485
485
|
nativeID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
package/dist/index.d.ts
CHANGED
|
@@ -61,7 +61,7 @@ interface ScreenInterpolationProps {
|
|
|
61
61
|
};
|
|
62
62
|
/** The safe area insets for the screen. */
|
|
63
63
|
insets: EdgeInsets;
|
|
64
|
-
/** A flag indicating if the current
|
|
64
|
+
/** A flag indicating if the current screen is in the process of closing. */
|
|
65
65
|
closing: boolean;
|
|
66
66
|
}
|
|
67
67
|
type GestureValues = {
|
|
@@ -152,7 +152,7 @@ declare const _default: {
|
|
|
152
152
|
id?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
153
153
|
needsOffscreenAlphaCompositing?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
154
154
|
onLayout?: ((event: react_native.LayoutChangeEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.LayoutChangeEvent) => void) | undefined> | undefined;
|
|
155
|
-
pointerEvents?: "
|
|
155
|
+
pointerEvents?: "auto" | "none" | "box-none" | "box-only" | react_native_reanimated.SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
|
|
156
156
|
removeClippedSubviews?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
157
157
|
testID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
158
158
|
nativeID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
@@ -254,7 +254,7 @@ declare const _default: {
|
|
|
254
254
|
id?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
255
255
|
needsOffscreenAlphaCompositing?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
256
256
|
onLayout?: ((event: react_native.LayoutChangeEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.LayoutChangeEvent) => void) | undefined> | undefined;
|
|
257
|
-
pointerEvents?: "
|
|
257
|
+
pointerEvents?: "auto" | "none" | "box-none" | "box-only" | react_native_reanimated.SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
|
|
258
258
|
removeClippedSubviews?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
259
259
|
testID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
260
260
|
nativeID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
@@ -357,7 +357,7 @@ declare const _default: {
|
|
|
357
357
|
id?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
358
358
|
needsOffscreenAlphaCompositing?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
359
359
|
onLayout?: ((event: react_native.LayoutChangeEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.LayoutChangeEvent) => void) | undefined> | undefined;
|
|
360
|
-
pointerEvents?: "
|
|
360
|
+
pointerEvents?: "auto" | "none" | "box-none" | "box-only" | react_native_reanimated.SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
|
|
361
361
|
removeClippedSubviews?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
362
362
|
testID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
363
363
|
nativeID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
@@ -479,7 +479,7 @@ declare const _default: {
|
|
|
479
479
|
id?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
480
480
|
needsOffscreenAlphaCompositing?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
481
481
|
onLayout?: ((event: react_native.LayoutChangeEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.LayoutChangeEvent) => void) | undefined> | undefined;
|
|
482
|
-
pointerEvents?: "
|
|
482
|
+
pointerEvents?: "auto" | "none" | "box-none" | "box-only" | react_native_reanimated.SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
|
|
483
483
|
removeClippedSubviews?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
484
484
|
testID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
485
485
|
nativeID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|