@momo-kits/collapse 0.102.1-beta.2 → 0.102.3-beta.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/index.tsx +0 -2
- package/package.json +2 -2
- package/publish.sh +5 -5
- package/types.ts +0 -1
package/index.tsx
CHANGED
|
@@ -43,7 +43,6 @@ const Collapse = React.forwardRef<CollapseHandle, CollapseProps>(
|
|
|
43
43
|
useBackgroundCollapseButton = false,
|
|
44
44
|
headerAlign = 'flex-start',
|
|
45
45
|
expandDefault = false,
|
|
46
|
-
headerAccessibilityLabel,
|
|
47
46
|
},
|
|
48
47
|
ref
|
|
49
48
|
) => {
|
|
@@ -141,7 +140,6 @@ const Collapse = React.forwardRef<CollapseHandle, CollapseProps>(
|
|
|
141
140
|
const renderHeader = () => {
|
|
142
141
|
return (
|
|
143
142
|
<TouchableOpacity
|
|
144
|
-
accessibilityLabel={headerAccessibilityLabel}
|
|
145
143
|
activeOpacity={1}
|
|
146
144
|
onPress={onPressHeader}
|
|
147
145
|
style={[
|
package/package.json
CHANGED
package/publish.sh
CHANGED
|
@@ -7,15 +7,15 @@ rsync -r --exclude=/dist ./* dist
|
|
|
7
7
|
cd dist
|
|
8
8
|
|
|
9
9
|
if [ "$1" == "stable" ]; then
|
|
10
|
-
npm version $(npm view @momo-kits/collapse@stable version)
|
|
11
|
-
npm version patch
|
|
10
|
+
#npm version $(npm view @momo-kits/collapse@stable version)
|
|
11
|
+
#npm version patch
|
|
12
12
|
npm publish --tag stable --access=public
|
|
13
13
|
elif [ "$1" == "latest" ]; then
|
|
14
|
-
npm version $(npm view @momo-kits/foundation@latest version)
|
|
14
|
+
#npm version $(npm view @momo-kits/foundation@latest version)
|
|
15
15
|
npm publish --tag latest --access=public
|
|
16
16
|
else
|
|
17
|
-
npm version $(npm view @momo-kits/collapse@beta version)
|
|
18
|
-
npm version prerelease --preid=beta
|
|
17
|
+
#npm version $(npm view @momo-kits/collapse@beta version)
|
|
18
|
+
#npm version prerelease --preid=beta
|
|
19
19
|
npm publish --tag beta --access=public
|
|
20
20
|
fi
|
|
21
21
|
|