@dreamstack-us/section-flow 0.0.2 → 0.0.4
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/README.md +7 -3
- package/package.json +22 -5
package/README.md
CHANGED
|
@@ -15,15 +15,15 @@ High-performance, section-first list library for React Native. Drop-in replaceme
|
|
|
15
15
|
## Installation
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
|
-
npm install
|
|
18
|
+
npm install sectionflow
|
|
19
19
|
# or
|
|
20
|
-
|
|
20
|
+
npm install @dreamstack-us/section-flow
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
## Usage
|
|
24
24
|
|
|
25
25
|
```tsx
|
|
26
|
-
import { SectionFlow } from '
|
|
26
|
+
import { SectionFlow } from 'sectionflow';
|
|
27
27
|
|
|
28
28
|
const sections = [
|
|
29
29
|
{ key: 'a', title: 'A', data: ['Alice', 'Adam'] },
|
|
@@ -39,6 +39,10 @@ const sections = [
|
|
|
39
39
|
/>
|
|
40
40
|
```
|
|
41
41
|
|
|
42
|
+
## Documentation
|
|
43
|
+
|
|
44
|
+
Full documentation available at: https://dreamstack-us.github.io/SectionFlow/
|
|
45
|
+
|
|
42
46
|
## License
|
|
43
47
|
|
|
44
48
|
MIT © DreamStack
|
package/package.json
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dreamstack-us/section-flow",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"workspaces": [
|
|
5
|
+
"workspaces": [
|
|
6
|
+
".",
|
|
7
|
+
"packages/*"
|
|
8
|
+
],
|
|
6
9
|
"description": "High-performance, section-first list library for React Native",
|
|
7
10
|
"main": "./dist/index.cjs",
|
|
8
11
|
"module": "./dist/index.js",
|
|
@@ -22,7 +25,11 @@
|
|
|
22
25
|
},
|
|
23
26
|
"./package.json": "./package.json"
|
|
24
27
|
},
|
|
25
|
-
"files": [
|
|
28
|
+
"files": [
|
|
29
|
+
"dist",
|
|
30
|
+
"README.md",
|
|
31
|
+
"LICENSE"
|
|
32
|
+
],
|
|
26
33
|
"publishConfig": {
|
|
27
34
|
"access": "public",
|
|
28
35
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -32,6 +39,7 @@
|
|
|
32
39
|
"build:root": "tsdown",
|
|
33
40
|
"dev": "tsdown --watch",
|
|
34
41
|
"typecheck": "tsc --noEmit",
|
|
42
|
+
"version": "changeset version",
|
|
35
43
|
"release": "changeset publish",
|
|
36
44
|
"prepublishOnly": "bun run build:root"
|
|
37
45
|
},
|
|
@@ -58,9 +66,18 @@
|
|
|
58
66
|
},
|
|
59
67
|
"repository": {
|
|
60
68
|
"type": "git",
|
|
61
|
-
"url": "git+https://github.com/DreamStack-us/
|
|
69
|
+
"url": "git+https://github.com/DreamStack-us/SectionFlow.git"
|
|
62
70
|
},
|
|
63
71
|
"author": "DreamStack <hello@dreamstack.us>",
|
|
64
72
|
"license": "MIT",
|
|
65
|
-
"keywords": [
|
|
73
|
+
"keywords": [
|
|
74
|
+
"react-native",
|
|
75
|
+
"list",
|
|
76
|
+
"sectionlist",
|
|
77
|
+
"performance",
|
|
78
|
+
"cell-recycling",
|
|
79
|
+
"virtualization",
|
|
80
|
+
"flashlist",
|
|
81
|
+
"new-architecture"
|
|
82
|
+
]
|
|
66
83
|
}
|