@ace-grid/angular 1.0.7 → 1.0.12

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 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,42 +1,28 @@
1
1
  # @ace-grid/angular
2
2
 
3
- Ace Grid Angular provides Angular bindings for Ace Grid Core, Pro, and Enterprise runtimes. The wrapper keeps Angular templates and lifecycle integration separate from the selected Ace Grid feature tier.
3
+ Free Angular data grid wrapper for Ace Grid Core.
4
4
 
5
- ## Install
5
+ This package is generated from the public Core export in:
6
6
 
7
- ```bash
8
- npm install @ace-grid/angular @ace-grid/core react react-dom
9
- ```
7
+ https://github.com/Vitashev/ace-grid-core
8
+
9
+ It contains only free/Core Ace Grid capabilities. Pro and Enterprise source,
10
+ runtime modules, and paid feature artifacts are intentionally excluded.
10
11
 
11
- For paid tiers, install the runtime you use:
12
+ ## Documentation
13
+
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
17
+
18
+ ## Install
12
19
 
13
20
  ```bash
14
- npm install @ace-grid/angular @ace-grid/pro react react-dom
15
- npm install @ace-grid/angular @ace-grid/enterprise react react-dom
21
+ npm install @ace-grid/angular
16
22
  ```
17
23
 
18
- ## Quick start
24
+ ## Usage
19
25
 
20
26
  ```ts
21
- import { AceGridComponent } from "@ace-grid/angular/core";
27
+ import { AceGridComponent } from "@ace-grid/angular";
22
28
  ```
23
-
24
- Use the tier-specific entry point that matches your runtime:
25
-
26
- - `@ace-grid/angular/core`
27
- - `@ace-grid/angular/pro`
28
- - `@ace-grid/angular/enterprise`
29
-
30
- ## Package boundaries
31
-
32
- This package contains the Angular wrapper only. Grid capabilities come from the runtime package you install: `@ace-grid/core`, `@ace-grid/pro`, or `@ace-grid/enterprise`.
33
-
34
- ## Production notes
35
-
36
- - Keep the wrapper version aligned with the Ace Grid runtime version used by your app.
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.
39
-
40
- ## License
41
-
42
- MIT. Runtime packages may have separate license terms.
@@ -1,5 +1,7 @@
1
- export * from "./angular";
2
- export * from "@ace-grid/core";
3
- export declare function defineAceGridElement(...args: unknown[]): unknown;
4
- export declare function defineAceGridUseGridElement(...args: unknown[]): unknown;
5
- export interface AceGridUseGridElement extends HTMLElement {}
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
- export * from "./angular";
2
- export * from "@ace-grid/enterprise";
3
- export declare function defineAceGridElement(...args: unknown[]): unknown;
4
- export declare function defineAceGridUseGridElement(...args: unknown[]): unknown;
5
- export interface AceGridUseGridElement extends HTMLElement {}
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
- export * from "./angular";
2
- export * from "@ace-grid/pro";
3
- export declare function defineAceGridElement(...args: unknown[]): unknown;
4
- export declare function defineAceGridUseGridElement(...args: unknown[]): unknown;
5
- export interface AceGridUseGridElement extends HTMLElement {}
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
- export interface AceGridAngularReadyEvent {
2
- element: HTMLElement;
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.7",
4
- "description": "Tier-neutral Angular wrapper for Ace Grid Core, Pro, and Enterprise runtimes.",
3
+ "version": "1.0.12",
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 && tsc -p tsconfig.build.json && node ../../scripts/protect-wrapper-package.mjs angular"
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/angular.js",
34
- "dist/angular.d.ts",
35
- "dist/angular-core.js",
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",
@@ -63,12 +57,12 @@
63
57
  "license": "MIT",
64
58
  "repository": {
65
59
  "type": "git",
66
- "url": "git+https://github.com/Vitashev/gridix.git"
60
+ "url": "git+https://github.com/Vitashev/ace-grid-core.git"
67
61
  },
68
62
  "bugs": {
69
- "url": "https://github.com/Vitashev/gridix/issues"
63
+ "url": "https://github.com/Vitashev/ace-grid-core/issues"
70
64
  },
71
- "homepage": "https://ace-grid.com",
65
+ "homepage": "https://github.com/Vitashev/ace-grid-core#readme",
72
66
  "keywords": [
73
67
  "ace-grid",
74
68
  "angular",