@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.
Files changed (54) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/README.md +444 -156
  3. package/dist/at-rules/color-scheme.d.ts +3 -2
  4. package/dist/at-rules/color-scheme.js +6 -7
  5. package/dist/at-rules/color.d.ts +5 -4
  6. package/dist/at-rules/color.js +5 -4
  7. package/dist/at-rules/config.d.ts +2 -1
  8. package/dist/at-rules/config.js +44 -13
  9. package/dist/at-rules/container.d.ts +2 -1
  10. package/dist/at-rules/container.js +4 -6
  11. package/dist/at-rules/import.d.ts +3 -2
  12. package/dist/at-rules/import.js +107 -139
  13. package/dist/at-rules/index.d.ts +2 -1
  14. package/dist/at-rules/index.js +3 -4
  15. package/dist/config.js +70 -28
  16. package/dist/errors.d.ts +3 -5
  17. package/dist/errors.js +2 -4
  18. package/dist/functions/color.d.ts +4 -4
  19. package/dist/functions/color.js +4 -4
  20. package/dist/functions/index.js +5 -7
  21. package/dist/helpers.d.ts +4 -6
  22. package/dist/helpers.js +26 -22
  23. package/dist/index.d.ts +8 -1
  24. package/dist/index.js +1 -0
  25. package/dist/parser.js +36 -49
  26. package/dist/plugin.d.ts +3 -1
  27. package/dist/plugin.js +15 -19
  28. package/dist/types.d.ts +6 -1
  29. package/dist/types.js +0 -2
  30. package/package.json +20 -3
  31. package/.github/workflows/release.yml +0 -41
  32. package/.vscode/settings.json +0 -4
  33. package/dist/functions/theme.d.ts +0 -6
  34. package/dist/functions/theme.js +0 -17
  35. package/release.config.mjs +0 -37
  36. package/src/at-rules/color-scheme.ts +0 -54
  37. package/src/at-rules/color.ts +0 -33
  38. package/src/at-rules/config.ts +0 -78
  39. package/src/at-rules/container.ts +0 -58
  40. package/src/at-rules/import.ts +0 -196
  41. package/src/at-rules/index.ts +0 -29
  42. package/src/config.ts +0 -98
  43. package/src/errors.ts +0 -27
  44. package/src/functions/color.ts +0 -123
  45. package/src/functions/index.ts +0 -22
  46. package/src/functions/theme.ts +0 -20
  47. package/src/helpers.ts +0 -75
  48. package/src/index.ts +0 -10
  49. package/src/parser.ts +0 -81
  50. package/src/plugin.ts +0 -58
  51. package/src/styles/seyuna-global.css +0 -94
  52. package/src/types.ts +0 -71
  53. package/tests/plugin.test.ts +0 -244
  54. 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