@toclocoinc/lattice-grid 1.4.1 → 1.4.3
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 +0 -2
- package/package.json +8 -4
- package/modules/devtools.esm.js +0 -1611
- package/modules/react.esm.js +0 -430
- package/modules/svelte.esm.js +0 -412
- package/modules/vue.esm.js +0 -432
- package/modules/webcomponent.esm.js +0 -94282
package/README.md
CHANGED
|
@@ -19,7 +19,6 @@ runtime, not a CDN, not a font, not an icon sprite.
|
|
|
19
19
|
| `lattice-grid.esm.min.js` | The same, as an ES module. |
|
|
20
20
|
| `lattice-grid.min.css` | The theme. Required. |
|
|
21
21
|
| `lattice-grid.d.ts` | TypeScript declarations. |
|
|
22
|
-
| `lattice-grid.umd.js`, `lattice-grid.esm.js` | Unminified, for debugging. |
|
|
23
22
|
| `docs/API.html` | The complete API reference. |
|
|
24
23
|
| `docs/api-detail.html` | The developer guide — what each part does, and why. |
|
|
25
24
|
|
|
@@ -158,4 +157,3 @@ is no IE11 build and no polyfill bundle.
|
|
|
158
157
|
---
|
|
159
158
|
|
|
160
159
|
Copyright © 2026 TOCLOCO Inc. All rights reserved.
|
|
161
|
-
Lattice Grid and the Lattice Grid logo are trademarks of TOCLOCO Inc.
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toclocoinc/lattice-grid",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.3",
|
|
4
4
|
"description": "Lattice Grid — high performance JavaScript data grid. TOCLOCO Inc.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"author": "TOCLOCO Inc",
|
|
7
7
|
"homepage": "https://www.latticegrid.dev",
|
|
8
8
|
"type": "module",
|
|
9
|
-
"main": "./lattice-grid.
|
|
9
|
+
"main": "./lattice-grid.min.js",
|
|
10
10
|
"module": "./lattice-grid.esm.min.js",
|
|
11
11
|
"types": "./lattice-grid.d.ts",
|
|
12
12
|
"style": "./lattice-grid.min.css",
|
|
@@ -14,11 +14,15 @@
|
|
|
14
14
|
".": {
|
|
15
15
|
"types": "./lattice-grid.d.ts",
|
|
16
16
|
"import": "./lattice-grid.esm.min.js",
|
|
17
|
-
"require": "./lattice-grid.
|
|
17
|
+
"require": "./lattice-grid.min.js",
|
|
18
18
|
"default": "./lattice-grid.esm.min.js"
|
|
19
19
|
},
|
|
20
20
|
"./css": "./lattice-grid.min.css",
|
|
21
|
-
"./
|
|
21
|
+
"./react": "./modules/react.esm.min.js",
|
|
22
|
+
"./vue": "./modules/vue.esm.min.js",
|
|
23
|
+
"./svelte": "./modules/svelte.esm.min.js",
|
|
24
|
+
"./devtools": "./modules/devtools.esm.min.js",
|
|
25
|
+
"./webcomponent": "./modules/webcomponent.esm.min.js",
|
|
22
26
|
"./package.json": "./package.json"
|
|
23
27
|
},
|
|
24
28
|
"sideEffects": [
|