6368291Thanks @vnphanquang! - allow customize at-rule name and behavior upon invalid parameter
b743e0aThanks @vnphanquang! - flatten project workspace to bring back lib source code to project root. Fix missing README in npm
-
f879affThanks @vnphanquang! - [BREAKING] drop:globalvariant to avoid ambiguity. User may use:globalmanually. In Svelte 5, for example, you can now declare a:globalstyle block, e.g.:global { .class { @color-scheme dark { /* ... */ } } }; -
f879affThanks @vnphanquang! - [BREAKING] drop@lightand@darkat-rules in favor for a single coherent@color-schemeat-rule, i.e@color-scheme dark { /* ... */ }or@color-scheme light { /* ... */ } -
f879affThanks @vnphanquang! - [BREAKING] drop tailwind plugin. In Tailwind V4, simply add@import 'postcss-color-scheme/tailwind.css'to tailwind-aware context to makelight:anddark:variants available for use in markup. See README.md for more information -
f879affThanks @vnphanquang! - [BREAKING] no longer handle nesting now that the standardized CSS Nesting has landed (leave up to other transformer to support older browser or not)
-
c43b80bThanks @vnphanquang! - export default postcss plugin -
513e561Thanks @vnphanquang! - include generated types in published package -
912c72cThanks @vnphanquang! - add "require" and "svelte" fields to exports in package.json
47ca0d3Thanks @vnphanquang! - [BREAKING] more predictable public exports with typescript support
-
65916b0Thanks @vnphanquang! - added test case where used in deeply nested selectors -
7acd332Thanks @vnphanquang! - fix broken links in README, add missing reference to test case -
5b946c3Thanks @vnphanquang! - add test case for where there are child rules in@darkand@light -
d3d86b6Thanks @vnphanquang! - add to docs clarification that tailwind & postcss plugins can be used together, not one or the other -
f4f9c80Thanks @vnphanquang! - add support for:rootselector; i.e:root { @dark { /* ... */ } }
2b39ee9Thanks @vnphanquang! - added support when nested in html itself
e0c5423Thanks @vnphanquang! - adjustments to adhere to postcss plugin guidelines
da6fac2Thanks @vnphanquang! - test case for invalid parameters
82396afThanks @vnphanquang! - add missingpostcssimport, remove "exports" field in package.json
6dac3e4Thanks @vnphanquang! - remove lib folder from gitignnore
d5a6ae9Thanks @vnphanquang! - provide tailwind plugin as first party support, import atpostcss-color-scheme/tailwind
-
22b2839Thanks @vnphanquang! - reorganize src -> lib folder -
22b2839Thanks @vnphanquang! - include tailwind.js in npm publish
-
0f25cd6Thanks @vnphanquang! - bootstrapREADME.mdwith initial documentation -
a075074Thanks @vnphanquang! - Initial implementation for@dark&@lightcustom AtRule