@momo-kits/swipe 0.92.16-beta.0 → 0.92.16-beta.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/SwipeView.tsx +4 -4
- package/index.tsx +2 -2
- package/package.json +2 -2
- package/publish.sh +14 -7
- package/types.ts +0 -3
package/SwipeView.tsx
CHANGED
|
@@ -15,7 +15,7 @@ const ACTION_WIDTH = 56;
|
|
|
15
15
|
|
|
16
16
|
export const Swipe: ForwardRefRenderFunction<SwipeableRef, SwipeProps> = (
|
|
17
17
|
{children, leftActions, rightActions, ...props},
|
|
18
|
-
ref
|
|
18
|
+
ref
|
|
19
19
|
) => {
|
|
20
20
|
const {theme} = useContext(ApplicationContext);
|
|
21
21
|
const screenWidth = Dimensions.get('window').width;
|
|
@@ -26,7 +26,7 @@ export const Swipe: ForwardRefRenderFunction<SwipeableRef, SwipeProps> = (
|
|
|
26
26
|
index: number,
|
|
27
27
|
length: number,
|
|
28
28
|
direction: 'left' | 'right',
|
|
29
|
-
dragX: Animated.AnimatedInterpolation
|
|
29
|
+
dragX: Animated.AnimatedInterpolation
|
|
30
30
|
) => {
|
|
31
31
|
const {
|
|
32
32
|
label,
|
|
@@ -83,7 +83,7 @@ export const Swipe: ForwardRefRenderFunction<SwipeableRef, SwipeProps> = (
|
|
|
83
83
|
const renderActions = (
|
|
84
84
|
actions: SwipeAction[] = [],
|
|
85
85
|
direction: 'left' | 'right',
|
|
86
|
-
dragX: Animated.AnimatedInterpolation
|
|
86
|
+
dragX: Animated.AnimatedInterpolation
|
|
87
87
|
) => {
|
|
88
88
|
let overlayPosition: {[key: string]: number} = {left: 0};
|
|
89
89
|
if (direction === 'right') {
|
|
@@ -111,7 +111,7 @@ export const Swipe: ForwardRefRenderFunction<SwipeableRef, SwipeProps> = (
|
|
|
111
111
|
index,
|
|
112
112
|
actions?.length,
|
|
113
113
|
direction,
|
|
114
|
-
dragX
|
|
114
|
+
dragX
|
|
115
115
|
);
|
|
116
116
|
}
|
|
117
117
|
})}
|
package/index.tsx
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import Swipe from
|
|
1
|
+
import Swipe from './SwipeView';
|
|
2
2
|
|
|
3
|
-
export {Swipe}
|
|
3
|
+
export {Swipe};
|
package/package.json
CHANGED
package/publish.sh
CHANGED
|
@@ -6,16 +6,23 @@ mkdir dist
|
|
|
6
6
|
rsync -r --exclude=/dist ./* dist
|
|
7
7
|
cd dist
|
|
8
8
|
|
|
9
|
-
if [ "$1" == "
|
|
10
|
-
npm version $(npm view @momo-kits/swipe@
|
|
11
|
-
npm version
|
|
12
|
-
npm publish --tag
|
|
13
|
-
|
|
14
|
-
npm version $(npm view @momo-kits/swipe version)
|
|
15
|
-
npm version
|
|
9
|
+
if [ "$1" == "stable" ]; then
|
|
10
|
+
#npm version $(npm view @momo-kits/swipe@stable version)
|
|
11
|
+
#npm version patch
|
|
12
|
+
npm publish --tag stable --access=public
|
|
13
|
+
elif [ "$1" == "latest" ]; then
|
|
14
|
+
#npm version $(npm view @momo-kits/swipe@latest version)
|
|
15
|
+
#npm version prerelease --preid=rc
|
|
16
16
|
npm publish --tag latest --access=public
|
|
17
|
+
else
|
|
18
|
+
#npm version $(npm view @momo-kits/swipe@beta version)
|
|
19
|
+
#npm version prerelease --preid=beta
|
|
20
|
+
npm publish --tag beta --access=public
|
|
17
21
|
fi
|
|
18
22
|
|
|
23
|
+
PACKAGE_NAME=$(npm pkg get name)
|
|
24
|
+
NEW_PACKAGE_VERSION=$(npm pkg get version)
|
|
25
|
+
|
|
19
26
|
# Clean up
|
|
20
27
|
cd ..
|
|
21
28
|
rm -rf dist
|