@thi.ng/fuzzy-viz 2.1.124 → 2.1.126

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**: 2024-02-22T23:15:26Z
3
+ - **Last updated**: 2024-02-25T14:07:53Z
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/README.md CHANGED
@@ -65,7 +65,7 @@ For Node.js REPL:
65
65
  const fuzzyViz = await import("@thi.ng/fuzzy-viz");
66
66
  ```
67
67
 
68
- Package sizes (brotli'd, pre-treeshake): ESM: 1.00 KB
68
+ Package sizes (brotli'd, pre-treeshake): ESM: 1023 bytes
69
69
 
70
70
  ## Dependencies
71
71
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/fuzzy-viz",
3
- "version": "2.1.124",
3
+ "version": "2.1.126",
4
4
  "description": "Visualization, instrumentation & introspection utils for @thi.ng/fuzzy",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -35,13 +35,13 @@
35
35
  "test": "bun test"
36
36
  },
37
37
  "dependencies": {
38
- "@thi.ng/api": "^8.9.25",
39
- "@thi.ng/fuzzy": "^2.1.68",
40
- "@thi.ng/hiccup": "^5.1.14",
41
- "@thi.ng/hiccup-svg": "^5.2.16",
42
- "@thi.ng/math": "^5.10.2",
43
- "@thi.ng/strings": "^3.7.16",
44
- "@thi.ng/text-canvas": "^3.0.3"
38
+ "@thi.ng/api": "^8.9.26",
39
+ "@thi.ng/fuzzy": "^2.1.69",
40
+ "@thi.ng/hiccup": "^5.1.16",
41
+ "@thi.ng/hiccup-svg": "^5.2.18",
42
+ "@thi.ng/math": "^5.10.3",
43
+ "@thi.ng/strings": "^3.7.18",
44
+ "@thi.ng/text-canvas": "^3.0.5"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@microsoft/api-extractor": "^7.40.1",
@@ -91,5 +91,5 @@
91
91
  "parent": "@thi.ng/fuzzy",
92
92
  "year": 2020
93
93
  },
94
- "gitHead": "b97641d1d722f79a70ea68243fa95e845dca7a43\n"
94
+ "gitHead": "190d68e7f7524631b333cfdbf32c6a23be27c166\n"
95
95
  }
package/strategy.d.ts CHANGED
@@ -26,6 +26,9 @@ import type { AsciiVizOpts, InstrumentFn, VizualizeVarOpts } from "./api.js";
26
26
  *
27
27
  * @example
28
28
  * ```ts
29
+ * import { cogStrategy, gaussian } from "@thi.ng/fuzzy";
30
+ * import { instrumentStrategy, fuzzySetToAscii } from "@thi.ng/fuzzy-viz";
31
+ *
29
32
  * const strategy = instrumentStrategy(
30
33
  * cogStrategy({ samples: 1000 }),
31
34
  * fuzzySetToAscii({ width: 40, height: 8 })