diff --git a/packages/adjacency/package.json b/packages/adjacency/package.json index d2bc50dc49..cb66103ee8 100644 --- a/packages/adjacency/package.json +++ b/packages/adjacency/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/adjacency", - "version": "2.5.43", + "version": "2.5.44", "description": "Sparse & bitwise adjacency matrices, lists and selected traversal algorithms for directed & undirected graphs", "type": "module", "module": "./index.js", @@ -40,15 +40,15 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/arrays": "^2.8.12", + "@thi.ng/arrays": "^2.9.0", "@thi.ng/bitfield": "^2.3.36", - "@thi.ng/dcons": "^3.2.105", + "@thi.ng/dcons": "^3.2.106", "@thi.ng/errors": "^2.5.2", - "@thi.ng/sparse": "^0.3.110" + "@thi.ng/sparse": "^0.3.111" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", - "@thi.ng/vectors": "^7.10.23", + "@thi.ng/vectors": "^7.10.24", "esbuild": "^0.20.2", "rimraf": "^5.0.5", "typedoc": "^0.25.12", diff --git a/packages/arrays/CHANGELOG.md b/packages/arrays/CHANGELOG.md index 4c8225c9dc..f938e0f2bb 100644 --- a/packages/arrays/CHANGELOG.md +++ b/packages/arrays/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log -- **Last updated**: 2024-03-27T09:53:45Z +- **Last updated**: 2024-03-28T10:57:28Z - **Generator**: [thi.ng/monopub](https://thi.ng/monopub) All notable changes to this project will be documented in this file. @@ -9,6 +9,22 @@ See [Conventional Commits](https://conventionalcommits.org/) for commit guidelin **Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes and/or version bumps of transitive dependencies. +## [2.9.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/arrays@2.9.0) (2024-03-28) + +#### 🚀 Features + +- add findSequence() & tests ([5f4db56](https://github.com/thi-ng/umbrella/commit/5f4db56)) + +#### ♻️ Refactoring + +- add support for typed arrays ([1383916](https://github.com/thi-ng/umbrella/commit/1383916)) + - add function overrides to support typed arrays for: + - argSort() + - bisect(), bisectWith() + - floydRivest() +- update findSequence() ([f9e3c29](https://github.com/thi-ng/umbrella/commit/f9e3c29)) + - reverse inner scan direction + ## [2.8.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/arrays@2.8.0) (2024-02-19) #### 🚀 Features diff --git a/packages/arrays/package.json b/packages/arrays/package.json index cf8e735972..691b57f2b4 100644 --- a/packages/arrays/package.json +++ b/packages/arrays/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/arrays", - "version": "2.8.12", + "version": "2.9.0", "description": "Array / Arraylike utilities", "type": "module", "module": "./index.js", diff --git a/packages/associative/package.json b/packages/associative/package.json index 5a98ee5284..afc791f0a7 100644 --- a/packages/associative/package.json +++ b/packages/associative/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/associative", - "version": "6.3.52", + "version": "6.3.53", "description": "Alternative Map and Set implementations with customizable equality semantics & supporting operations, plain object utilities", "type": "module", "module": "./index.js", @@ -37,15 +37,15 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/arrays": "^2.8.12", + "@thi.ng/arrays": "^2.9.0", "@thi.ng/binary": "^3.4.20", "@thi.ng/checks": "^3.5.5", "@thi.ng/compare": "^2.2.27", - "@thi.ng/dcons": "^3.2.105", + "@thi.ng/dcons": "^3.2.106", "@thi.ng/equiv": "^2.1.53", "@thi.ng/errors": "^2.5.2", "@thi.ng/random": "^3.7.1", - "@thi.ng/transducers": "^8.9.16", + "@thi.ng/transducers": "^8.9.17", "tslib": "^2.6.2" }, "devDependencies": { diff --git a/packages/axidraw/package.json b/packages/axidraw/package.json index e4b7e29ec0..48ab138932 100644 --- a/packages/axidraw/package.json +++ b/packages/axidraw/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/axidraw", - "version": "1.1.71", + "version": "1.1.72", "description": "Minimal AxiDraw plotter/drawing machine controller for Node.js", "type": "module", "module": "./index.js", @@ -43,9 +43,9 @@ "@thi.ng/errors": "^2.5.2", "@thi.ng/logger": "^3.0.7", "@thi.ng/math": "^5.10.8", - "@thi.ng/transducers": "^8.9.16", + "@thi.ng/transducers": "^8.9.17", "@thi.ng/units": "^0.4.41", - "@thi.ng/vectors": "^7.10.23", + "@thi.ng/vectors": "^7.10.24", "serialport": "^12.0.0" }, "devDependencies": { diff --git a/packages/bencode/package.json b/packages/bencode/package.json index c66bb325f4..5c8e66eafe 100644 --- a/packages/bencode/package.json +++ b/packages/bencode/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/bencode", - "version": "2.1.114", + "version": "2.1.115", "description": "Bencode binary encoder / decoder with optional UTF8 encoding & floating point support", "type": "module", "module": "./index.js", @@ -36,12 +36,12 @@ "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts" }, "dependencies": { - "@thi.ng/arrays": "^2.8.12", + "@thi.ng/arrays": "^2.9.0", "@thi.ng/checks": "^3.5.5", "@thi.ng/defmulti": "^3.0.34", "@thi.ng/errors": "^2.5.2", - "@thi.ng/transducers": "^8.9.16", - "@thi.ng/transducers-binary": "^2.1.112" + "@thi.ng/transducers": "^8.9.17", + "@thi.ng/transducers-binary": "^2.1.113" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/boids/package.json b/packages/boids/package.json index 448731057d..0f5f9cabc0 100644 --- a/packages/boids/package.json +++ b/packages/boids/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/boids", - "version": "1.0.25", + "version": "1.0.26", "description": "n-dimensional boids simulation with modular behavior system", "type": "module", "module": "./index.js", @@ -38,12 +38,12 @@ "dependencies": { "@thi.ng/api": "^8.9.31", "@thi.ng/checks": "^3.5.5", - "@thi.ng/distance": "^2.4.65", - "@thi.ng/geom-closest-point": "^2.1.119", - "@thi.ng/geom-resample": "^2.3.45", + "@thi.ng/distance": "^2.4.66", + "@thi.ng/geom-closest-point": "^2.1.120", + "@thi.ng/geom-resample": "^2.3.46", "@thi.ng/math": "^5.10.8", - "@thi.ng/timestep": "^0.5.41", - "@thi.ng/vectors": "^7.10.23" + "@thi.ng/timestep": "^0.5.42", + "@thi.ng/vectors": "^7.10.24" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/cache/package.json b/packages/cache/package.json index 61d2bb6971..50802575e4 100644 --- a/packages/cache/package.json +++ b/packages/cache/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/cache", - "version": "2.2.6", + "version": "2.2.7", "description": "In-memory cache implementations with ES6 Map-like API and different eviction strategies", "type": "module", "module": "./index.js", @@ -37,8 +37,8 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/dcons": "^3.2.105", - "@thi.ng/transducers": "^8.9.16" + "@thi.ng/dcons": "^3.2.106", + "@thi.ng/transducers": "^8.9.17" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/cellular/package.json b/packages/cellular/package.json index bea5e40113..62dca9b852 100644 --- a/packages/cellular/package.json +++ b/packages/cellular/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/cellular", - "version": "0.2.102", + "version": "0.2.103", "description": "Highly customizable 1D cellular automata, shared env, multiple rules, arbitrary sized/shaped neighborhoods, short term memory, cell states etc.", "type": "module", "module": "./index.js", @@ -37,11 +37,11 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/arrays": "^2.8.12", + "@thi.ng/arrays": "^2.9.0", "@thi.ng/checks": "^3.5.5", "@thi.ng/errors": "^2.5.2", "@thi.ng/random": "^3.7.1", - "@thi.ng/transducers": "^8.9.16" + "@thi.ng/transducers": "^8.9.17" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/color-palettes/package.json b/packages/color-palettes/package.json index f6cfa04ab2..cb195c60a2 100644 --- a/packages/color-palettes/package.json +++ b/packages/color-palettes/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/color-palettes", - "version": "1.2.50", + "version": "1.2.51", "description": "Collection of 200+ image based color themes & composable theme query filters", "type": "module", "module": "./index.js", @@ -41,7 +41,7 @@ "@thi.ng/api": "^8.9.31", "@thi.ng/base-n": "^2.7.9", "@thi.ng/checks": "^3.5.5", - "@thi.ng/color": "^5.6.37", + "@thi.ng/color": "^5.6.38", "@thi.ng/errors": "^2.5.2", "@thi.ng/hex": "^2.3.41" }, diff --git a/packages/color/package.json b/packages/color/package.json index 1b2fc95c9f..f91027ced5 100644 --- a/packages/color/package.json +++ b/packages/color/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/color", - "version": "5.6.37", + "version": "5.6.38", "description": "Array-based color types, CSS parsing, conversions, transformations, declarative theme generation, gradients, presets", "type": "module", "module": "./index.js", @@ -41,7 +41,7 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/arrays": "^2.8.12", + "@thi.ng/arrays": "^2.9.0", "@thi.ng/binary": "^3.4.20", "@thi.ng/checks": "^3.5.5", "@thi.ng/compare": "^2.2.27", @@ -51,8 +51,8 @@ "@thi.ng/math": "^5.10.8", "@thi.ng/random": "^3.7.1", "@thi.ng/strings": "^3.7.28", - "@thi.ng/transducers": "^8.9.16", - "@thi.ng/vectors": "^7.10.23" + "@thi.ng/transducers": "^8.9.17", + "@thi.ng/vectors": "^7.10.24" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/complex/package.json b/packages/complex/package.json index e733fd3555..36fd71279a 100644 --- a/packages/complex/package.json +++ b/packages/complex/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/complex", - "version": "0.2.53", + "version": "0.2.54", "description": "Array-based complex number algebra", "type": "module", "module": "./index.js", @@ -39,7 +39,7 @@ "@thi.ng/api": "^8.9.31", "@thi.ng/checks": "^3.5.5", "@thi.ng/math": "^5.10.8", - "@thi.ng/vectors": "^7.10.23" + "@thi.ng/vectors": "^7.10.24" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/csp/package.json b/packages/csp/package.json index 51683264d0..f34287fcb4 100644 --- a/packages/csp/package.json +++ b/packages/csp/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/csp", - "version": "2.1.110", + "version": "2.1.111", "description": "ES6 promise based CSP primitives & operations", "type": "module", "module": "./index.js", @@ -41,11 +41,11 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/arrays": "^2.8.12", + "@thi.ng/arrays": "^2.9.0", "@thi.ng/checks": "^3.5.5", - "@thi.ng/dcons": "^3.2.105", + "@thi.ng/dcons": "^3.2.106", "@thi.ng/errors": "^2.5.2", - "@thi.ng/transducers": "^8.9.16" + "@thi.ng/transducers": "^8.9.17" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/csv/package.json b/packages/csv/package.json index ca04f6e600..530547e6a6 100644 --- a/packages/csv/package.json +++ b/packages/csv/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/csv", - "version": "2.3.78", + "version": "2.3.79", "description": "Customizable, transducer-based CSV parser/object mapper and transformer", "type": "module", "module": "./index.js", @@ -39,7 +39,7 @@ "@thi.ng/api": "^8.9.31", "@thi.ng/checks": "^3.5.5", "@thi.ng/strings": "^3.7.28", - "@thi.ng/transducers": "^8.9.16" + "@thi.ng/transducers": "^8.9.17" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/dcons/package.json b/packages/dcons/package.json index 04d056c164..ff62478ba1 100644 --- a/packages/dcons/package.json +++ b/packages/dcons/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dcons", - "version": "3.2.105", + "version": "3.2.106", "description": "Double-linked lists with comprehensive set of operations (incl. optional self-organizing behaviors)", "type": "module", "module": "./index.js", @@ -42,7 +42,7 @@ "@thi.ng/equiv": "^2.1.53", "@thi.ng/errors": "^2.5.2", "@thi.ng/random": "^3.7.1", - "@thi.ng/transducers": "^8.9.16" + "@thi.ng/transducers": "^8.9.17" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/dgraph-dot/package.json b/packages/dgraph-dot/package.json index 390403f2c6..5fc7ae136e 100644 --- a/packages/dgraph-dot/package.json +++ b/packages/dgraph-dot/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dgraph-dot", - "version": "2.1.111", + "version": "2.1.112", "description": "Customizable Graphviz DOT serialization for @thi.ng/dgraph", "type": "module", "module": "./index.js", @@ -37,7 +37,7 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/dgraph": "^2.1.110", + "@thi.ng/dgraph": "^2.1.111", "@thi.ng/dot": "^2.1.71" }, "devDependencies": { diff --git a/packages/dgraph/package.json b/packages/dgraph/package.json index cfb335980a..615cc84125 100644 --- a/packages/dgraph/package.json +++ b/packages/dgraph/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dgraph", - "version": "2.1.110", + "version": "2.1.111", "description": "Type-agnostic directed acyclic graph (DAG) & graph operations", "type": "module", "module": "./index.js", @@ -37,10 +37,10 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/associative": "^6.3.52", + "@thi.ng/associative": "^6.3.53", "@thi.ng/equiv": "^2.1.53", "@thi.ng/errors": "^2.5.2", - "@thi.ng/transducers": "^8.9.16" + "@thi.ng/transducers": "^8.9.17" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/distance/package.json b/packages/distance/package.json index 99deab284b..9f0d93cbcb 100644 --- a/packages/distance/package.json +++ b/packages/distance/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/distance", - "version": "2.4.65", + "version": "2.4.66", "description": "N-dimensional distance metrics & K-nearest neighborhoods for point queries", "type": "module", "module": "./index.js", @@ -41,7 +41,7 @@ "@thi.ng/errors": "^2.5.2", "@thi.ng/heaps": "^2.1.68", "@thi.ng/math": "^5.10.8", - "@thi.ng/vectors": "^7.10.23" + "@thi.ng/vectors": "^7.10.24" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/dsp-io-wav/package.json b/packages/dsp-io-wav/package.json index cbcb6679c0..5cebc98c37 100644 --- a/packages/dsp-io-wav/package.json +++ b/packages/dsp-io-wav/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dsp-io-wav", - "version": "2.1.112", + "version": "2.1.113", "description": "WAV file format generation", "type": "module", "module": "./index.js", @@ -39,8 +39,8 @@ "@thi.ng/api": "^8.9.31", "@thi.ng/binary": "^3.4.20", "@thi.ng/errors": "^2.5.2", - "@thi.ng/transducers": "^8.9.16", - "@thi.ng/transducers-binary": "^2.1.112" + "@thi.ng/transducers": "^8.9.17", + "@thi.ng/transducers-binary": "^2.1.113" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/dsp/package.json b/packages/dsp/package.json index 447abd0ba9..8e1ee0d196 100644 --- a/packages/dsp/package.json +++ b/packages/dsp/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dsp", - "version": "4.7.25", + "version": "4.7.26", "description": "Composable signal generators, oscillators, filters, FFT, spectrum, windowing & related DSP utils", "type": "module", "module": "./index.js", @@ -42,7 +42,7 @@ "@thi.ng/errors": "^2.5.2", "@thi.ng/math": "^5.10.8", "@thi.ng/random": "^3.7.1", - "@thi.ng/transducers": "^8.9.16" + "@thi.ng/transducers": "^8.9.17" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/ecs/package.json b/packages/ecs/package.json index 3da150fbf7..9d3608d96a 100644 --- a/packages/ecs/package.json +++ b/packages/ecs/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/ecs", - "version": "0.7.112", + "version": "0.7.113", "description": "Entity Component System based around typed arrays & sparse sets", "type": "module", "module": "./index.js", @@ -37,15 +37,15 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/associative": "^6.3.52", + "@thi.ng/associative": "^6.3.53", "@thi.ng/binary": "^3.4.20", "@thi.ng/checks": "^3.5.5", - "@thi.ng/dcons": "^3.2.105", + "@thi.ng/dcons": "^3.2.106", "@thi.ng/errors": "^2.5.2", "@thi.ng/idgen": "^2.2.36", "@thi.ng/logger": "^3.0.7", "@thi.ng/malloc": "^6.1.77", - "@thi.ng/transducers": "^8.9.16", + "@thi.ng/transducers": "^8.9.17", "tslib": "^2.6.2" }, "devDependencies": { diff --git a/packages/egf/package.json b/packages/egf/package.json index 58dc69e554..d85a2d3e01 100644 --- a/packages/egf/package.json +++ b/packages/egf/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/egf", - "version": "0.6.119", + "version": "0.6.120", "description": "Extensible Graph Format", "type": "module", "module": "./index.js", @@ -32,14 +32,14 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/associative": "^6.3.52", + "@thi.ng/associative": "^6.3.53", "@thi.ng/checks": "^3.5.5", "@thi.ng/dot": "^2.1.71", "@thi.ng/errors": "^2.5.2", "@thi.ng/logger": "^3.0.7", "@thi.ng/prefixes": "^2.3.14", "@thi.ng/strings": "^3.7.28", - "@thi.ng/transducers-binary": "^2.1.112" + "@thi.ng/transducers-binary": "^2.1.113" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/fibers/package.json b/packages/fibers/package.json index b612bb2cd7..e0bf44ed7e 100644 --- a/packages/fibers/package.json +++ b/packages/fibers/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/fibers", - "version": "0.6.33", + "version": "0.6.34", "description": "Process hierarchies & operators for cooperative multitasking", "type": "module", "module": "./index.js", @@ -37,7 +37,7 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/arrays": "^2.8.12", + "@thi.ng/arrays": "^2.9.0", "@thi.ng/bench": "^3.5.1", "@thi.ng/checks": "^3.5.5", "@thi.ng/errors": "^2.5.2", diff --git a/packages/fsm/package.json b/packages/fsm/package.json index 04c283aaab..4c88bfa554 100644 --- a/packages/fsm/package.json +++ b/packages/fsm/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/fsm", - "version": "3.1.114", + "version": "3.1.115", "description": "Composable primitives for building declarative, transducer based Finite-State Machines & matchers for arbitrary data streams", "type": "module", "module": "./index.js", @@ -37,11 +37,11 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/arrays": "^2.8.12", + "@thi.ng/arrays": "^2.9.0", "@thi.ng/equiv": "^2.1.53", "@thi.ng/errors": "^2.5.2", "@thi.ng/strings": "^3.7.28", - "@thi.ng/transducers": "^8.9.16" + "@thi.ng/transducers": "^8.9.17" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/fuzzy-viz/package.json b/packages/fuzzy-viz/package.json index a6cc6836e3..7ca6a7507d 100644 --- a/packages/fuzzy-viz/package.json +++ b/packages/fuzzy-viz/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/fuzzy-viz", - "version": "2.1.137", + "version": "2.1.138", "description": "Visualization, instrumentation & introspection utils for @thi.ng/fuzzy", "type": "module", "module": "./index.js", @@ -39,10 +39,10 @@ "@thi.ng/api": "^8.9.31", "@thi.ng/fuzzy": "^2.1.76", "@thi.ng/hiccup": "^5.1.26", - "@thi.ng/hiccup-svg": "^5.2.29", + "@thi.ng/hiccup-svg": "^5.2.30", "@thi.ng/math": "^5.10.8", "@thi.ng/strings": "^3.7.28", - "@thi.ng/text-canvas": "^3.0.15" + "@thi.ng/text-canvas": "^3.0.16" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/geom-accel/package.json b/packages/geom-accel/package.json index 39787b3e78..f6e641936a 100644 --- a/packages/geom-accel/package.json +++ b/packages/geom-accel/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-accel", - "version": "3.5.65", + "version": "3.5.66", "description": "n-D spatial indexing data structures with a shared ES6 Map/Set-like API", "type": "module", "module": "./index.js", @@ -38,17 +38,17 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/arrays": "^2.8.12", + "@thi.ng/arrays": "^2.9.0", "@thi.ng/checks": "^3.5.5", - "@thi.ng/distance": "^2.4.65", + "@thi.ng/distance": "^2.4.66", "@thi.ng/equiv": "^2.1.53", "@thi.ng/errors": "^2.5.2", - "@thi.ng/geom-api": "^4.0.2", - "@thi.ng/geom-isec": "^3.0.2", + "@thi.ng/geom-api": "^4.0.3", + "@thi.ng/geom-isec": "^3.0.3", "@thi.ng/heaps": "^2.1.68", "@thi.ng/math": "^5.10.8", - "@thi.ng/transducers": "^8.9.16", - "@thi.ng/vectors": "^7.10.23" + "@thi.ng/transducers": "^8.9.17", + "@thi.ng/vectors": "^7.10.24" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/geom-api/package.json b/packages/geom-api/package.json index 5ed1b69f34..af3163ea66 100644 --- a/packages/geom-api/package.json +++ b/packages/geom-api/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-api", - "version": "4.0.2", + "version": "4.0.3", "description": "Shared type & interface declarations for @thi.ng/geom packages", "type": "module", "module": "./index.js", @@ -37,7 +37,7 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/vectors": "^7.10.23" + "@thi.ng/vectors": "^7.10.24" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/geom-arc/package.json b/packages/geom-arc/package.json index cc175bec85..d464bb4225 100644 --- a/packages/geom-arc/package.json +++ b/packages/geom-arc/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-arc", - "version": "2.1.124", + "version": "2.1.125", "description": "2D circular / elliptic arc operations", "type": "module", "module": "./index.js", @@ -37,10 +37,10 @@ }, "dependencies": { "@thi.ng/checks": "^3.5.5", - "@thi.ng/geom-api": "^4.0.2", - "@thi.ng/geom-resample": "^2.3.45", + "@thi.ng/geom-api": "^4.0.3", + "@thi.ng/geom-resample": "^2.3.46", "@thi.ng/math": "^5.10.8", - "@thi.ng/vectors": "^7.10.23" + "@thi.ng/vectors": "^7.10.24" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/geom-axidraw/package.json b/packages/geom-axidraw/package.json index a6c5fcf255..cbddb2a199 100644 --- a/packages/geom-axidraw/package.json +++ b/packages/geom-axidraw/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-axidraw", - "version": "0.5.82", + "version": "0.5.83", "description": "Conversion and preparation of thi.ng/geom shapes & shape groups to/from AxiDraw pen plotter draw commands", "type": "module", "module": "./index.js", @@ -37,17 +37,17 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/arrays": "^2.8.12", - "@thi.ng/axidraw": "^1.1.71", + "@thi.ng/arrays": "^2.9.0", + "@thi.ng/axidraw": "^1.1.72", "@thi.ng/compare": "^2.2.27", "@thi.ng/defmulti": "^3.0.34", - "@thi.ng/geom": "^6.1.2", - "@thi.ng/geom-accel": "^3.5.65", - "@thi.ng/geom-api": "^4.0.2", - "@thi.ng/geom-clip-line": "^2.3.81", - "@thi.ng/geom-isec": "^3.0.2", - "@thi.ng/transducers": "^8.9.16", - "@thi.ng/vectors": "^7.10.23" + "@thi.ng/geom": "^6.1.3", + "@thi.ng/geom-accel": "^3.5.66", + "@thi.ng/geom-api": "^4.0.3", + "@thi.ng/geom-clip-line": "^2.3.82", + "@thi.ng/geom-isec": "^3.0.3", + "@thi.ng/transducers": "^8.9.17", + "@thi.ng/vectors": "^7.10.24" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/geom-clip-line/package.json b/packages/geom-clip-line/package.json index 64a92a07f5..a47603e5c9 100644 --- a/packages/geom-clip-line/package.json +++ b/packages/geom-clip-line/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-clip-line", - "version": "2.3.81", + "version": "2.3.82", "description": "2D line clipping (Liang-Barsky)", "type": "module", "module": "./index.js", @@ -37,8 +37,8 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/geom-isec": "^3.0.2", - "@thi.ng/vectors": "^7.10.23" + "@thi.ng/geom-isec": "^3.0.3", + "@thi.ng/vectors": "^7.10.24" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/geom-clip-poly/package.json b/packages/geom-clip-poly/package.json index f63ddb504d..c3bb1f72ea 100644 --- a/packages/geom-clip-poly/package.json +++ b/packages/geom-clip-poly/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-clip-poly", - "version": "2.1.123", + "version": "2.1.124", "description": "2D polygon clipping / offsetting (Sutherland-Hodgeman, Grainer-Hormann)", "type": "module", "module": "./index.js", @@ -36,10 +36,10 @@ "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts" }, "dependencies": { - "@thi.ng/geom-isec": "^3.0.2", - "@thi.ng/geom-poly-utils": "^2.3.107", + "@thi.ng/geom-isec": "^3.0.3", + "@thi.ng/geom-poly-utils": "^2.3.108", "@thi.ng/math": "^5.10.8", - "@thi.ng/vectors": "^7.10.23" + "@thi.ng/vectors": "^7.10.24" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/geom-closest-point/package.json b/packages/geom-closest-point/package.json index 505b5effaf..dc65f3b911 100644 --- a/packages/geom-closest-point/package.json +++ b/packages/geom-closest-point/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-closest-point", - "version": "2.1.119", + "version": "2.1.120", "description": "2D / 3D closest point / proximity helpers", "type": "module", "module": "./index.js", @@ -38,7 +38,7 @@ "dependencies": { "@thi.ng/api": "^8.9.31", "@thi.ng/math": "^5.10.8", - "@thi.ng/vectors": "^7.10.23" + "@thi.ng/vectors": "^7.10.24" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/geom-fuzz/package.json b/packages/geom-fuzz/package.json index 72dc92fbeb..372de31dd2 100644 --- a/packages/geom-fuzz/package.json +++ b/packages/geom-fuzz/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-fuzz", - "version": "2.2.96", + "version": "2.2.97", "description": "Highly configurable, fuzzy line & polygon creation with presets and composable fill & stroke styles. Canvas & SVG support", "type": "module", "module": "./index.js", @@ -37,15 +37,15 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/associative": "^6.3.52", - "@thi.ng/color": "^5.6.37", - "@thi.ng/geom": "^6.1.2", - "@thi.ng/geom-api": "^4.0.2", - "@thi.ng/geom-clip-line": "^2.3.81", - "@thi.ng/geom-resample": "^2.3.45", - "@thi.ng/grid-iterators": "^4.0.66", - "@thi.ng/transducers": "^8.9.16", - "@thi.ng/vectors": "^7.10.23" + "@thi.ng/associative": "^6.3.53", + "@thi.ng/color": "^5.6.38", + "@thi.ng/geom": "^6.1.3", + "@thi.ng/geom-api": "^4.0.3", + "@thi.ng/geom-clip-line": "^2.3.82", + "@thi.ng/geom-resample": "^2.3.46", + "@thi.ng/grid-iterators": "^4.0.67", + "@thi.ng/transducers": "^8.9.17", + "@thi.ng/vectors": "^7.10.24" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/geom-hull/package.json b/packages/geom-hull/package.json index 2b9c2f9692..217da77f30 100644 --- a/packages/geom-hull/package.json +++ b/packages/geom-hull/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-hull", - "version": "2.1.119", + "version": "2.1.120", "description": "Fast 2D convex hull (Graham Scan)", "type": "module", "module": "./index.js", @@ -37,7 +37,7 @@ }, "dependencies": { "@thi.ng/math": "^5.10.8", - "@thi.ng/vectors": "^7.10.23" + "@thi.ng/vectors": "^7.10.24" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/geom-io-obj/package.json b/packages/geom-io-obj/package.json index 235bc342b4..f88e3747d5 100644 --- a/packages/geom-io-obj/package.json +++ b/packages/geom-io-obj/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-io-obj", - "version": "0.3.119", + "version": "0.3.120", "description": "Wavefront OBJ parser (& exporter soon)", "type": "module", "module": "./index.js", @@ -38,7 +38,7 @@ "dependencies": { "@thi.ng/api": "^8.9.31", "@thi.ng/errors": "^2.5.2", - "@thi.ng/vectors": "^7.10.23" + "@thi.ng/vectors": "^7.10.24" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/geom-isec/package.json b/packages/geom-isec/package.json index 602379e880..0d6e8a90f4 100644 --- a/packages/geom-isec/package.json +++ b/packages/geom-isec/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-isec", - "version": "3.0.2", + "version": "3.0.3", "description": "2D/3D shape intersection checks", "type": "module", "module": "./index.js", @@ -37,10 +37,10 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/geom-api": "^4.0.2", - "@thi.ng/geom-closest-point": "^2.1.119", + "@thi.ng/geom-api": "^4.0.3", + "@thi.ng/geom-closest-point": "^2.1.120", "@thi.ng/math": "^5.10.8", - "@thi.ng/vectors": "^7.10.23" + "@thi.ng/vectors": "^7.10.24" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/geom-isoline/package.json b/packages/geom-isoline/package.json index 5de1bbd4a4..037ab45b48 100644 --- a/packages/geom-isoline/package.json +++ b/packages/geom-isoline/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-isoline", - "version": "2.1.119", + "version": "2.1.120", "description": "Fast 2D contour line extraction / generation", "type": "module", "module": "./index.js", @@ -37,8 +37,8 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/transducers": "^8.9.16", - "@thi.ng/vectors": "^7.10.23" + "@thi.ng/transducers": "^8.9.17", + "@thi.ng/vectors": "^7.10.24" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/geom-poly-utils/package.json b/packages/geom-poly-utils/package.json index 270d81691f..2d51bdb31c 100644 --- a/packages/geom-poly-utils/package.json +++ b/packages/geom-poly-utils/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-poly-utils", - "version": "2.3.107", + "version": "2.3.108", "description": "2D polygon/polyline analysis & processing utilities", "type": "module", "module": "./index.js", @@ -38,9 +38,9 @@ "dependencies": { "@thi.ng/api": "^8.9.31", "@thi.ng/errors": "^2.5.2", - "@thi.ng/geom-api": "^4.0.2", + "@thi.ng/geom-api": "^4.0.3", "@thi.ng/math": "^5.10.8", - "@thi.ng/vectors": "^7.10.23" + "@thi.ng/vectors": "^7.10.24" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/geom-resample/package.json b/packages/geom-resample/package.json index b64814de58..3892df93d4 100644 --- a/packages/geom-resample/package.json +++ b/packages/geom-resample/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-resample", - "version": "2.3.45", + "version": "2.3.46", "description": "Customizable nD polyline interpolation, re-sampling, splitting & nearest point computation", "type": "module", "module": "./index.js", @@ -37,11 +37,11 @@ }, "dependencies": { "@thi.ng/checks": "^3.5.5", - "@thi.ng/geom-api": "^4.0.2", - "@thi.ng/geom-closest-point": "^2.1.119", - "@thi.ng/geom-isec": "^3.0.2", + "@thi.ng/geom-api": "^4.0.3", + "@thi.ng/geom-closest-point": "^2.1.120", + "@thi.ng/geom-isec": "^3.0.3", "@thi.ng/math": "^5.10.8", - "@thi.ng/vectors": "^7.10.23" + "@thi.ng/vectors": "^7.10.24" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/geom-sdf/package.json b/packages/geom-sdf/package.json index cc6ffc2176..bd3398a827 100644 --- a/packages/geom-sdf/package.json +++ b/packages/geom-sdf/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-sdf", - "version": "0.3.26", + "version": "0.3.27", "description": "2D Signed Distance Field creation from @thi.ng/geom shapes, conversions, sampling, combinators", "type": "module", "module": "./index.js", @@ -40,14 +40,14 @@ "@thi.ng/checks": "^3.5.5", "@thi.ng/defmulti": "^3.0.34", "@thi.ng/errors": "^2.5.2", - "@thi.ng/geom": "^6.1.2", - "@thi.ng/geom-api": "^4.0.2", - "@thi.ng/geom-isoline": "^2.1.119", - "@thi.ng/geom-poly-utils": "^2.3.107", - "@thi.ng/geom-resample": "^2.3.45", + "@thi.ng/geom": "^6.1.3", + "@thi.ng/geom-api": "^4.0.3", + "@thi.ng/geom-isoline": "^2.1.120", + "@thi.ng/geom-poly-utils": "^2.3.108", + "@thi.ng/geom-resample": "^2.3.46", "@thi.ng/math": "^5.10.8", - "@thi.ng/transducers": "^8.9.16", - "@thi.ng/vectors": "^7.10.23" + "@thi.ng/transducers": "^8.9.17", + "@thi.ng/vectors": "^7.10.24" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/geom-splines/package.json b/packages/geom-splines/package.json index f7e309b6fe..8d2d923848 100644 --- a/packages/geom-splines/package.json +++ b/packages/geom-splines/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-splines", - "version": "2.2.98", + "version": "2.2.99", "description": "nD cubic & quadratic curve analysis, conversion, interpolation, splitting", "type": "module", "module": "./index.js", @@ -38,11 +38,11 @@ "dependencies": { "@thi.ng/api": "^8.9.31", "@thi.ng/checks": "^3.5.5", - "@thi.ng/geom-api": "^4.0.2", - "@thi.ng/geom-arc": "^2.1.124", - "@thi.ng/geom-resample": "^2.3.45", + "@thi.ng/geom-api": "^4.0.3", + "@thi.ng/geom-arc": "^2.1.125", + "@thi.ng/geom-resample": "^2.3.46", "@thi.ng/math": "^5.10.8", - "@thi.ng/vectors": "^7.10.23" + "@thi.ng/vectors": "^7.10.24" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/geom-subdiv-curve/package.json b/packages/geom-subdiv-curve/package.json index a2cf587213..3819bfca10 100644 --- a/packages/geom-subdiv-curve/package.json +++ b/packages/geom-subdiv-curve/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-subdiv-curve", - "version": "2.1.123", + "version": "2.1.124", "description": "Freely customizable, iterative nD subdivision curves for open / closed geometries", "type": "module", "module": "./index.js", @@ -37,9 +37,9 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/geom-api": "^4.0.2", - "@thi.ng/transducers": "^8.9.16", - "@thi.ng/vectors": "^7.10.23" + "@thi.ng/geom-api": "^4.0.3", + "@thi.ng/transducers": "^8.9.17", + "@thi.ng/vectors": "^7.10.24" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/geom-tessellate/package.json b/packages/geom-tessellate/package.json index 17c144b3e0..c3aefc5009 100644 --- a/packages/geom-tessellate/package.json +++ b/packages/geom-tessellate/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-tessellate", - "version": "2.1.124", + "version": "2.1.125", "description": "2D/3D convex polygon tessellators", "type": "module", "module": "./index.js", @@ -37,11 +37,11 @@ }, "dependencies": { "@thi.ng/checks": "^3.5.5", - "@thi.ng/geom-api": "^4.0.2", - "@thi.ng/geom-isec": "^3.0.2", - "@thi.ng/geom-poly-utils": "^2.3.107", - "@thi.ng/transducers": "^8.9.16", - "@thi.ng/vectors": "^7.10.23" + "@thi.ng/geom-api": "^4.0.3", + "@thi.ng/geom-isec": "^3.0.3", + "@thi.ng/geom-poly-utils": "^2.3.108", + "@thi.ng/transducers": "^8.9.17", + "@thi.ng/vectors": "^7.10.24" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/geom-trace-bitmap/package.json b/packages/geom-trace-bitmap/package.json index 81439bc80b..8ea8fed689 100644 --- a/packages/geom-trace-bitmap/package.json +++ b/packages/geom-trace-bitmap/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-trace-bitmap", - "version": "0.3.74", + "version": "0.3.75", "description": "Bitmap image to hairline vector and point cloud conversions", "type": "module", "module": "./index.js", @@ -38,10 +38,10 @@ "dependencies": { "@thi.ng/api": "^8.9.31", "@thi.ng/errors": "^2.5.2", - "@thi.ng/grid-iterators": "^4.0.66", - "@thi.ng/matrices": "^2.3.29", - "@thi.ng/pixel": "^6.1.24", - "@thi.ng/vectors": "^7.10.23" + "@thi.ng/grid-iterators": "^4.0.67", + "@thi.ng/matrices": "^2.3.30", + "@thi.ng/pixel": "^6.1.25", + "@thi.ng/vectors": "^7.10.24" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/geom-voronoi/package.json b/packages/geom-voronoi/package.json index a494e9742c..cc9101a8d0 100644 --- a/packages/geom-voronoi/package.json +++ b/packages/geom-voronoi/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-voronoi", - "version": "2.3.66", + "version": "2.3.67", "description": "Fast, incremental 2D Delaunay & Voronoi mesh implementation", "type": "module", "module": "./index.js", @@ -39,13 +39,13 @@ "@thi.ng/api": "^8.9.31", "@thi.ng/bitfield": "^2.3.36", "@thi.ng/checks": "^3.5.5", - "@thi.ng/geom-clip-line": "^2.3.81", - "@thi.ng/geom-clip-poly": "^2.1.123", - "@thi.ng/geom-isec": "^3.0.2", - "@thi.ng/geom-poly-utils": "^2.3.107", + "@thi.ng/geom-clip-line": "^2.3.82", + "@thi.ng/geom-clip-poly": "^2.1.124", + "@thi.ng/geom-isec": "^3.0.3", + "@thi.ng/geom-poly-utils": "^2.3.108", "@thi.ng/math": "^5.10.8", "@thi.ng/quad-edge": "^3.1.60", - "@thi.ng/vectors": "^7.10.23" + "@thi.ng/vectors": "^7.10.24" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/geom/package.json b/packages/geom/package.json index af0412f6cf..ff0474b4b3 100644 --- a/packages/geom/package.json +++ b/packages/geom/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom", - "version": "6.1.2", + "version": "6.1.3", "description": "Functional, polymorphic API for 2D geometry types & SVG generation", "type": "module", "module": "./index.js", @@ -38,32 +38,32 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/arrays": "^2.8.12", - "@thi.ng/associative": "^6.3.52", + "@thi.ng/arrays": "^2.9.0", + "@thi.ng/associative": "^6.3.53", "@thi.ng/checks": "^3.5.5", "@thi.ng/defmulti": "^3.0.34", "@thi.ng/equiv": "^2.1.53", "@thi.ng/errors": "^2.5.2", - "@thi.ng/geom-api": "^4.0.2", - "@thi.ng/geom-arc": "^2.1.124", - "@thi.ng/geom-clip-line": "^2.3.81", - "@thi.ng/geom-clip-poly": "^2.1.123", - "@thi.ng/geom-closest-point": "^2.1.119", - "@thi.ng/geom-hull": "^2.1.119", - "@thi.ng/geom-isec": "^3.0.2", - "@thi.ng/geom-poly-utils": "^2.3.107", - "@thi.ng/geom-resample": "^2.3.45", - "@thi.ng/geom-splines": "^2.2.98", - "@thi.ng/geom-subdiv-curve": "^2.1.123", - "@thi.ng/geom-tessellate": "^2.1.124", + "@thi.ng/geom-api": "^4.0.3", + "@thi.ng/geom-arc": "^2.1.125", + "@thi.ng/geom-clip-line": "^2.3.82", + "@thi.ng/geom-clip-poly": "^2.1.124", + "@thi.ng/geom-closest-point": "^2.1.120", + "@thi.ng/geom-hull": "^2.1.120", + "@thi.ng/geom-isec": "^3.0.3", + "@thi.ng/geom-poly-utils": "^2.3.108", + "@thi.ng/geom-resample": "^2.3.46", + "@thi.ng/geom-splines": "^2.2.99", + "@thi.ng/geom-subdiv-curve": "^2.1.124", + "@thi.ng/geom-tessellate": "^2.1.125", "@thi.ng/hiccup": "^5.1.26", - "@thi.ng/hiccup-svg": "^5.2.29", + "@thi.ng/hiccup-svg": "^5.2.30", "@thi.ng/math": "^5.10.8", - "@thi.ng/matrices": "^2.3.29", + "@thi.ng/matrices": "^2.3.30", "@thi.ng/random": "^3.7.1", "@thi.ng/strings": "^3.7.28", - "@thi.ng/transducers": "^8.9.16", - "@thi.ng/vectors": "^7.10.23" + "@thi.ng/transducers": "^8.9.17", + "@thi.ng/vectors": "^7.10.24" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/gp/package.json b/packages/gp/package.json index e6a12f2705..ccbaee3cb9 100644 --- a/packages/gp/package.json +++ b/packages/gp/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/gp", - "version": "0.4.110", + "version": "0.4.111", "description": "Genetic programming helpers & strategies (tree based & multi-expression programming)", "type": "module", "module": "./index.js", @@ -40,8 +40,8 @@ "@thi.ng/errors": "^2.5.2", "@thi.ng/math": "^5.10.8", "@thi.ng/random": "^3.7.1", - "@thi.ng/transducers": "^8.9.16", - "@thi.ng/zipper": "^2.1.94" + "@thi.ng/transducers": "^8.9.17", + "@thi.ng/zipper": "^2.1.95" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/grid-iterators/package.json b/packages/grid-iterators/package.json index 5520b81ea8..214946e019 100644 --- a/packages/grid-iterators/package.json +++ b/packages/grid-iterators/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/grid-iterators", - "version": "4.0.66", + "version": "4.0.67", "description": "2D grid and shape iterators w/ multiple orderings", "type": "module", "module": "./index.js", @@ -39,13 +39,13 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/arrays": "^2.8.12", + "@thi.ng/arrays": "^2.9.0", "@thi.ng/binary": "^3.4.20", "@thi.ng/bitfield": "^2.3.36", "@thi.ng/errors": "^2.5.2", "@thi.ng/morton": "^3.1.81", "@thi.ng/random": "^3.7.1", - "@thi.ng/transducers": "^8.9.16" + "@thi.ng/transducers": "^8.9.17" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/hdiff/package.json b/packages/hdiff/package.json index 5287b44bbf..ea1eb06798 100644 --- a/packages/hdiff/package.json +++ b/packages/hdiff/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hdiff", - "version": "0.3.120", + "version": "0.3.121", "description": "String diffing w/ hiccup output for further processing, e.g. with @thi.ng/hdom, @thi.ng/hiccup. Includes CLI util to generate HTML, with theme support and code folding", "type": "module", "module": "./index.js", @@ -40,7 +40,7 @@ "@thi.ng/api": "^8.9.31", "@thi.ng/diff": "^5.1.64", "@thi.ng/hiccup": "^5.1.26", - "@thi.ng/hiccup-css": "^2.7.1", + "@thi.ng/hiccup-css": "^2.7.2", "@thi.ng/strings": "^3.7.28" }, "devDependencies": { diff --git a/packages/hdom-canvas/package.json b/packages/hdom-canvas/package.json index 2407bccaec..9242a527ea 100644 --- a/packages/hdom-canvas/package.json +++ b/packages/hdom-canvas/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hdom-canvas", - "version": "4.1.132", + "version": "4.1.133", "description": "@thi.ng/hdom component wrapper for declarative canvas scenegraphs", "type": "module", "module": "./index.js", @@ -44,7 +44,7 @@ "@thi.ng/diff": "^5.1.64", "@thi.ng/errors": "^2.5.2", "@thi.ng/hdom": "^9.4.28", - "@thi.ng/hiccup-canvas": "^2.5.31" + "@thi.ng/hiccup-canvas": "^2.5.32" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/hdom-components/package.json b/packages/hdom-components/package.json index b6673d9d67..df7eaad556 100644 --- a/packages/hdom-components/package.json +++ b/packages/hdom-components/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hdom-components", - "version": "5.1.111", + "version": "5.1.112", "description": "Raw, skinnable UI & SVG components for @thi.ng/hdom", "type": "module", "module": "./index.js", @@ -40,8 +40,8 @@ "@thi.ng/canvas": "^0.2.14", "@thi.ng/checks": "^3.5.5", "@thi.ng/math": "^5.10.8", - "@thi.ng/transducers": "^8.9.16", - "@thi.ng/transducers-stats": "^2.1.110" + "@thi.ng/transducers": "^8.9.17", + "@thi.ng/transducers-stats": "^2.1.111" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/hiccup-canvas/package.json b/packages/hiccup-canvas/package.json index ccdf971276..842dc9b60e 100644 --- a/packages/hiccup-canvas/package.json +++ b/packages/hiccup-canvas/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hiccup-canvas", - "version": "2.5.31", + "version": "2.5.32", "description": "Hiccup shape tree renderer for vanilla Canvas 2D contexts", "type": "module", "module": "./index.js", @@ -38,10 +38,10 @@ "dependencies": { "@thi.ng/api": "^8.9.31", "@thi.ng/checks": "^3.5.5", - "@thi.ng/color": "^5.6.37", + "@thi.ng/color": "^5.6.38", "@thi.ng/math": "^5.10.8", - "@thi.ng/pixel": "^6.1.24", - "@thi.ng/vectors": "^7.10.23" + "@thi.ng/pixel": "^6.1.25", + "@thi.ng/vectors": "^7.10.24" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/hiccup-css/package.json b/packages/hiccup-css/package.json index 5f87b3fd97..97b42126c4 100644 --- a/packages/hiccup-css/package.json +++ b/packages/hiccup-css/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hiccup-css", - "version": "2.7.1", + "version": "2.7.2", "description": "CSS from nested JS data structures", "type": "module", "module": "./index.js", @@ -39,7 +39,7 @@ "@thi.ng/api": "^8.9.31", "@thi.ng/checks": "^3.5.5", "@thi.ng/errors": "^2.5.2", - "@thi.ng/transducers": "^8.9.16" + "@thi.ng/transducers": "^8.9.17" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/hiccup-markdown/package.json b/packages/hiccup-markdown/package.json index 4142dfd203..21a0f3db7f 100644 --- a/packages/hiccup-markdown/package.json +++ b/packages/hiccup-markdown/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hiccup-markdown", - "version": "3.2.79", + "version": "3.2.80", "description": "Markdown parser & serializer from/to Hiccup format", "type": "module", "module": "./index.js", @@ -37,7 +37,7 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/arrays": "^2.8.12", + "@thi.ng/arrays": "^2.9.0", "@thi.ng/checks": "^3.5.5", "@thi.ng/defmulti": "^3.0.34", "@thi.ng/emoji": "^0.1.34", @@ -46,7 +46,7 @@ "@thi.ng/logger": "^3.0.7", "@thi.ng/parse": "^2.4.37", "@thi.ng/strings": "^3.7.28", - "@thi.ng/text-canvas": "^3.0.15" + "@thi.ng/text-canvas": "^3.0.16" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/hiccup-svg/package.json b/packages/hiccup-svg/package.json index fa0b91800a..ff3edf2da5 100644 --- a/packages/hiccup-svg/package.json +++ b/packages/hiccup-svg/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hiccup-svg", - "version": "5.2.29", + "version": "5.2.30", "description": "SVG element functions for @thi.ng/hiccup & related tooling", "type": "module", "module": "./index.js", @@ -37,7 +37,7 @@ }, "dependencies": { "@thi.ng/checks": "^3.5.5", - "@thi.ng/color": "^5.6.37", + "@thi.ng/color": "^5.6.38", "@thi.ng/prefixes": "^2.3.14" }, "devDependencies": { diff --git a/packages/iges/package.json b/packages/iges/package.json index 6fdd7255de..0ff264d8e7 100644 --- a/packages/iges/package.json +++ b/packages/iges/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/iges", - "version": "2.1.121", + "version": "2.1.122", "description": "IGES 5.3 serializer for (currently only) polygonal geometry, both open & closed", "type": "module", "module": "./index.js", @@ -40,8 +40,8 @@ "@thi.ng/checks": "^3.5.5", "@thi.ng/defmulti": "^3.0.34", "@thi.ng/strings": "^3.7.28", - "@thi.ng/transducers": "^8.9.16", - "@thi.ng/vectors": "^7.10.23" + "@thi.ng/transducers": "^8.9.17", + "@thi.ng/vectors": "^7.10.24" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/imago/package.json b/packages/imago/package.json index 9efdab36d6..833654e72d 100644 --- a/packages/imago/package.json +++ b/packages/imago/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/imago", - "version": "0.6.9", + "version": "0.6.10", "description": "JSON & API-based declarative and extensible image processing trees/pipelines", "type": "module", "module": "./index.js", @@ -37,7 +37,7 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/associative": "^6.3.52", + "@thi.ng/associative": "^6.3.53", "@thi.ng/blurhash": "^0.1.19", "@thi.ng/checks": "^3.5.5", "@thi.ng/date": "^2.7.12", @@ -45,14 +45,14 @@ "@thi.ng/errors": "^2.5.2", "@thi.ng/file-io": "^1.3.12", "@thi.ng/logger": "^3.0.7", - "@thi.ng/pixel": "^6.1.24", - "@thi.ng/pixel-dither": "^1.1.122", + "@thi.ng/pixel": "^6.1.25", + "@thi.ng/pixel-dither": "^1.1.123", "@thi.ng/prefixes": "^2.3.14", "sharp": "^0.33.3" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", - "@thi.ng/vectors": "^7.10.23", + "@thi.ng/vectors": "^7.10.24", "esbuild": "^0.20.2", "rimraf": "^5.0.5", "typedoc": "^0.25.12", diff --git a/packages/imgui/package.json b/packages/imgui/package.json index 40074ecb33..1628b53e12 100644 --- a/packages/imgui/package.json +++ b/packages/imgui/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/imgui", - "version": "2.2.50", + "version": "2.2.51", "description": "Immediate mode GUI with flexible state handling & data only shape output", "type": "module", "module": "./index.js", @@ -38,14 +38,14 @@ "dependencies": { "@thi.ng/api": "^8.9.31", "@thi.ng/checks": "^3.5.5", - "@thi.ng/geom": "^6.1.2", - "@thi.ng/geom-api": "^4.0.2", - "@thi.ng/geom-isec": "^3.0.2", - "@thi.ng/geom-tessellate": "^2.1.124", - "@thi.ng/layout": "^3.0.32", + "@thi.ng/geom": "^6.1.3", + "@thi.ng/geom-api": "^4.0.3", + "@thi.ng/geom-isec": "^3.0.3", + "@thi.ng/geom-tessellate": "^2.1.125", + "@thi.ng/layout": "^3.0.33", "@thi.ng/math": "^5.10.8", - "@thi.ng/transducers": "^8.9.16", - "@thi.ng/vectors": "^7.10.23" + "@thi.ng/transducers": "^8.9.17", + "@thi.ng/vectors": "^7.10.24" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/iterators/package.json b/packages/iterators/package.json index b6a6393ba3..83e099295c 100644 --- a/packages/iterators/package.json +++ b/packages/iterators/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/iterators", - "version": "6.1.110", + "version": "6.1.111", "description": "Clojure inspired, composable ES6 iterators & generators", "type": "module", "module": "./index.js", @@ -37,7 +37,7 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/dcons": "^3.2.105", + "@thi.ng/dcons": "^3.2.106", "@thi.ng/errors": "^2.5.2" }, "devDependencies": { diff --git a/packages/k-means/package.json b/packages/k-means/package.json index de81daa9d9..454850b8ed 100644 --- a/packages/k-means/package.json +++ b/packages/k-means/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/k-means", - "version": "0.6.80", + "version": "0.6.81", "description": "Configurable k-means & k-medians (with k-means++ initialization) for n-D vectors", "type": "module", "module": "./index.js", @@ -37,10 +37,10 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/distance": "^2.4.65", + "@thi.ng/distance": "^2.4.66", "@thi.ng/errors": "^2.5.2", "@thi.ng/random": "^3.7.1", - "@thi.ng/vectors": "^7.10.23" + "@thi.ng/vectors": "^7.10.24" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/layout/package.json b/packages/layout/package.json index 682792e920..8ab7271075 100644 --- a/packages/layout/package.json +++ b/packages/layout/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/layout", - "version": "3.0.32", + "version": "3.0.33", "description": "Configurable nested 2D grid layout generators", "type": "module", "module": "./index.js", @@ -36,7 +36,7 @@ "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts" }, "dependencies": { - "@thi.ng/arrays": "^2.8.12", + "@thi.ng/arrays": "^2.9.0", "@thi.ng/checks": "^3.5.5" }, "devDependencies": { diff --git a/packages/leb128/package.json b/packages/leb128/package.json index 5d08ccb9f9..5b7d89d037 100644 --- a/packages/leb128/package.json +++ b/packages/leb128/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/leb128", - "version": "3.0.83", + "version": "3.0.84", "description": "WASM based LEB128 encoder / decoder (signed & unsigned)", "type": "module", "module": "./index.js", @@ -39,7 +39,7 @@ "dependencies": { "@thi.ng/checks": "^3.5.5", "@thi.ng/errors": "^2.5.2", - "@thi.ng/transducers-binary": "^2.1.112" + "@thi.ng/transducers-binary": "^2.1.113" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/lsys/package.json b/packages/lsys/package.json index bbcdb8e518..f2641e46fd 100644 --- a/packages/lsys/package.json +++ b/packages/lsys/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/lsys", - "version": "2.1.119", + "version": "2.1.120", "description": "Functional, extensible L-System architecture w/ support for probabilistic rules", "type": "module", "module": "./index.js", @@ -41,8 +41,8 @@ "@thi.ng/errors": "^2.5.2", "@thi.ng/math": "^5.10.8", "@thi.ng/random": "^3.7.1", - "@thi.ng/transducers": "^8.9.16", - "@thi.ng/vectors": "^7.10.23" + "@thi.ng/transducers": "^8.9.17", + "@thi.ng/vectors": "^7.10.24" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/markdown-table/package.json b/packages/markdown-table/package.json index 740ee146c5..4752fd30c2 100644 --- a/packages/markdown-table/package.json +++ b/packages/markdown-table/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/markdown-table", - "version": "0.3.114", + "version": "0.3.115", "description": "Markdown table formatter/generator with support for column alignments", "type": "module", "module": "./index.js", @@ -41,7 +41,7 @@ "@thi.ng/compose": "^2.1.71", "@thi.ng/errors": "^2.5.2", "@thi.ng/strings": "^3.7.28", - "@thi.ng/transducers": "^8.9.16" + "@thi.ng/transducers": "^8.9.17" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/matrices/package.json b/packages/matrices/package.json index e404e93cde..8738bb28d3 100644 --- a/packages/matrices/package.json +++ b/packages/matrices/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/matrices", - "version": "2.3.29", + "version": "2.3.30", "description": "Matrix & quaternion operations for 2D/3D geometry processing", "type": "module", "module": "./index.js", @@ -39,7 +39,7 @@ "@thi.ng/api": "^8.9.31", "@thi.ng/checks": "^3.5.5", "@thi.ng/math": "^5.10.8", - "@thi.ng/vectors": "^7.10.23" + "@thi.ng/vectors": "^7.10.24" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/meta-css/package.json b/packages/meta-css/package.json index 0a6fb35674..080090f040 100644 --- a/packages/meta-css/package.json +++ b/packages/meta-css/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/meta-css", - "version": "0.10.0", + "version": "0.10.1", "description": "Data-driven CSS framework codegen, transpiler & bundler", "type": "module", "module": "./index.js", @@ -43,18 +43,18 @@ "dependencies": { "@thi.ng/api": "^8.9.31", "@thi.ng/args": "^2.3.28", - "@thi.ng/arrays": "^2.8.12", + "@thi.ng/arrays": "^2.9.0", "@thi.ng/checks": "^3.5.5", "@thi.ng/compare": "^2.2.27", "@thi.ng/errors": "^2.5.2", "@thi.ng/file-io": "^1.3.12", - "@thi.ng/hiccup-css": "^2.7.1", + "@thi.ng/hiccup-css": "^2.7.2", "@thi.ng/logger": "^3.0.7", "@thi.ng/memoize": "^3.2.0", - "@thi.ng/rstream": "^8.3.17", + "@thi.ng/rstream": "^8.3.18", "@thi.ng/strings": "^3.7.28", "@thi.ng/text-format": "^2.2.0", - "@thi.ng/transducers": "^8.9.16" + "@thi.ng/transducers": "^8.9.17" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/pixel-dither/package.json b/packages/pixel-dither/package.json index c989b7f165..8612065341 100644 --- a/packages/pixel-dither/package.json +++ b/packages/pixel-dither/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/pixel-dither", - "version": "1.1.122", + "version": "1.1.123", "description": "Extensible image dithering w/ various algorithm presets", "type": "module", "module": "./index.js", @@ -38,7 +38,7 @@ "dependencies": { "@thi.ng/checks": "^3.5.5", "@thi.ng/math": "^5.10.8", - "@thi.ng/pixel": "^6.1.24" + "@thi.ng/pixel": "^6.1.25" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/pixel-io-geotiff/package.json b/packages/pixel-io-geotiff/package.json index 5d2ec8c28f..5c0dbcd311 100644 --- a/packages/pixel-io-geotiff/package.json +++ b/packages/pixel-io-geotiff/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/pixel-io-geotiff", - "version": "0.1.83", + "version": "0.1.84", "description": "GeoTIFF reader support for @thi.ng/pixel", "type": "module", "module": "./index.js", @@ -37,7 +37,7 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/pixel": "^6.1.24", + "@thi.ng/pixel": "^6.1.25", "geotiff": "2.1.3" }, "devDependencies": { diff --git a/packages/pixel-io-netpbm/package.json b/packages/pixel-io-netpbm/package.json index e09ccc3195..93781318c3 100644 --- a/packages/pixel-io-netpbm/package.json +++ b/packages/pixel-io-netpbm/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/pixel-io-netpbm", - "version": "2.1.122", + "version": "2.1.123", "description": "Multi-format NetPBM reader & writer support for @thi.ng/pixel", "type": "module", "module": "./index.js", @@ -38,7 +38,7 @@ "dependencies": { "@thi.ng/api": "^8.9.31", "@thi.ng/errors": "^2.5.2", - "@thi.ng/pixel": "^6.1.24" + "@thi.ng/pixel": "^6.1.25" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/pixel-io-pfm/package.json b/packages/pixel-io-pfm/package.json index 3f853a5e86..4e19adc45f 100644 --- a/packages/pixel-io-pfm/package.json +++ b/packages/pixel-io-pfm/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/pixel-io-pfm", - "version": "0.1.63", + "version": "0.1.64", "description": "Portable FloatMap image format support for @thi.ng/pixel", "type": "module", "module": "./index.js", @@ -37,7 +37,7 @@ }, "dependencies": { "@thi.ng/errors": "^2.5.2", - "@thi.ng/pixel": "^6.1.24" + "@thi.ng/pixel": "^6.1.25" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/pixel/package.json b/packages/pixel/package.json index b16ce102a4..30bf0f945b 100644 --- a/packages/pixel/package.json +++ b/packages/pixel/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/pixel", - "version": "6.1.24", + "version": "6.1.25", "description": "Typedarray integer & float pixel buffers w/ customizable formats, blitting, drawing, convolution", "type": "module", "module": "./index.js", @@ -40,9 +40,9 @@ "@thi.ng/binary": "^3.4.20", "@thi.ng/canvas": "^0.2.14", "@thi.ng/checks": "^3.5.5", - "@thi.ng/distance": "^2.4.65", + "@thi.ng/distance": "^2.4.66", "@thi.ng/errors": "^2.5.2", - "@thi.ng/k-means": "^0.6.80", + "@thi.ng/k-means": "^0.6.81", "@thi.ng/math": "^5.10.8", "@thi.ng/porter-duff": "^2.1.74" }, diff --git a/packages/poisson/package.json b/packages/poisson/package.json index 4ebda483cb..303459e735 100644 --- a/packages/poisson/package.json +++ b/packages/poisson/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/poisson", - "version": "3.1.80", + "version": "3.1.81", "description": "nD Stratified grid and Poisson-disc sampling w/ support for spatial density functions and custom PRNGs", "type": "module", "module": "./index.js", @@ -38,9 +38,9 @@ "dependencies": { "@thi.ng/api": "^8.9.31", "@thi.ng/checks": "^3.5.5", - "@thi.ng/geom-api": "^4.0.2", + "@thi.ng/geom-api": "^4.0.3", "@thi.ng/random": "^3.7.1", - "@thi.ng/vectors": "^7.10.23" + "@thi.ng/vectors": "^7.10.24" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/ramp/package.json b/packages/ramp/package.json index ff332ad41b..6e5722a27a 100644 --- a/packages/ramp/package.json +++ b/packages/ramp/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/ramp", - "version": "3.1.15", + "version": "3.1.16", "description": "Extensible keyframe interpolation/tweening of arbitrary, nested types", "type": "module", "module": "./index.js", @@ -37,12 +37,12 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/arrays": "^2.8.12", + "@thi.ng/arrays": "^2.9.0", "@thi.ng/compare": "^2.2.27", "@thi.ng/errors": "^2.5.2", "@thi.ng/math": "^5.10.8", - "@thi.ng/transducers": "^8.9.16", - "@thi.ng/vectors": "^7.10.23" + "@thi.ng/transducers": "^8.9.17", + "@thi.ng/vectors": "^7.10.24" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/rasterize/package.json b/packages/rasterize/package.json index 4e3a4b1054..47ea52edc4 100644 --- a/packages/rasterize/package.json +++ b/packages/rasterize/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rasterize", - "version": "1.0.94", + "version": "1.0.95", "description": "2D shape drawing & rasterization", "type": "module", "module": "./index.js", @@ -39,10 +39,10 @@ "@thi.ng/api": "^8.9.31", "@thi.ng/checks": "^3.5.5", "@thi.ng/equiv": "^2.1.53", - "@thi.ng/grid-iterators": "^4.0.66", + "@thi.ng/grid-iterators": "^4.0.67", "@thi.ng/porter-duff": "^2.1.74", "@thi.ng/random": "^3.7.1", - "@thi.ng/transducers": "^8.9.16" + "@thi.ng/transducers": "^8.9.17" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/rdom-canvas/package.json b/packages/rdom-canvas/package.json index 7ad5fc84d9..3058dca0d7 100644 --- a/packages/rdom-canvas/package.json +++ b/packages/rdom-canvas/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rdom-canvas", - "version": "0.5.79", + "version": "0.5.80", "description": "@thi.ng/rdom component wrapper for @thi.ng/hiccup-canvas and declarative canvas drawing", "type": "module", "module": "./index.js", @@ -37,12 +37,12 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/associative": "^6.3.52", + "@thi.ng/associative": "^6.3.53", "@thi.ng/canvas": "^0.2.14", "@thi.ng/checks": "^3.5.5", - "@thi.ng/hiccup-canvas": "^2.5.31", - "@thi.ng/rdom": "^1.1.19", - "@thi.ng/rstream": "^8.3.17" + "@thi.ng/hiccup-canvas": "^2.5.32", + "@thi.ng/rdom": "^1.1.20", + "@thi.ng/rstream": "^8.3.18" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/rdom-components/package.json b/packages/rdom-components/package.json index a071aa9c07..3d3e5ea20c 100644 --- a/packages/rdom-components/package.json +++ b/packages/rdom-components/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rdom-components", - "version": "0.6.72", + "version": "0.6.73", "description": "Collection of unstyled, customizable components for @thi.ng/rdom", "type": "module", "module": "./index.js", @@ -37,12 +37,12 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/associative": "^6.3.52", + "@thi.ng/associative": "^6.3.53", "@thi.ng/hiccup-html": "^2.5.0", - "@thi.ng/rdom": "^1.1.19", - "@thi.ng/rstream": "^8.3.17", + "@thi.ng/rdom": "^1.1.20", + "@thi.ng/rstream": "^8.3.18", "@thi.ng/strings": "^3.7.28", - "@thi.ng/transducers": "^8.9.16" + "@thi.ng/transducers": "^8.9.17" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/rdom-forms/CHANGELOG.md b/packages/rdom-forms/CHANGELOG.md index 4c71e59f4e..4481861b67 100644 --- a/packages/rdom-forms/CHANGELOG.md +++ b/packages/rdom-forms/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log -- **Last updated**: 2024-03-27T09:53:45Z +- **Last updated**: 2024-03-28T10:57:28Z - **Generator**: [thi.ng/monopub](https://thi.ng/monopub) All notable changes to this project will be documented in this file. @@ -9,6 +9,12 @@ See [Conventional Commits](https://conventionalcommits.org/) for commit guidelin **Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes and/or version bumps of transitive dependencies. +### [0.3.1](https://github.com/thi-ng/umbrella/tree/@thi.ng/rdom-forms@0.3.1) (2024-03-28) + +#### 🩹 Bug fixes + +- fix multiFile() handling/detection ([5339339](https://github.com/thi-ng/umbrella/commit/5339339)) + ## [0.3.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/rdom-forms@0.3.0) (2024-03-27) #### 🚀 Features diff --git a/packages/rdom-forms/package.json b/packages/rdom-forms/package.json index 4fbb772d5b..fcffef1fbf 100644 --- a/packages/rdom-forms/package.json +++ b/packages/rdom-forms/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rdom-forms", - "version": "0.3.0", + "version": "0.3.1", "description": "Data-driven declarative & extensible HTML form generation", "type": "module", "module": "./index.js", @@ -40,8 +40,8 @@ "@thi.ng/checks": "^3.5.5", "@thi.ng/defmulti": "^3.0.34", "@thi.ng/hiccup-html": "^2.5.0", - "@thi.ng/rdom": "^1.1.19", - "@thi.ng/rstream": "^8.3.17" + "@thi.ng/rdom": "^1.1.20", + "@thi.ng/rstream": "^8.3.18" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/rdom/package.json b/packages/rdom/package.json index 935ae4125d..9faaeef300 100644 --- a/packages/rdom/package.json +++ b/packages/rdom/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rdom", - "version": "1.1.19", + "version": "1.1.20", "description": "Lightweight, reactive, VDOM-less UI/DOM components with async lifecycle and @thi.ng/hiccup compatible", "type": "module", "module": "./index.js", @@ -43,7 +43,7 @@ "@thi.ng/hiccup": "^5.1.26", "@thi.ng/paths": "^5.1.76", "@thi.ng/prefixes": "^2.3.14", - "@thi.ng/rstream": "^8.3.17", + "@thi.ng/rstream": "^8.3.18", "@thi.ng/strings": "^3.7.28" }, "devDependencies": { diff --git a/packages/rstream-csp/package.json b/packages/rstream-csp/package.json index ecb06564fe..c367fbf39b 100644 --- a/packages/rstream-csp/package.json +++ b/packages/rstream-csp/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-csp", - "version": "3.1.115", + "version": "3.1.116", "description": "@thi.ng/csp bridge module for @thi.ng/rstream", "type": "module", "module": "./index.js", @@ -36,8 +36,8 @@ "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts" }, "dependencies": { - "@thi.ng/csp": "^2.1.110", - "@thi.ng/rstream": "^8.3.17" + "@thi.ng/csp": "^2.1.111", + "@thi.ng/rstream": "^8.3.18" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/rstream-dot/package.json b/packages/rstream-dot/package.json index 4033b6e51e..13954d9819 100644 --- a/packages/rstream-dot/package.json +++ b/packages/rstream-dot/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-dot", - "version": "3.0.68", + "version": "3.0.69", "description": "Graphviz DOT conversion of @thi.ng/rstream dataflow graph topologies", "type": "module", "module": "./index.js", @@ -36,9 +36,9 @@ "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts" }, "dependencies": { - "@thi.ng/rstream": "^8.3.17", + "@thi.ng/rstream": "^8.3.18", "@thi.ng/strings": "^3.7.28", - "@thi.ng/transducers": "^8.9.16" + "@thi.ng/transducers": "^8.9.17" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/rstream-gestures/package.json b/packages/rstream-gestures/package.json index 55082d518b..87c7f12e0d 100644 --- a/packages/rstream-gestures/package.json +++ b/packages/rstream-gestures/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-gestures", - "version": "5.0.66", + "version": "5.0.67", "description": "Unified mouse, mouse wheel & multi-touch event stream abstraction", "type": "module", "module": "./index.js", @@ -43,8 +43,8 @@ "@thi.ng/api": "^8.9.31", "@thi.ng/checks": "^3.5.5", "@thi.ng/math": "^5.10.8", - "@thi.ng/rstream": "^8.3.17", - "@thi.ng/transducers": "^8.9.16" + "@thi.ng/rstream": "^8.3.18", + "@thi.ng/transducers": "^8.9.17" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/rstream-graph/package.json b/packages/rstream-graph/package.json index 095e768c10..d34f8394f5 100644 --- a/packages/rstream-graph/package.json +++ b/packages/rstream-graph/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-graph", - "version": "4.1.120", + "version": "4.1.121", "description": "Declarative dataflow graph construction for @thi.ng/rstream", "type": "module", "module": "./index.js", @@ -42,8 +42,8 @@ "@thi.ng/errors": "^2.5.2", "@thi.ng/paths": "^5.1.76", "@thi.ng/resolve-map": "^7.1.69", - "@thi.ng/rstream": "^8.3.17", - "@thi.ng/transducers": "^8.9.16" + "@thi.ng/rstream": "^8.3.18", + "@thi.ng/transducers": "^8.9.17" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/rstream-log-file/package.json b/packages/rstream-log-file/package.json index 6a3994e00c..40dea59ea6 100644 --- a/packages/rstream-log-file/package.json +++ b/packages/rstream-log-file/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-log-file", - "version": "2.1.115", + "version": "2.1.116", "description": "File output handler for structured, multilevel & hierarchical loggers based on @thi.ng/rstream", "type": "module", "module": "./index.js", @@ -36,7 +36,7 @@ "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts" }, "dependencies": { - "@thi.ng/rstream": "^8.3.17" + "@thi.ng/rstream": "^8.3.18" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/rstream-log/package.json b/packages/rstream-log/package.json index ff3b449e14..d37fd5eee5 100644 --- a/packages/rstream-log/package.json +++ b/packages/rstream-log/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-log", - "version": "5.1.10", + "version": "5.1.11", "description": "Structured, multilevel & hierarchical loggers based on @thi.ng/rstream", "type": "module", "module": "./index.js", @@ -39,9 +39,9 @@ "@thi.ng/api": "^8.9.31", "@thi.ng/checks": "^3.5.5", "@thi.ng/logger": "^3.0.7", - "@thi.ng/rstream": "^8.3.17", + "@thi.ng/rstream": "^8.3.18", "@thi.ng/strings": "^3.7.28", - "@thi.ng/transducers": "^8.9.16" + "@thi.ng/transducers": "^8.9.17" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/rstream-query/package.json b/packages/rstream-query/package.json index 783e343fbd..582d220d26 100644 --- a/packages/rstream-query/package.json +++ b/packages/rstream-query/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-query", - "version": "2.1.118", + "version": "2.1.119", "description": "@thi.ng/rstream based triple store & reactive query engine", "type": "module", "module": "./index.js", @@ -37,15 +37,15 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/associative": "^6.3.52", + "@thi.ng/associative": "^6.3.53", "@thi.ng/checks": "^3.5.5", "@thi.ng/equiv": "^2.1.53", "@thi.ng/errors": "^2.5.2", "@thi.ng/logger": "^3.0.7", "@thi.ng/math": "^5.10.8", - "@thi.ng/rstream": "^8.3.17", - "@thi.ng/rstream-dot": "^3.0.68", - "@thi.ng/transducers": "^8.9.16" + "@thi.ng/rstream": "^8.3.18", + "@thi.ng/rstream-dot": "^3.0.69", + "@thi.ng/transducers": "^8.9.17" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/rstream/package.json b/packages/rstream/package.json index ca4ed810f0..c2e6dd6ad3 100644 --- a/packages/rstream/package.json +++ b/packages/rstream/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream", - "version": "8.3.17", + "version": "8.3.18", "description": "Reactive streams & subscription primitives for constructing dataflow graphs / pipelines", "type": "module", "module": "./index.js", @@ -41,13 +41,13 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/arrays": "^2.8.12", - "@thi.ng/associative": "^6.3.52", + "@thi.ng/arrays": "^2.9.0", + "@thi.ng/associative": "^6.3.53", "@thi.ng/atom": "^5.2.41", "@thi.ng/checks": "^3.5.5", "@thi.ng/errors": "^2.5.2", "@thi.ng/logger": "^3.0.7", - "@thi.ng/transducers": "^8.9.16" + "@thi.ng/transducers": "^8.9.17" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/sax/package.json b/packages/sax/package.json index 41120ee792..237f787616 100644 --- a/packages/sax/package.json +++ b/packages/sax/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/sax", - "version": "2.1.114", + "version": "2.1.115", "description": "Transducer-based, SAX-like, non-validating, speedy & tiny XML parser", "type": "module", "module": "./index.js", @@ -38,8 +38,8 @@ "dependencies": { "@thi.ng/api": "^8.9.31", "@thi.ng/strings": "^3.7.28", - "@thi.ng/transducers": "^8.9.16", - "@thi.ng/transducers-fsm": "^2.2.79" + "@thi.ng/transducers": "^8.9.17", + "@thi.ng/transducers-fsm": "^2.2.80" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/scenegraph/package.json b/packages/scenegraph/package.json index a81f824a75..1dfc541969 100644 --- a/packages/scenegraph/package.json +++ b/packages/scenegraph/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/scenegraph", - "version": "1.0.36", + "version": "1.0.37", "description": "Extensible 2D/3D scene graph with @thi.ng/hiccup-canvas support", "type": "module", "module": "./index.js", @@ -39,8 +39,8 @@ "@thi.ng/api": "^8.9.31", "@thi.ng/checks": "^3.5.5", "@thi.ng/errors": "^2.5.2", - "@thi.ng/matrices": "^2.3.29", - "@thi.ng/vectors": "^7.10.23" + "@thi.ng/matrices": "^2.3.30", + "@thi.ng/vectors": "^7.10.24" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/shader-ast-glsl/package.json b/packages/shader-ast-glsl/package.json index d793756e02..63b1a144d4 100644 --- a/packages/shader-ast-glsl/package.json +++ b/packages/shader-ast-glsl/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/shader-ast-glsl", - "version": "0.4.115", + "version": "0.4.116", "description": "Customizable GLSL codegen for @thi.ng/shader-ast", "type": "module", "module": "./index.js", @@ -39,7 +39,7 @@ "@thi.ng/api": "^8.9.31", "@thi.ng/checks": "^3.5.5", "@thi.ng/errors": "^2.5.2", - "@thi.ng/shader-ast": "^0.15.7" + "@thi.ng/shader-ast": "^0.15.8" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/shader-ast-js/package.json b/packages/shader-ast-js/package.json index 06f9184cab..ba5f18f6cb 100644 --- a/packages/shader-ast-js/package.json +++ b/packages/shader-ast-js/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/shader-ast-js", - "version": "1.1.27", + "version": "1.1.28", "description": "Customizable JS codegen, compiler & runtime for @thi.ng/shader-ast", "type": "module", "module": "./index.js", @@ -40,10 +40,10 @@ "@thi.ng/checks": "^3.5.5", "@thi.ng/errors": "^2.5.2", "@thi.ng/math": "^5.10.8", - "@thi.ng/matrices": "^2.3.29", - "@thi.ng/pixel": "^6.1.24", - "@thi.ng/shader-ast": "^0.15.7", - "@thi.ng/vectors": "^7.10.23" + "@thi.ng/matrices": "^2.3.30", + "@thi.ng/pixel": "^6.1.25", + "@thi.ng/shader-ast": "^0.15.8", + "@thi.ng/vectors": "^7.10.24" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/shader-ast-optimize/package.json b/packages/shader-ast-optimize/package.json index 906ebd21d2..abfc0f5698 100644 --- a/packages/shader-ast-optimize/package.json +++ b/packages/shader-ast-optimize/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/shader-ast-optimize", - "version": "0.4.7", + "version": "0.4.8", "description": "Shader AST code optimization passes/strategies", "type": "module", "module": "./index.js", @@ -41,7 +41,7 @@ "@thi.ng/errors": "^2.5.2", "@thi.ng/logger": "^3.0.7", "@thi.ng/math": "^5.10.8", - "@thi.ng/shader-ast": "^0.15.7" + "@thi.ng/shader-ast": "^0.15.8" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/shader-ast-stdlib/package.json b/packages/shader-ast-stdlib/package.json index 8a0da9adba..cb846edfba 100644 --- a/packages/shader-ast-stdlib/package.json +++ b/packages/shader-ast-stdlib/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/shader-ast-stdlib", - "version": "0.18.7", + "version": "0.18.8", "description": "Function collection for modular GPGPU / shader programming with @thi.ng/shader-ast", "type": "module", "module": "./index.js", @@ -40,7 +40,7 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/shader-ast": "^0.15.7" + "@thi.ng/shader-ast": "^0.15.8" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/shader-ast/package.json b/packages/shader-ast/package.json index d3774a68d6..014b4e68fc 100644 --- a/packages/shader-ast/package.json +++ b/packages/shader-ast/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/shader-ast", - "version": "0.15.7", + "version": "0.15.8", "description": "DSL to define shader code in TypeScript and cross-compile to GLSL, JS and other targets", "type": "module", "module": "./index.js", @@ -42,7 +42,7 @@ "@thi.ng/api": "^8.9.31", "@thi.ng/checks": "^3.5.5", "@thi.ng/defmulti": "^3.0.34", - "@thi.ng/dgraph": "^2.1.110", + "@thi.ng/dgraph": "^2.1.111", "@thi.ng/errors": "^2.5.2", "@thi.ng/logger": "^3.0.7" }, diff --git a/packages/simd/package.json b/packages/simd/package.json index d60b982425..4016755d2a 100644 --- a/packages/simd/package.json +++ b/packages/simd/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/simd", - "version": "0.6.112", + "version": "0.6.113", "description": "WASM based SIMD vector operations for batch processing", "type": "module", "module": "./index.js", @@ -37,7 +37,7 @@ "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts" }, "dependencies": { - "@thi.ng/transducers-binary": "^2.1.112" + "@thi.ng/transducers-binary": "^2.1.113" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/soa/package.json b/packages/soa/package.json index 73f7c3fb4f..eb63bc1bb4 100644 --- a/packages/soa/package.json +++ b/packages/soa/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/soa", - "version": "0.4.119", + "version": "0.4.120", "description": "SOA & AOS memory mapped structured views with optional & extensible serialization", "type": "module", "module": "./index.js", @@ -39,8 +39,8 @@ "@thi.ng/api": "^8.9.31", "@thi.ng/binary": "^3.4.20", "@thi.ng/errors": "^2.5.2", - "@thi.ng/transducers-binary": "^2.1.112", - "@thi.ng/vectors": "^7.10.23" + "@thi.ng/transducers-binary": "^2.1.113", + "@thi.ng/vectors": "^7.10.24" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/sparse/package.json b/packages/sparse/package.json index 206db5e68e..3f6a08f1e4 100644 --- a/packages/sparse/package.json +++ b/packages/sparse/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/sparse", - "version": "0.3.110", + "version": "0.3.111", "description": "Sparse vector & matrix implementations", "type": "module", "module": "./index.js", @@ -37,7 +37,7 @@ "dependencies": { "@thi.ng/api": "^8.9.31", "@thi.ng/errors": "^2.5.2", - "@thi.ng/transducers": "^8.9.16" + "@thi.ng/transducers": "^8.9.17" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/system/package.json b/packages/system/package.json index 8c8742d550..ac7c4ff5d6 100644 --- a/packages/system/package.json +++ b/packages/system/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/system", - "version": "3.1.5", + "version": "3.1.6", "description": "Minimal and explicit dependency-injection & lifecycle container for stateful app components", "type": "module", "module": "./index.js", @@ -40,7 +40,7 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/dgraph": "^2.1.110", + "@thi.ng/dgraph": "^2.1.111", "@thi.ng/logger": "^3.0.7" }, "devDependencies": { diff --git a/packages/tangle/package.json b/packages/tangle/package.json index 30ca70522a..562535b9b1 100644 --- a/packages/tangle/package.json +++ b/packages/tangle/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/tangle", - "version": "0.2.7", + "version": "0.2.8", "description": "Literate programming code block tangling / codegen utility, inspired by org-mode & noweb", "type": "module", "module": "./index.js", @@ -46,7 +46,7 @@ "@thi.ng/file-io": "^1.3.12", "@thi.ng/logger": "^3.0.7", "@thi.ng/strings": "^3.7.28", - "@thi.ng/transducers": "^8.9.16" + "@thi.ng/transducers": "^8.9.17" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/text-canvas/package.json b/packages/text-canvas/package.json index 4201b32298..9a44d460ae 100644 --- a/packages/text-canvas/package.json +++ b/packages/text-canvas/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/text-canvas", - "version": "3.0.15", + "version": "3.0.16", "description": "Text based canvas, drawing, plotting, tables with arbitrary formatting (incl. ANSI/HTML)", "type": "module", "module": "./index.js", @@ -37,14 +37,14 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/arrays": "^2.8.12", + "@thi.ng/arrays": "^2.9.0", "@thi.ng/checks": "^3.5.5", "@thi.ng/errors": "^2.5.2", - "@thi.ng/geom-clip-line": "^2.3.81", + "@thi.ng/geom-clip-line": "^2.3.82", "@thi.ng/math": "^5.10.8", "@thi.ng/strings": "^3.7.28", "@thi.ng/text-format": "^2.2.0", - "@thi.ng/transducers": "^8.9.16" + "@thi.ng/transducers": "^8.9.17" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/timestep/package.json b/packages/timestep/package.json index da78325160..7fd8b29dc4 100644 --- a/packages/timestep/package.json +++ b/packages/timestep/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/timestep", - "version": "0.5.41", + "version": "0.5.42", "description": "Deterministic fixed timestep simulation updates with state interpolation", "type": "module", "module": "./index.js", @@ -38,7 +38,7 @@ "dependencies": { "@thi.ng/api": "^8.9.31", "@thi.ng/math": "^5.10.8", - "@thi.ng/vectors": "^7.10.23" + "@thi.ng/vectors": "^7.10.24" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/transclude/package.json b/packages/transclude/package.json index 11c9e1f59d..7caa7a2f08 100644 --- a/packages/transclude/package.json +++ b/packages/transclude/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transclude", - "version": "0.1.82", + "version": "0.1.83", "description": "Extensible functional template engine for text document generation, incl. various high-level Markdown features", "type": "module", "module": "./index.js", @@ -41,7 +41,7 @@ "@thi.ng/file-io": "^1.3.12", "@thi.ng/logger": "^3.0.7", "@thi.ng/strings": "^3.7.28", - "@thi.ng/transducers": "^8.9.16" + "@thi.ng/transducers": "^8.9.17" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/transducers-binary/package.json b/packages/transducers-binary/package.json index 0cf3f87282..bbffeb2c04 100644 --- a/packages/transducers-binary/package.json +++ b/packages/transducers-binary/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers-binary", - "version": "2.1.112", + "version": "2.1.113", "description": "Binary data related transducers & reducers", "type": "module", "module": "./index.js", @@ -42,7 +42,7 @@ "@thi.ng/hex": "^2.3.41", "@thi.ng/random": "^3.7.1", "@thi.ng/strings": "^3.7.28", - "@thi.ng/transducers": "^8.9.16" + "@thi.ng/transducers": "^8.9.17" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/transducers-fsm/package.json b/packages/transducers-fsm/package.json index 1f97292b16..fa44a89d68 100644 --- a/packages/transducers-fsm/package.json +++ b/packages/transducers-fsm/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers-fsm", - "version": "2.2.79", + "version": "2.2.80", "description": "Transducer-based Finite State Machine transformer", "type": "module", "module": "./index.js", @@ -37,7 +37,7 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/transducers": "^8.9.16" + "@thi.ng/transducers": "^8.9.17" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/transducers-hdom/package.json b/packages/transducers-hdom/package.json index d7accad306..5ef710aeef 100644 --- a/packages/transducers-hdom/package.json +++ b/packages/transducers-hdom/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers-hdom", - "version": "3.1.120", + "version": "3.1.121", "description": "Transducer based UI updater for @thi.ng/hdom", "type": "module", "module": "./index.js", @@ -38,7 +38,7 @@ "dependencies": { "@thi.ng/hdom": "^9.4.28", "@thi.ng/hiccup": "^5.1.26", - "@thi.ng/transducers": "^8.9.16" + "@thi.ng/transducers": "^8.9.17" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/transducers-patch/package.json b/packages/transducers-patch/package.json index fd31f4f91b..61c404bdae 100644 --- a/packages/transducers-patch/package.json +++ b/packages/transducers-patch/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers-patch", - "version": "0.4.110", + "version": "0.4.111", "description": "Reducers for patch-based, immutable-by-default array & object editing", "type": "module", "module": "./index.js", @@ -40,7 +40,7 @@ "@thi.ng/checks": "^3.5.5", "@thi.ng/errors": "^2.5.2", "@thi.ng/paths": "^5.1.76", - "@thi.ng/transducers": "^8.9.16" + "@thi.ng/transducers": "^8.9.17" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/transducers-stats/package.json b/packages/transducers-stats/package.json index 91d778f306..4f708fcbef 100644 --- a/packages/transducers-stats/package.json +++ b/packages/transducers-stats/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers-stats", - "version": "2.1.110", + "version": "2.1.111", "description": "Transducers for statistical / technical analysis", "type": "module", "module": "./index.js", @@ -37,9 +37,9 @@ }, "dependencies": { "@thi.ng/checks": "^3.5.5", - "@thi.ng/dcons": "^3.2.105", + "@thi.ng/dcons": "^3.2.106", "@thi.ng/errors": "^2.5.2", - "@thi.ng/transducers": "^8.9.16" + "@thi.ng/transducers": "^8.9.17" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/transducers/package.json b/packages/transducers/package.json index fd9c5e45ee..c558326aa5 100644 --- a/packages/transducers/package.json +++ b/packages/transducers/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers", - "version": "8.9.16", + "version": "8.9.17", "description": "Lightweight transducer implementations for ES6 / TypeScript", "type": "module", "module": "./index.js", @@ -41,7 +41,7 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/arrays": "^2.8.12", + "@thi.ng/arrays": "^2.9.0", "@thi.ng/checks": "^3.5.5", "@thi.ng/compare": "^2.2.27", "@thi.ng/compose": "^2.1.71", diff --git a/packages/vector-pools/package.json b/packages/vector-pools/package.json index 620278569c..4adc2402e0 100644 --- a/packages/vector-pools/package.json +++ b/packages/vector-pools/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/vector-pools", - "version": "3.1.121", + "version": "3.1.122", "description": "Data structures for managing & working with strided, memory mapped vectors", "type": "module", "module": "./index.js", @@ -42,8 +42,8 @@ "@thi.ng/errors": "^2.5.2", "@thi.ng/logger": "^3.0.7", "@thi.ng/malloc": "^6.1.77", - "@thi.ng/transducers": "^8.9.16", - "@thi.ng/vectors": "^7.10.23" + "@thi.ng/transducers": "^8.9.17", + "@thi.ng/vectors": "^7.10.24" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/vectors/package.json b/packages/vectors/package.json index 481b185e2b..2d7584964f 100644 --- a/packages/vectors/package.json +++ b/packages/vectors/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/vectors", - "version": "7.10.23", + "version": "7.10.24", "description": "Optimized 2d/3d/4d and arbitrary length vector operations, support for memory mapping/layouts", "type": "module", "module": "./index.js", @@ -45,7 +45,7 @@ "@thi.ng/memoize": "^3.2.0", "@thi.ng/random": "^3.7.1", "@thi.ng/strings": "^3.7.28", - "@thi.ng/transducers": "^8.9.16" + "@thi.ng/transducers": "^8.9.17" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/viz/package.json b/packages/viz/package.json index 7096328823..4d6696ab73 100644 --- a/packages/viz/package.json +++ b/packages/viz/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/viz", - "version": "0.6.46", + "version": "0.6.47", "description": "Declarative, functional & multi-format data visualization toolkit based around @thi.ng/hiccup", "type": "module", "module": "./index.js", @@ -43,12 +43,12 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/arrays": "^2.8.12", - "@thi.ng/associative": "^6.3.52", + "@thi.ng/arrays": "^2.9.0", + "@thi.ng/associative": "^6.3.53", "@thi.ng/checks": "^3.5.5", "@thi.ng/math": "^5.10.8", "@thi.ng/strings": "^3.7.28", - "@thi.ng/transducers": "^8.9.16" + "@thi.ng/transducers": "^8.9.17" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/wasm-api-bindgen/package.json b/packages/wasm-api-bindgen/package.json index 0210d4d11b..f8c0b2da4c 100644 --- a/packages/wasm-api-bindgen/package.json +++ b/packages/wasm-api-bindgen/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/wasm-api-bindgen", - "version": "0.4.64", + "version": "0.4.65", "description": "Polyglot bindings code generators for hybrid JS & WebAssembly projects", "type": "module", "module": "./index.js", @@ -40,7 +40,7 @@ "dependencies": { "@thi.ng/api": "^8.9.31", "@thi.ng/args": "^2.3.28", - "@thi.ng/arrays": "^2.8.12", + "@thi.ng/arrays": "^2.9.0", "@thi.ng/binary": "^3.4.20", "@thi.ng/checks": "^3.5.5", "@thi.ng/compare": "^2.2.27", @@ -50,7 +50,7 @@ "@thi.ng/logger": "^3.0.7", "@thi.ng/paths": "^5.1.76", "@thi.ng/strings": "^3.7.28", - "@thi.ng/wasm-api": "^1.4.64" + "@thi.ng/wasm-api": "^1.4.65" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/wasm-api-canvas/package.json b/packages/wasm-api-canvas/package.json index 5daef32bbb..10414d0538 100644 --- a/packages/wasm-api-canvas/package.json +++ b/packages/wasm-api-canvas/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/wasm-api-canvas", - "version": "0.1.75", + "version": "0.1.76", "description": "HTML Canvas2D bridge API for hybrid TypeScript & WASM (Zig) applications", "type": "module", "module": "./index.js", @@ -38,12 +38,12 @@ }, "dependencies": { "@thi.ng/binary": "^3.4.20", - "@thi.ng/wasm-api": "^1.4.64", - "@thi.ng/wasm-api-dom": "^0.11.83" + "@thi.ng/wasm-api": "^1.4.65", + "@thi.ng/wasm-api-dom": "^0.11.84" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", - "@thi.ng/wasm-api-bindgen": "^0.4.64", + "@thi.ng/wasm-api-bindgen": "^0.4.65", "esbuild": "^0.20.2", "rimraf": "^5.0.5", "typedoc": "^0.25.12", diff --git a/packages/wasm-api-dom/package.json b/packages/wasm-api-dom/package.json index 45a9ae1418..9dd65ef9cd 100644 --- a/packages/wasm-api-dom/package.json +++ b/packages/wasm-api-dom/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/wasm-api-dom", - "version": "0.11.83", + "version": "0.11.84", "description": "Browser DOM bridge API for hybrid TypeScript & WASM (Zig) applications", "type": "module", "module": "./index.js", @@ -44,11 +44,11 @@ "@thi.ng/canvas": "^0.2.14", "@thi.ng/errors": "^2.5.2", "@thi.ng/prefixes": "^2.3.14", - "@thi.ng/wasm-api": "^1.4.64" + "@thi.ng/wasm-api": "^1.4.65" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", - "@thi.ng/wasm-api-bindgen": "^0.4.64", + "@thi.ng/wasm-api-bindgen": "^0.4.65", "esbuild": "^0.20.2", "rimraf": "^5.0.5", "typedoc": "^0.25.12", diff --git a/packages/wasm-api-schedule/package.json b/packages/wasm-api-schedule/package.json index 67eb6e8591..a301e0af95 100644 --- a/packages/wasm-api-schedule/package.json +++ b/packages/wasm-api-schedule/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/wasm-api-schedule", - "version": "0.3.79", + "version": "0.3.80", "description": "Delayed & scheduled function execution (via setTimeout() etc.) for hybrid WASM apps", "type": "module", "module": "./index.js", @@ -38,11 +38,11 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/wasm-api": "^1.4.64" + "@thi.ng/wasm-api": "^1.4.65" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", - "@thi.ng/wasm-api-bindgen": "^0.4.64", + "@thi.ng/wasm-api-bindgen": "^0.4.65", "esbuild": "^0.20.2", "rimraf": "^5.0.5", "typedoc": "^0.25.12", diff --git a/packages/wasm-api/package.json b/packages/wasm-api/package.json index 88d2169140..1f4a9570d0 100644 --- a/packages/wasm-api/package.json +++ b/packages/wasm-api/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/wasm-api", - "version": "1.4.64", + "version": "1.4.65", "description": "Generic, modular, extensible API bridge and infrastructure for hybrid JS & WebAssembly projects", "type": "module", "module": "./index.js", @@ -38,7 +38,7 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/arrays": "^2.8.12", + "@thi.ng/arrays": "^2.9.0", "@thi.ng/checks": "^3.5.5", "@thi.ng/errors": "^2.5.2", "@thi.ng/hex": "^2.3.41", diff --git a/packages/webgl-msdf/package.json b/packages/webgl-msdf/package.json index 9167aa27a5..dc7aef8943 100644 --- a/packages/webgl-msdf/package.json +++ b/packages/webgl-msdf/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/webgl-msdf", - "version": "2.1.135", + "version": "2.1.136", "description": "Multi-channel SDF font rendering & basic text layout for WebGL", "type": "module", "module": "./index.js", @@ -37,11 +37,11 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/shader-ast": "^0.15.7", - "@thi.ng/transducers": "^8.9.16", - "@thi.ng/vector-pools": "^3.1.121", - "@thi.ng/vectors": "^7.10.23", - "@thi.ng/webgl": "^6.8.7" + "@thi.ng/shader-ast": "^0.15.8", + "@thi.ng/transducers": "^8.9.17", + "@thi.ng/vector-pools": "^3.1.122", + "@thi.ng/vectors": "^7.10.24", + "@thi.ng/webgl": "^6.8.8" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/webgl-shadertoy/package.json b/packages/webgl-shadertoy/package.json index 1a000e0a9d..e64352454e 100644 --- a/packages/webgl-shadertoy/package.json +++ b/packages/webgl-shadertoy/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/webgl-shadertoy", - "version": "0.4.135", + "version": "0.4.136", "description": "Basic WebGL scaffolding for running interactive fragment shaders via @thi.ng/shader-ast", "type": "module", "module": "./index.js", @@ -37,9 +37,9 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/shader-ast": "^0.15.7", - "@thi.ng/shader-ast-glsl": "^0.4.115", - "@thi.ng/webgl": "^6.8.7" + "@thi.ng/shader-ast": "^0.15.8", + "@thi.ng/shader-ast-glsl": "^0.4.116", + "@thi.ng/webgl": "^6.8.8" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/webgl/package.json b/packages/webgl/package.json index f164d46ad4..96190b0805 100644 --- a/packages/webgl/package.json +++ b/packages/webgl/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/webgl", - "version": "6.8.7", + "version": "6.8.8", "description": "WebGL & GLSL abstraction layer", "type": "module", "module": "./index.js", @@ -41,21 +41,21 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/associative": "^6.3.52", + "@thi.ng/associative": "^6.3.53", "@thi.ng/canvas": "^0.2.14", "@thi.ng/checks": "^3.5.5", "@thi.ng/equiv": "^2.1.53", "@thi.ng/errors": "^2.5.2", "@thi.ng/logger": "^3.0.7", - "@thi.ng/matrices": "^2.3.29", + "@thi.ng/matrices": "^2.3.30", "@thi.ng/memoize": "^3.2.0", - "@thi.ng/pixel": "^6.1.24", - "@thi.ng/shader-ast": "^0.15.7", - "@thi.ng/shader-ast-glsl": "^0.4.115", - "@thi.ng/shader-ast-stdlib": "^0.18.7", - "@thi.ng/transducers": "^8.9.16", - "@thi.ng/vector-pools": "^3.1.121", - "@thi.ng/vectors": "^7.10.23" + "@thi.ng/pixel": "^6.1.25", + "@thi.ng/shader-ast": "^0.15.8", + "@thi.ng/shader-ast-glsl": "^0.4.116", + "@thi.ng/shader-ast-stdlib": "^0.18.8", + "@thi.ng/transducers": "^8.9.17", + "@thi.ng/vector-pools": "^3.1.122", + "@thi.ng/vectors": "^7.10.24" }, "devDependencies": { "@microsoft/api-extractor": "^7.43.0", diff --git a/packages/zipper/package.json b/packages/zipper/package.json index 82f4d8e872..247adaa408 100644 --- a/packages/zipper/package.json +++ b/packages/zipper/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/zipper", - "version": "2.1.94", + "version": "2.1.95", "description": "Functional tree editing, manipulation & navigation", "type": "module", "module": "./index.js", @@ -37,7 +37,7 @@ }, "dependencies": { "@thi.ng/api": "^8.9.31", - "@thi.ng/arrays": "^2.8.12", + "@thi.ng/arrays": "^2.9.0", "@thi.ng/checks": "^3.5.5", "@thi.ng/errors": "^2.5.2" }, diff --git a/yarn.lock b/yarn.lock index d2b9537753..1e5637d000 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3525,12 +3525,12 @@ __metadata: dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/arrays": "npm:^2.8.12" + "@thi.ng/arrays": "npm:^2.9.0" "@thi.ng/bitfield": "npm:^2.3.36" - "@thi.ng/dcons": "npm:^3.2.105" + "@thi.ng/dcons": "npm:^3.2.106" "@thi.ng/errors": "npm:^2.5.2" - "@thi.ng/sparse": "npm:^0.3.110" - "@thi.ng/vectors": "npm:^7.10.23" + "@thi.ng/sparse": "npm:^0.3.111" + "@thi.ng/vectors": "npm:^7.10.24" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -3568,7 +3568,7 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/arrays@npm:^2.8.12, @thi.ng/arrays@workspace:^, @thi.ng/arrays@workspace:packages/arrays": +"@thi.ng/arrays@npm:^2.9.0, @thi.ng/arrays@workspace:^, @thi.ng/arrays@workspace:packages/arrays": version: 0.0.0-use.local resolution: "@thi.ng/arrays@workspace:packages/arrays" dependencies: @@ -3586,21 +3586,21 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/associative@npm:^6.3.52, @thi.ng/associative@workspace:^, @thi.ng/associative@workspace:packages/associative": +"@thi.ng/associative@npm:^6.3.53, @thi.ng/associative@workspace:^, @thi.ng/associative@workspace:packages/associative": version: 0.0.0-use.local resolution: "@thi.ng/associative@workspace:packages/associative" dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/arrays": "npm:^2.8.12" + "@thi.ng/arrays": "npm:^2.9.0" "@thi.ng/binary": "npm:^3.4.20" "@thi.ng/checks": "npm:^3.5.5" "@thi.ng/compare": "npm:^2.2.27" - "@thi.ng/dcons": "npm:^3.2.105" + "@thi.ng/dcons": "npm:^3.2.106" "@thi.ng/equiv": "npm:^2.1.53" "@thi.ng/errors": "npm:^2.5.2" "@thi.ng/random": "npm:^3.7.1" - "@thi.ng/transducers": "npm:^8.9.16" + "@thi.ng/transducers": "npm:^8.9.17" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" tslib: "npm:^2.6.2" @@ -3626,7 +3626,7 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/axidraw@npm:^1.1.71, @thi.ng/axidraw@workspace:packages/axidraw": +"@thi.ng/axidraw@npm:^1.1.72, @thi.ng/axidraw@workspace:packages/axidraw": version: 0.0.0-use.local resolution: "@thi.ng/axidraw@workspace:packages/axidraw" dependencies: @@ -3638,9 +3638,9 @@ __metadata: "@thi.ng/errors": "npm:^2.5.2" "@thi.ng/logger": "npm:^3.0.7" "@thi.ng/math": "npm:^5.10.8" - "@thi.ng/transducers": "npm:^8.9.16" + "@thi.ng/transducers": "npm:^8.9.17" "@thi.ng/units": "npm:^0.4.41" - "@thi.ng/vectors": "npm:^7.10.23" + "@thi.ng/vectors": "npm:^7.10.24" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" serialport: "npm:^12.0.0" @@ -3682,12 +3682,12 @@ __metadata: resolution: "@thi.ng/bencode@workspace:packages/bencode" dependencies: "@microsoft/api-extractor": "npm:^7.43.0" - "@thi.ng/arrays": "npm:^2.8.12" + "@thi.ng/arrays": "npm:^2.9.0" "@thi.ng/checks": "npm:^3.5.5" "@thi.ng/defmulti": "npm:^3.0.34" "@thi.ng/errors": "npm:^2.5.2" - "@thi.ng/transducers": "npm:^8.9.16" - "@thi.ng/transducers-binary": "npm:^2.1.112" + "@thi.ng/transducers": "npm:^8.9.17" + "@thi.ng/transducers-binary": "npm:^2.1.113" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -3762,12 +3762,12 @@ __metadata: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" "@thi.ng/checks": "npm:^3.5.5" - "@thi.ng/distance": "npm:^2.4.65" - "@thi.ng/geom-closest-point": "npm:^2.1.119" - "@thi.ng/geom-resample": "npm:^2.3.45" + "@thi.ng/distance": "npm:^2.4.66" + "@thi.ng/geom-closest-point": "npm:^2.1.120" + "@thi.ng/geom-resample": "npm:^2.3.46" "@thi.ng/math": "npm:^5.10.8" - "@thi.ng/timestep": "npm:^0.5.41" - "@thi.ng/vectors": "npm:^7.10.23" + "@thi.ng/timestep": "npm:^0.5.42" + "@thi.ng/vectors": "npm:^7.10.24" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -3781,8 +3781,8 @@ __metadata: dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/dcons": "npm:^3.2.105" - "@thi.ng/transducers": "npm:^8.9.16" + "@thi.ng/dcons": "npm:^3.2.106" + "@thi.ng/transducers": "npm:^8.9.17" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -3809,11 +3809,11 @@ __metadata: dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/arrays": "npm:^2.8.12" + "@thi.ng/arrays": "npm:^2.9.0" "@thi.ng/checks": "npm:^3.5.5" "@thi.ng/errors": "npm:^2.5.2" "@thi.ng/random": "npm:^3.7.1" - "@thi.ng/transducers": "npm:^8.9.16" + "@thi.ng/transducers": "npm:^8.9.17" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -3843,7 +3843,7 @@ __metadata: "@thi.ng/api": "npm:^8.9.31" "@thi.ng/base-n": "npm:^2.7.9" "@thi.ng/checks": "npm:^3.5.5" - "@thi.ng/color": "npm:^5.6.37" + "@thi.ng/color": "npm:^5.6.38" "@thi.ng/errors": "npm:^2.5.2" "@thi.ng/hex": "npm:^2.3.41" esbuild: "npm:^0.20.2" @@ -3853,13 +3853,13 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/color@npm:^5.6.37, @thi.ng/color@workspace:^, @thi.ng/color@workspace:packages/color": +"@thi.ng/color@npm:^5.6.38, @thi.ng/color@workspace:^, @thi.ng/color@workspace:packages/color": version: 0.0.0-use.local resolution: "@thi.ng/color@workspace:packages/color" dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/arrays": "npm:^2.8.12" + "@thi.ng/arrays": "npm:^2.9.0" "@thi.ng/binary": "npm:^3.4.20" "@thi.ng/checks": "npm:^3.5.5" "@thi.ng/compare": "npm:^2.2.27" @@ -3869,8 +3869,8 @@ __metadata: "@thi.ng/math": "npm:^5.10.8" "@thi.ng/random": "npm:^3.7.1" "@thi.ng/strings": "npm:^3.7.28" - "@thi.ng/transducers": "npm:^8.9.16" - "@thi.ng/vectors": "npm:^7.10.23" + "@thi.ng/transducers": "npm:^8.9.17" + "@thi.ng/vectors": "npm:^7.10.24" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -3919,7 +3919,7 @@ __metadata: "@thi.ng/api": "npm:^8.9.31" "@thi.ng/checks": "npm:^3.5.5" "@thi.ng/math": "npm:^5.10.8" - "@thi.ng/vectors": "npm:^7.10.23" + "@thi.ng/vectors": "npm:^7.10.24" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -3941,17 +3941,17 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/csp@npm:^2.1.110, @thi.ng/csp@workspace:packages/csp": +"@thi.ng/csp@npm:^2.1.111, @thi.ng/csp@workspace:packages/csp": version: 0.0.0-use.local resolution: "@thi.ng/csp@workspace:packages/csp" dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/arrays": "npm:^2.8.12" + "@thi.ng/arrays": "npm:^2.9.0" "@thi.ng/checks": "npm:^3.5.5" - "@thi.ng/dcons": "npm:^3.2.105" + "@thi.ng/dcons": "npm:^3.2.106" "@thi.ng/errors": "npm:^2.5.2" - "@thi.ng/transducers": "npm:^8.9.16" + "@thi.ng/transducers": "npm:^8.9.17" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -3967,7 +3967,7 @@ __metadata: "@thi.ng/api": "npm:^8.9.31" "@thi.ng/checks": "npm:^3.5.5" "@thi.ng/strings": "npm:^3.7.28" - "@thi.ng/transducers": "npm:^8.9.16" + "@thi.ng/transducers": "npm:^8.9.17" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -3990,7 +3990,7 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/dcons@npm:^3.2.105, @thi.ng/dcons@workspace:packages/dcons": +"@thi.ng/dcons@npm:^3.2.106, @thi.ng/dcons@workspace:packages/dcons": version: 0.0.0-use.local resolution: "@thi.ng/dcons@workspace:packages/dcons" dependencies: @@ -4001,7 +4001,7 @@ __metadata: "@thi.ng/equiv": "npm:^2.1.53" "@thi.ng/errors": "npm:^2.5.2" "@thi.ng/random": "npm:^3.7.1" - "@thi.ng/transducers": "npm:^8.9.16" + "@thi.ng/transducers": "npm:^8.9.17" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -4030,7 +4030,7 @@ __metadata: dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/dgraph": "npm:^2.1.110" + "@thi.ng/dgraph": "npm:^2.1.111" "@thi.ng/dot": "npm:^2.1.71" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" @@ -4039,16 +4039,16 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/dgraph@npm:^2.1.110, @thi.ng/dgraph@workspace:^, @thi.ng/dgraph@workspace:packages/dgraph": +"@thi.ng/dgraph@npm:^2.1.111, @thi.ng/dgraph@workspace:^, @thi.ng/dgraph@workspace:packages/dgraph": version: 0.0.0-use.local resolution: "@thi.ng/dgraph@workspace:packages/dgraph" dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/associative": "npm:^6.3.52" + "@thi.ng/associative": "npm:^6.3.53" "@thi.ng/equiv": "npm:^2.1.53" "@thi.ng/errors": "npm:^2.5.2" - "@thi.ng/transducers": "npm:^8.9.16" + "@thi.ng/transducers": "npm:^8.9.17" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -4083,7 +4083,7 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/distance@npm:^2.4.65, @thi.ng/distance@workspace:^, @thi.ng/distance@workspace:packages/distance": +"@thi.ng/distance@npm:^2.4.66, @thi.ng/distance@workspace:^, @thi.ng/distance@workspace:packages/distance": version: 0.0.0-use.local resolution: "@thi.ng/distance@workspace:packages/distance" dependencies: @@ -4093,7 +4093,7 @@ __metadata: "@thi.ng/errors": "npm:^2.5.2" "@thi.ng/heaps": "npm:^2.1.68" "@thi.ng/math": "npm:^5.10.8" - "@thi.ng/vectors": "npm:^7.10.23" + "@thi.ng/vectors": "npm:^7.10.24" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -4151,8 +4151,8 @@ __metadata: "@thi.ng/api": "npm:^8.9.31" "@thi.ng/binary": "npm:^3.4.20" "@thi.ng/errors": "npm:^2.5.2" - "@thi.ng/transducers": "npm:^8.9.16" - "@thi.ng/transducers-binary": "npm:^2.1.112" + "@thi.ng/transducers": "npm:^8.9.17" + "@thi.ng/transducers-binary": "npm:^2.1.113" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -4170,7 +4170,7 @@ __metadata: "@thi.ng/errors": "npm:^2.5.2" "@thi.ng/math": "npm:^5.10.8" "@thi.ng/random": "npm:^3.7.1" - "@thi.ng/transducers": "npm:^8.9.16" + "@thi.ng/transducers": "npm:^8.9.17" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -4211,16 +4211,16 @@ __metadata: dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/associative": "npm:^6.3.52" + "@thi.ng/associative": "npm:^6.3.53" "@thi.ng/binary": "npm:^3.4.20" "@thi.ng/checks": "npm:^3.5.5" - "@thi.ng/dcons": "npm:^3.2.105" + "@thi.ng/dcons": "npm:^3.2.106" "@thi.ng/equiv": "npm:^2.1.53" "@thi.ng/errors": "npm:^2.5.2" "@thi.ng/idgen": "npm:^2.2.36" "@thi.ng/logger": "npm:^3.0.7" "@thi.ng/malloc": "npm:^6.1.77" - "@thi.ng/transducers": "npm:^8.9.16" + "@thi.ng/transducers": "npm:^8.9.17" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" tslib: "npm:^2.6.2" @@ -4235,7 +4235,7 @@ __metadata: dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/associative": "npm:^6.3.52" + "@thi.ng/associative": "npm:^6.3.53" "@thi.ng/checks": "npm:^3.5.5" "@thi.ng/dot": "npm:^2.1.71" "@thi.ng/equiv": "npm:^2.1.53" @@ -4243,7 +4243,7 @@ __metadata: "@thi.ng/logger": "npm:^3.0.7" "@thi.ng/prefixes": "npm:^2.3.14" "@thi.ng/strings": "npm:^3.7.28" - "@thi.ng/transducers-binary": "npm:^2.1.112" + "@thi.ng/transducers-binary": "npm:^2.1.113" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -4307,7 +4307,7 @@ __metadata: dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/arrays": "npm:^2.8.12" + "@thi.ng/arrays": "npm:^2.9.0" "@thi.ng/bench": "npm:^3.5.1" "@thi.ng/checks": "npm:^3.5.5" "@thi.ng/errors": "npm:^2.5.2" @@ -4344,11 +4344,11 @@ __metadata: dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/arrays": "npm:^2.8.12" + "@thi.ng/arrays": "npm:^2.9.0" "@thi.ng/equiv": "npm:^2.1.53" "@thi.ng/errors": "npm:^2.5.2" "@thi.ng/strings": "npm:^3.7.28" - "@thi.ng/transducers": "npm:^8.9.16" + "@thi.ng/transducers": "npm:^8.9.17" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -4364,10 +4364,10 @@ __metadata: "@thi.ng/api": "npm:^8.9.31" "@thi.ng/fuzzy": "npm:^2.1.76" "@thi.ng/hiccup": "npm:^5.1.26" - "@thi.ng/hiccup-svg": "npm:^5.2.29" + "@thi.ng/hiccup-svg": "npm:^5.2.30" "@thi.ng/math": "npm:^5.10.8" "@thi.ng/strings": "npm:^3.7.28" - "@thi.ng/text-canvas": "npm:^3.0.15" + "@thi.ng/text-canvas": "npm:^3.0.16" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -4389,23 +4389,23 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/geom-accel@npm:^3.5.65, @thi.ng/geom-accel@workspace:^, @thi.ng/geom-accel@workspace:packages/geom-accel": +"@thi.ng/geom-accel@npm:^3.5.66, @thi.ng/geom-accel@workspace:^, @thi.ng/geom-accel@workspace:packages/geom-accel": version: 0.0.0-use.local resolution: "@thi.ng/geom-accel@workspace:packages/geom-accel" dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/arrays": "npm:^2.8.12" + "@thi.ng/arrays": "npm:^2.9.0" "@thi.ng/checks": "npm:^3.5.5" - "@thi.ng/distance": "npm:^2.4.65" + "@thi.ng/distance": "npm:^2.4.66" "@thi.ng/equiv": "npm:^2.1.53" "@thi.ng/errors": "npm:^2.5.2" - "@thi.ng/geom-api": "npm:^4.0.2" - "@thi.ng/geom-isec": "npm:^3.0.2" + "@thi.ng/geom-api": "npm:^4.0.3" + "@thi.ng/geom-isec": "npm:^3.0.3" "@thi.ng/heaps": "npm:^2.1.68" "@thi.ng/math": "npm:^5.10.8" - "@thi.ng/transducers": "npm:^8.9.16" - "@thi.ng/vectors": "npm:^7.10.23" + "@thi.ng/transducers": "npm:^8.9.17" + "@thi.ng/vectors": "npm:^7.10.24" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -4413,13 +4413,13 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/geom-api@npm:^4.0.2, @thi.ng/geom-api@workspace:^, @thi.ng/geom-api@workspace:packages/geom-api": +"@thi.ng/geom-api@npm:^4.0.3, @thi.ng/geom-api@workspace:^, @thi.ng/geom-api@workspace:packages/geom-api": version: 0.0.0-use.local resolution: "@thi.ng/geom-api@workspace:packages/geom-api" dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/vectors": "npm:^7.10.23" + "@thi.ng/vectors": "npm:^7.10.24" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -4427,16 +4427,16 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/geom-arc@npm:^2.1.124, @thi.ng/geom-arc@workspace:packages/geom-arc": +"@thi.ng/geom-arc@npm:^2.1.125, @thi.ng/geom-arc@workspace:packages/geom-arc": version: 0.0.0-use.local resolution: "@thi.ng/geom-arc@workspace:packages/geom-arc" dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/checks": "npm:^3.5.5" - "@thi.ng/geom-api": "npm:^4.0.2" - "@thi.ng/geom-resample": "npm:^2.3.45" + "@thi.ng/geom-api": "npm:^4.0.3" + "@thi.ng/geom-resample": "npm:^2.3.46" "@thi.ng/math": "npm:^5.10.8" - "@thi.ng/vectors": "npm:^7.10.23" + "@thi.ng/vectors": "npm:^7.10.24" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -4450,17 +4450,17 @@ __metadata: dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/arrays": "npm:^2.8.12" - "@thi.ng/axidraw": "npm:^1.1.71" + "@thi.ng/arrays": "npm:^2.9.0" + "@thi.ng/axidraw": "npm:^1.1.72" "@thi.ng/compare": "npm:^2.2.27" "@thi.ng/defmulti": "npm:^3.0.34" - "@thi.ng/geom": "npm:^6.1.2" - "@thi.ng/geom-accel": "npm:^3.5.65" - "@thi.ng/geom-api": "npm:^4.0.2" - "@thi.ng/geom-clip-line": "npm:^2.3.81" - "@thi.ng/geom-isec": "npm:^3.0.2" - "@thi.ng/transducers": "npm:^8.9.16" - "@thi.ng/vectors": "npm:^7.10.23" + "@thi.ng/geom": "npm:^6.1.3" + "@thi.ng/geom-accel": "npm:^3.5.66" + "@thi.ng/geom-api": "npm:^4.0.3" + "@thi.ng/geom-clip-line": "npm:^2.3.82" + "@thi.ng/geom-isec": "npm:^3.0.3" + "@thi.ng/transducers": "npm:^8.9.17" + "@thi.ng/vectors": "npm:^7.10.24" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -4468,14 +4468,14 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/geom-clip-line@npm:^2.3.81, @thi.ng/geom-clip-line@workspace:packages/geom-clip-line": +"@thi.ng/geom-clip-line@npm:^2.3.82, @thi.ng/geom-clip-line@workspace:packages/geom-clip-line": version: 0.0.0-use.local resolution: "@thi.ng/geom-clip-line@workspace:packages/geom-clip-line" dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/geom-isec": "npm:^3.0.2" - "@thi.ng/vectors": "npm:^7.10.23" + "@thi.ng/geom-isec": "npm:^3.0.3" + "@thi.ng/vectors": "npm:^7.10.24" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -4483,15 +4483,15 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/geom-clip-poly@npm:^2.1.123, @thi.ng/geom-clip-poly@workspace:packages/geom-clip-poly": +"@thi.ng/geom-clip-poly@npm:^2.1.124, @thi.ng/geom-clip-poly@workspace:packages/geom-clip-poly": version: 0.0.0-use.local resolution: "@thi.ng/geom-clip-poly@workspace:packages/geom-clip-poly" dependencies: "@microsoft/api-extractor": "npm:^7.43.0" - "@thi.ng/geom-isec": "npm:^3.0.2" - "@thi.ng/geom-poly-utils": "npm:^2.3.107" + "@thi.ng/geom-isec": "npm:^3.0.3" + "@thi.ng/geom-poly-utils": "npm:^2.3.108" "@thi.ng/math": "npm:^5.10.8" - "@thi.ng/vectors": "npm:^7.10.23" + "@thi.ng/vectors": "npm:^7.10.24" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -4499,14 +4499,14 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/geom-closest-point@npm:^2.1.119, @thi.ng/geom-closest-point@workspace:^, @thi.ng/geom-closest-point@workspace:packages/geom-closest-point": +"@thi.ng/geom-closest-point@npm:^2.1.120, @thi.ng/geom-closest-point@workspace:^, @thi.ng/geom-closest-point@workspace:packages/geom-closest-point": version: 0.0.0-use.local resolution: "@thi.ng/geom-closest-point@workspace:packages/geom-closest-point" dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" "@thi.ng/math": "npm:^5.10.8" - "@thi.ng/vectors": "npm:^7.10.23" + "@thi.ng/vectors": "npm:^7.10.24" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -4520,15 +4520,15 @@ __metadata: dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/associative": "npm:^6.3.52" - "@thi.ng/color": "npm:^5.6.37" - "@thi.ng/geom": "npm:^6.1.2" - "@thi.ng/geom-api": "npm:^4.0.2" - "@thi.ng/geom-clip-line": "npm:^2.3.81" - "@thi.ng/geom-resample": "npm:^2.3.45" - "@thi.ng/grid-iterators": "npm:^4.0.66" - "@thi.ng/transducers": "npm:^8.9.16" - "@thi.ng/vectors": "npm:^7.10.23" + "@thi.ng/associative": "npm:^6.3.53" + "@thi.ng/color": "npm:^5.6.38" + "@thi.ng/geom": "npm:^6.1.3" + "@thi.ng/geom-api": "npm:^4.0.3" + "@thi.ng/geom-clip-line": "npm:^2.3.82" + "@thi.ng/geom-resample": "npm:^2.3.46" + "@thi.ng/grid-iterators": "npm:^4.0.67" + "@thi.ng/transducers": "npm:^8.9.17" + "@thi.ng/vectors": "npm:^7.10.24" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -4536,13 +4536,13 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/geom-hull@npm:^2.1.119, @thi.ng/geom-hull@workspace:packages/geom-hull": +"@thi.ng/geom-hull@npm:^2.1.120, @thi.ng/geom-hull@workspace:packages/geom-hull": version: 0.0.0-use.local resolution: "@thi.ng/geom-hull@workspace:packages/geom-hull" dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/math": "npm:^5.10.8" - "@thi.ng/vectors": "npm:^7.10.23" + "@thi.ng/vectors": "npm:^7.10.24" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -4557,7 +4557,7 @@ __metadata: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" "@thi.ng/errors": "npm:^2.5.2" - "@thi.ng/vectors": "npm:^7.10.23" + "@thi.ng/vectors": "npm:^7.10.24" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -4565,16 +4565,16 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/geom-isec@npm:^3.0.2, @thi.ng/geom-isec@workspace:packages/geom-isec": +"@thi.ng/geom-isec@npm:^3.0.3, @thi.ng/geom-isec@workspace:packages/geom-isec": version: 0.0.0-use.local resolution: "@thi.ng/geom-isec@workspace:packages/geom-isec" dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/geom-api": "npm:^4.0.2" - "@thi.ng/geom-closest-point": "npm:^2.1.119" + "@thi.ng/geom-api": "npm:^4.0.3" + "@thi.ng/geom-closest-point": "npm:^2.1.120" "@thi.ng/math": "npm:^5.10.8" - "@thi.ng/vectors": "npm:^7.10.23" + "@thi.ng/vectors": "npm:^7.10.24" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -4582,14 +4582,14 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/geom-isoline@npm:^2.1.119, @thi.ng/geom-isoline@workspace:^, @thi.ng/geom-isoline@workspace:packages/geom-isoline": +"@thi.ng/geom-isoline@npm:^2.1.120, @thi.ng/geom-isoline@workspace:^, @thi.ng/geom-isoline@workspace:packages/geom-isoline": version: 0.0.0-use.local resolution: "@thi.ng/geom-isoline@workspace:packages/geom-isoline" dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/transducers": "npm:^8.9.16" - "@thi.ng/vectors": "npm:^7.10.23" + "@thi.ng/transducers": "npm:^8.9.17" + "@thi.ng/vectors": "npm:^7.10.24" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -4597,16 +4597,16 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/geom-poly-utils@npm:^2.3.107, @thi.ng/geom-poly-utils@workspace:packages/geom-poly-utils": +"@thi.ng/geom-poly-utils@npm:^2.3.108, @thi.ng/geom-poly-utils@workspace:packages/geom-poly-utils": version: 0.0.0-use.local resolution: "@thi.ng/geom-poly-utils@workspace:packages/geom-poly-utils" dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" "@thi.ng/errors": "npm:^2.5.2" - "@thi.ng/geom-api": "npm:^4.0.2" + "@thi.ng/geom-api": "npm:^4.0.3" "@thi.ng/math": "npm:^5.10.8" - "@thi.ng/vectors": "npm:^7.10.23" + "@thi.ng/vectors": "npm:^7.10.24" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -4614,17 +4614,17 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/geom-resample@npm:^2.3.45, @thi.ng/geom-resample@workspace:^, @thi.ng/geom-resample@workspace:packages/geom-resample": +"@thi.ng/geom-resample@npm:^2.3.46, @thi.ng/geom-resample@workspace:^, @thi.ng/geom-resample@workspace:packages/geom-resample": version: 0.0.0-use.local resolution: "@thi.ng/geom-resample@workspace:packages/geom-resample" dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/checks": "npm:^3.5.5" - "@thi.ng/geom-api": "npm:^4.0.2" - "@thi.ng/geom-closest-point": "npm:^2.1.119" - "@thi.ng/geom-isec": "npm:^3.0.2" + "@thi.ng/geom-api": "npm:^4.0.3" + "@thi.ng/geom-closest-point": "npm:^2.1.120" + "@thi.ng/geom-isec": "npm:^3.0.3" "@thi.ng/math": "npm:^5.10.8" - "@thi.ng/vectors": "npm:^7.10.23" + "@thi.ng/vectors": "npm:^7.10.24" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -4641,14 +4641,14 @@ __metadata: "@thi.ng/checks": "npm:^3.5.5" "@thi.ng/defmulti": "npm:^3.0.34" "@thi.ng/errors": "npm:^2.5.2" - "@thi.ng/geom": "npm:^6.1.2" - "@thi.ng/geom-api": "npm:^4.0.2" - "@thi.ng/geom-isoline": "npm:^2.1.119" - "@thi.ng/geom-poly-utils": "npm:^2.3.107" - "@thi.ng/geom-resample": "npm:^2.3.45" + "@thi.ng/geom": "npm:^6.1.3" + "@thi.ng/geom-api": "npm:^4.0.3" + "@thi.ng/geom-isoline": "npm:^2.1.120" + "@thi.ng/geom-poly-utils": "npm:^2.3.108" + "@thi.ng/geom-resample": "npm:^2.3.46" "@thi.ng/math": "npm:^5.10.8" - "@thi.ng/transducers": "npm:^8.9.16" - "@thi.ng/vectors": "npm:^7.10.23" + "@thi.ng/transducers": "npm:^8.9.17" + "@thi.ng/vectors": "npm:^7.10.24" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -4656,18 +4656,18 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/geom-splines@npm:^2.2.98, @thi.ng/geom-splines@workspace:packages/geom-splines": +"@thi.ng/geom-splines@npm:^2.2.99, @thi.ng/geom-splines@workspace:packages/geom-splines": version: 0.0.0-use.local resolution: "@thi.ng/geom-splines@workspace:packages/geom-splines" dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" "@thi.ng/checks": "npm:^3.5.5" - "@thi.ng/geom-api": "npm:^4.0.2" - "@thi.ng/geom-arc": "npm:^2.1.124" - "@thi.ng/geom-resample": "npm:^2.3.45" + "@thi.ng/geom-api": "npm:^4.0.3" + "@thi.ng/geom-arc": "npm:^2.1.125" + "@thi.ng/geom-resample": "npm:^2.3.46" "@thi.ng/math": "npm:^5.10.8" - "@thi.ng/vectors": "npm:^7.10.23" + "@thi.ng/vectors": "npm:^7.10.24" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -4675,15 +4675,15 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/geom-subdiv-curve@npm:^2.1.123, @thi.ng/geom-subdiv-curve@workspace:packages/geom-subdiv-curve": +"@thi.ng/geom-subdiv-curve@npm:^2.1.124, @thi.ng/geom-subdiv-curve@workspace:packages/geom-subdiv-curve": version: 0.0.0-use.local resolution: "@thi.ng/geom-subdiv-curve@workspace:packages/geom-subdiv-curve" dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/geom-api": "npm:^4.0.2" - "@thi.ng/transducers": "npm:^8.9.16" - "@thi.ng/vectors": "npm:^7.10.23" + "@thi.ng/geom-api": "npm:^4.0.3" + "@thi.ng/transducers": "npm:^8.9.17" + "@thi.ng/vectors": "npm:^7.10.24" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -4691,17 +4691,17 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/geom-tessellate@npm:^2.1.124, @thi.ng/geom-tessellate@workspace:^, @thi.ng/geom-tessellate@workspace:packages/geom-tessellate": +"@thi.ng/geom-tessellate@npm:^2.1.125, @thi.ng/geom-tessellate@workspace:^, @thi.ng/geom-tessellate@workspace:packages/geom-tessellate": version: 0.0.0-use.local resolution: "@thi.ng/geom-tessellate@workspace:packages/geom-tessellate" dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/checks": "npm:^3.5.5" - "@thi.ng/geom-api": "npm:^4.0.2" - "@thi.ng/geom-isec": "npm:^3.0.2" - "@thi.ng/geom-poly-utils": "npm:^2.3.107" - "@thi.ng/transducers": "npm:^8.9.16" - "@thi.ng/vectors": "npm:^7.10.23" + "@thi.ng/geom-api": "npm:^4.0.3" + "@thi.ng/geom-isec": "npm:^3.0.3" + "@thi.ng/geom-poly-utils": "npm:^2.3.108" + "@thi.ng/transducers": "npm:^8.9.17" + "@thi.ng/vectors": "npm:^7.10.24" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -4716,10 +4716,10 @@ __metadata: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" "@thi.ng/errors": "npm:^2.5.2" - "@thi.ng/grid-iterators": "npm:^4.0.66" - "@thi.ng/matrices": "npm:^2.3.29" - "@thi.ng/pixel": "npm:^6.1.24" - "@thi.ng/vectors": "npm:^7.10.23" + "@thi.ng/grid-iterators": "npm:^4.0.67" + "@thi.ng/matrices": "npm:^2.3.30" + "@thi.ng/pixel": "npm:^6.1.25" + "@thi.ng/vectors": "npm:^7.10.24" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -4735,13 +4735,13 @@ __metadata: "@thi.ng/api": "npm:^8.9.31" "@thi.ng/bitfield": "npm:^2.3.36" "@thi.ng/checks": "npm:^3.5.5" - "@thi.ng/geom-clip-line": "npm:^2.3.81" - "@thi.ng/geom-clip-poly": "npm:^2.1.123" - "@thi.ng/geom-isec": "npm:^3.0.2" - "@thi.ng/geom-poly-utils": "npm:^2.3.107" + "@thi.ng/geom-clip-line": "npm:^2.3.82" + "@thi.ng/geom-clip-poly": "npm:^2.1.124" + "@thi.ng/geom-isec": "npm:^3.0.3" + "@thi.ng/geom-poly-utils": "npm:^2.3.108" "@thi.ng/math": "npm:^5.10.8" "@thi.ng/quad-edge": "npm:^3.1.60" - "@thi.ng/vectors": "npm:^7.10.23" + "@thi.ng/vectors": "npm:^7.10.24" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -4749,38 +4749,38 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/geom@npm:^6.1.2, @thi.ng/geom@workspace:^, @thi.ng/geom@workspace:packages/geom": +"@thi.ng/geom@npm:^6.1.3, @thi.ng/geom@workspace:^, @thi.ng/geom@workspace:packages/geom": version: 0.0.0-use.local resolution: "@thi.ng/geom@workspace:packages/geom" dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/arrays": "npm:^2.8.12" - "@thi.ng/associative": "npm:^6.3.52" + "@thi.ng/arrays": "npm:^2.9.0" + "@thi.ng/associative": "npm:^6.3.53" "@thi.ng/checks": "npm:^3.5.5" "@thi.ng/defmulti": "npm:^3.0.34" "@thi.ng/equiv": "npm:^2.1.53" "@thi.ng/errors": "npm:^2.5.2" - "@thi.ng/geom-api": "npm:^4.0.2" - "@thi.ng/geom-arc": "npm:^2.1.124" - "@thi.ng/geom-clip-line": "npm:^2.3.81" - "@thi.ng/geom-clip-poly": "npm:^2.1.123" - "@thi.ng/geom-closest-point": "npm:^2.1.119" - "@thi.ng/geom-hull": "npm:^2.1.119" - "@thi.ng/geom-isec": "npm:^3.0.2" - "@thi.ng/geom-poly-utils": "npm:^2.3.107" - "@thi.ng/geom-resample": "npm:^2.3.45" - "@thi.ng/geom-splines": "npm:^2.2.98" - "@thi.ng/geom-subdiv-curve": "npm:^2.1.123" - "@thi.ng/geom-tessellate": "npm:^2.1.124" + "@thi.ng/geom-api": "npm:^4.0.3" + "@thi.ng/geom-arc": "npm:^2.1.125" + "@thi.ng/geom-clip-line": "npm:^2.3.82" + "@thi.ng/geom-clip-poly": "npm:^2.1.124" + "@thi.ng/geom-closest-point": "npm:^2.1.120" + "@thi.ng/geom-hull": "npm:^2.1.120" + "@thi.ng/geom-isec": "npm:^3.0.3" + "@thi.ng/geom-poly-utils": "npm:^2.3.108" + "@thi.ng/geom-resample": "npm:^2.3.46" + "@thi.ng/geom-splines": "npm:^2.2.99" + "@thi.ng/geom-subdiv-curve": "npm:^2.1.124" + "@thi.ng/geom-tessellate": "npm:^2.1.125" "@thi.ng/hiccup": "npm:^5.1.26" - "@thi.ng/hiccup-svg": "npm:^5.2.29" + "@thi.ng/hiccup-svg": "npm:^5.2.30" "@thi.ng/math": "npm:^5.10.8" - "@thi.ng/matrices": "npm:^2.3.29" + "@thi.ng/matrices": "npm:^2.3.30" "@thi.ng/random": "npm:^3.7.1" "@thi.ng/strings": "npm:^3.7.28" - "@thi.ng/transducers": "npm:^8.9.16" - "@thi.ng/vectors": "npm:^7.10.23" + "@thi.ng/transducers": "npm:^8.9.17" + "@thi.ng/vectors": "npm:^7.10.24" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -4797,8 +4797,8 @@ __metadata: "@thi.ng/errors": "npm:^2.5.2" "@thi.ng/math": "npm:^5.10.8" "@thi.ng/random": "npm:^3.7.1" - "@thi.ng/transducers": "npm:^8.9.16" - "@thi.ng/zipper": "npm:^2.1.94" + "@thi.ng/transducers": "npm:^8.9.17" + "@thi.ng/zipper": "npm:^2.1.95" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -4806,19 +4806,19 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/grid-iterators@npm:^4.0.66, @thi.ng/grid-iterators@workspace:^, @thi.ng/grid-iterators@workspace:packages/grid-iterators": +"@thi.ng/grid-iterators@npm:^4.0.67, @thi.ng/grid-iterators@workspace:^, @thi.ng/grid-iterators@workspace:packages/grid-iterators": version: 0.0.0-use.local resolution: "@thi.ng/grid-iterators@workspace:packages/grid-iterators" dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/arrays": "npm:^2.8.12" + "@thi.ng/arrays": "npm:^2.9.0" "@thi.ng/binary": "npm:^3.4.20" "@thi.ng/bitfield": "npm:^2.3.36" "@thi.ng/errors": "npm:^2.5.2" "@thi.ng/morton": "npm:^3.1.81" "@thi.ng/random": "npm:^3.7.1" - "@thi.ng/transducers": "npm:^8.9.16" + "@thi.ng/transducers": "npm:^8.9.17" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -4834,7 +4834,7 @@ __metadata: "@thi.ng/api": "npm:^8.9.31" "@thi.ng/diff": "npm:^5.1.64" "@thi.ng/hiccup": "npm:^5.1.26" - "@thi.ng/hiccup-css": "npm:^2.7.1" + "@thi.ng/hiccup-css": "npm:^2.7.2" "@thi.ng/strings": "npm:^3.7.28" "@types/node": "npm:^20.11.30" esbuild: "npm:^0.20.2" @@ -4856,7 +4856,7 @@ __metadata: "@thi.ng/diff": "npm:^5.1.64" "@thi.ng/errors": "npm:^2.5.2" "@thi.ng/hdom": "npm:^9.4.28" - "@thi.ng/hiccup-canvas": "npm:^2.5.31" + "@thi.ng/hiccup-canvas": "npm:^2.5.32" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -4873,8 +4873,8 @@ __metadata: "@thi.ng/canvas": "npm:^0.2.14" "@thi.ng/checks": "npm:^3.5.5" "@thi.ng/math": "npm:^5.10.8" - "@thi.ng/transducers": "npm:^8.9.16" - "@thi.ng/transducers-stats": "npm:^2.1.110" + "@thi.ng/transducers": "npm:^8.9.17" + "@thi.ng/transducers-stats": "npm:^2.1.111" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -4945,17 +4945,17 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/hiccup-canvas@npm:^2.5.31, @thi.ng/hiccup-canvas@workspace:^, @thi.ng/hiccup-canvas@workspace:packages/hiccup-canvas": +"@thi.ng/hiccup-canvas@npm:^2.5.32, @thi.ng/hiccup-canvas@workspace:^, @thi.ng/hiccup-canvas@workspace:packages/hiccup-canvas": version: 0.0.0-use.local resolution: "@thi.ng/hiccup-canvas@workspace:packages/hiccup-canvas" dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" "@thi.ng/checks": "npm:^3.5.5" - "@thi.ng/color": "npm:^5.6.37" + "@thi.ng/color": "npm:^5.6.38" "@thi.ng/math": "npm:^5.10.8" - "@thi.ng/pixel": "npm:^6.1.24" - "@thi.ng/vectors": "npm:^7.10.23" + "@thi.ng/pixel": "npm:^6.1.25" + "@thi.ng/vectors": "npm:^7.10.24" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -4976,7 +4976,7 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/hiccup-css@npm:^2.7.1, @thi.ng/hiccup-css@workspace:^, @thi.ng/hiccup-css@workspace:packages/hiccup-css": +"@thi.ng/hiccup-css@npm:^2.7.2, @thi.ng/hiccup-css@workspace:^, @thi.ng/hiccup-css@workspace:packages/hiccup-css": version: 0.0.0-use.local resolution: "@thi.ng/hiccup-css@workspace:packages/hiccup-css" dependencies: @@ -4984,7 +4984,7 @@ __metadata: "@thi.ng/api": "npm:^8.9.31" "@thi.ng/checks": "npm:^3.5.5" "@thi.ng/errors": "npm:^2.5.2" - "@thi.ng/transducers": "npm:^8.9.16" + "@thi.ng/transducers": "npm:^8.9.17" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -5027,7 +5027,7 @@ __metadata: dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/arrays": "npm:^2.8.12" + "@thi.ng/arrays": "npm:^2.9.0" "@thi.ng/checks": "npm:^3.5.5" "@thi.ng/defmulti": "npm:^3.0.34" "@thi.ng/emoji": "npm:^0.1.34" @@ -5036,7 +5036,7 @@ __metadata: "@thi.ng/logger": "npm:^3.0.7" "@thi.ng/parse": "npm:^2.4.37" "@thi.ng/strings": "npm:^3.7.28" - "@thi.ng/text-canvas": "npm:^3.0.15" + "@thi.ng/text-canvas": "npm:^3.0.16" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -5044,13 +5044,13 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/hiccup-svg@npm:^5.2.29, @thi.ng/hiccup-svg@workspace:^, @thi.ng/hiccup-svg@workspace:packages/hiccup-svg": +"@thi.ng/hiccup-svg@npm:^5.2.30, @thi.ng/hiccup-svg@workspace:^, @thi.ng/hiccup-svg@workspace:packages/hiccup-svg": version: 0.0.0-use.local resolution: "@thi.ng/hiccup-svg@workspace:packages/hiccup-svg" dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/checks": "npm:^3.5.5" - "@thi.ng/color": "npm:^5.6.37" + "@thi.ng/color": "npm:^5.6.38" "@thi.ng/prefixes": "npm:^2.3.14" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" @@ -5100,8 +5100,8 @@ __metadata: "@thi.ng/checks": "npm:^3.5.5" "@thi.ng/defmulti": "npm:^3.0.34" "@thi.ng/strings": "npm:^3.7.28" - "@thi.ng/transducers": "npm:^8.9.16" - "@thi.ng/vectors": "npm:^7.10.23" + "@thi.ng/transducers": "npm:^8.9.17" + "@thi.ng/vectors": "npm:^7.10.24" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -5115,7 +5115,7 @@ __metadata: dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/associative": "npm:^6.3.52" + "@thi.ng/associative": "npm:^6.3.53" "@thi.ng/blurhash": "npm:^0.1.19" "@thi.ng/checks": "npm:^3.5.5" "@thi.ng/date": "npm:^2.7.12" @@ -5123,10 +5123,10 @@ __metadata: "@thi.ng/errors": "npm:^2.5.2" "@thi.ng/file-io": "npm:^1.3.12" "@thi.ng/logger": "npm:^3.0.7" - "@thi.ng/pixel": "npm:^6.1.24" - "@thi.ng/pixel-dither": "npm:^1.1.122" + "@thi.ng/pixel": "npm:^6.1.25" + "@thi.ng/pixel-dither": "npm:^1.1.123" "@thi.ng/prefixes": "npm:^2.3.14" - "@thi.ng/vectors": "npm:^7.10.23" + "@thi.ng/vectors": "npm:^7.10.24" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" sharp: "npm:^0.33.3" @@ -5142,14 +5142,14 @@ __metadata: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" "@thi.ng/checks": "npm:^3.5.5" - "@thi.ng/geom": "npm:^6.1.2" - "@thi.ng/geom-api": "npm:^4.0.2" - "@thi.ng/geom-isec": "npm:^3.0.2" - "@thi.ng/geom-tessellate": "npm:^2.1.124" - "@thi.ng/layout": "npm:^3.0.32" + "@thi.ng/geom": "npm:^6.1.3" + "@thi.ng/geom-api": "npm:^4.0.3" + "@thi.ng/geom-isec": "npm:^3.0.3" + "@thi.ng/geom-tessellate": "npm:^2.1.125" + "@thi.ng/layout": "npm:^3.0.33" "@thi.ng/math": "npm:^5.10.8" - "@thi.ng/transducers": "npm:^8.9.16" - "@thi.ng/vectors": "npm:^7.10.23" + "@thi.ng/transducers": "npm:^8.9.17" + "@thi.ng/vectors": "npm:^7.10.24" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -5197,7 +5197,7 @@ __metadata: dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/dcons": "npm:^3.2.105" + "@thi.ng/dcons": "npm:^3.2.106" "@thi.ng/errors": "npm:^2.5.2" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" @@ -5206,16 +5206,16 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/k-means@npm:^0.6.80, @thi.ng/k-means@workspace:^, @thi.ng/k-means@workspace:packages/k-means": +"@thi.ng/k-means@npm:^0.6.81, @thi.ng/k-means@workspace:^, @thi.ng/k-means@workspace:packages/k-means": version: 0.0.0-use.local resolution: "@thi.ng/k-means@workspace:packages/k-means" dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/distance": "npm:^2.4.65" + "@thi.ng/distance": "npm:^2.4.66" "@thi.ng/errors": "npm:^2.5.2" "@thi.ng/random": "npm:^3.7.1" - "@thi.ng/vectors": "npm:^7.10.23" + "@thi.ng/vectors": "npm:^7.10.24" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -5241,12 +5241,12 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/layout@npm:^3.0.32, @thi.ng/layout@workspace:^, @thi.ng/layout@workspace:packages/layout": +"@thi.ng/layout@npm:^3.0.33, @thi.ng/layout@workspace:^, @thi.ng/layout@workspace:packages/layout": version: 0.0.0-use.local resolution: "@thi.ng/layout@workspace:packages/layout" dependencies: "@microsoft/api-extractor": "npm:^7.43.0" - "@thi.ng/arrays": "npm:^2.8.12" + "@thi.ng/arrays": "npm:^2.9.0" "@thi.ng/checks": "npm:^3.5.5" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" @@ -5262,7 +5262,7 @@ __metadata: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/checks": "npm:^3.5.5" "@thi.ng/errors": "npm:^2.5.2" - "@thi.ng/transducers-binary": "npm:^2.1.112" + "@thi.ng/transducers-binary": "npm:^2.1.113" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -5305,8 +5305,8 @@ __metadata: "@thi.ng/errors": "npm:^2.5.2" "@thi.ng/math": "npm:^5.10.8" "@thi.ng/random": "npm:^3.7.1" - "@thi.ng/transducers": "npm:^8.9.16" - "@thi.ng/vectors": "npm:^7.10.23" + "@thi.ng/transducers": "npm:^8.9.17" + "@thi.ng/vectors": "npm:^7.10.24" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -5340,7 +5340,7 @@ __metadata: "@thi.ng/compose": "npm:^2.1.71" "@thi.ng/errors": "npm:^2.5.2" "@thi.ng/strings": "npm:^3.7.28" - "@thi.ng/transducers": "npm:^8.9.16" + "@thi.ng/transducers": "npm:^8.9.17" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -5361,7 +5361,7 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/matrices@npm:^2.3.29, @thi.ng/matrices@workspace:^, @thi.ng/matrices@workspace:packages/matrices": +"@thi.ng/matrices@npm:^2.3.30, @thi.ng/matrices@workspace:^, @thi.ng/matrices@workspace:packages/matrices": version: 0.0.0-use.local resolution: "@thi.ng/matrices@workspace:packages/matrices" dependencies: @@ -5369,7 +5369,7 @@ __metadata: "@thi.ng/api": "npm:^8.9.31" "@thi.ng/checks": "npm:^3.5.5" "@thi.ng/math": "npm:^5.10.8" - "@thi.ng/vectors": "npm:^7.10.23" + "@thi.ng/vectors": "npm:^7.10.24" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -5397,18 +5397,18 @@ __metadata: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" "@thi.ng/args": "npm:^2.3.28" - "@thi.ng/arrays": "npm:^2.8.12" + "@thi.ng/arrays": "npm:^2.9.0" "@thi.ng/checks": "npm:^3.5.5" "@thi.ng/compare": "npm:^2.2.27" "@thi.ng/errors": "npm:^2.5.2" "@thi.ng/file-io": "npm:^1.3.12" - "@thi.ng/hiccup-css": "npm:^2.7.1" + "@thi.ng/hiccup-css": "npm:^2.7.2" "@thi.ng/logger": "npm:^3.0.7" "@thi.ng/memoize": "npm:^3.2.0" - "@thi.ng/rstream": "npm:^8.3.17" + "@thi.ng/rstream": "npm:^8.3.18" "@thi.ng/strings": "npm:^3.7.28" "@thi.ng/text-format": "npm:^2.2.0" - "@thi.ng/transducers": "npm:^8.9.16" + "@thi.ng/transducers": "npm:^8.9.17" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -5511,14 +5511,14 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/pixel-dither@npm:^1.1.122, @thi.ng/pixel-dither@workspace:^, @thi.ng/pixel-dither@workspace:packages/pixel-dither": +"@thi.ng/pixel-dither@npm:^1.1.123, @thi.ng/pixel-dither@workspace:^, @thi.ng/pixel-dither@workspace:packages/pixel-dither": version: 0.0.0-use.local resolution: "@thi.ng/pixel-dither@workspace:packages/pixel-dither" dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/checks": "npm:^3.5.5" "@thi.ng/math": "npm:^5.10.8" - "@thi.ng/pixel": "npm:^6.1.24" + "@thi.ng/pixel": "npm:^6.1.25" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -5532,7 +5532,7 @@ __metadata: dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/pixel": "npm:^6.1.24" + "@thi.ng/pixel": "npm:^6.1.25" esbuild: "npm:^0.20.2" geotiff: "npm:2.1.3" rimraf: "npm:^5.0.5" @@ -5548,7 +5548,7 @@ __metadata: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" "@thi.ng/errors": "npm:^2.5.2" - "@thi.ng/pixel": "npm:^6.1.24" + "@thi.ng/pixel": "npm:^6.1.25" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -5562,7 +5562,7 @@ __metadata: dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/errors": "npm:^2.5.2" - "@thi.ng/pixel": "npm:^6.1.24" + "@thi.ng/pixel": "npm:^6.1.25" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -5570,7 +5570,7 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/pixel@npm:^6.1.24, @thi.ng/pixel@workspace:^, @thi.ng/pixel@workspace:packages/pixel": +"@thi.ng/pixel@npm:^6.1.24, @thi.ng/pixel@npm:^6.1.25, @thi.ng/pixel@workspace:^, @thi.ng/pixel@workspace:packages/pixel": version: 0.0.0-use.local resolution: "@thi.ng/pixel@workspace:packages/pixel" dependencies: @@ -5579,9 +5579,9 @@ __metadata: "@thi.ng/binary": "npm:^3.4.20" "@thi.ng/canvas": "npm:^0.2.14" "@thi.ng/checks": "npm:^3.5.5" - "@thi.ng/distance": "npm:^2.4.65" + "@thi.ng/distance": "npm:^2.4.66" "@thi.ng/errors": "npm:^2.5.2" - "@thi.ng/k-means": "npm:^0.6.80" + "@thi.ng/k-means": "npm:^0.6.81" "@thi.ng/math": "npm:^5.10.8" "@thi.ng/porter-duff": "npm:^2.1.74" esbuild: "npm:^0.20.2" @@ -5638,9 +5638,9 @@ __metadata: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" "@thi.ng/checks": "npm:^3.5.5" - "@thi.ng/geom-api": "npm:^4.0.2" + "@thi.ng/geom-api": "npm:^4.0.3" "@thi.ng/random": "npm:^3.7.1" - "@thi.ng/vectors": "npm:^7.10.23" + "@thi.ng/vectors": "npm:^7.10.24" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -5693,12 +5693,12 @@ __metadata: dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/arrays": "npm:^2.8.12" + "@thi.ng/arrays": "npm:^2.9.0" "@thi.ng/compare": "npm:^2.2.27" "@thi.ng/errors": "npm:^2.5.2" "@thi.ng/math": "npm:^5.10.8" - "@thi.ng/transducers": "npm:^8.9.16" - "@thi.ng/vectors": "npm:^7.10.23" + "@thi.ng/transducers": "npm:^8.9.17" + "@thi.ng/vectors": "npm:^7.10.24" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -5759,10 +5759,10 @@ __metadata: "@thi.ng/api": "npm:^8.9.31" "@thi.ng/checks": "npm:^3.5.5" "@thi.ng/equiv": "npm:^2.1.53" - "@thi.ng/grid-iterators": "npm:^4.0.66" + "@thi.ng/grid-iterators": "npm:^4.0.67" "@thi.ng/porter-duff": "npm:^2.1.74" "@thi.ng/random": "npm:^3.7.1" - "@thi.ng/transducers": "npm:^8.9.16" + "@thi.ng/transducers": "npm:^8.9.17" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -5776,12 +5776,12 @@ __metadata: dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/associative": "npm:^6.3.52" + "@thi.ng/associative": "npm:^6.3.53" "@thi.ng/canvas": "npm:^0.2.14" "@thi.ng/checks": "npm:^3.5.5" - "@thi.ng/hiccup-canvas": "npm:^2.5.31" - "@thi.ng/rdom": "npm:^1.1.19" - "@thi.ng/rstream": "npm:^8.3.17" + "@thi.ng/hiccup-canvas": "npm:^2.5.32" + "@thi.ng/rdom": "npm:^1.1.20" + "@thi.ng/rstream": "npm:^8.3.18" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -5795,12 +5795,12 @@ __metadata: dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/associative": "npm:^6.3.52" + "@thi.ng/associative": "npm:^6.3.53" "@thi.ng/hiccup-html": "npm:^2.5.0" - "@thi.ng/rdom": "npm:^1.1.19" - "@thi.ng/rstream": "npm:^8.3.17" + "@thi.ng/rdom": "npm:^1.1.20" + "@thi.ng/rstream": "npm:^8.3.18" "@thi.ng/strings": "npm:^3.7.28" - "@thi.ng/transducers": "npm:^8.9.16" + "@thi.ng/transducers": "npm:^8.9.17" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -5817,8 +5817,8 @@ __metadata: "@thi.ng/checks": "npm:^3.5.5" "@thi.ng/defmulti": "npm:^3.0.34" "@thi.ng/hiccup-html": "npm:^2.5.0" - "@thi.ng/rdom": "npm:^1.1.19" - "@thi.ng/rstream": "npm:^8.3.17" + "@thi.ng/rdom": "npm:^1.1.20" + "@thi.ng/rstream": "npm:^8.3.18" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -5826,7 +5826,7 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/rdom@npm:^1.1.19, @thi.ng/rdom@workspace:^, @thi.ng/rdom@workspace:packages/rdom": +"@thi.ng/rdom@npm:^1.1.20, @thi.ng/rdom@workspace:^, @thi.ng/rdom@workspace:packages/rdom": version: 0.0.0-use.local resolution: "@thi.ng/rdom@workspace:packages/rdom" dependencies: @@ -5837,7 +5837,7 @@ __metadata: "@thi.ng/hiccup": "npm:^5.1.26" "@thi.ng/paths": "npm:^5.1.76" "@thi.ng/prefixes": "npm:^2.3.14" - "@thi.ng/rstream": "npm:^8.3.17" + "@thi.ng/rstream": "npm:^8.3.18" "@thi.ng/strings": "npm:^3.7.28" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" @@ -5898,8 +5898,8 @@ __metadata: resolution: "@thi.ng/rstream-csp@workspace:packages/rstream-csp" dependencies: "@microsoft/api-extractor": "npm:^7.43.0" - "@thi.ng/csp": "npm:^2.1.110" - "@thi.ng/rstream": "npm:^8.3.17" + "@thi.ng/csp": "npm:^2.1.111" + "@thi.ng/rstream": "npm:^8.3.18" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -5907,14 +5907,14 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/rstream-dot@npm:^3.0.68, @thi.ng/rstream-dot@workspace:^, @thi.ng/rstream-dot@workspace:packages/rstream-dot": +"@thi.ng/rstream-dot@npm:^3.0.69, @thi.ng/rstream-dot@workspace:^, @thi.ng/rstream-dot@workspace:packages/rstream-dot": version: 0.0.0-use.local resolution: "@thi.ng/rstream-dot@workspace:packages/rstream-dot" dependencies: "@microsoft/api-extractor": "npm:^7.43.0" - "@thi.ng/rstream": "npm:^8.3.17" + "@thi.ng/rstream": "npm:^8.3.18" "@thi.ng/strings": "npm:^3.7.28" - "@thi.ng/transducers": "npm:^8.9.16" + "@thi.ng/transducers": "npm:^8.9.17" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -5930,8 +5930,8 @@ __metadata: "@thi.ng/api": "npm:^8.9.31" "@thi.ng/checks": "npm:^3.5.5" "@thi.ng/math": "npm:^5.10.8" - "@thi.ng/rstream": "npm:^8.3.17" - "@thi.ng/transducers": "npm:^8.9.16" + "@thi.ng/rstream": "npm:^8.3.18" + "@thi.ng/transducers": "npm:^8.9.17" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -5950,8 +5950,8 @@ __metadata: "@thi.ng/errors": "npm:^2.5.2" "@thi.ng/paths": "npm:^5.1.76" "@thi.ng/resolve-map": "npm:^7.1.69" - "@thi.ng/rstream": "npm:^8.3.17" - "@thi.ng/transducers": "npm:^8.9.16" + "@thi.ng/rstream": "npm:^8.3.18" + "@thi.ng/transducers": "npm:^8.9.17" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -5964,7 +5964,7 @@ __metadata: resolution: "@thi.ng/rstream-log-file@workspace:packages/rstream-log-file" dependencies: "@microsoft/api-extractor": "npm:^7.43.0" - "@thi.ng/rstream": "npm:^8.3.17" + "@thi.ng/rstream": "npm:^8.3.18" "@types/node": "npm:^20.11.30" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" @@ -5981,9 +5981,9 @@ __metadata: "@thi.ng/api": "npm:^8.9.31" "@thi.ng/checks": "npm:^3.5.5" "@thi.ng/logger": "npm:^3.0.7" - "@thi.ng/rstream": "npm:^8.3.17" + "@thi.ng/rstream": "npm:^8.3.18" "@thi.ng/strings": "npm:^3.7.28" - "@thi.ng/transducers": "npm:^8.9.16" + "@thi.ng/transducers": "npm:^8.9.17" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -5997,15 +5997,15 @@ __metadata: dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/associative": "npm:^6.3.52" + "@thi.ng/associative": "npm:^6.3.53" "@thi.ng/checks": "npm:^3.5.5" "@thi.ng/equiv": "npm:^2.1.53" "@thi.ng/errors": "npm:^2.5.2" "@thi.ng/logger": "npm:^3.0.7" "@thi.ng/math": "npm:^5.10.8" - "@thi.ng/rstream": "npm:^8.3.17" - "@thi.ng/rstream-dot": "npm:^3.0.68" - "@thi.ng/transducers": "npm:^8.9.16" + "@thi.ng/rstream": "npm:^8.3.18" + "@thi.ng/rstream-dot": "npm:^3.0.69" + "@thi.ng/transducers": "npm:^8.9.17" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -6013,19 +6013,19 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/rstream@npm:^8.3.17, @thi.ng/rstream@workspace:^, @thi.ng/rstream@workspace:packages/rstream": +"@thi.ng/rstream@npm:^8.3.18, @thi.ng/rstream@workspace:^, @thi.ng/rstream@workspace:packages/rstream": version: 0.0.0-use.local resolution: "@thi.ng/rstream@workspace:packages/rstream" dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/arrays": "npm:^2.8.12" - "@thi.ng/associative": "npm:^6.3.52" + "@thi.ng/arrays": "npm:^2.9.0" + "@thi.ng/associative": "npm:^6.3.53" "@thi.ng/atom": "npm:^5.2.41" "@thi.ng/checks": "npm:^3.5.5" "@thi.ng/errors": "npm:^2.5.2" "@thi.ng/logger": "npm:^3.0.7" - "@thi.ng/transducers": "npm:^8.9.16" + "@thi.ng/transducers": "npm:^8.9.17" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -6040,8 +6040,8 @@ __metadata: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" "@thi.ng/strings": "npm:^3.7.28" - "@thi.ng/transducers": "npm:^8.9.16" - "@thi.ng/transducers-fsm": "npm:^2.2.79" + "@thi.ng/transducers": "npm:^8.9.17" + "@thi.ng/transducers-fsm": "npm:^2.2.80" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -6057,8 +6057,8 @@ __metadata: "@thi.ng/api": "npm:^8.9.31" "@thi.ng/checks": "npm:^3.5.5" "@thi.ng/errors": "npm:^2.5.2" - "@thi.ng/matrices": "npm:^2.3.29" - "@thi.ng/vectors": "npm:^7.10.23" + "@thi.ng/matrices": "npm:^2.3.30" + "@thi.ng/vectors": "npm:^7.10.24" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -6095,7 +6095,7 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/shader-ast-glsl@npm:^0.4.115, @thi.ng/shader-ast-glsl@workspace:^, @thi.ng/shader-ast-glsl@workspace:packages/shader-ast-glsl": +"@thi.ng/shader-ast-glsl@npm:^0.4.116, @thi.ng/shader-ast-glsl@workspace:^, @thi.ng/shader-ast-glsl@workspace:packages/shader-ast-glsl": version: 0.0.0-use.local resolution: "@thi.ng/shader-ast-glsl@workspace:packages/shader-ast-glsl" dependencies: @@ -6103,7 +6103,7 @@ __metadata: "@thi.ng/api": "npm:^8.9.31" "@thi.ng/checks": "npm:^3.5.5" "@thi.ng/errors": "npm:^2.5.2" - "@thi.ng/shader-ast": "npm:^0.15.7" + "@thi.ng/shader-ast": "npm:^0.15.8" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -6120,10 +6120,10 @@ __metadata: "@thi.ng/checks": "npm:^3.5.5" "@thi.ng/errors": "npm:^2.5.2" "@thi.ng/math": "npm:^5.10.8" - "@thi.ng/matrices": "npm:^2.3.29" - "@thi.ng/pixel": "npm:^6.1.24" - "@thi.ng/shader-ast": "npm:^0.15.7" - "@thi.ng/vectors": "npm:^7.10.23" + "@thi.ng/matrices": "npm:^2.3.30" + "@thi.ng/pixel": "npm:^6.1.25" + "@thi.ng/shader-ast": "npm:^0.15.8" + "@thi.ng/vectors": "npm:^7.10.24" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -6141,7 +6141,7 @@ __metadata: "@thi.ng/errors": "npm:^2.5.2" "@thi.ng/logger": "npm:^3.0.7" "@thi.ng/math": "npm:^5.10.8" - "@thi.ng/shader-ast": "npm:^0.15.7" + "@thi.ng/shader-ast": "npm:^0.15.8" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -6149,13 +6149,13 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/shader-ast-stdlib@npm:^0.18.7, @thi.ng/shader-ast-stdlib@workspace:^, @thi.ng/shader-ast-stdlib@workspace:packages/shader-ast-stdlib": +"@thi.ng/shader-ast-stdlib@npm:^0.18.8, @thi.ng/shader-ast-stdlib@workspace:^, @thi.ng/shader-ast-stdlib@workspace:packages/shader-ast-stdlib": version: 0.0.0-use.local resolution: "@thi.ng/shader-ast-stdlib@workspace:packages/shader-ast-stdlib" dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/shader-ast": "npm:^0.15.7" + "@thi.ng/shader-ast": "npm:^0.15.8" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -6163,7 +6163,7 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/shader-ast@npm:^0.15.7, @thi.ng/shader-ast@workspace:^, @thi.ng/shader-ast@workspace:packages/shader-ast": +"@thi.ng/shader-ast@npm:^0.15.8, @thi.ng/shader-ast@workspace:^, @thi.ng/shader-ast@workspace:packages/shader-ast": version: 0.0.0-use.local resolution: "@thi.ng/shader-ast@workspace:packages/shader-ast" dependencies: @@ -6171,7 +6171,7 @@ __metadata: "@thi.ng/api": "npm:^8.9.31" "@thi.ng/checks": "npm:^3.5.5" "@thi.ng/defmulti": "npm:^3.0.34" - "@thi.ng/dgraph": "npm:^2.1.110" + "@thi.ng/dgraph": "npm:^2.1.111" "@thi.ng/errors": "npm:^2.5.2" "@thi.ng/logger": "npm:^3.0.7" esbuild: "npm:^0.20.2" @@ -6186,7 +6186,7 @@ __metadata: resolution: "@thi.ng/simd@workspace:packages/simd" dependencies: "@microsoft/api-extractor": "npm:^7.43.0" - "@thi.ng/transducers-binary": "npm:^2.1.112" + "@thi.ng/transducers-binary": "npm:^2.1.113" assemblyscript: "npm:0.27.25" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" @@ -6204,8 +6204,8 @@ __metadata: "@thi.ng/binary": "npm:^3.4.20" "@thi.ng/equiv": "npm:^2.1.53" "@thi.ng/errors": "npm:^2.5.2" - "@thi.ng/transducers-binary": "npm:^2.1.112" - "@thi.ng/vectors": "npm:^7.10.23" + "@thi.ng/transducers-binary": "npm:^2.1.113" + "@thi.ng/vectors": "npm:^7.10.24" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -6213,14 +6213,14 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/sparse@npm:^0.3.110, @thi.ng/sparse@workspace:packages/sparse": +"@thi.ng/sparse@npm:^0.3.111, @thi.ng/sparse@workspace:packages/sparse": version: 0.0.0-use.local resolution: "@thi.ng/sparse@workspace:packages/sparse" dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" "@thi.ng/errors": "npm:^2.5.2" - "@thi.ng/transducers": "npm:^8.9.16" + "@thi.ng/transducers": "npm:^8.9.17" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -6250,7 +6250,7 @@ __metadata: dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/dgraph": "npm:^2.1.110" + "@thi.ng/dgraph": "npm:^2.1.111" "@thi.ng/logger": "npm:^3.0.7" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" @@ -6274,7 +6274,7 @@ __metadata: "@thi.ng/logger": "npm:^3.0.7" "@thi.ng/strings": "npm:^3.7.28" "@thi.ng/testament": "npm:^0.4.24" - "@thi.ng/transducers": "npm:^8.9.16" + "@thi.ng/transducers": "npm:^8.9.17" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -6300,20 +6300,20 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/text-canvas@npm:^3.0.15, @thi.ng/text-canvas@workspace:^, @thi.ng/text-canvas@workspace:packages/text-canvas": +"@thi.ng/text-canvas@npm:^3.0.15, @thi.ng/text-canvas@npm:^3.0.16, @thi.ng/text-canvas@workspace:^, @thi.ng/text-canvas@workspace:packages/text-canvas": version: 0.0.0-use.local resolution: "@thi.ng/text-canvas@workspace:packages/text-canvas" dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/arrays": "npm:^2.8.12" + "@thi.ng/arrays": "npm:^2.9.0" "@thi.ng/checks": "npm:^3.5.5" "@thi.ng/errors": "npm:^2.5.2" - "@thi.ng/geom-clip-line": "npm:^2.3.81" + "@thi.ng/geom-clip-line": "npm:^2.3.82" "@thi.ng/math": "npm:^5.10.8" "@thi.ng/strings": "npm:^3.7.28" "@thi.ng/text-format": "npm:^2.2.0" - "@thi.ng/transducers": "npm:^8.9.16" + "@thi.ng/transducers": "npm:^8.9.17" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" tslib: "npm:^2.6.2" @@ -6337,14 +6337,14 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/timestep@npm:^0.5.41, @thi.ng/timestep@workspace:^, @thi.ng/timestep@workspace:packages/timestep": +"@thi.ng/timestep@npm:^0.5.42, @thi.ng/timestep@workspace:^, @thi.ng/timestep@workspace:packages/timestep": version: 0.0.0-use.local resolution: "@thi.ng/timestep@workspace:packages/timestep" dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" "@thi.ng/math": "npm:^5.10.8" - "@thi.ng/vectors": "npm:^7.10.23" + "@thi.ng/vectors": "npm:^7.10.24" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -6363,7 +6363,7 @@ __metadata: "@thi.ng/logger": "npm:^3.0.7" "@thi.ng/strings": "npm:^3.7.28" "@thi.ng/testament": "npm:^0.4.24" - "@thi.ng/transducers": "npm:^8.9.16" + "@thi.ng/transducers": "npm:^8.9.17" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -6371,7 +6371,7 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/transducers-binary@npm:^2.1.112, @thi.ng/transducers-binary@workspace:^, @thi.ng/transducers-binary@workspace:packages/transducers-binary": +"@thi.ng/transducers-binary@npm:^2.1.113, @thi.ng/transducers-binary@workspace:^, @thi.ng/transducers-binary@workspace:packages/transducers-binary": version: 0.0.0-use.local resolution: "@thi.ng/transducers-binary@workspace:packages/transducers-binary" dependencies: @@ -6382,7 +6382,7 @@ __metadata: "@thi.ng/hex": "npm:^2.3.41" "@thi.ng/random": "npm:^3.7.1" "@thi.ng/strings": "npm:^3.7.28" - "@thi.ng/transducers": "npm:^8.9.16" + "@thi.ng/transducers": "npm:^8.9.17" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -6390,13 +6390,13 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/transducers-fsm@npm:^2.2.79, @thi.ng/transducers-fsm@workspace:^, @thi.ng/transducers-fsm@workspace:packages/transducers-fsm": +"@thi.ng/transducers-fsm@npm:^2.2.80, @thi.ng/transducers-fsm@workspace:^, @thi.ng/transducers-fsm@workspace:packages/transducers-fsm": version: 0.0.0-use.local resolution: "@thi.ng/transducers-fsm@workspace:packages/transducers-fsm" dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/transducers": "npm:^8.9.16" + "@thi.ng/transducers": "npm:^8.9.17" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -6411,7 +6411,7 @@ __metadata: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/hdom": "npm:^9.4.28" "@thi.ng/hiccup": "npm:^5.1.26" - "@thi.ng/transducers": "npm:^8.9.16" + "@thi.ng/transducers": "npm:^8.9.17" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -6428,7 +6428,7 @@ __metadata: "@thi.ng/checks": "npm:^3.5.5" "@thi.ng/errors": "npm:^2.5.2" "@thi.ng/paths": "npm:^5.1.76" - "@thi.ng/transducers": "npm:^8.9.16" + "@thi.ng/transducers": "npm:^8.9.17" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -6436,15 +6436,15 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/transducers-stats@npm:^2.1.110, @thi.ng/transducers-stats@workspace:^, @thi.ng/transducers-stats@workspace:packages/transducers-stats": +"@thi.ng/transducers-stats@npm:^2.1.111, @thi.ng/transducers-stats@workspace:^, @thi.ng/transducers-stats@workspace:packages/transducers-stats": version: 0.0.0-use.local resolution: "@thi.ng/transducers-stats@workspace:packages/transducers-stats" dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/checks": "npm:^3.5.5" - "@thi.ng/dcons": "npm:^3.2.105" + "@thi.ng/dcons": "npm:^3.2.106" "@thi.ng/errors": "npm:^2.5.2" - "@thi.ng/transducers": "npm:^8.9.16" + "@thi.ng/transducers": "npm:^8.9.17" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -6452,13 +6452,13 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/transducers@npm:^8.9.16, @thi.ng/transducers@workspace:^, @thi.ng/transducers@workspace:packages/transducers": +"@thi.ng/transducers@npm:^8.9.16, @thi.ng/transducers@npm:^8.9.17, @thi.ng/transducers@workspace:^, @thi.ng/transducers@workspace:packages/transducers": version: 0.0.0-use.local resolution: "@thi.ng/transducers@workspace:packages/transducers" dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/arrays": "npm:^2.8.12" + "@thi.ng/arrays": "npm:^2.9.0" "@thi.ng/checks": "npm:^3.5.5" "@thi.ng/compare": "npm:^2.2.27" "@thi.ng/compose": "npm:^2.1.71" @@ -6513,7 +6513,7 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/vector-pools@npm:^3.1.121, @thi.ng/vector-pools@workspace:^, @thi.ng/vector-pools@workspace:packages/vector-pools": +"@thi.ng/vector-pools@npm:^3.1.122, @thi.ng/vector-pools@workspace:^, @thi.ng/vector-pools@workspace:packages/vector-pools": version: 0.0.0-use.local resolution: "@thi.ng/vector-pools@workspace:packages/vector-pools" dependencies: @@ -6524,8 +6524,8 @@ __metadata: "@thi.ng/errors": "npm:^2.5.2" "@thi.ng/logger": "npm:^3.0.7" "@thi.ng/malloc": "npm:^6.1.77" - "@thi.ng/transducers": "npm:^8.9.16" - "@thi.ng/vectors": "npm:^7.10.23" + "@thi.ng/transducers": "npm:^8.9.17" + "@thi.ng/vectors": "npm:^7.10.24" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -6533,7 +6533,7 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/vectors@npm:^7.10.23, @thi.ng/vectors@workspace:^, @thi.ng/vectors@workspace:packages/vectors": +"@thi.ng/vectors@npm:^7.10.23, @thi.ng/vectors@npm:^7.10.24, @thi.ng/vectors@workspace:^, @thi.ng/vectors@workspace:packages/vectors": version: 0.0.0-use.local resolution: "@thi.ng/vectors@workspace:packages/vectors" dependencies: @@ -6547,7 +6547,7 @@ __metadata: "@thi.ng/memoize": "npm:^3.2.0" "@thi.ng/random": "npm:^3.7.1" "@thi.ng/strings": "npm:^3.7.28" - "@thi.ng/transducers": "npm:^8.9.16" + "@thi.ng/transducers": "npm:^8.9.17" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -6561,13 +6561,13 @@ __metadata: dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/arrays": "npm:^2.8.12" - "@thi.ng/associative": "npm:^6.3.52" + "@thi.ng/arrays": "npm:^2.9.0" + "@thi.ng/associative": "npm:^6.3.53" "@thi.ng/checks": "npm:^3.5.5" "@thi.ng/date": "npm:^2.7.12" "@thi.ng/math": "npm:^5.10.8" "@thi.ng/strings": "npm:^3.7.28" - "@thi.ng/transducers": "npm:^8.9.16" + "@thi.ng/transducers": "npm:^8.9.17" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -6575,14 +6575,14 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/wasm-api-bindgen@npm:^0.4.64, @thi.ng/wasm-api-bindgen@workspace:^, @thi.ng/wasm-api-bindgen@workspace:packages/wasm-api-bindgen": +"@thi.ng/wasm-api-bindgen@npm:^0.4.65, @thi.ng/wasm-api-bindgen@workspace:^, @thi.ng/wasm-api-bindgen@workspace:packages/wasm-api-bindgen": version: 0.0.0-use.local resolution: "@thi.ng/wasm-api-bindgen@workspace:packages/wasm-api-bindgen" dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" "@thi.ng/args": "npm:^2.3.28" - "@thi.ng/arrays": "npm:^2.8.12" + "@thi.ng/arrays": "npm:^2.9.0" "@thi.ng/binary": "npm:^3.4.20" "@thi.ng/checks": "npm:^3.5.5" "@thi.ng/compare": "npm:^2.2.27" @@ -6592,7 +6592,7 @@ __metadata: "@thi.ng/logger": "npm:^3.0.7" "@thi.ng/paths": "npm:^5.1.76" "@thi.ng/strings": "npm:^3.7.28" - "@thi.ng/wasm-api": "npm:^1.4.64" + "@thi.ng/wasm-api": "npm:^1.4.65" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -6608,9 +6608,9 @@ __metadata: dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/binary": "npm:^3.4.20" - "@thi.ng/wasm-api": "npm:^1.4.64" - "@thi.ng/wasm-api-bindgen": "npm:^0.4.64" - "@thi.ng/wasm-api-dom": "npm:^0.11.83" + "@thi.ng/wasm-api": "npm:^1.4.65" + "@thi.ng/wasm-api-bindgen": "npm:^0.4.65" + "@thi.ng/wasm-api-dom": "npm:^0.11.84" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -6618,7 +6618,7 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/wasm-api-dom@npm:^0.11.83, @thi.ng/wasm-api-dom@workspace:^, @thi.ng/wasm-api-dom@workspace:packages/wasm-api-dom": +"@thi.ng/wasm-api-dom@npm:^0.11.84, @thi.ng/wasm-api-dom@workspace:^, @thi.ng/wasm-api-dom@workspace:packages/wasm-api-dom": version: 0.0.0-use.local resolution: "@thi.ng/wasm-api-dom@workspace:packages/wasm-api-dom" dependencies: @@ -6627,8 +6627,8 @@ __metadata: "@thi.ng/canvas": "npm:^0.2.14" "@thi.ng/errors": "npm:^2.5.2" "@thi.ng/prefixes": "npm:^2.3.14" - "@thi.ng/wasm-api": "npm:^1.4.64" - "@thi.ng/wasm-api-bindgen": "npm:^0.4.64" + "@thi.ng/wasm-api": "npm:^1.4.65" + "@thi.ng/wasm-api-bindgen": "npm:^0.4.65" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -6642,8 +6642,8 @@ __metadata: dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/wasm-api": "npm:^1.4.64" - "@thi.ng/wasm-api-bindgen": "npm:^0.4.64" + "@thi.ng/wasm-api": "npm:^1.4.65" + "@thi.ng/wasm-api-bindgen": "npm:^0.4.65" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -6651,13 +6651,13 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/wasm-api@npm:^1.4.64, @thi.ng/wasm-api@workspace:^, @thi.ng/wasm-api@workspace:packages/wasm-api": +"@thi.ng/wasm-api@npm:^1.4.65, @thi.ng/wasm-api@workspace:^, @thi.ng/wasm-api@workspace:packages/wasm-api": version: 0.0.0-use.local resolution: "@thi.ng/wasm-api@workspace:packages/wasm-api" dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/arrays": "npm:^2.8.12" + "@thi.ng/arrays": "npm:^2.9.0" "@thi.ng/checks": "npm:^3.5.5" "@thi.ng/errors": "npm:^2.5.2" "@thi.ng/hex": "npm:^2.3.41" @@ -6676,11 +6676,11 @@ __metadata: dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/shader-ast": "npm:^0.15.7" - "@thi.ng/transducers": "npm:^8.9.16" - "@thi.ng/vector-pools": "npm:^3.1.121" - "@thi.ng/vectors": "npm:^7.10.23" - "@thi.ng/webgl": "npm:^6.8.7" + "@thi.ng/shader-ast": "npm:^0.15.8" + "@thi.ng/transducers": "npm:^8.9.17" + "@thi.ng/vector-pools": "npm:^3.1.122" + "@thi.ng/vectors": "npm:^7.10.24" + "@thi.ng/webgl": "npm:^6.8.8" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -6694,9 +6694,9 @@ __metadata: dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/shader-ast": "npm:^0.15.7" - "@thi.ng/shader-ast-glsl": "npm:^0.4.115" - "@thi.ng/webgl": "npm:^6.8.7" + "@thi.ng/shader-ast": "npm:^0.15.8" + "@thi.ng/shader-ast-glsl": "npm:^0.4.116" + "@thi.ng/webgl": "npm:^6.8.8" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -6704,27 +6704,27 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/webgl@npm:^6.8.7, @thi.ng/webgl@workspace:^, @thi.ng/webgl@workspace:packages/webgl": +"@thi.ng/webgl@npm:^6.8.8, @thi.ng/webgl@workspace:^, @thi.ng/webgl@workspace:packages/webgl": version: 0.0.0-use.local resolution: "@thi.ng/webgl@workspace:packages/webgl" dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/associative": "npm:^6.3.52" + "@thi.ng/associative": "npm:^6.3.53" "@thi.ng/canvas": "npm:^0.2.14" "@thi.ng/checks": "npm:^3.5.5" "@thi.ng/equiv": "npm:^2.1.53" "@thi.ng/errors": "npm:^2.5.2" "@thi.ng/logger": "npm:^3.0.7" - "@thi.ng/matrices": "npm:^2.3.29" + "@thi.ng/matrices": "npm:^2.3.30" "@thi.ng/memoize": "npm:^3.2.0" - "@thi.ng/pixel": "npm:^6.1.24" - "@thi.ng/shader-ast": "npm:^0.15.7" - "@thi.ng/shader-ast-glsl": "npm:^0.4.115" - "@thi.ng/shader-ast-stdlib": "npm:^0.18.7" - "@thi.ng/transducers": "npm:^8.9.16" - "@thi.ng/vector-pools": "npm:^3.1.121" - "@thi.ng/vectors": "npm:^7.10.23" + "@thi.ng/pixel": "npm:^6.1.25" + "@thi.ng/shader-ast": "npm:^0.15.8" + "@thi.ng/shader-ast-glsl": "npm:^0.4.116" + "@thi.ng/shader-ast-stdlib": "npm:^0.18.8" + "@thi.ng/transducers": "npm:^8.9.17" + "@thi.ng/vector-pools": "npm:^3.1.122" + "@thi.ng/vectors": "npm:^7.10.24" esbuild: "npm:^0.20.2" rimraf: "npm:^5.0.5" typedoc: "npm:^0.25.12" @@ -6732,13 +6732,13 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/zipper@npm:^2.1.94, @thi.ng/zipper@workspace:packages/zipper": +"@thi.ng/zipper@npm:^2.1.95, @thi.ng/zipper@workspace:packages/zipper": version: 0.0.0-use.local resolution: "@thi.ng/zipper@workspace:packages/zipper" dependencies: "@microsoft/api-extractor": "npm:^7.43.0" "@thi.ng/api": "npm:^8.9.31" - "@thi.ng/arrays": "npm:^2.8.12" + "@thi.ng/arrays": "npm:^2.9.0" "@thi.ng/checks": "npm:^3.5.5" "@thi.ng/errors": "npm:^2.5.2" esbuild: "npm:^0.20.2"