@shaquillehinds/react-native-bottom-sheet 0.0.3 → 0.0.5

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.
Files changed (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +10 -5
package/README.md CHANGED
@@ -5,6 +5,8 @@ A performant, highly customizable bottom sheet component for React Native that j
5
5
  [![npm version](https://badge.fury.io/js/@shaquillehinds%2Freact-native-bottom-sheet.svg)](https://badge.fury.io/js/@shaquillehinds%2Freact-native-bottom-sheet)
6
6
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
7
7
 
8
+ <img src="https://raw.githubusercontent.com/shaquillehinds/react-native-bottom-sheet/master/assets/bottomsheet.gif" alt="example" height="500"/>
9
+
8
10
  ## Features
9
11
 
10
12
  - 🎯 **Multiple Snap Points** - Define custom snap positions as percentages of screen height
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shaquillehinds/react-native-bottom-sheet",
3
- "version": "0.0.3",
3
+ "version": "0.0.5",
4
4
  "description": "A simple bottom sheet for react native that just works.",
5
5
  "source": "./src/index.tsx",
6
6
  "main": "./lib/commonjs/index.js",
@@ -77,13 +77,12 @@
77
77
  "registry": "https://registry.npmjs.org/",
78
78
  "access": "public"
79
79
  },
80
- "dependencies": {
81
- "@shaquillehinds/react-native-essentials": "^1.8.0"
82
- },
80
+ "dependencies": {},
83
81
  "devDependencies": {
84
82
  "@commitlint/config-conventional": "^19.6.0",
85
83
  "@react-native/eslint-config": "^0.73.1",
86
84
  "@release-it/conventional-changelog": "^9.0.2",
85
+ "@shaquillehinds/react-native-essentials": "^1.8.1",
87
86
  "@types/jest": "^29.5.5",
88
87
  "@types/react": "^18.2.44",
89
88
  "chokidar-cli": "^3.0.0",
@@ -108,7 +107,13 @@
108
107
  },
109
108
  "peerDependencies": {
110
109
  "react": "*",
111
- "react-native": "*"
110
+ "react-native": "*",
111
+ "@shaquillehinds/react-native-essentials": ">=1.8.0"
112
+ },
113
+ "peerDependenciesMeta": {
114
+ "@shaquillehinds/react-native-essentials": {
115
+ "optional": false
116
+ }
112
117
  },
113
118
  "workspaces": [
114
119
  "example"