@seyuna/postcss 1.0.0-canary.37 → 1.0.0-canary.39
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 -0
- package/README.md +444 -156
- package/dist/at-rules/color-scheme.d.ts +3 -2
- package/dist/at-rules/color-scheme.js +6 -7
- package/dist/at-rules/color.d.ts +5 -4
- package/dist/at-rules/color.js +5 -4
- package/dist/at-rules/config.d.ts +2 -1
- package/dist/at-rules/config.js +44 -13
- package/dist/at-rules/container.d.ts +2 -1
- package/dist/at-rules/container.js +4 -6
- package/dist/at-rules/import.d.ts +3 -2
- package/dist/at-rules/import.js +107 -139
- package/dist/at-rules/index.d.ts +2 -1
- package/dist/at-rules/index.js +3 -4
- package/dist/config.js +70 -28
- package/dist/errors.d.ts +3 -5
- package/dist/errors.js +2 -4
- package/dist/functions/color.d.ts +4 -4
- package/dist/functions/color.js +4 -4
- package/dist/functions/index.js +5 -7
- package/dist/helpers.d.ts +4 -6
- package/dist/helpers.js +26 -22
- package/dist/index.d.ts +8 -1
- package/dist/index.js +1 -0
- package/dist/parser.js +36 -49
- package/dist/plugin.d.ts +3 -1
- package/dist/plugin.js +15 -19
- package/dist/types.d.ts +6 -1
- package/dist/types.js +0 -2
- package/package.json +20 -3
- package/.github/workflows/release.yml +0 -41
- package/.vscode/settings.json +0 -4
- package/dist/functions/theme.d.ts +0 -6
- package/dist/functions/theme.js +0 -17
- package/release.config.mjs +0 -37
- package/src/at-rules/color-scheme.ts +0 -54
- package/src/at-rules/color.ts +0 -33
- package/src/at-rules/config.ts +0 -78
- package/src/at-rules/container.ts +0 -58
- package/src/at-rules/import.ts +0 -196
- package/src/at-rules/index.ts +0 -29
- package/src/config.ts +0 -98
- package/src/errors.ts +0 -27
- package/src/functions/color.ts +0 -123
- package/src/functions/index.ts +0 -22
- package/src/functions/theme.ts +0 -20
- package/src/helpers.ts +0 -75
- package/src/index.ts +0 -10
- package/src/parser.ts +0 -81
- package/src/plugin.ts +0 -58
- package/src/styles/seyuna-global.css +0 -94
- package/src/types.ts +0 -71
- package/tests/plugin.test.ts +0 -244
- package/tsconfig.json +0 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,29 @@
|
|
|
1
|
+
# [1.0.0-canary.39](https://github.com/seyuna-corp/seyuna-postcss/compare/v1.0.0-canary.38...v1.0.0-canary.39) (2026-04-11)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
* feat!: remove SeyunaTheme() function ([a5ae01a](https://github.com/seyuna-corp/seyuna-postcss/commit/a5ae01a5ad86da239e0a5a5c7e0e33b73402c0f7))
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
### BREAKING CHANGES
|
|
8
|
+
|
|
9
|
+
* SeyunaTheme() has been removed. There is no replacement —
|
|
10
|
+
use standard CSS custom properties or hardcoded values for non-color config
|
|
11
|
+
lookups instead.
|
|
12
|
+
|
|
13
|
+
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
|
|
14
|
+
|
|
15
|
+
# [1.0.0-canary.38](https://github.com/seyuna-corp/seyuna-postcss/compare/v1.0.0-canary.37...v1.0.0-canary.38) (2026-04-05)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
* feat!: rename palette iteration helpers ([cee718d](https://github.com/seyuna-corp/seyuna-postcss/commit/cee718d481f5732aea469249c04d399166f9d5a5))
|
|
19
|
+
* feat!: rename Seyuna color helpers ([b947190](https://github.com/seyuna-corp/seyuna-postcss/commit/b9471903585ca92947bde0422ccfccd82ae23e61))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### BREAKING CHANGES
|
|
23
|
+
|
|
24
|
+
* rename @each-standard-color to @each-tone and @each-fixed-color to @each-swatch, with selector-template palette iteration in the README and tests updated to match.
|
|
25
|
+
* rename the color helper API to SeyunaTone, SeyunaSwatch, SeyunaAlpha, SeyunaTint, SeyunaShade, and SeyunaContrast; update docs and tests to match the new surface.
|
|
26
|
+
|
|
1
27
|
# [1.0.0-canary.37](https://github.com/seyuna-corp/seyuna-postcss/compare/v1.0.0-canary.36...v1.0.0-canary.37) (2026-01-25)
|
|
2
28
|
|
|
3
29
|
|