headless-table-core 0.1.6 → 0.1.7
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 +3 -24
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# headless-table-core
|
|
2
2
|
|
|
3
3
|
Simple, headless utilities for building **searchable, sortable, paginated tables**.
|
|
4
4
|
|
|
@@ -11,7 +11,7 @@ Works with Angular, React, Vue, or plain JavaScript.
|
|
|
11
11
|
## Install
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
|
-
npm install
|
|
14
|
+
npm install headless-table-core
|
|
15
15
|
````
|
|
16
16
|
|
|
17
17
|
---
|
|
@@ -24,7 +24,7 @@ import {
|
|
|
24
24
|
sortData,
|
|
25
25
|
filterData,
|
|
26
26
|
paginate
|
|
27
|
-
} from "
|
|
27
|
+
} from "headless-table-core";
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
---
|
|
@@ -125,24 +125,3 @@ const result = paginate(rows, page, limit);
|
|
|
125
125
|
* This library handles **logic only**
|
|
126
126
|
* You control UI and rendering
|
|
127
127
|
* Original data is never mutated
|
|
128
|
-
|
|
129
|
-
---
|
|
130
|
-
|
|
131
|
-
## License
|
|
132
|
-
|
|
133
|
-
MIT
|
|
134
|
-
|
|
135
|
-
```
|
|
136
|
-
|
|
137
|
-
---
|
|
138
|
-
|
|
139
|
-
### This README is **good enough to ship**.
|
|
140
|
-
|
|
141
|
-
If you want next:
|
|
142
|
-
- Ultra-short README for npm page
|
|
143
|
-
- Examples folder
|
|
144
|
-
- React hook version
|
|
145
|
-
- Angular wrapper
|
|
146
|
-
|
|
147
|
-
Just tell me.
|
|
148
|
-
|