@smart_links/apps 2.0.0 → 2.0.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.
Files changed (2) hide show
  1. package/README.md +15 -0
  2. package/package.json +4 -3
package/README.md ADDED
@@ -0,0 +1,15 @@
1
+ # @smart_links/apps
2
+
3
+ `AppsScreen` — cross-promote your other apps from the SmartLinks dashboard.
4
+
5
+ ```bash
6
+ npm install smartlinks react-native-smartlinks
7
+ ```
8
+
9
+ ```tsx
10
+ import { AppsScreen } from 'smartlinks';
11
+
12
+ <AppsScreen renderItem={(app, open) => <MyAppCard app={app} onPress={open} />} />
13
+ ```
14
+
15
+ **Docs:** [Customization](https://gitlab.com/elmansoryanas/smartlinks-react-native/-/blob/main/docs/customization.md)
package/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "@smart_links/apps",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [
7
- "dist"
7
+ "dist",
8
+ "README.md"
8
9
  ],
9
10
  "publishConfig": {
10
11
  "access": "public"
@@ -20,7 +21,7 @@
20
21
  "prepublishOnly": "npm run build"
21
22
  },
22
23
  "dependencies": {
23
- "@smart_links/core": "2.0.0"
24
+ "@smart_links/core": "2.0.1"
24
25
  },
25
26
  "peerDependencies": {
26
27
  "react": "*",