@ace-grid/vue 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 +21 -0
- package/README.md +16 -30
- package/dist/vue-core.d.ts +8 -5
- package/dist/vue-enterprise.d.ts +8 -5
- package/dist/vue-pro.d.ts +8 -5
- package/dist/vue.d.ts +6 -15
- package/package.json +9 -15
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/vue
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Free Vue data grid wrapper for Ace Grid Core.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
This package is generated from the public Core export in:
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
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
|
-
|
|
12
|
+
## Documentation
|
|
13
|
+
|
|
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
|
|
17
|
+
|
|
18
|
+
## Install
|
|
12
19
|
|
|
13
20
|
```bash
|
|
14
|
-
npm install @ace-grid/vue
|
|
15
|
-
npm install @ace-grid/vue @ace-grid/enterprise vue react react-dom
|
|
21
|
+
npm install @ace-grid/vue
|
|
16
22
|
```
|
|
17
23
|
|
|
18
|
-
##
|
|
24
|
+
## Usage
|
|
19
25
|
|
|
20
26
|
```ts
|
|
21
|
-
import
|
|
27
|
+
import AceGridVue from "@ace-grid/vue";
|
|
22
28
|
```
|
|
23
|
-
|
|
24
|
-
Use the tier-specific entry point that matches your runtime:
|
|
25
|
-
|
|
26
|
-
- `@ace-grid/vue/core`
|
|
27
|
-
- `@ace-grid/vue/pro`
|
|
28
|
-
- `@ace-grid/vue/enterprise`
|
|
29
|
-
|
|
30
|
-
## Package boundaries
|
|
31
|
-
|
|
32
|
-
This package contains the Vue wrapper only. It does not include Core, Pro, or Enterprise runtime code. Install the runtime package that matches your feature tier.
|
|
33
|
-
|
|
34
|
-
## Production notes
|
|
35
|
-
|
|
36
|
-
- Keep wrapper and runtime versions aligned.
|
|
37
|
-
- Use Core for free-tier features.
|
|
38
|
-
- Use Pro or Enterprise only when the application is licensed for those tiers.
|
|
39
|
-
|
|
40
|
-
## License
|
|
41
|
-
|
|
42
|
-
MIT. Runtime packages may have separate license terms.
|
package/dist/vue-core.d.ts
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
export
|
|
4
|
-
|
|
5
|
-
|
|
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-enterprise.d.ts
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
export
|
|
4
|
-
|
|
5
|
-
|
|
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
|
-
|
|
2
|
-
|
|
3
|
-
export
|
|
4
|
-
|
|
5
|
-
|
|
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
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
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
|
|
13
|
-
|
|
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.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.0.12",
|
|
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 &&
|
|
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
|
|
34
|
-
"
|
|
35
|
-
"
|
|
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",
|
|
@@ -62,12 +56,12 @@
|
|
|
62
56
|
"license": "MIT",
|
|
63
57
|
"repository": {
|
|
64
58
|
"type": "git",
|
|
65
|
-
"url": "git+https://github.com/Vitashev/
|
|
59
|
+
"url": "git+https://github.com/Vitashev/ace-grid-core.git"
|
|
66
60
|
},
|
|
67
61
|
"bugs": {
|
|
68
|
-
"url": "https://github.com/Vitashev/
|
|
62
|
+
"url": "https://github.com/Vitashev/ace-grid-core/issues"
|
|
69
63
|
},
|
|
70
|
-
"homepage": "https://ace-grid
|
|
64
|
+
"homepage": "https://github.com/Vitashev/ace-grid-core#readme",
|
|
71
65
|
"keywords": [
|
|
72
66
|
"ace-grid",
|
|
73
67
|
"vue",
|