Skip to content

Commit 809dcaa

Browse files
authored
update cssdb (#1284)
1 parent 8251161 commit 809dcaa

File tree

5 files changed

+108
-108
lines changed

5 files changed

+108
-108
lines changed

package-lock.json

+88-88
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plugin-packs/postcss-preset-env/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
- Updated [`css-blank-pseudo`](https://github.com/csstools/postcss-plugins/tree/main/plugins/css-blank-pseudo) to [`6.0.1`](https://github.com/csstools/postcss-plugins/tree/main/plugins/css-blank-pseudo/CHANGELOG.md#601) (patch)
3636
- Updated [`css-has-pseudo`](https://github.com/csstools/postcss-plugins/tree/main/plugins/css-has-pseudo) to [`6.0.1`](https://github.com/csstools/postcss-plugins/tree/main/plugins/css-has-pseudo/CHANGELOG.md#601) (patch)
3737
- Updated [`css-prefers-color-scheme`](https://github.com/csstools/postcss-plugins/tree/main/plugins/css-prefers-color-scheme) to [`9.0.1`](https://github.com/csstools/postcss-plugins/tree/main/plugins/css-prefers-color-scheme/CHANGELOG.md#901) (patch)
38-
- Updated [`cssdb`](https://github.com/csstools/cssdb) to [`7.10.0`](https://github.com/csstools/cssdb/blob/main/CHANGELOG.md#7100-december-27-2023) (minor)
38+
- Updated [`cssdb`](https://github.com/csstools/cssdb) to [`7.11.0`](https://github.com/csstools/cssdb/blob/main/CHANGELOG.md#7110-february-17-2024) (minor)
3939
- Updated [`postcss-color-functional-notation`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation) to [`6.0.4`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation/CHANGELOG.md#604) (patch)
4040
- Updated [`postcss-color-hex-alpha`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-hex-alpha) to [`9.0.3`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-hex-alpha/CHANGELOG.md#903) (patch)
4141
- Updated [`postcss-color-rebeccapurple`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-rebeccapurple) to [`9.0.2`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-rebeccapurple/CHANGELOG.md#902) (patch)

plugin-packs/postcss-preset-env/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
"css-blank-pseudo": "^6.0.1",
8686
"css-has-pseudo": "^6.0.1",
8787
"css-prefers-color-scheme": "^9.0.1",
88-
"cssdb": "^7.9.1",
88+
"cssdb": "^7.11.0",
8989
"postcss-attribute-case-insensitive": "^6.0.2",
9090
"postcss-clamp": "^4.1.0",
9191
"postcss-color-functional-notation": "^6.0.4",

plugin-packs/postcss-preset-env/test/basic.vendors-1.expect.css

+9-9
Original file line numberDiff line numberDiff line change
@@ -619,17 +619,17 @@
619619
}
620620

621621
.test-css-color-5-interop {
622-
color-1: rgb(196, 129, 72);
622+
color-1: color(from rgb(196, 129, 72) a98-rgb r g b / alpha);
623623
color-2: color(from rgb(196, 129, 72) a98-rgb r g b / none);
624-
color-3: rgb(234, 133, 82);
624+
color-3: color(from rgb(234, 133, 82) prophoto-rgb r g b);
625625
color-4: color(from rgb(234, 133, 82) prophoto-rgb r g none);
626-
color-5: rgb(179, 157, 51);
627-
color-6: rgb(179, 35, 35);
628-
color-7: rgb(163, 57, 39);
629-
color-8: rgb(141, 0, 0);
630-
color-8: color(display-p3 0.50566 0.0781 0);
631-
color-9: rgb(130, 31, 0);
632-
color-9: color(display-p3 0.48896 0.1211 0);
626+
color-5: hwb(from rgb(179, 157, 51) h w b);
627+
color-6: lab(from rgb(179, 35, 35) l a b);
628+
color-7: lch(from rgb(163, 57, 39) l c h);
629+
color-8: oklab(from rgb(141, 0, 0) l a b);
630+
color-8: oklab(from color(display-p3 0.50566 0.0781 0) l a b);
631+
color-9: oklch(from rgb(130, 31, 0) l c h);
632+
color-9: oklch(from color(display-p3 0.48896 0.1211 0) l c h);
633633
}
634634

635635
.test-property-with-var {

0 commit comments

Comments
 (0)