@udixio/theme 0.4.2 → 0.5.1

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 (91) hide show
  1. package/CHANGELOG.md +111 -0
  2. package/README.md +11 -0
  3. package/index.cjs +3092 -0
  4. package/index.js +3070 -0
  5. package/package.json +5 -5
  6. package/src/{lib/API.d.ts → API.d.ts} +1 -0
  7. package/src/API.d.ts.map +1 -0
  8. package/src/{lib/app.container.d.ts → app.container.d.ts} +1 -0
  9. package/src/app.container.d.ts.map +1 -0
  10. package/src/{lib/app.module.d.ts → app.module.d.ts} +1 -0
  11. package/src/app.module.d.ts.map +1 -0
  12. package/src/{lib/color → color}/color.api.d.ts +1 -0
  13. package/src/color/color.api.d.ts.map +1 -0
  14. package/src/{lib/color → color}/color.manager.d.ts +1 -0
  15. package/src/color/color.manager.d.ts.map +1 -0
  16. package/src/color/color.module.d.ts +3 -0
  17. package/src/color/color.module.d.ts.map +1 -0
  18. package/src/{lib/color → color}/color.utils.d.ts +1 -0
  19. package/src/color/color.utils.d.ts.map +1 -0
  20. package/src/{lib/color → color}/configurable-color.d.ts +1 -0
  21. package/src/color/configurable-color.d.ts.map +1 -0
  22. package/src/{lib/color → color}/default-color.d.ts +1 -0
  23. package/src/color/default-color.d.ts.map +1 -0
  24. package/src/{lib/color → color}/index.d.ts +1 -0
  25. package/src/color/index.d.ts.map +1 -0
  26. package/src/{lib/config → config}/config.interface.d.ts +1 -0
  27. package/src/config/config.interface.d.ts.map +1 -0
  28. package/src/{lib/config → config}/config.module.d.ts +1 -0
  29. package/src/config/config.module.d.ts.map +1 -0
  30. package/src/{lib/config → config}/config.service.d.ts +2 -1
  31. package/src/config/config.service.d.ts.map +1 -0
  32. package/src/{lib/config → config}/index.d.ts +1 -0
  33. package/src/config/index.d.ts.map +1 -0
  34. package/src/index.d.ts +12 -1
  35. package/src/index.d.ts.map +1 -0
  36. package/src/{lib/main.d.ts → main.d.ts} +2 -1
  37. package/src/main.d.ts.map +1 -0
  38. package/src/{lib/material-color-utilities → material-color-utilities}/contrastCurve.d.ts +1 -0
  39. package/src/material-color-utilities/contrastCurve.d.ts.map +1 -0
  40. package/src/{lib/material-color-utilities → material-color-utilities}/dynamic_color.d.ts +1 -16
  41. package/src/material-color-utilities/dynamic_color.d.ts.map +1 -0
  42. package/src/{lib/material-color-utilities → material-color-utilities}/hct_solver.d.ts +1 -16
  43. package/src/material-color-utilities/hct_solver.d.ts.map +1 -0
  44. package/src/{lib/material-color-utilities → material-color-utilities}/htc.d.ts +1 -31
  45. package/src/material-color-utilities/htc.d.ts.map +1 -0
  46. package/src/{lib/material-color-utilities → material-color-utilities}/index.d.ts +1 -0
  47. package/src/material-color-utilities/index.d.ts.map +1 -0
  48. package/src/{lib/material-color-utilities → material-color-utilities}/toneDeltaPair.d.ts +2 -17
  49. package/src/material-color-utilities/toneDeltaPair.d.ts.map +1 -0
  50. package/src/{lib/plugin → plugin}/index.d.ts +1 -0
  51. package/src/plugin/index.d.ts.map +1 -0
  52. package/src/{lib/plugin → plugin}/plugin.module.d.ts +1 -0
  53. package/src/plugin/plugin.module.d.ts.map +1 -0
  54. package/src/{lib/plugin → plugin}/pluginAbstract.d.ts +1 -0
  55. package/src/plugin/pluginAbstract.d.ts.map +1 -0
  56. package/src/{lib/plugin → plugin}/pluginApi.d.ts +1 -0
  57. package/src/plugin/pluginApi.d.ts.map +1 -0
  58. package/src/{lib/plugins → plugins}/font/font.plugin.d.ts +1 -0
  59. package/src/plugins/font/font.plugin.d.ts.map +1 -0
  60. package/src/plugins/font/index.d.ts +2 -0
  61. package/src/plugins/font/index.d.ts.map +1 -0
  62. package/src/{lib/theme → theme}/index.d.ts +1 -0
  63. package/src/theme/index.d.ts.map +1 -0
  64. package/src/{lib/theme → theme}/scheme.d.ts +1 -0
  65. package/src/theme/scheme.d.ts.map +1 -0
  66. package/src/{lib/theme → theme}/scheme.manager.d.ts +1 -0
  67. package/src/theme/scheme.manager.d.ts.map +1 -0
  68. package/src/{lib/theme → theme}/theme.api.d.ts +1 -0
  69. package/src/theme/theme.api.d.ts.map +1 -0
  70. package/src/{lib/theme → theme}/theme.module.d.ts +1 -0
  71. package/src/theme/theme.module.d.ts.map +1 -0
  72. package/src/{lib/theme → theme}/variant.d.ts +1 -0
  73. package/src/theme/variant.d.ts.map +1 -0
  74. package/src/{lib/theme → theme}/variant.manager.d.ts +1 -0
  75. package/src/theme/variant.manager.d.ts.map +1 -0
  76. package/src/{lib/theme → theme}/variants/expressive.variant.d.ts +1 -0
  77. package/src/theme/variants/expressive.variant.d.ts.map +1 -0
  78. package/src/{lib/theme → theme}/variants/index.d.ts +5 -4
  79. package/src/theme/variants/index.d.ts.map +1 -0
  80. package/src/{lib/theme → theme}/variants/neutral.variant.d.ts +1 -0
  81. package/src/theme/variants/neutral.variant.d.ts.map +1 -0
  82. package/src/{lib/theme → theme}/variants/tonal-spot.variant.d.ts +1 -0
  83. package/src/theme/variants/tonal-spot.variant.d.ts.map +1 -0
  84. package/src/{lib/theme → theme}/variants/vibrant.variant.d.ts +1 -0
  85. package/src/theme/variants/vibrant.variant.d.ts.map +1 -0
  86. package/index.cjs.js +0 -2880
  87. package/index.d.ts +0 -1
  88. package/index.esm.js +0 -2842
  89. package/src/lib/color/color.module.d.ts +0 -2
  90. package/src/lib/index.d.ts +0 -11
  91. package/src/lib/plugins/font/index.d.ts +0 -1
package/CHANGELOG.md ADDED
@@ -0,0 +1,111 @@
1
+ ## 0.5.0 (2025-07-25)
2
+
3
+ ### 🚀 Features
4
+
5
+ - **theme:** migrate build system from Rollup to Vite for improved performance and configuration ([3f33657](https://github.com/Udixio/UI/commit/3f33657))
6
+
7
+ ### ❤️ Thank You
8
+
9
+ - Joël VIGREUX
10
+
11
+ ## 0.4.2 (2025-07-25)
12
+
13
+ ### 🩹 Fixes
14
+
15
+ - **dependencies:** update `pnpm-lock.yaml` for consistency and compatibility ([e6dfc9d](https://github.com/Udixio/UI/commit/e6dfc9d))
16
+
17
+ ### ❤️ Thank You
18
+
19
+ - Joël VIGREUX
20
+
21
+ ## 0.4.1 (2025-07-25)
22
+
23
+ ### 🩹 Fixes
24
+
25
+ - **theme:** centralize Variants object and simplify imports ([60ad215](https://github.com/Udixio/UI/commit/60ad215))
26
+
27
+ ### ❤️ Thank You
28
+
29
+ - Joël VIGREUX
30
+
31
+ ## 0.4.0 (2025-07-25)
32
+
33
+ ### 🚀 Features
34
+
35
+ - **theme:** add predefined variants for expressive, neutral, tonal spot, and vibrant themes ([a85a117](https://github.com/Udixio/UI/commit/a85a117))
36
+
37
+ ### ❤️ Thank You
38
+
39
+ - Joël VIGREUX
40
+
41
+ ## 0.3.2 (2025-07-24)
42
+
43
+ ### 🩹 Fixes
44
+
45
+ - **theme:** improve Tailwind CSS import handling in plugin ([f7c7f3a](https://github.com/Udixio/UI/commit/f7c7f3a))
46
+ - **theme:** downgrade version in package.json to `0.3.1` ([d7aa920](https://github.com/Udixio/UI/commit/d7aa920))
47
+
48
+ ### ❤️ Thank You
49
+
50
+ - Joël VIGREUX
51
+
52
+ ## 0.3.1 (2025-07-24)
53
+
54
+ ### 🩹 Fixes
55
+
56
+ - **theme:** bump version to `1.0.1` in package.json ([cb3ed48](https://github.com/Udixio/UI/commit/cb3ed48))
57
+
58
+ ### ❤️ Thank You
59
+
60
+ - Joël VIGREUX
61
+
62
+ ## 0.3.0 (2025-07-24)
63
+
64
+ ### 🚀 Features
65
+
66
+ - **package:** add `publishConfig` to package.json for public npm publishing ([40307c0](https://github.com/Udixio/UI/commit/40307c0))
67
+
68
+ ### ❤️ Thank You
69
+
70
+ - Joël VIGREUX
71
+
72
+ ## 0.2.0 (2025-07-24)
73
+
74
+ ### 🚀 Features
75
+
76
+ - **package:** add `repository` field to package.json files ([a05ca80](https://github.com/Udixio/UI/commit/a05ca80))
77
+
78
+ ### ❤️ Thank You
79
+
80
+ - Joël VIGREUX
81
+
82
+ ## 0.1.0 (2025-07-24)
83
+
84
+ ### 🚀 Features
85
+
86
+ - **theme, ui-react, tailwind:** enhance dependencies, Jest config, and Button component ([04e1d00](https://github.com/Udixio/UI/commit/04e1d00))
87
+ - **theme:** add new dependencies and optimize configurations ([6d8c8ed](https://github.com/Udixio/UI/commit/6d8c8ed))
88
+ - **theme:** add error tonal palette logic to all variants ([f12033c](https://github.com/Udixio/UI/commit/f12033c))
89
+ - **theme:** adjust neutralVariant chroma calculations for improved tonal accuracy ([79b74f2](https://github.com/Udixio/UI/commit/79b74f2))
90
+ - **theme:** refine variant structure and enhance hue rotation logic ([7f2135f](https://github.com/Udixio/UI/commit/7f2135f))
91
+ - **theme:** refine palette logic with DynamicScheme for improved hue rotation ([349d772](https://github.com/Udixio/UI/commit/349d772))
92
+ - **theme:** enhance tonal palette logic and introduce DynamicScheme usage ([dbeb577](https://github.com/Udixio/UI/commit/dbeb577))
93
+ - **theme:** introduce new variants and update tonal palette logic ([007bc7c](https://github.com/Udixio/UI/commit/007bc7c))
94
+ - **theme:** refactor and modularize theme, plugin, and color management ([1455389](https://github.com/Udixio/UI/commit/1455389))
95
+ - **theme:** convert ContrastCurve to support dynamic scheme dependency ([75de253](https://github.com/Udixio/UI/commit/75de253))
96
+ - **theme:** refactor and expand DynamicColor utilities for improved color management ([4cec238](https://github.com/Udixio/UI/commit/4cec238))
97
+ - **theme:** integrate new utilities and refine Tailwind plugin configuration ([3f4152e](https://github.com/Udixio/UI/commit/3f4152e))
98
+ - **theme:** improve dark mode support and streamline color management ([7b72e9d](https://github.com/Udixio/UI/commit/7b72e9d))
99
+ - **theme:** enhance Tailwind plugin with createOrUpdateFile utility ([4316f58](https://github.com/Udixio/UI/commit/4316f58))
100
+ - **theme:** enhance Tailwind plugin with file content validation ([77aa702](https://github.com/Udixio/UI/commit/77aa702))
101
+ - **theme:** simplify Tailwind plugin setup and enhance color management ([a10657f](https://github.com/Udixio/UI/commit/a10657f))
102
+ - **theme:** refactor Tailwind plugin setup and clean up dependencies ([2468c56](https://github.com/Udixio/UI/commit/2468c56))
103
+ - **tailwind:** refactor package structure and dependencies ([81b4640](https://github.com/Udixio/UI/commit/81b4640))
104
+ - **tailwind:** refactor plugin and integrate theme dependencies ([34501e3](https://github.com/Udixio/UI/commit/34501e3))
105
+ - **theme:** remove `theme-old` package ([7fc11e6](https://github.com/Udixio/UI/commit/7fc11e6))
106
+ - **theme:** upgrade from udixio/theme beta ([cc50950](https://github.com/Udixio/UI/commit/cc50950))
107
+ - **theme:** introduce color module and default color model ([8a8256f](https://github.com/Udixio/UI/commit/8a8256f))
108
+
109
+ ### ❤️ Thank You
110
+
111
+ - Joël VIGREUX
package/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # theme
2
+
3
+ This library was generated with [Nx](https://nx.dev).
4
+
5
+ ## Building
6
+
7
+ Run `nx build theme` to build the library.
8
+
9
+ ## Running unit tests
10
+
11
+ Run `nx test theme` to execute the unit tests via [Jest](https://jestjs.io).