@thi.ng/geom-fuzz 2.2.18 → 2.2.20

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +7 -1
  2. package/api.d.ts +3 -3
  3. package/package.json +14 -14
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2023-03-27T19:05:49Z
3
+ - **Last updated**: 2023-04-08T11:09:50Z
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.
@@ -9,6 +9,12 @@ See [Conventional Commits](https://conventionalcommits.org/) for commit guidelin
9
9
  **Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
10
10
  and/or version bumps of transitive dependencies.
11
11
 
12
+ ### [2.2.19](https://github.com/thi-ng/umbrella/tree/@thi.ng/geom-fuzz@2.2.19) (2023-04-08)
13
+
14
+ #### ♻️ Refactoring
15
+
16
+ - update imports ([363deb4](https://github.com/thi-ng/umbrella/commit/363deb4))
17
+
12
18
  ## [2.2.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/geom-fuzz@2.2.0) (2022-12-22)
13
19
 
14
20
  #### 🚀 Features
package/api.d.ts CHANGED
@@ -2,7 +2,7 @@ import type { Fn } from "@thi.ng/api";
2
2
  import type { IColor } from "@thi.ng/color";
3
3
  import type { Polygon } from "@thi.ng/geom";
4
4
  import type { IHiccupShape } from "@thi.ng/geom-api";
5
- import type { PointTransform } from "@thi.ng/grid-iterators/api";
5
+ import type { PointTransform2D } from "@thi.ng/grid-iterators/api";
6
6
  export type Color = string | number[] | IColor;
7
7
  export type FillFn = Fn<Polygon, IHiccupShape>;
8
8
  export type HatchDir = "d" | "h" | "v";
@@ -24,10 +24,10 @@ export interface HatchOpts {
24
24
  /**
25
25
  * Optional transform fn for generated grid points. If given,
26
26
  * {@link HatchOpts.flip} will be ignored. See
27
- * [`PointTransform`](https://docs.thi.ng/umbrella/grid-iterators/types/PointTransform.html)
27
+ * [`PointTransform`](https://docs.thi.ng/umbrella/grid-iterators/types/PointTransform2D.html)
28
28
  * for more details.
29
29
  */
30
- tx?: PointTransform;
30
+ tx?: PointTransform2D;
31
31
  flip?: FlipDir;
32
32
  space: number;
33
33
  line: Partial<FuzzyLineOpts>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/geom-fuzz",
3
- "version": "2.2.18",
3
+ "version": "2.2.20",
4
4
  "description": "Highly configurable, fuzzy line & polygon creation with presets and composable fill & stroke styles. Canvas & SVG support",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -34,24 +34,24 @@
34
34
  "test": "testament test"
35
35
  },
36
36
  "dependencies": {
37
- "@thi.ng/api": "^8.7.5",
38
- "@thi.ng/associative": "^6.2.33",
39
- "@thi.ng/color": "^5.4.6",
40
- "@thi.ng/geom": "^4.4.1",
41
- "@thi.ng/geom-api": "^3.4.12",
42
- "@thi.ng/geom-clip-line": "^2.3.12",
43
- "@thi.ng/geom-resample": "^2.2.12",
44
- "@thi.ng/grid-iterators": "^3.1.1",
45
- "@thi.ng/transducers": "^8.4.1",
46
- "@thi.ng/vectors": "^7.6.10"
37
+ "@thi.ng/api": "^8.8.0",
38
+ "@thi.ng/associative": "^6.2.35",
39
+ "@thi.ng/color": "^5.5.0",
40
+ "@thi.ng/geom": "^5.0.1",
41
+ "@thi.ng/geom-api": "^3.4.14",
42
+ "@thi.ng/geom-clip-line": "^2.3.14",
43
+ "@thi.ng/geom-resample": "^2.2.14",
44
+ "@thi.ng/grid-iterators": "^4.0.1",
45
+ "@thi.ng/transducers": "^8.4.3",
46
+ "@thi.ng/vectors": "^7.6.12"
47
47
  },
48
48
  "devDependencies": {
49
49
  "@microsoft/api-extractor": "^7.34.4",
50
- "@thi.ng/testament": "^0.3.14",
50
+ "@thi.ng/testament": "^0.3.15",
51
51
  "rimraf": "^4.4.1",
52
52
  "tools": "^0.0.1",
53
53
  "typedoc": "^0.23.28",
54
- "typescript": "^5.0.2"
54
+ "typescript": "^5.0.4"
55
55
  },
56
56
  "keywords": [
57
57
  "2d",
@@ -120,5 +120,5 @@
120
120
  ],
121
121
  "year": 2020
122
122
  },
123
- "gitHead": "83b15b34326d480cbca0472b20390d4d3bbb792a\n"
123
+ "gitHead": "3a56bc490f1e68754762a503d06327b5b34ff7eb\n"
124
124
  }