@itrocks/table 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 +10 -0
- package/package.json +6 -5
package/README.md
CHANGED
|
@@ -1,8 +1,18 @@
|
|
|
1
|
+
[](https://www.npmjs.org/package/@itrocks/table)
|
|
2
|
+
[](https://www.npmjs.org/package/@itrocks/table)
|
|
3
|
+
[](https://github.com/itrocks-ts/table/network/dependents?dependent_type=REPOSITORY)
|
|
4
|
+
[](https://github.com/itrocks-ts/table/network/dependents?dependent_type=PACKAGE)
|
|
1
5
|
|
|
2
6
|
# table
|
|
3
7
|
|
|
4
8
|
A lightweight, modular HTML table offering near-spreadsheet features such as edit, freeze, lock, scroll, and more.
|
|
5
9
|
|
|
10
|
+
## Installation
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
npm i @itrocks/table
|
|
14
|
+
```
|
|
15
|
+
|
|
6
16
|
## Usage
|
|
7
17
|
|
|
8
18
|
Check out the [GitHub demo folder](https://github.com/itrocks-ts/table/tree/master/demo) for a complete demonstration.
|
package/package.json
CHANGED
|
@@ -28,12 +28,13 @@
|
|
|
28
28
|
"drop",
|
|
29
29
|
"edit",
|
|
30
30
|
"editable",
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"
|
|
31
|
+
"freeze",
|
|
32
|
+
"frozen",
|
|
33
|
+
"it.rocks",
|
|
34
34
|
"lock",
|
|
35
35
|
"reorder",
|
|
36
|
-
"scroll"
|
|
36
|
+
"scroll",
|
|
37
|
+
"table"
|
|
37
38
|
],
|
|
38
39
|
"license": "LGPL-3.0-or-later",
|
|
39
40
|
"module": "./table.js",
|
|
@@ -45,5 +46,5 @@
|
|
|
45
46
|
},
|
|
46
47
|
"type": "module",
|
|
47
48
|
"types": "./table.d.ts",
|
|
48
|
-
"version": "0.0.
|
|
49
|
+
"version": "0.0.4"
|
|
49
50
|
}
|