postcss-color-functional-notation 7.0.5 → 7.0.6

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,11 +1,9 @@
1
1
  # Changes to PostCSS Color Functional Notation
2
2
 
3
- ### 7.0.5
3
+ ### 7.0.6
4
4
 
5
- _November 1, 2024_
5
+ _November 11, 2024_
6
6
 
7
- - Updated [`@csstools/css-tokenizer`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-tokenizer) to [`3.0.3`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-tokenizer/CHANGELOG.md#303) (patch)
8
- - Updated [`@csstools/css-parser-algorithms`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-parser-algorithms) to [`3.0.4`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-parser-algorithms/CHANGELOG.md#304) (patch)
9
- - Updated [`@csstools/css-color-parser`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-color-parser) to [`3.0.5`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-color-parser/CHANGELOG.md#305) (patch)
7
+ - Updated [`@csstools/css-color-parser`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-color-parser) to [`3.0.6`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-color-parser/CHANGELOG.md#306) (patch)
10
8
 
11
9
  [Full CHANGELOG](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation/CHANGELOG.md)
package/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  [PostCSS Color Functional Notation] lets you use space and slash separated
6
6
  color notation in CSS, following the [CSS Color] specification.
7
7
 
8
- ```pcss
8
+ ```css
9
9
  :root {
10
10
  --firebrick: rgb(178 34 34);
11
11
  --firebrick-a50: rgb(70% 13.5% 13.5% / 50%);
@@ -55,7 +55,7 @@ is preserved. By default, it is not preserved.
55
55
  postcssColorFunctionalNotation({ preserve: true })
56
56
  ```
57
57
 
58
- ```pcss
58
+ ```css
59
59
  :root {
60
60
  --firebrick: rgb(178 34 34);
61
61
  --firebrick-a50: rgb(70% 13.5% 13.5% / 50%);
@@ -100,7 +100,7 @@ is wrapped with `@supports` when used in Custom Properties. By default, it is en
100
100
  postcssColorFunctionalNotation({ enableProgressiveCustomProperties: false })
101
101
  ```
102
102
 
103
- ```pcss
103
+ ```css
104
104
  :root {
105
105
  --firebrick: rgb(178 34 34);
106
106
  --firebrick-a50: rgb(70% 13.5% 13.5% / 50%);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "postcss-color-functional-notation",
3
3
  "description": "Use space and slash separated color notation in CSS",
4
- "version": "7.0.5",
4
+ "version": "7.0.6",
5
5
  "author": "Jonathan Neal <jonathantneal@hotmail.com>",
6
6
  "license": "MIT-0",
7
7
  "funding": [
@@ -38,7 +38,7 @@
38
38
  "dist"
39
39
  ],
40
40
  "dependencies": {
41
- "@csstools/css-color-parser": "^3.0.5",
41
+ "@csstools/css-color-parser": "^3.0.6",
42
42
  "@csstools/css-parser-algorithms": "^3.0.4",
43
43
  "@csstools/css-tokenizer": "^3.0.3",
44
44
  "@csstools/postcss-progressive-custom-properties": "^4.0.0",