@thi.ng/color 5.8.20 → 5.8.22

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/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
  [![Mastodon Follow](https://img.shields.io/mastodon/follow/109331703950160316?domain=https%3A%2F%2Fmastodon.thi.ng&style=social)](https://mastodon.thi.ng/@toxi)
8
8
 
9
9
  > [!NOTE]
10
- > This is one of 214 standalone projects, maintained as part
10
+ > This is one of 215 standalone projects, maintained as part
11
11
  > of the [@thi.ng/umbrella](https://codeberg.org/thi.ng/umbrella/) ecosystem
12
12
  > and anti-framework.
13
13
  >
@@ -801,7 +801,7 @@ For Node.js REPL:
801
801
  const color = await import("@thi.ng/color");
802
802
  ```
803
803
 
804
- Package sizes (brotli'd, pre-treeshake): ESM: 15.79 KB
804
+ Package sizes (brotli'd, pre-treeshake): ESM: 15.88 KB
805
805
 
806
806
  ## Dependencies
807
807
 
package/api.js CHANGED
@@ -18,6 +18,8 @@ class ParsedColor {
18
18
  this.mode = mode;
19
19
  this.value = value;
20
20
  }
21
+ mode;
22
+ value;
21
23
  deref() {
22
24
  return this.value;
23
25
  }
package/defcolor.js CHANGED
@@ -42,6 +42,8 @@ const defColor = (spec) => {
42
42
  this.offset = offset;
43
43
  this.stride = stride;
44
44
  }
45
+ offset;
46
+ stride;
45
47
  buf;
46
48
  get mode() {
47
49
  return spec.mode;
package/int/int.js CHANGED
@@ -18,6 +18,8 @@ class Int32 {
18
18
  this.stride = stride;
19
19
  this.buf = buf || [0];
20
20
  }
21
+ offset;
22
+ stride;
21
23
  buf;
22
24
  value;
23
25
  eqDelta(o, eps) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/color",
3
- "version": "5.8.20",
3
+ "version": "5.8.22",
4
4
  "description": "Array-based color types, CSS parsing, conversions, transformations, declarative theme generation, gradients, presets",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -44,23 +44,23 @@
44
44
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
45
45
  },
46
46
  "dependencies": {
47
- "@thi.ng/api": "^8.12.18",
48
- "@thi.ng/arrays": "^2.14.14",
49
- "@thi.ng/binary": "^3.6.7",
50
- "@thi.ng/checks": "^3.8.8",
51
- "@thi.ng/compare": "^2.5.6",
52
- "@thi.ng/compose": "^3.0.55",
53
- "@thi.ng/defmulti": "^3.0.95",
54
- "@thi.ng/errors": "^2.6.7",
55
- "@thi.ng/math": "^5.15.7",
56
- "@thi.ng/random": "^4.1.43",
57
- "@thi.ng/strings": "^3.12.0",
58
- "@thi.ng/transducers": "^9.6.31",
59
- "@thi.ng/vectors": "^8.6.27"
47
+ "@thi.ng/api": "^8.12.20",
48
+ "@thi.ng/arrays": "^2.14.16",
49
+ "@thi.ng/binary": "^3.6.9",
50
+ "@thi.ng/checks": "^3.9.0",
51
+ "@thi.ng/compare": "^2.5.8",
52
+ "@thi.ng/compose": "^3.0.57",
53
+ "@thi.ng/defmulti": "^3.0.97",
54
+ "@thi.ng/errors": "^2.6.9",
55
+ "@thi.ng/math": "^5.15.9",
56
+ "@thi.ng/random": "^4.1.45",
57
+ "@thi.ng/strings": "^3.12.2",
58
+ "@thi.ng/transducers": "^9.6.33",
59
+ "@thi.ng/vectors": "^8.6.29"
60
60
  },
61
61
  "devDependencies": {
62
- "esbuild": "^0.27.2",
63
- "typedoc": "^0.28.16",
62
+ "esbuild": "^0.28.0",
63
+ "typedoc": "^0.28.18",
64
64
  "typescript": "^5.9.3"
65
65
  },
66
66
  "keywords": [
@@ -447,5 +447,5 @@
447
447
  "vectors"
448
448
  ]
449
449
  },
450
- "gitHead": "929fb6590178a41cbb77cbb87e07c59c61381607\n"
450
+ "gitHead": "92be63f24030506f09d6d156804da2798c381dc4"
451
451
  }