@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 +1 -1
- package/flood-fill.js +1 -1
- package/package.json +14 -14
package/CHANGELOG.md
CHANGED
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.
|
|
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.
|
|
40
|
-
"@thi.ng/arrays": "^2.5.
|
|
41
|
-
"@thi.ng/binary": "^3.3.
|
|
42
|
-
"@thi.ng/bitfield": "^2.2.
|
|
43
|
-
"@thi.ng/errors": "^2.2.
|
|
44
|
-
"@thi.ng/morton": "^3.1.
|
|
45
|
-
"@thi.ng/random": "^3.3.
|
|
46
|
-
"@thi.ng/transducers": "^8.4.
|
|
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.
|
|
51
|
-
"rimraf": "^4.4.
|
|
50
|
+
"@thi.ng/testament": "^0.3.14",
|
|
51
|
+
"rimraf": "^4.4.1",
|
|
52
52
|
"tools": "^0.0.1",
|
|
53
|
-
"typedoc": "^0.23.
|
|
54
|
-
"typescript": "^
|
|
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": "
|
|
166
|
+
"gitHead": "83b15b34326d480cbca0472b20390d4d3bbb792a\n"
|
|
167
167
|
}
|