@thi.ng/fuzzy-viz 2.1.10 → 2.1.13
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 +3 -3
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.13",
|
|
4
4
|
"description": "Visualization, instrumentation & introspection utils for @thi.ng/fuzzy",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -34,21 +34,21 @@
|
|
|
34
34
|
"test": "testament test"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@thi.ng/api": "^8.3.
|
|
38
|
-
"@thi.ng/fuzzy": "^2.1.
|
|
39
|
-
"@thi.ng/hiccup": "^4.2.
|
|
40
|
-
"@thi.ng/hiccup-svg": "^4.2.
|
|
41
|
-
"@thi.ng/math": "^5.3.
|
|
42
|
-
"@thi.ng/strings": "^3.3.
|
|
43
|
-
"@thi.ng/text-canvas": "^2.3.
|
|
37
|
+
"@thi.ng/api": "^8.3.7",
|
|
38
|
+
"@thi.ng/fuzzy": "^2.1.7",
|
|
39
|
+
"@thi.ng/hiccup": "^4.2.8",
|
|
40
|
+
"@thi.ng/hiccup-svg": "^4.2.13",
|
|
41
|
+
"@thi.ng/math": "^5.3.3",
|
|
42
|
+
"@thi.ng/strings": "^3.3.5",
|
|
43
|
+
"@thi.ng/text-canvas": "^2.3.4"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@microsoft/api-extractor": "^7.
|
|
47
|
-
"@thi.ng/testament": "^0.2.
|
|
46
|
+
"@microsoft/api-extractor": "^7.25.0",
|
|
47
|
+
"@thi.ng/testament": "^0.2.8",
|
|
48
48
|
"rimraf": "^3.0.2",
|
|
49
49
|
"tools": "^0.0.1",
|
|
50
|
-
"typedoc": "^0.22.
|
|
51
|
-
"typescript": "^4.
|
|
50
|
+
"typedoc": "^0.22.17",
|
|
51
|
+
"typescript": "^4.7.3"
|
|
52
52
|
},
|
|
53
53
|
"keywords": [
|
|
54
54
|
"area plot",
|
|
@@ -91,5 +91,5 @@
|
|
|
91
91
|
"parent": "@thi.ng/fuzzy",
|
|
92
92
|
"year": 2020
|
|
93
93
|
},
|
|
94
|
-
"gitHead": "
|
|
94
|
+
"gitHead": "9e516d30a1a537e027a6b3d78bf9121bc5831d31\n"
|
|
95
95
|
}
|
package/strategy.d.ts
CHANGED
|
@@ -50,7 +50,7 @@ import type { AsciiVizOpts, InstrumentFn, VizualizeVarOpts } from "./api.js";
|
|
|
50
50
|
* @param instrument -
|
|
51
51
|
*/
|
|
52
52
|
export declare const instrumentStrategy: <T>(strategy: DefuzzStrategy, instrument: Fn3<import("@thi.ng/api").FnN, import("@thi.ng/api").Range, number, T>) => DefuzzStrategy & IClear & IDeref<T[]>;
|
|
53
|
-
export declare const fuzzySetToHiccup: (opts?: Partial<VizualizeVarOpts>
|
|
54
|
-
export declare const fuzzySetToSvg: (opts?: Partial<VizualizeVarOpts>
|
|
55
|
-
export declare const fuzzySetToAscii: (opts?: Partial<AsciiVizOpts>
|
|
53
|
+
export declare const fuzzySetToHiccup: (opts?: Partial<VizualizeVarOpts>) => InstrumentFn<any[]>;
|
|
54
|
+
export declare const fuzzySetToSvg: (opts?: Partial<VizualizeVarOpts>) => InstrumentFn<string>;
|
|
55
|
+
export declare const fuzzySetToAscii: (opts?: Partial<AsciiVizOpts>) => InstrumentFn<string>;
|
|
56
56
|
//# sourceMappingURL=strategy.d.ts.map
|