@ace-grid/vue 1.0.8 → 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 -40
- 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 +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,52 +1,28 @@
|
|
|
1
1
|
# @ace-grid/vue
|
|
2
2
|
|
|
3
|
-
|
|
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
|
-
|
|
5
|
+
This package is generated from the public Core export in:
|
|
8
6
|
|
|
9
|
-
|
|
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
|
-
|
|
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/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
|
-
|
|
23
|
-
|
|
24
|
-
|
|
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
|
-
|
|
27
|
-
</script>
|
|
18
|
+
## Install
|
|
28
19
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
</template>
|
|
20
|
+
```bash
|
|
21
|
+
npm install @ace-grid/vue
|
|
32
22
|
```
|
|
33
23
|
|
|
34
|
-
|
|
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
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
MIT. Runtime packages may have separate license terms.
|
|
26
|
+
```ts
|
|
27
|
+
import AceGridVue from "@ace-grid/vue";
|
|
28
|
+
```
|
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",
|
|
@@ -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
|
|
64
|
+
"homepage": "https://github.com/Vitashev/ace-grid-core#readme",
|
|
71
65
|
"keywords": [
|
|
72
66
|
"ace-grid",
|
|
73
67
|
"vue",
|