@ace-grid/angular 1.0.8 → 1.0.13
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 +21 -0
- package/README.md +15 -46
- package/dist/angular-core.d.ts +7 -5
- package/dist/angular-enterprise.d.ts +7 -5
- package/dist/angular-pro.d.ts +7 -5
- package/dist/angular.d.ts +6 -17
- package/package.json +7 -13
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Ace Grid
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,59 +1,28 @@
|
|
|
1
1
|
# @ace-grid/angular
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
Enterprise. The wrapper keeps Angular templates and lifecycle integration
|
|
5
|
-
separate from the selected Ace Grid runtime.
|
|
3
|
+
Free Angular data grid wrapper for Ace Grid Core.
|
|
6
4
|
|
|
7
|
-
|
|
5
|
+
This package is generated from the public Core export in:
|
|
8
6
|
|
|
9
|
-
|
|
10
|
-
npm install @ace-grid/angular @ace-grid/core react react-dom
|
|
11
|
-
```
|
|
7
|
+
https://github.com/Vitashev/ace-grid-core
|
|
12
8
|
|
|
13
|
-
|
|
9
|
+
It contains only free/Core Ace Grid capabilities. Pro and Enterprise source,
|
|
10
|
+
runtime modules, and paid feature artifacts are intentionally excluded.
|
|
14
11
|
|
|
15
|
-
|
|
16
|
-
npm install @ace-grid/angular @ace-grid/pro react react-dom
|
|
17
|
-
npm install @ace-grid/angular @ace-grid/enterprise react react-dom
|
|
18
|
-
```
|
|
12
|
+
## Documentation
|
|
19
13
|
|
|
20
|
-
|
|
14
|
+
- Framework guide: https://ace-grid.com/guides/angular-data-grid
|
|
15
|
+
- Product docs: https://ace-grid.com/docs
|
|
16
|
+
- API reference: https://ace-grid.com/api
|
|
21
17
|
|
|
22
|
-
|
|
23
|
-
import { AceGridComponent } from "@ace-grid/angular/core";
|
|
24
|
-
```
|
|
18
|
+
## Install
|
|
25
19
|
|
|
26
|
-
|
|
20
|
+
```bash
|
|
21
|
+
npm install @ace-grid/angular
|
|
22
|
+
```
|
|
27
23
|
|
|
28
|
-
|
|
29
|
-
- `@ace-grid/angular/pro`
|
|
30
|
-
- `@ace-grid/angular/enterprise`
|
|
24
|
+
## Usage
|
|
31
25
|
|
|
32
26
|
```ts
|
|
33
|
-
import {
|
|
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
|
-
}
|
|
27
|
+
import { AceGridComponent } from "@ace-grid/angular";
|
|
45
28
|
```
|
|
46
|
-
|
|
47
|
-
## Related packages
|
|
48
|
-
|
|
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.
|
|
54
|
-
|
|
55
|
-
Docs and API reference: https://ace-grid.com
|
|
56
|
-
|
|
57
|
-
## License
|
|
58
|
-
|
|
59
|
-
MIT. Runtime packages may have separate license terms.
|
package/dist/angular-core.d.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
export declare
|
|
4
|
-
export declare
|
|
5
|
-
|
|
1
|
+
/* Public Ace Grid Core type surface. Generated by export-public-core. */
|
|
2
|
+
import type { GridProps } from "@ace-grid/core";
|
|
3
|
+
export declare const ACE_GRID_ANGULAR_DEFAULT_TAG_NAME = "ace-grid";
|
|
4
|
+
export declare class AceGridComponent<TProps extends Record<string, unknown> = Partial<GridProps>> {
|
|
5
|
+
customTagName: string;
|
|
6
|
+
props: TProps;
|
|
7
|
+
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
export declare
|
|
4
|
-
export declare
|
|
5
|
-
|
|
1
|
+
/* Public Ace Grid Core type surface. Generated by export-public-core. */
|
|
2
|
+
import type { GridProps } from "@ace-grid/core";
|
|
3
|
+
export declare const ACE_GRID_ANGULAR_DEFAULT_TAG_NAME = "ace-grid";
|
|
4
|
+
export declare class AceGridComponent<TProps extends Record<string, unknown> = Partial<GridProps>> {
|
|
5
|
+
customTagName: string;
|
|
6
|
+
props: TProps;
|
|
7
|
+
}
|
package/dist/angular-pro.d.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
export declare
|
|
4
|
-
export declare
|
|
5
|
-
|
|
1
|
+
/* Public Ace Grid Core type surface. Generated by export-public-core. */
|
|
2
|
+
import type { GridProps } from "@ace-grid/core";
|
|
3
|
+
export declare const ACE_GRID_ANGULAR_DEFAULT_TAG_NAME = "ace-grid";
|
|
4
|
+
export declare class AceGridComponent<TProps extends Record<string, unknown> = Partial<GridProps>> {
|
|
5
|
+
customTagName: string;
|
|
6
|
+
props: TProps;
|
|
7
|
+
}
|
package/dist/angular.d.ts
CHANGED
|
@@ -1,18 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
/* Public Ace Grid Core type surface. Generated by export-public-core. */
|
|
2
|
+
import type { GridProps } from "@ace-grid/core";
|
|
3
|
+
export declare const ACE_GRID_ANGULAR_DEFAULT_TAG_NAME = "ace-grid";
|
|
4
|
+
export declare class AceGridComponent<TProps extends Record<string, unknown> = Partial<GridProps>> {
|
|
5
|
+
customTagName: string;
|
|
6
|
+
props: TProps;
|
|
3
7
|
}
|
|
4
|
-
export interface AceGridAngularComponentInputs {
|
|
5
|
-
props?: unknown;
|
|
6
|
-
hookOptions?: unknown;
|
|
7
|
-
templates?: Record<string, unknown> | null;
|
|
8
|
-
iconTemplates?: Record<string, unknown> | null;
|
|
9
|
-
}
|
|
10
|
-
export declare class AceGridComponent {
|
|
11
|
-
props?: unknown;
|
|
12
|
-
hookOptions?: unknown;
|
|
13
|
-
templates?: Record<string, unknown> | null;
|
|
14
|
-
iconTemplates?: Record<string, unknown> | null;
|
|
15
|
-
}
|
|
16
|
-
export declare const ACE_GRID_ANGULAR_COMMON_EVENTS: Record<string, string>;
|
|
17
|
-
export declare const ACE_GRID_ANGULAR_DEFAULT_TAG_NAME: string;
|
|
18
|
-
export declare const ACE_GRID_ANGULAR_EVENT_PREFIX: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ace-grid/angular",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.0.13",
|
|
4
|
+
"description": "Angular data grid wrapper for Ace Grid Core, Pro, and Enterprise runtimes.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./dist/angular.js",
|
|
7
7
|
"types": "./dist/angular.d.ts",
|
|
@@ -24,21 +24,15 @@
|
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
26
|
"scripts": {
|
|
27
|
-
"build": "vite build &&
|
|
27
|
+
"build": "vite build && node ../../scripts/write-public-package-types.mjs angular"
|
|
28
28
|
},
|
|
29
29
|
"publishConfig": {
|
|
30
30
|
"access": "public"
|
|
31
31
|
},
|
|
32
32
|
"files": [
|
|
33
|
-
"dist
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"dist/angular-core.d.ts",
|
|
37
|
-
"dist/angular-pro.js",
|
|
38
|
-
"dist/angular-pro.d.ts",
|
|
39
|
-
"dist/angular-enterprise.js",
|
|
40
|
-
"dist/angular-enterprise.d.ts",
|
|
41
|
-
"dist/angularTier-*.mjs"
|
|
33
|
+
"dist",
|
|
34
|
+
"README.md",
|
|
35
|
+
"LICENSE"
|
|
42
36
|
],
|
|
43
37
|
"peerDependencies": {
|
|
44
38
|
"@ace-grid/core": ">=1.0.6 <2.0.0",
|
|
@@ -68,7 +62,7 @@
|
|
|
68
62
|
"bugs": {
|
|
69
63
|
"url": "https://github.com/Vitashev/ace-grid-core/issues"
|
|
70
64
|
},
|
|
71
|
-
"homepage": "https://ace-grid
|
|
65
|
+
"homepage": "https://github.com/Vitashev/ace-grid-core#readme",
|
|
72
66
|
"keywords": [
|
|
73
67
|
"ace-grid",
|
|
74
68
|
"angular",
|