@csstools/css-color-parser 1.2.1 → 1.2.2
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 +26 -6
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,28 +1,48 @@
|
|
|
1
1
|
# Changes to CSS Color Parser
|
|
2
2
|
|
|
3
|
-
### 1.2.
|
|
3
|
+
### 1.2.2
|
|
4
|
+
|
|
5
|
+
_July 3, 2023_
|
|
6
|
+
|
|
7
|
+
- Updated [`@csstools/color-helpers`](/packages/color-helpers) to [`3.0.0`](/packages/color-helpers/CHANGELOG.md#300) (major)
|
|
8
|
+
- Updated [`@csstools/css-parser-algorithms`](/packages/css-parser-algorithms) to [`2.3.0`](/packages/css-parser-algorithms/CHANGELOG.md#230) (minor)
|
|
9
|
+
- Updated [`@csstools/css-calc`](/packages/css-calc) to [`1.1.2`](/packages/css-calc/CHANGELOG.md#112) (patch)
|
|
10
|
+
|
|
11
|
+
### 1.2.1
|
|
12
|
+
|
|
13
|
+
_June 14, 2023_
|
|
4
14
|
|
|
5
15
|
- Fix value calculation for `hue` components in relative color syntax.
|
|
6
16
|
|
|
7
|
-
### 1.2.0
|
|
17
|
+
### 1.2.0
|
|
18
|
+
|
|
19
|
+
_May 19, 2023_
|
|
8
20
|
|
|
9
21
|
- Add support for relative color syntax.
|
|
10
22
|
- Updated `@csstools/color-helpers` to `2.1.0` (minor)
|
|
11
23
|
|
|
12
|
-
### 1.1.2
|
|
24
|
+
### 1.1.2
|
|
25
|
+
|
|
26
|
+
_April 10, 2023_
|
|
13
27
|
|
|
14
28
|
- Updated `@csstools/css-tokenizer` to `2.1.1` (patch)
|
|
15
29
|
- Updated `@csstools/css-parser-algorithms` to `2.1.1` (patch)
|
|
16
30
|
- Updated `@csstools/css-calc` to `1.1.1` (patch)
|
|
17
31
|
|
|
18
|
-
### 1.1.1
|
|
32
|
+
### 1.1.1
|
|
33
|
+
|
|
34
|
+
_April 10, 2023_
|
|
19
35
|
|
|
20
36
|
- Improve the detection of math function in color notations.
|
|
21
37
|
|
|
22
|
-
### 1.1.0
|
|
38
|
+
### 1.1.0
|
|
39
|
+
|
|
40
|
+
_March 28, 2023_
|
|
23
41
|
|
|
24
42
|
- Add a flag to `serializeP3` and `serializeRGB` to skip gamut mapping.
|
|
25
43
|
|
|
26
|
-
### 1.0.0
|
|
44
|
+
### 1.0.0
|
|
45
|
+
|
|
46
|
+
_March 25, 2023_
|
|
27
47
|
|
|
28
48
|
- Initial version
|
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.2.
|
|
4
|
+
"version": "1.2.2",
|
|
5
5
|
"contributors": [
|
|
6
6
|
{
|
|
7
7
|
"name": "Antonio Laguna",
|
|
@@ -45,11 +45,11 @@
|
|
|
45
45
|
"dist"
|
|
46
46
|
],
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@csstools/color-helpers": "^
|
|
49
|
-
"@csstools/css-calc": "^1.1.
|
|
48
|
+
"@csstools/color-helpers": "^3.0.0",
|
|
49
|
+
"@csstools/css-calc": "^1.1.2"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
|
-
"@csstools/css-parser-algorithms": "^2.
|
|
52
|
+
"@csstools/css-parser-algorithms": "^2.3.0",
|
|
53
53
|
"@csstools/css-tokenizer": "^2.1.1"
|
|
54
54
|
},
|
|
55
55
|
"scripts": {
|