@thi.ng/ramp 2.1.11 → 2.1.14

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**: 2022-05-02T11:57:05Z
3
+ - **Last updated**: 2022-06-09T16:14:01Z
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
@@ -51,7 +51,7 @@ node --experimental-repl-await
51
51
  > const ramp = await import("@thi.ng/ramp");
52
52
  ```
53
53
 
54
- Package sizes (gzipped, pre-treeshake): ESM: 1.06 KB
54
+ Package sizes (gzipped, pre-treeshake): ESM: 1.05 KB
55
55
 
56
56
  ## Dependencies
57
57
 
package/hermite.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import type { Vec } from "@thi.ng/vectors";
2
2
  import { ARamp } from "./aramp.js";
3
- export declare const hermite: (stops?: Vec[] | undefined) => HermiteRamp;
3
+ export declare const hermite: (stops?: Vec[]) => HermiteRamp;
4
4
  export declare class HermiteRamp extends ARamp {
5
5
  at(t: number): number;
6
6
  interpolatedPoints(res?: number): IterableIterator<number[]>;
package/linear.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import type { Vec } from "@thi.ng/vectors";
2
2
  import { ARamp } from "./aramp.js";
3
- export declare const linear: (stops?: Vec[] | undefined) => LinearRamp;
3
+ export declare const linear: (stops?: Vec[]) => LinearRamp;
4
4
  export declare class LinearRamp extends ARamp {
5
5
  at(t: number): number;
6
6
  interpolatedPoints(): Vec[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/ramp",
3
- "version": "2.1.11",
3
+ "version": "2.1.14",
4
4
  "description": "Parametric interpolated 1D lookup tables for remapping values",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -34,19 +34,19 @@
34
34
  "test": "testament test"
35
35
  },
36
36
  "dependencies": {
37
- "@thi.ng/arrays": "^2.2.1",
38
- "@thi.ng/compare": "^2.1.5",
39
- "@thi.ng/math": "^5.3.1",
40
- "@thi.ng/transducers": "^8.3.1",
41
- "@thi.ng/vectors": "^7.5.2"
37
+ "@thi.ng/arrays": "^2.2.4",
38
+ "@thi.ng/compare": "^2.1.7",
39
+ "@thi.ng/math": "^5.3.3",
40
+ "@thi.ng/transducers": "^8.3.4",
41
+ "@thi.ng/vectors": "^7.5.5"
42
42
  },
43
43
  "devDependencies": {
44
- "@microsoft/api-extractor": "^7.19.4",
45
- "@thi.ng/testament": "^0.2.5",
44
+ "@microsoft/api-extractor": "^7.25.0",
45
+ "@thi.ng/testament": "^0.2.8",
46
46
  "rimraf": "^3.0.2",
47
47
  "tools": "^0.0.1",
48
- "typedoc": "^0.22.13",
49
- "typescript": "^4.6.2"
48
+ "typedoc": "^0.22.17",
49
+ "typescript": "^4.7.3"
50
50
  },
51
51
  "keywords": [
52
52
  "1d",
@@ -92,5 +92,5 @@
92
92
  "thi.ng": {
93
93
  "year": 2019
94
94
  },
95
- "gitHead": "542bf14bd0c7a56b4e6297718189eea772a824b7\n"
95
+ "gitHead": "9e516d30a1a537e027a6b3d78bf9121bc5831d31\n"
96
96
  }