@thi.ng/fuzzy-viz 2.1.131 → 2.1.133
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/package.json +13 -13
- package/strategy.d.ts +1 -1
package/CHANGELOG.md
CHANGED
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.133",
|
|
4
4
|
"description": "Visualization, instrumentation & introspection utils for @thi.ng/fuzzy",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -36,20 +36,20 @@
|
|
|
36
36
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@thi.ng/api": "^8.9.
|
|
40
|
-
"@thi.ng/fuzzy": "^2.1.
|
|
41
|
-
"@thi.ng/hiccup": "^5.1.
|
|
42
|
-
"@thi.ng/hiccup-svg": "^5.2.
|
|
43
|
-
"@thi.ng/math": "^5.10.
|
|
44
|
-
"@thi.ng/strings": "^3.7.
|
|
45
|
-
"@thi.ng/text-canvas": "^3.0.
|
|
39
|
+
"@thi.ng/api": "^8.9.30",
|
|
40
|
+
"@thi.ng/fuzzy": "^2.1.74",
|
|
41
|
+
"@thi.ng/hiccup": "^5.1.22",
|
|
42
|
+
"@thi.ng/hiccup-svg": "^5.2.25",
|
|
43
|
+
"@thi.ng/math": "^5.10.7",
|
|
44
|
+
"@thi.ng/strings": "^3.7.24",
|
|
45
|
+
"@thi.ng/text-canvas": "^3.0.11"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@microsoft/api-extractor": "^7.
|
|
49
|
-
"esbuild": "^0.20.
|
|
48
|
+
"@microsoft/api-extractor": "^7.42.3",
|
|
49
|
+
"esbuild": "^0.20.1",
|
|
50
50
|
"rimraf": "^5.0.5",
|
|
51
|
-
"typedoc": "^0.25.
|
|
52
|
-
"typescript": "^5.
|
|
51
|
+
"typedoc": "^0.25.12",
|
|
52
|
+
"typescript": "^5.4.2"
|
|
53
53
|
},
|
|
54
54
|
"keywords": [
|
|
55
55
|
"area plot",
|
|
@@ -92,5 +92,5 @@
|
|
|
92
92
|
"parent": "@thi.ng/fuzzy",
|
|
93
93
|
"year": 2020
|
|
94
94
|
},
|
|
95
|
-
"gitHead": "
|
|
95
|
+
"gitHead": "bc0f3cb07d6f1cab6dbdc5ff57428f5484e711bb\n"
|
|
96
96
|
}
|
package/strategy.d.ts
CHANGED
|
@@ -55,7 +55,7 @@ import type { AsciiVizOpts, InstrumentFn, VizualizeVarOpts } from "./api.js";
|
|
|
55
55
|
* @param strategy -
|
|
56
56
|
* @param instrument -
|
|
57
57
|
*/
|
|
58
|
-
export declare const instrumentStrategy: <T>(strategy: DefuzzStrategy, instrument: Fn3<
|
|
58
|
+
export declare const instrumentStrategy: <T>(strategy: DefuzzStrategy, instrument: Fn3<FuzzyFn, LVarDomain, number, T>) => DefuzzStrategy & IClear & IDeref<T[]>;
|
|
59
59
|
export declare const fuzzySetToHiccup: (opts?: Partial<VizualizeVarOpts>) => InstrumentFn<any[]>;
|
|
60
60
|
export declare const fuzzySetToSvg: (opts?: Partial<VizualizeVarOpts>) => InstrumentFn<string>;
|
|
61
61
|
export declare const fuzzySetToAscii: (opts?: Partial<AsciiVizOpts>) => InstrumentFn<string>;
|