@onlynative/inertia 0.0.1-alpha.8 → 0.0.1-alpha.9
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/gestureLayer/index.d.mts +2 -2
- package/dist/gestureLayer/index.d.ts +2 -2
- package/dist/gestureLayer/index.js +3 -1402
- package/dist/gestureLayer/index.js.map +1 -1
- package/dist/gestureLayer/index.mjs +3 -1402
- package/dist/gestureLayer/index.mjs.map +1 -1
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +69 -1461
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +70 -1462
- package/dist/index.mjs.map +1 -1
- package/dist/motion/Image.d.mts +1 -1
- package/dist/motion/Image.d.ts +1 -1
- package/dist/motion/Image.js +68 -1460
- package/dist/motion/Image.js.map +1 -1
- package/dist/motion/Image.mjs +70 -1462
- package/dist/motion/Image.mjs.map +1 -1
- package/dist/motion/Pressable.d.mts +1 -1
- package/dist/motion/Pressable.d.ts +1 -1
- package/dist/motion/Pressable.js +68 -1460
- package/dist/motion/Pressable.js.map +1 -1
- package/dist/motion/Pressable.mjs +70 -1462
- package/dist/motion/Pressable.mjs.map +1 -1
- package/dist/motion/ScrollView.d.mts +1 -1
- package/dist/motion/ScrollView.d.ts +1 -1
- package/dist/motion/ScrollView.js +68 -1460
- package/dist/motion/ScrollView.js.map +1 -1
- package/dist/motion/ScrollView.mjs +70 -1462
- package/dist/motion/ScrollView.mjs.map +1 -1
- package/dist/motion/Text.d.mts +1 -1
- package/dist/motion/Text.d.ts +1 -1
- package/dist/motion/Text.js +68 -1460
- package/dist/motion/Text.js.map +1 -1
- package/dist/motion/Text.mjs +70 -1462
- package/dist/motion/Text.mjs.map +1 -1
- package/dist/motion/View.d.mts +1 -1
- package/dist/motion/View.d.ts +1 -1
- package/dist/motion/View.js +68 -1460
- package/dist/motion/View.js.map +1 -1
- package/dist/motion/View.mjs +70 -1462
- package/dist/motion/View.mjs.map +1 -1
- package/dist/touch/index.d.mts +1 -1
- package/dist/touch/index.d.ts +1 -1
- package/dist/{types-BwyvoH2V.d.mts → types-cU43dEmH.d.mts} +42 -15
- package/dist/{types-BwyvoH2V.d.ts → types-cU43dEmH.d.ts} +42 -15
- package/dist/{useGesture-BPPp9LhV.d.ts → useGesture-B7A_1DVg.d.ts} +1 -1
- package/dist/{useGesture-BnBF4OtT.d.mts → useGesture-cimMrzC1.d.mts} +1 -1
- package/jest-setup.js +4 -0
- package/package.json +8 -2
- package/src/__type-tests__/variants.test-d.tsx +67 -0
- package/src/layout/sharedRegistry.ts +7 -4
- package/src/motion/createMotionComponent.tsx +63 -33
- package/src/motion/installCheck.ts +7 -11
- package/src/types.ts +58 -19
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AnimatedStyle } from 'react-native-reanimated';
|
|
2
|
-
import { U as UseGestureHandlers } from '../useGesture-
|
|
3
|
-
import { T as TransitionConfig, h as GestureLayerTransitions } from '../types-
|
|
2
|
+
import { U as UseGestureHandlers } from '../useGesture-cimMrzC1.mjs';
|
|
3
|
+
import { T as TransitionConfig, h as GestureLayerTransitions } from '../types-cU43dEmH.mjs';
|
|
4
4
|
import 'react';
|
|
5
5
|
import 'react-native';
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AnimatedStyle } from 'react-native-reanimated';
|
|
2
|
-
import { U as UseGestureHandlers } from '../useGesture-
|
|
3
|
-
import { T as TransitionConfig, h as GestureLayerTransitions } from '../types-
|
|
2
|
+
import { U as UseGestureHandlers } from '../useGesture-B7A_1DVg.js';
|
|
3
|
+
import { T as TransitionConfig, h as GestureLayerTransitions } from '../types-cU43dEmH.js';
|
|
4
4
|
import 'react';
|
|
5
5
|
import 'react-native';
|
|
6
6
|
|