@csstools/css-color-parser 1.5.0 → 1.5.1
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 +8 -6
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changes to CSS Color Parser
|
|
2
2
|
|
|
3
|
+
### 1.5.1
|
|
4
|
+
|
|
5
|
+
_December 31, 2023_
|
|
6
|
+
|
|
7
|
+
- Updated [`@csstools/css-tokenizer`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-tokenizer) to [`2.2.3`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-tokenizer/CHANGELOG.md#223) (patch)
|
|
8
|
+
- Updated [`@csstools/css-parser-algorithms`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-parser-algorithms) to [`2.5.0`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-parser-algorithms/CHANGELOG.md#250) (minor)
|
|
9
|
+
- Updated [`@csstools/css-calc`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-calc) to [`1.1.6`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-calc/CHANGELOG.md#116) (patch)
|
|
10
|
+
|
|
3
11
|
### 1.5.0
|
|
4
12
|
|
|
5
13
|
_December 15, 2023_
|
|
@@ -19,10 +27,4 @@ _October 9, 2023_
|
|
|
19
27
|
|
|
20
28
|
- Add utility to determine if a color is in the Display P3 gamut.
|
|
21
29
|
|
|
22
|
-
### 1.3.3
|
|
23
|
-
|
|
24
|
-
_October 2, 2023_
|
|
25
|
-
|
|
26
|
-
- Fix interpolation of `hue` when either or both components are `none` and `longer` is the interpolation method.
|
|
27
|
-
|
|
28
30
|
[Full CHANGELOG](https://github.com/csstools/postcss-plugins/tree/main/packages/css-color-parser/CHANGELOG.md)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@csstools/css-color-parser",
|
|
3
3
|
"description": "Parse CSS color values",
|
|
4
|
-
"version": "1.5.
|
|
4
|
+
"version": "1.5.1",
|
|
5
5
|
"contributors": [
|
|
6
6
|
{
|
|
7
7
|
"name": "Antonio Laguna",
|
|
@@ -49,11 +49,11 @@
|
|
|
49
49
|
],
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"@csstools/color-helpers": "^4.0.0",
|
|
52
|
-
"@csstools/css-calc": "^1.1.
|
|
52
|
+
"@csstools/css-calc": "^1.1.6"
|
|
53
53
|
},
|
|
54
54
|
"peerDependencies": {
|
|
55
|
-
"@csstools/css-parser-algorithms": "^2.
|
|
56
|
-
"@csstools/css-tokenizer": "^2.2.
|
|
55
|
+
"@csstools/css-parser-algorithms": "^2.5.0",
|
|
56
|
+
"@csstools/css-tokenizer": "^2.2.3"
|
|
57
57
|
},
|
|
58
58
|
"homepage": "https://github.com/csstools/postcss-plugins/tree/main/packages/css-color-parser#readme",
|
|
59
59
|
"repository": {
|