@thi.ng/fuzzy-viz 2.1.180 → 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 +1 -1
- package/api.d.ts +2 -2
- package/package.json +11 -11
- package/strategy.d.ts +1 -1
package/CHANGELOG.md
CHANGED
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
|
|
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
|
|
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.
|
|
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.
|
|
43
|
-
"@thi.ng/fuzzy": "^2.1.
|
|
44
|
-
"@thi.ng/hiccup": "^5.3.
|
|
45
|
-
"@thi.ng/hiccup-svg": "^5.4.
|
|
46
|
-
"@thi.ng/math": "^5.11.
|
|
47
|
-
"@thi.ng/strings": "^3.9.
|
|
48
|
-
"@thi.ng/text-canvas": "^3.0.
|
|
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.
|
|
52
|
-
"typedoc": "^0.27.
|
|
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": "
|
|
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
|
|
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
|
*
|