@ace-grid/angular 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 +24 -7
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# @ace-grid/angular
|
|
2
2
|
|
|
3
|
-
Ace Grid Angular provides Angular bindings for Ace Grid Core, Pro, and
|
|
3
|
+
Ace Grid Angular provides Angular bindings for Ace Grid Core, Pro, and
|
|
4
|
+
Enterprise. The wrapper keeps Angular templates and lifecycle integration
|
|
5
|
+
separate from the selected Ace Grid runtime.
|
|
4
6
|
|
|
5
7
|
## Install
|
|
6
8
|
|
|
@@ -27,15 +29,30 @@ Use the tier-specific entry point that matches your runtime:
|
|
|
27
29
|
- `@ace-grid/angular/pro`
|
|
28
30
|
- `@ace-grid/angular/enterprise`
|
|
29
31
|
|
|
30
|
-
|
|
32
|
+
```ts
|
|
33
|
+
import { Component } from "@angular/core";
|
|
34
|
+
import { AceGridComponent } from "@ace-grid/angular/core";
|
|
35
|
+
|
|
36
|
+
@Component({
|
|
37
|
+
selector: "app-customers-grid",
|
|
38
|
+
standalone: true,
|
|
39
|
+
imports: [AceGridComponent],
|
|
40
|
+
template: `<ace-grid [data]="data" [layout]="{ height: 520 }" />`,
|
|
41
|
+
})
|
|
42
|
+
export class CustomersGridComponent {
|
|
43
|
+
data = { rows, columns };
|
|
44
|
+
}
|
|
45
|
+
```
|
|
31
46
|
|
|
32
|
-
|
|
47
|
+
## Related packages
|
|
33
48
|
|
|
34
|
-
|
|
49
|
+
- `@ace-grid/core` for free grid features.
|
|
50
|
+
- `@ace-grid/pro` for formulas, validation, Excel workflows, grouping, and
|
|
51
|
+
sparklines.
|
|
52
|
+
- `@ace-grid/enterprise` for server row model, pivoting, charts, and
|
|
53
|
+
master-detail.
|
|
35
54
|
|
|
36
|
-
|
|
37
|
-
- Install only one runtime tier in each application bundle unless you intentionally support tier switching.
|
|
38
|
-
- Pro and Enterprise runtimes require a valid commercial license.
|
|
55
|
+
Docs and API reference: https://ace-grid.com
|
|
39
56
|
|
|
40
57
|
## License
|
|
41
58
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ace-grid/angular",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "Tier-neutral Angular wrapper for Ace Grid Core, Pro, and Enterprise runtimes.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./dist/angular.js",
|
|
@@ -63,10 +63,10 @@
|
|
|
63
63
|
"license": "MIT",
|
|
64
64
|
"repository": {
|
|
65
65
|
"type": "git",
|
|
66
|
-
"url": "git+https://github.com/Vitashev/
|
|
66
|
+
"url": "git+https://github.com/Vitashev/ace-grid-core.git"
|
|
67
67
|
},
|
|
68
68
|
"bugs": {
|
|
69
|
-
"url": "https://github.com/Vitashev/
|
|
69
|
+
"url": "https://github.com/Vitashev/ace-grid-core/issues"
|
|
70
70
|
},
|
|
71
71
|
"homepage": "https://ace-grid.com",
|
|
72
72
|
"keywords": [
|