@revolist/revogrid 4.0.5 → 4.0.6
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/package.json +13 -15
- package/loader/package.json +0 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@revolist/revogrid",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Virtual reactive data grid spreadsheet component - RevoGrid.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -38,36 +38,28 @@
|
|
|
38
38
|
"virtual",
|
|
39
39
|
"virtuallist",
|
|
40
40
|
"virtual-scroll",
|
|
41
|
-
|
|
42
41
|
"vue",
|
|
43
42
|
"vue-grid",
|
|
44
43
|
"vue-datagrid",
|
|
45
44
|
"vue3",
|
|
46
45
|
"vue3-datagrid",
|
|
47
|
-
|
|
48
46
|
"react",
|
|
49
47
|
"react-grid",
|
|
50
48
|
"react-datagrid",
|
|
51
|
-
|
|
52
49
|
"svelte",
|
|
53
50
|
"svelte-grid",
|
|
54
51
|
"svelte-datagrid",
|
|
55
|
-
|
|
56
52
|
"angular",
|
|
57
53
|
"angular-grid",
|
|
58
54
|
"angular-datagrid",
|
|
59
55
|
"angular-tree"
|
|
60
56
|
],
|
|
61
|
-
|
|
62
57
|
"main": "dist/index.cjs.js",
|
|
63
58
|
"module": "dist/index.js",
|
|
64
59
|
"unpkg": "dist/revo-grid/revo-grid.esm.js",
|
|
65
|
-
|
|
66
60
|
"collection": "dist/collection/collection-manifest.json",
|
|
67
61
|
"collection:main": "dist/collection/index.js",
|
|
68
|
-
|
|
69
62
|
"types": "dist/types/index.d.ts",
|
|
70
|
-
|
|
71
63
|
"exports": {
|
|
72
64
|
".": {
|
|
73
65
|
"import": "./dist/revo-grid/revo-grid.esm.js",
|
|
@@ -84,7 +76,6 @@
|
|
|
84
76
|
"types": "./loader/index.d.ts"
|
|
85
77
|
}
|
|
86
78
|
},
|
|
87
|
-
|
|
88
79
|
"files": [
|
|
89
80
|
"dist/",
|
|
90
81
|
"hydrate/",
|
|
@@ -92,10 +83,11 @@
|
|
|
92
83
|
"loader/"
|
|
93
84
|
],
|
|
94
85
|
"scripts": {
|
|
95
|
-
"build": "npm run api:clear && stencil build --prod && npm run api:update",
|
|
86
|
+
"build": "npm run api:clear && stencil build --prod && rm -f loader/package.json && npm run api:update",
|
|
96
87
|
"api:clear": "rm -rf docs/guide/api",
|
|
97
88
|
"api:update": "./generate_api.sh",
|
|
98
89
|
"readme": "./readme/generate_readme.sh",
|
|
90
|
+
"release": "node ./scripts/package-version.mjs --version=4.0.6",
|
|
99
91
|
"serve": "stencil build --dev --watch --serve",
|
|
100
92
|
"deploy": "git submodule update && npm run build:demo"
|
|
101
93
|
},
|
|
@@ -104,6 +96,7 @@
|
|
|
104
96
|
"@juggle/resize-observer": "^3.4.0",
|
|
105
97
|
"@revolist/stencil-vue2-output-target": "^0.0.3",
|
|
106
98
|
"@stencil/angular-output-target": "0.8.4",
|
|
99
|
+
"@stencil/core": "^4.18.3",
|
|
107
100
|
"@stencil/react-output-target": "0.5.3",
|
|
108
101
|
"@stencil/sass": "^3.0.12",
|
|
109
102
|
"@stencil/store": "^2.0.16",
|
|
@@ -116,18 +109,23 @@
|
|
|
116
109
|
"@types/react": "^18.3.3",
|
|
117
110
|
"@types/react-dom": "^18.3.0",
|
|
118
111
|
"@types/resize-observer-browser": "^0.1.11",
|
|
112
|
+
"bootstrap": "^5.3.2",
|
|
113
|
+
"chalk": "^5.3.0",
|
|
114
|
+
"execa": "^9.2.0",
|
|
115
|
+
"fs": "^0.0.1-security",
|
|
119
116
|
"jest": "26.0.1",
|
|
120
117
|
"jest-cli": "26.0.1",
|
|
118
|
+
"lodash": "^4.17.21",
|
|
119
|
+
"minimist": "^1.2.8",
|
|
120
|
+
"path": "^0.12.7",
|
|
121
121
|
"prettier": "3.3.2",
|
|
122
122
|
"react": "^18.3.1",
|
|
123
123
|
"react-dom": "^18.3.1",
|
|
124
124
|
"rxjs": "^7.8.1",
|
|
125
125
|
"svelte": "^4.2.18",
|
|
126
|
-
"vue": "^3.4.27",
|
|
127
|
-
"bootstrap": "^5.3.2",
|
|
128
126
|
"typescript": "^5.4.5",
|
|
129
|
-
"
|
|
130
|
-
"
|
|
127
|
+
"url": "^0.11.3",
|
|
128
|
+
"vue": "^3.4.27"
|
|
131
129
|
},
|
|
132
130
|
"publishConfig": {
|
|
133
131
|
"access": "public"
|
package/loader/package.json
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "revo-grid-loader",
|
|
3
|
-
"private": true,
|
|
4
|
-
"typings": "./index.d.ts",
|
|
5
|
-
"module": "./index.js",
|
|
6
|
-
"main": "./index.cjs.js",
|
|
7
|
-
"jsnext:main": "./index.es2017.js",
|
|
8
|
-
"es2015": "./index.es2017.js",
|
|
9
|
-
"es2017": "./index.es2017.js",
|
|
10
|
-
"unpkg": "./cdn.js"
|
|
11
|
-
}
|