@vii7/div-table-widget 1.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.
- package/LICENSE +190 -0
- package/README.md +431 -0
- package/dist/divtable.min.js +1 -0
- package/dist/editor.worker.js +1 -0
- package/dist/json.worker.js +1 -0
- package/dist/ts.worker.js +6 -0
- package/package.json +66 -0
- package/src/div-table.css +1331 -0
- package/src/div-table.js +5186 -0
- package/src/query.js +2107 -0
package/package.json
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@vii7/div-table-widget",
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "A modern table widget built with CSS Grid and Flexbox, featuring Monaco Editor integration for advanced query capabilities",
|
|
5
|
+
"main": "dist/divtable.min.js",
|
|
6
|
+
"module": "src/div-table.js",
|
|
7
|
+
"types": "dist/divtable.d.ts",
|
|
8
|
+
"scripts": {
|
|
9
|
+
"build": "webpack --mode production",
|
|
10
|
+
"dev": "webpack --mode development --watch",
|
|
11
|
+
"serve": "npx http-server examples -p 8080 -o",
|
|
12
|
+
"test": "jest",
|
|
13
|
+
"test:watch": "jest --watch",
|
|
14
|
+
"test:coverage": "jest --coverage",
|
|
15
|
+
"prepublishOnly": "npm test && npm run build",
|
|
16
|
+
"version": "npm run build && git add -A dist",
|
|
17
|
+
"postversion": "git push && git push --tags"
|
|
18
|
+
},
|
|
19
|
+
"keywords": [
|
|
20
|
+
"table",
|
|
21
|
+
"widget",
|
|
22
|
+
"grid",
|
|
23
|
+
"flexbox",
|
|
24
|
+
"monaco",
|
|
25
|
+
"editor",
|
|
26
|
+
"query",
|
|
27
|
+
"virtual-scrolling",
|
|
28
|
+
"pagination",
|
|
29
|
+
"sorting",
|
|
30
|
+
"grouping"
|
|
31
|
+
],
|
|
32
|
+
"author": "VIIgit",
|
|
33
|
+
"license": "Apache-2.0",
|
|
34
|
+
"repository": {
|
|
35
|
+
"type": "git",
|
|
36
|
+
"url": "https://github.com/VIIgit/divtable-widget.git"
|
|
37
|
+
},
|
|
38
|
+
"bugs": {
|
|
39
|
+
"url": "https://github.com/VIIgit/divtable-widget/issues"
|
|
40
|
+
},
|
|
41
|
+
"homepage": "https://github.com/VIIgit/divtable-widget#readme",
|
|
42
|
+
"peerDependencies": {
|
|
43
|
+
"monaco-editor": "^0.52.0"
|
|
44
|
+
},
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"monaco-editor": "^0.52.2",
|
|
47
|
+
"monaco-editor-webpack-plugin": "^7.1.0",
|
|
48
|
+
"webpack": "^5.89.0",
|
|
49
|
+
"webpack-cli": "^5.1.4",
|
|
50
|
+
"terser-webpack-plugin": "^5.3.10",
|
|
51
|
+
"@jest/globals": "^29.7.0",
|
|
52
|
+
"jest": "^29.7.0",
|
|
53
|
+
"jest-environment-jsdom": "^29.7.0",
|
|
54
|
+
"@testing-library/jest-dom": "^6.1.4",
|
|
55
|
+
"@testing-library/dom": "^9.3.3"
|
|
56
|
+
},
|
|
57
|
+
"files": [
|
|
58
|
+
"dist",
|
|
59
|
+
"src",
|
|
60
|
+
"README.md",
|
|
61
|
+
"LICENSE"
|
|
62
|
+
],
|
|
63
|
+
"publishConfig": {
|
|
64
|
+
"access": "public"
|
|
65
|
+
}
|
|
66
|
+
}
|