@thi.ng/grid-iterators 3.1.0 → 3.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2023-03-25T17:04:52Z
3
+ - **Last updated**: 2023-03-27T19:05:49Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
package/flood-fill.js CHANGED
@@ -1,4 +1,4 @@
1
- import { defBitField } from "@thi.ng/bitfield/bitfield";
1
+ import { BitField, defBitField } from "@thi.ng/bitfield/bitfield";
2
2
  /**
3
3
  * Yields an iterator of 2D coordinates of the connected region around `x,y` for
4
4
  * which the given predicate succeeds. I.e. The function recursively explores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/grid-iterators",
3
- "version": "3.1.0",
3
+ "version": "3.1.1",
4
4
  "description": "2D grid and shape iterators w/ multiple orderings",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -36,22 +36,22 @@
36
36
  "tool:assets": "tools:node-esm tools/build-assets.ts"
37
37
  },
38
38
  "dependencies": {
39
- "@thi.ng/api": "^8.7.4",
40
- "@thi.ng/arrays": "^2.5.8",
41
- "@thi.ng/binary": "^3.3.21",
42
- "@thi.ng/bitfield": "^2.2.24",
43
- "@thi.ng/errors": "^2.2.13",
44
- "@thi.ng/morton": "^3.1.32",
45
- "@thi.ng/random": "^3.3.27",
46
- "@thi.ng/transducers": "^8.4.0"
39
+ "@thi.ng/api": "^8.7.5",
40
+ "@thi.ng/arrays": "^2.5.9",
41
+ "@thi.ng/binary": "^3.3.22",
42
+ "@thi.ng/bitfield": "^2.2.25",
43
+ "@thi.ng/errors": "^2.2.14",
44
+ "@thi.ng/morton": "^3.1.33",
45
+ "@thi.ng/random": "^3.3.28",
46
+ "@thi.ng/transducers": "^8.4.1"
47
47
  },
48
48
  "devDependencies": {
49
49
  "@microsoft/api-extractor": "^7.34.4",
50
- "@thi.ng/testament": "^0.3.13",
51
- "rimraf": "^4.4.0",
50
+ "@thi.ng/testament": "^0.3.14",
51
+ "rimraf": "^4.4.1",
52
52
  "tools": "^0.0.1",
53
- "typedoc": "^0.23.26",
54
- "typescript": "^4.9.5"
53
+ "typedoc": "^0.23.28",
54
+ "typescript": "^5.0.2"
55
55
  },
56
56
  "keywords": [
57
57
  "2d",
@@ -163,5 +163,5 @@
163
163
  ],
164
164
  "year": 2019
165
165
  },
166
- "gitHead": "f5c562f74466d36a6df27ddd6957eeb280831fa9\n"
166
+ "gitHead": "83b15b34326d480cbca0472b20390d4d3bbb792a\n"
167
167
  }