@ace-grid/svelte 1.0.7
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/README.md +40 -0
- package/dist/ace-grid-workspace.css +1 -0
- package/dist/angularTier-BxO1uxwB.mjs +24085 -0
- package/dist/svelte-core.d.ts +5 -0
- package/dist/svelte-core.js +18 -0
- package/dist/svelte-enterprise.d.ts +5 -0
- package/dist/svelte-enterprise.js +18 -0
- package/dist/svelte-pro.d.ts +5 -0
- package/dist/svelte-pro.js +18 -0
- package/dist/svelte.d.ts +17 -0
- package/dist/svelte.js +176 -0
- package/package.json +84 -0
package/README.md
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# @ace-grid/svelte
|
|
2
|
+
|
|
3
|
+
Ace Grid Svelte provides Svelte bindings for Ace Grid Core, Pro, and Enterprise runtimes. The wrapper is tier-neutral and delegates grid behavior to the runtime package installed by your application.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @ace-grid/svelte @ace-grid/core svelte react react-dom
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
For paid tiers, install the matching runtime:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npm install @ace-grid/svelte @ace-grid/pro svelte react react-dom
|
|
15
|
+
npm install @ace-grid/svelte @ace-grid/enterprise svelte react react-dom
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Quick start
|
|
19
|
+
|
|
20
|
+
```svelte
|
|
21
|
+
<script lang="ts">
|
|
22
|
+
import AceGrid from "@ace-grid/svelte/core";
|
|
23
|
+
</script>
|
|
24
|
+
|
|
25
|
+
<AceGrid data={{ rows, columns }} layout={{ height: 520 }} columns={{}} />
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Use the tier-specific entry point that matches your runtime:
|
|
29
|
+
|
|
30
|
+
- `@ace-grid/svelte/core`
|
|
31
|
+
- `@ace-grid/svelte/pro`
|
|
32
|
+
- `@ace-grid/svelte/enterprise`
|
|
33
|
+
|
|
34
|
+
## Package boundaries
|
|
35
|
+
|
|
36
|
+
This package contains the Svelte wrapper only. Grid features are provided by `@ace-grid/core`, `@ace-grid/pro`, or `@ace-grid/enterprise`.
|
|
37
|
+
|
|
38
|
+
## License
|
|
39
|
+
|
|
40
|
+
MIT. Runtime packages may have separate license terms.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.ace-grid-svelte__container.svelte-1dm50x4{display:block;width:100%;height:100%}
|