@csstools/postcss-color-function 3.0.5 → 3.0.7

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,5 +1,18 @@
1
1
  # Changes to PostCSS Color Function
2
2
 
3
+ ### 3.0.7
4
+
5
+ _October 9, 2023_
6
+
7
+ - Updated [`@csstools/css-color-parser`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-color-parser) to [`1.4.0`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-color-parser/CHANGELOG.md#140) (minor)
8
+ - Updated [`@csstools/postcss-progressive-custom-properties`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-progressive-custom-properties) to [`3.0.2`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-progressive-custom-properties/CHANGELOG.md#302) (patch)
9
+
10
+ ### 3.0.6
11
+
12
+ _October 2, 2023_
13
+
14
+ - Updated [`@csstools/css-color-parser`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-color-parser) to [`1.3.3`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-color-parser/CHANGELOG.md#133) (patch)
15
+
3
16
  ### 3.0.5
4
17
 
5
18
  _September 24, 2023_
package/README.md CHANGED
@@ -90,7 +90,7 @@ postcssColorFunction({ preserve: true })
90
90
  --a-color: rgb(164, 49, 43);
91
91
  }
92
92
 
93
- @supports (color: color(srgb 0 0 0)) {
93
+ @supports (color: color(display-p3 0 0 0)) {
94
94
  :root {
95
95
  --a-color: color(srgb 0.64331 0.19245 0.16771);
96
96
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@csstools/postcss-color-function",
3
3
  "description": "Use the color() function in CSS",
4
- "version": "3.0.5",
4
+ "version": "3.0.7",
5
5
  "author": "Jonathan Neal <jonathantneal@hotmail.com>",
6
6
  "license": "MIT-0",
7
7
  "funding": [
@@ -35,10 +35,10 @@
35
35
  "dist"
36
36
  ],
37
37
  "dependencies": {
38
- "@csstools/css-color-parser": "^1.3.2",
38
+ "@csstools/css-color-parser": "^1.4.0",
39
39
  "@csstools/css-parser-algorithms": "^2.3.2",
40
40
  "@csstools/css-tokenizer": "^2.2.1",
41
- "@csstools/postcss-progressive-custom-properties": "^3.0.1"
41
+ "@csstools/postcss-progressive-custom-properties": "^3.0.2"
42
42
  },
43
43
  "peerDependencies": {
44
44
  "postcss": "^8.4"