@ace-grid/vue 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 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,52 +1,28 @@
1
1
  # @ace-grid/vue
2
2
 
3
- Ace Grid Vue provides Vue 3 bindings for Ace Grid Core, Pro, and Enterprise. It
4
- adds a thin Vue integration layer while grid capabilities stay in the selected
5
- Ace Grid runtime.
3
+ Free Vue data grid wrapper for Ace Grid Core.
6
4
 
7
- ## Install
5
+ This package is generated from the public Core export in:
8
6
 
9
- ```bash
10
- npm install @ace-grid/vue @ace-grid/core vue react react-dom
11
- ```
7
+ https://github.com/Vitashev/ace-grid-core
12
8
 
13
- For paid tiers, install the matching runtime:
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
- ```bash
16
- npm install @ace-grid/vue @ace-grid/pro vue react react-dom
17
- npm install @ace-grid/vue @ace-grid/enterprise vue react react-dom
18
- ```
19
-
20
- ## Quick start
12
+ ## Documentation
21
13
 
22
- ```vue
23
- <script setup lang="ts">
24
- import AceGrid from "@ace-grid/vue/core";
14
+ - Framework guide: https://ace-grid.com/guides/vue-data-grid
15
+ - Product docs: https://ace-grid.com/docs
16
+ - API reference: https://ace-grid.com/api
25
17
 
26
- const data = { rows, columns };
27
- </script>
18
+ ## Install
28
19
 
29
- <template>
30
- <AceGrid :data="data" :layout="{ height: 520 }" />
31
- </template>
20
+ ```bash
21
+ npm install @ace-grid/vue
32
22
  ```
33
23
 
34
- Use the tier-specific entry point that matches your runtime:
35
-
36
- - `@ace-grid/vue/core`
37
- - `@ace-grid/vue/pro`
38
- - `@ace-grid/vue/enterprise`
39
-
40
- ## Related packages
41
-
42
- - `@ace-grid/core` for free grid features.
43
- - `@ace-grid/pro` for formulas, validation, Excel workflows, grouping, and
44
- sparklines.
45
- - `@ace-grid/enterprise` for server row model, pivoting, charts, and
46
- master-detail.
24
+ ## Usage
47
25
 
48
- Docs and API reference: https://ace-grid.com
49
-
50
- ## License
51
-
52
- MIT. Runtime packages may have separate license terms.
26
+ ```ts
27
+ import AceGridVue from "@ace-grid/vue";
28
+ ```
@@ -1,5 +1,8 @@
1
- export * from "./vue";
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 interface AceGridVueComponentProps<TProps extends Record<string, unknown> = Partial<GridProps>> {
4
+ props?: TProps;
5
+ customTagName?: string;
6
+ }
7
+ export declare const AceGridVue: unknown;
8
+ export default AceGridVue;
@@ -1,5 +1,8 @@
1
- export * from "./vue";
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 interface AceGridVueComponentProps<TProps extends Record<string, unknown> = Partial<GridProps>> {
4
+ props?: TProps;
5
+ customTagName?: string;
6
+ }
7
+ export declare const AceGridVue: unknown;
8
+ export default AceGridVue;
package/dist/vue-pro.d.ts CHANGED
@@ -1,5 +1,8 @@
1
- export * from "./vue";
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 interface AceGridVueComponentProps<TProps extends Record<string, unknown> = Partial<GridProps>> {
4
+ props?: TProps;
5
+ customTagName?: string;
6
+ }
7
+ export declare const AceGridVue: unknown;
8
+ export default AceGridVue;
package/dist/vue.d.ts CHANGED
@@ -1,17 +1,8 @@
1
- export interface AceGridVueReadyEvent {
2
- element: HTMLElement;
3
- }
4
- export interface AceGridVueComponentProps {
5
- props?: unknown;
6
- hookOptions?: unknown;
7
- templates?: Record<string, unknown> | null;
8
- iconTemplates?: Record<string, unknown> | null;
9
- elementClassName?: string;
1
+ /* Public Ace Grid Core type surface. Generated by export-public-core. */
2
+ import type { GridProps } from "@ace-grid/core";
3
+ export interface AceGridVueComponentProps<TProps extends Record<string, unknown> = Partial<GridProps>> {
4
+ props?: TProps;
10
5
  customTagName?: string;
11
6
  }
12
- export declare const AceGridComponent: unknown;
13
- declare const _default: typeof AceGridComponent;
14
- export default _default;
15
- export declare const ACE_GRID_VUE_COMMON_EVENTS: Record<string, string>;
16
- export declare const ACE_GRID_VUE_DEFAULT_TAG_NAME: string;
17
- export declare const ACE_GRID_VUE_EVENT_PREFIX: string;
7
+ export declare const AceGridVue: unknown;
8
+ export default AceGridVue;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ace-grid/vue",
3
- "version": "1.0.8",
4
- "description": "Tier-neutral Vue wrapper for Ace Grid Core, Pro, and Enterprise runtimes.",
3
+ "version": "1.0.13",
4
+ "description": "Vue data grid wrapper for Ace Grid Core, Pro, and Enterprise runtimes.",
5
5
  "type": "module",
6
6
  "module": "./dist/vue.js",
7
7
  "types": "./dist/vue.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 vue"
27
+ "build": "vite build && node ../../scripts/write-public-package-types.mjs vue"
28
28
  },
29
29
  "publishConfig": {
30
30
  "access": "public"
31
31
  },
32
32
  "files": [
33
- "dist/vue.js",
34
- "dist/vue.d.ts",
35
- "dist/vue-core.js",
36
- "dist/vue-core.d.ts",
37
- "dist/vue-pro.js",
38
- "dist/vue-pro.d.ts",
39
- "dist/vue-enterprise.js",
40
- "dist/vue-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",
@@ -67,7 +61,7 @@
67
61
  "bugs": {
68
62
  "url": "https://github.com/Vitashev/ace-grid-core/issues"
69
63
  },
70
- "homepage": "https://ace-grid.com",
64
+ "homepage": "https://github.com/Vitashev/ace-grid-core#readme",
71
65
  "keywords": [
72
66
  "ace-grid",
73
67
  "vue",