@ace-grid/wc 1.0.7 → 1.0.8
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 +17 -2
- package/package.json +17 -3
package/README.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# @ace-grid/wc
|
|
2
2
|
|
|
3
|
-
Ace Grid Web Components provide framework-neutral custom elements for using Ace
|
|
3
|
+
Ace Grid Web Components provide framework-neutral custom elements for using Ace
|
|
4
|
+
Grid in applications that do not render React components directly.
|
|
4
5
|
|
|
5
6
|
## Install
|
|
6
7
|
|
|
@@ -29,7 +30,21 @@ defineAceGridElement("ace-grid", { Grid });
|
|
|
29
30
|
|
|
30
31
|
## Runtime selection
|
|
31
32
|
|
|
32
|
-
The web component wrapper is runtime-neutral. Register it with `@ace-grid/core`,
|
|
33
|
+
The web component wrapper is runtime-neutral. Register it with `@ace-grid/core`,
|
|
34
|
+
`@ace-grid/pro`, or `@ace-grid/enterprise` depending on the feature tier your
|
|
35
|
+
application uses.
|
|
36
|
+
|
|
37
|
+
## Related packages
|
|
38
|
+
|
|
39
|
+
- `@ace-grid/core` for free grid features.
|
|
40
|
+
- `@ace-grid/pro` for formulas, validation, Excel workflows, grouping, and
|
|
41
|
+
sparklines.
|
|
42
|
+
- `@ace-grid/enterprise` for server row model, pivoting, charts, and
|
|
43
|
+
master-detail.
|
|
44
|
+
- `@ace-grid/angular`, `@ace-grid/vue`, and `@ace-grid/svelte` for framework
|
|
45
|
+
wrappers.
|
|
46
|
+
|
|
47
|
+
Docs and API reference: https://ace-grid.com
|
|
33
48
|
|
|
34
49
|
## License
|
|
35
50
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ace-grid/wc",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "Ace Grid Web Component wrapper for framework-neutral grid usage.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/wc.cjs",
|
|
@@ -25,16 +25,30 @@
|
|
|
25
25
|
"dist/wc.d.ts"
|
|
26
26
|
],
|
|
27
27
|
"peerDependencies": {
|
|
28
|
+
"@ace-grid/core": ">=1.0.6 <2.0.0",
|
|
29
|
+
"@ace-grid/pro": ">=1.0.6 <2.0.0",
|
|
30
|
+
"@ace-grid/enterprise": ">=1.0.6 <2.0.0",
|
|
28
31
|
"react": "19.1.1",
|
|
29
32
|
"react-dom": "19.1.1"
|
|
30
33
|
},
|
|
34
|
+
"peerDependenciesMeta": {
|
|
35
|
+
"@ace-grid/core": {
|
|
36
|
+
"optional": true
|
|
37
|
+
},
|
|
38
|
+
"@ace-grid/pro": {
|
|
39
|
+
"optional": true
|
|
40
|
+
},
|
|
41
|
+
"@ace-grid/enterprise": {
|
|
42
|
+
"optional": true
|
|
43
|
+
}
|
|
44
|
+
},
|
|
31
45
|
"license": "MIT",
|
|
32
46
|
"repository": {
|
|
33
47
|
"type": "git",
|
|
34
|
-
"url": "git+https://github.com/Vitashev/
|
|
48
|
+
"url": "git+https://github.com/Vitashev/ace-grid-core.git"
|
|
35
49
|
},
|
|
36
50
|
"bugs": {
|
|
37
|
-
"url": "https://github.com/Vitashev/
|
|
51
|
+
"url": "https://github.com/Vitashev/ace-grid-core/issues"
|
|
38
52
|
},
|
|
39
53
|
"homepage": "https://ace-grid.com",
|
|
40
54
|
"keywords": [
|