@thi.ng/layout 3.1.31 → 3.1.33

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/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2025-07-10T14:20:23Z
3
+ - **Last updated**: 2025-07-11T22:07:07Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
package/README.md CHANGED
@@ -114,7 +114,7 @@ The code producing this layout (incl. the visualization itself):
114
114
  ```ts tangle:export/readme-grid.ts
115
115
  import * as g from "@thi.ng/geom";
116
116
  import { gridLayout, type LayoutBox } from "@thi.ng/layout";
117
- import { writeFileSync } "node:fs";
117
+ import { writeFileSync } from "node:fs";
118
118
 
119
119
  // collection of generated layout cells
120
120
  const cells: g.Group[] = [];
@@ -210,7 +210,7 @@ The code producing this layout (incl. the visualization itself):
210
210
  ```ts tangle:export/readme-stacked.ts
211
211
  import * as g from "@thi.ng/geom";
212
212
  import { stackedLayout, type LayoutBox } from "@thi.ng/layout";
213
- import { writeFileSync } "node:fs";
213
+ import { writeFileSync } from "node:fs";
214
214
 
215
215
  // collection of generated layout cells
216
216
  const cells: g.Group[] = [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/layout",
3
- "version": "3.1.31",
3
+ "version": "3.1.33",
4
4
  "description": "Configurable nested 2D grid layout generators",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -40,7 +40,7 @@
40
40
  },
41
41
  "dependencies": {
42
42
  "@thi.ng/api": "^8.11.30",
43
- "@thi.ng/arrays": "^2.13.2",
43
+ "@thi.ng/arrays": "^2.13.3",
44
44
  "@thi.ng/checks": "^3.7.10"
45
45
  },
46
46
  "devDependencies": {
@@ -98,5 +98,5 @@
98
98
  ],
99
99
  "year": 2019
100
100
  },
101
- "gitHead": "56d8f088389b22192a06e9a395b5eecebf47697a\n"
101
+ "gitHead": "9ec4a5584ed6e59f2b74f4ca9726daef7e766974\n"
102
102
  }