@thi.ng/fuzzy-viz 2.1.181 → 2.1.182

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2025-01-29T16:25:48Z
3
+ - **Last updated**: 2025-02-13T16:03:11Z
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/api.d.ts CHANGED
@@ -47,12 +47,12 @@ export interface VizualizeVarOpts {
47
47
  */
48
48
  labels: boolean;
49
49
  /**
50
- * Color factory function. Converts number in [0..1) interval into an CSS
50
+ * Color factory function. Converts number in `[0,1)` interval into an CSS
51
51
  * color string.
52
52
  */
53
53
  stroke: Fn<number, string>;
54
54
  /**
55
- * Color factory function. Converts number in [0..1) interval into an CSS
55
+ * Color factory function. Converts number in `[0,1)` interval into an CSS
56
56
  * color string.
57
57
  */
58
58
  fill: Fn<number, string>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/fuzzy-viz",
3
- "version": "2.1.181",
3
+ "version": "2.1.182",
4
4
  "description": "Visualization, instrumentation & introspection utils for @thi.ng/fuzzy",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -39,17 +39,17 @@
39
39
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
40
40
  },
41
41
  "dependencies": {
42
- "@thi.ng/api": "^8.11.19",
43
- "@thi.ng/fuzzy": "^2.1.101",
44
- "@thi.ng/hiccup": "^5.3.2",
45
- "@thi.ng/hiccup-svg": "^5.4.19",
46
- "@thi.ng/math": "^5.11.19",
47
- "@thi.ng/strings": "^3.9.4",
48
- "@thi.ng/text-canvas": "^3.0.55"
42
+ "@thi.ng/api": "^8.11.20",
43
+ "@thi.ng/fuzzy": "^2.1.102",
44
+ "@thi.ng/hiccup": "^5.3.3",
45
+ "@thi.ng/hiccup-svg": "^5.4.20",
46
+ "@thi.ng/math": "^5.11.20",
47
+ "@thi.ng/strings": "^3.9.5",
48
+ "@thi.ng/text-canvas": "^3.0.56"
49
49
  },
50
50
  "devDependencies": {
51
- "esbuild": "^0.24.2",
52
- "typedoc": "^0.27.6",
51
+ "esbuild": "^0.25.0",
52
+ "typedoc": "^0.27.7",
53
53
  "typescript": "^5.7.3"
54
54
  },
55
55
  "keywords": [
@@ -95,5 +95,5 @@
95
95
  "parent": "@thi.ng/fuzzy",
96
96
  "year": 2020
97
97
  },
98
- "gitHead": "dcc1dbfa6eae31ac65e12843987b94d4a7edc144\n"
98
+ "gitHead": "9a0b33253fef092aaf301decf6ecd54317874d4c\n"
99
99
  }
package/strategy.d.ts CHANGED
@@ -15,7 +15,7 @@ import type { AsciiVizOpts, InstrumentFn, VizualizeVarOpts } from "./api.js";
15
15
  * can be obtained through the
16
16
  * [`IDeref`](https://docs.thi.ng/umbrella/api/interfaces/IDeref.html) mechanism
17
17
  * implemented by the returned function. Since
18
- * [`defuzz()`](https://docs.thi.ng/umbrella/fuzzy/functions/defuzz.html) might
18
+ * [`defuzz`](https://docs.thi.ng/umbrella/fuzzy/functions/defuzz.html) might
19
19
  * call the strategy multiple times (i.e. if there are multiple output vars
20
20
  * used), `.deref()` will always return an array of secondary results.
21
21
  *