@breadstone/mosaik-themes 0.0.205 → 0.0.209

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 (80) hide show
  1. package/CHANGELOG.md +143 -0
  2. package/_index.scss +0 -12
  3. package/index.cjs +1457 -696
  4. package/index.cjs.map +1 -1
  5. package/index.d.mts +256 -58
  6. package/index.d.ts +256 -58
  7. package/index.js +1458 -697
  8. package/index.js.map +1 -1
  9. package/package.json +6 -3
  10. package/tailwind/v3/index.d.ts +0 -6
  11. package/tailwind/v3/index.d.ts.map +1 -1
  12. package/tailwind/v3/index.js +1 -7
  13. package/tailwind/v3/index.js.map +1 -1
  14. package/tailwind/v3/plugins/cosmopolitanTailwindPlugin.js +272 -12
  15. package/tailwind/v3/plugins/cosmopolitanTailwindPlugin.js.map +1 -1
  16. package/tailwind/v3/plugins/joyTailwindPlugin.js +6 -0
  17. package/tailwind/v3/plugins/joyTailwindPlugin.js.map +1 -1
  18. package/tailwind/v3/plugins/memphisTailwindPlugin.js +204 -140
  19. package/tailwind/v3/plugins/memphisTailwindPlugin.js.map +1 -1
  20. package/tailwind/v3/presets/cosmopolitanTailwindPresets.js +272 -12
  21. package/tailwind/v3/presets/cosmopolitanTailwindPresets.js.map +1 -1
  22. package/tailwind/v3/presets/joyTailwindPresets.js +6 -0
  23. package/tailwind/v3/presets/joyTailwindPresets.js.map +1 -1
  24. package/tailwind/v3/presets/memphisTailwindPresets.js +204 -140
  25. package/tailwind/v3/presets/memphisTailwindPresets.js.map +1 -1
  26. package/tailwind/v4/cosmopolitanTailwindPresets.css +305 -0
  27. package/tailwind/v4/joyTailwindPresets.css +321 -0
  28. package/tailwind/v4/memphisTailwindPresets.css +322 -0
  29. package/themes/___cosmopolitan-tokens.css +264 -20
  30. package/themes/___joy-tokens.css +2 -0
  31. package/themes/___memphis-tokens.css +188 -140
  32. package/themes/cosmopolitan-tokens.scss +264 -20
  33. package/themes/cosmopolitan.scss +661 -77
  34. package/themes/joy-tokens.scss +2 -0
  35. package/themes/joy.scss +341 -53
  36. package/themes/memphis-tokens.scss +188 -140
  37. package/themes/memphis.scss +527 -193
  38. package/index.node.cjs +0 -2710
  39. package/index.node.cjs.map +0 -1
  40. package/index.node.d.mts +0 -468
  41. package/index.node.d.ts +0 -468
  42. package/index.node.js +0 -2695
  43. package/index.node.js.map +0 -1
  44. package/tailwind/v3/plugins/base/c.d.ts +0 -44
  45. package/tailwind/v3/plugins/base/c.d.ts.map +0 -1
  46. package/tailwind/v3/plugins/base/c.js +0 -155
  47. package/tailwind/v3/plugins/base/c.js.map +0 -1
  48. package/tailwind/v3/plugins/bootstrapTailwindPlugin.d.ts +0 -2
  49. package/tailwind/v3/plugins/bootstrapTailwindPlugin.d.ts.map +0 -1
  50. package/tailwind/v3/plugins/bootstrapTailwindPlugin.js +0 -112
  51. package/tailwind/v3/plugins/bootstrapTailwindPlugin.js.map +0 -1
  52. package/tailwind/v3/plugins/fluentTailwindPlugin.d.ts +0 -2
  53. package/tailwind/v3/plugins/fluentTailwindPlugin.d.ts.map +0 -1
  54. package/tailwind/v3/plugins/fluentTailwindPlugin.js +0 -63
  55. package/tailwind/v3/plugins/fluentTailwindPlugin.js.map +0 -1
  56. package/tailwind/v3/plugins/materialTailwindPlugin.d.ts +0 -2
  57. package/tailwind/v3/plugins/materialTailwindPlugin.d.ts.map +0 -1
  58. package/tailwind/v3/plugins/materialTailwindPlugin.js +0 -53
  59. package/tailwind/v3/plugins/materialTailwindPlugin.js.map +0 -1
  60. package/tailwind/v3/presets/bootstrapTailwindPresets.d.ts +0 -2
  61. package/tailwind/v3/presets/bootstrapTailwindPresets.d.ts.map +0 -1
  62. package/tailwind/v3/presets/bootstrapTailwindPresets.js +0 -101
  63. package/tailwind/v3/presets/bootstrapTailwindPresets.js.map +0 -1
  64. package/tailwind/v3/presets/fluentTailwindPresets.d.ts +0 -2
  65. package/tailwind/v3/presets/fluentTailwindPresets.d.ts.map +0 -1
  66. package/tailwind/v3/presets/fluentTailwindPresets.js +0 -52
  67. package/tailwind/v3/presets/fluentTailwindPresets.js.map +0 -1
  68. package/tailwind/v3/presets/materialTailwindPresets.d.ts +0 -2
  69. package/tailwind/v3/presets/materialTailwindPresets.d.ts.map +0 -1
  70. package/tailwind/v3/presets/materialTailwindPresets.js +0 -42
  71. package/tailwind/v3/presets/materialTailwindPresets.js.map +0 -1
  72. package/themes/___bootstrap-tokens.css +0 -91
  73. package/themes/___fluent-tokens.css +0 -30
  74. package/themes/___material-tokens.css +0 -22
  75. package/themes/bootstrap-tokens.scss +0 -89
  76. package/themes/bootstrap.scss +0 -163
  77. package/themes/fluent-tokens.scss +0 -28
  78. package/themes/fluent.scss +0 -1591
  79. package/themes/material-tokens.scss +0 -20
  80. package/themes/material.scss +0 -94
package/CHANGELOG.md CHANGED
@@ -1,3 +1,146 @@
1
+ ## 0.0.208 (2025-12-13)
2
+
3
+ ### 🚀 Features
4
+
5
+ - update component properties and descriptions for better clarity and functionality ([5d4069bff7](https://github.com/RueDeRennes/mosaik/commit/5d4069bff7))
6
+
7
+ ## 0.0.207 (2025-12-13)
8
+
9
+ ### 🚀 Features
10
+
11
+ - **stepper:** add icon property and update styles for stepper components ([8a6aafbba8](https://github.com/RueDeRennes/mosaik/commit/8a6aafbba8))
12
+ - **split): add min and max properties for size constraints in SplitElement feat(stepper): introduce isActive property in StepperItemElement refactor(split): update SplitElement to use CssLength for position, min, and max fix(split): adjust CSS properties and templates to reflect new min/max constraints style(split:** remove deprecated CSS variables for min and max in themes ([0478bec83f](https://github.com/RueDeRennes/mosaik/commit/0478bec83f))
13
+ - **stepper): add Cosmopolitan, Joy, and Memphis themes for Stepper and StepperItem components feat(stepper): implement React and Svelte components for Stepper and StepperItem feat(stepper): create Vue components for Stepper and StepperItem fix(wizard): update event detail interfaces for active step changes style(stepper:** define token styles for various themes in SCSS ([f3922024d6](https://github.com/RueDeRennes/mosaik/commit/f3922024d6))
14
+ - add stepper tokens for all themes ([7871bba3fd](https://github.com/RueDeRennes/mosaik/commit/7871bba3fd))
15
+ - **tailwind:** implement Tailwind v4 config generation and update package scripts ([db31430aaf](https://github.com/RueDeRennes/mosaik/commit/db31430aaf))
16
+
17
+ ### 🩹 Fixes
18
+
19
+ - **stepper:** update properties and styles for Stepper themes and components ([5f66855a75](https://github.com/RueDeRennes/mosaik/commit/5f66855a75))
20
+
21
+ ## 0.0.206 (2025-12-09)
22
+
23
+ ### 🚀 Features
24
+
25
+ - **tailwind:** add material and memphis theme presets for Tailwind CSS ([79cfb43ae2](https://github.com/RueDeRennes/mosaik/commit/79cfb43ae2))
26
+
27
+ ## 0.0.205 (2025-12-07)
28
+
29
+ ### 🩹 Fixes
30
+
31
+ - **buttons): update stack-gap variable usage in FloatingActionButton, RepeatButton, SplitButton, ToggleButton themes fix(card): update stack-gap variable usage in CardActions theme fix(expander): update stack-gap variable usage in Expander theme fix(comment): update stack-gap variable usage in Comment theme fix(dialog): update stack-gap variable usage in DialogActions theme fix(segment): update stack-gap variable usage in SegmentItem theme fix(tab-strip): update stack-gap variable usage in TabStripItem theme fix(states): update stack-gap variable usage in Busy, Empty, Error, and Success state themes chore(package:** bump version to 0.0.204 in package.json ([878a490c1e](https://github.com/RueDeRennes/mosaik/commit/878a490c1e))
32
+
33
+ ## 0.0.204 (2025-12-07)
34
+
35
+ This was a version bump only for mosaik-themes to align it with other projects, there were no code changes.
36
+
37
+ ## 0.0.203 (2025-12-06)
38
+
39
+ This was a version bump only for mosaik-themes to align it with other projects, there were no code changes.
40
+
41
+ ## 0.0.202 (2025-12-06)
42
+
43
+ ### 🚀 Features
44
+
45
+ - **error, hint:** add textOverflow property to Error and Hint components ([131d8bec1e](https://github.com/RueDeRennes/mosaik/commit/131d8bec1e))
46
+
47
+ ## 0.0.201 (2025-12-05)
48
+
49
+ This was a version bump only for mosaik-themes to align it with other projects, there were no code changes.
50
+
51
+ ## 0.0.200 (2025-12-05)
52
+
53
+ This was a version bump only for mosaik-themes to align it with other projects, there were no code changes.
54
+
55
+ ## 0.0.199 (2025-12-05)
56
+
57
+ ### 🩹 Fixes
58
+
59
+ - **package:** add missing newline at end of file ([e7bbe4e7c1](https://github.com/RueDeRennes/mosaik/commit/e7bbe4e7c1))
60
+
61
+ ## 0.0.198 (2025-12-05)
62
+
63
+ This was a version bump only for mosaik-themes to align it with other projects, there were no code changes.
64
+
65
+ ## 0.0.197 (2025-12-05)
66
+
67
+ This was a version bump only for mosaik-themes to align it with other projects, there were no code changes.
68
+
69
+ ## 0.0.196 (2025-12-05)
70
+
71
+ ### 🚀 Features
72
+
73
+ - **event-hub:** add Event Hub pattern implementation for Angular 2025 ([88dc4f7404](https://github.com/RueDeRennes/mosaik/commit/88dc4f7404))
74
+
75
+ ### 🩹 Fixes
76
+
77
+ - **keywords:** add Event Bus and Message Bus to event hub documentation ([69cafcf76f](https://github.com/RueDeRennes/mosaik/commit/69cafcf76f))
78
+
79
+ ## 0.0.195 (2025-12-03)
80
+
81
+ ### 🩹 Fixes
82
+
83
+ - **package:** add missing newline at end of file in package.json ([a9bf15349b](https://github.com/RueDeRennes/mosaik/commit/a9bf15349b))
84
+
85
+ ## 0.0.194 (2025-12-03)
86
+
87
+ ### 🩹 Fixes
88
+
89
+ - **Cdk:** export FormFieldStatusDirective alongside FORM_STATUS_HOST from FormStatusDirective ([c8521cd4ff](https://github.com/RueDeRennes/mosaik/commit/c8521cd4ff))
90
+
91
+ ## 0.0.193 (2025-12-03)
92
+
93
+ This was a version bump only for mosaik-themes to align it with other projects, there were no code changes.
94
+
95
+ ## 0.0.192 (2025-12-03)
96
+
97
+ This was a version bump only for mosaik-themes to align it with other projects, there were no code changes.
98
+
99
+ ## 0.0.191 (2025-12-03)
100
+
101
+ This was a version bump only for mosaik-themes to align it with other projects, there were no code changes.
102
+
103
+ ## 0.0.190 (2025-12-02)
104
+
105
+ ### 🩹 Fixes
106
+
107
+ - **choice-group:** add flex property to root part for improved layout consistency ([8bd80ed40b](https://github.com/RueDeRennes/mosaik/commit/8bd80ed40b))
108
+
109
+ ## 0.0.189 (2025-12-02)
110
+
111
+ This was a version bump only for mosaik-themes to align it with other projects, there were no code changes.
112
+
113
+ ## 0.0.188 (2025-12-02)
114
+
115
+ ### 🚀 Features
116
+
117
+ - **directives:** update FormFieldDirective to improve error handling and usage documentation ([7c07bb43fd](https://github.com/RueDeRennes/mosaik/commit/7c07bb43fd))
118
+
119
+ ## 0.0.187 (2025-12-02)
120
+
121
+ This was a version bump only for mosaik-themes to align it with other projects, there were no code changes.
122
+
123
+ ## 0.0.186 (2025-12-02)
124
+
125
+ This was a version bump only for mosaik-themes to align it with other projects, there were no code changes.
126
+
127
+ ## 0.0.185 (2025-12-02)
128
+
129
+ This was a version bump only for mosaik-themes to align it with other projects, there were no code changes.
130
+
131
+ ## 0.0.184 (2025-12-02)
132
+
133
+ ### 🚀 Features
134
+
135
+ - **eslint:** enhance ESLint configuration and add .eslintignore file ([4b3deb5566](https://github.com/RueDeRennes/mosaik/commit/4b3deb5566))
136
+ - **errors:** add ErrorKindDirective and FormFieldErrorDirective for enhanced error handling ([813bb9130f](https://github.com/RueDeRennes/mosaik/commit/813bb9130f))
137
+
138
+ ## 0.0.183 (2025-11-30)
139
+
140
+ ### 🚀 Features
141
+
142
+ - **platform:** implement platform adapter for browser and Node.js compatibility ([662092484e](https://github.com/RueDeRennes/mosaik/commit/662092484e))
143
+
1
144
  ## 0.0.182 (2025-11-30)
2
145
 
3
146
  ### 🚀 Features
package/_index.scss CHANGED
@@ -1,24 +1,12 @@
1
- @use './Themes/bootstrap' as bootstrap;
2
1
  @use './Themes/cosmopolitan.scss' as cosmopolitan;
3
- @use './Themes/fluent' as fluent;
4
2
  @use './Themes/joy' as joy;
5
- @use './Themes/material' as material;
6
3
  @use './Themes/memphis' as memphis;
7
- @mixin bootstrap-style($radius: bootstrap.$layout-radius, $thickness: bootstrap.$layout-thickness, $space: bootstrap.$layout-space) {
8
- @include bootstrap.bootstrap-style($radius: bootstrap.$layout-radius, $thickness: bootstrap.$layout-thickness, $space: bootstrap.$layout-space);
9
- }
10
4
  @mixin cosmopolitan-style($radius: cosmopolitan.$layout-radius, $thickness: cosmopolitan.$layout-thickness, $space: cosmopolitan.$layout-space) {
11
5
  @include cosmopolitan.cosmopolitan-style($radius: cosmopolitan.$layout-radius, $thickness: cosmopolitan.$layout-thickness, $space: cosmopolitan.$layout-space);
12
6
  }
13
- @mixin fluent-style($radius: fluent.$layout-radius, $thickness: fluent.$layout-thickness, $space: fluent.$layout-space) {
14
- @include fluent.fluent-style($radius: fluent.$layout-radius, $thickness: fluent.$layout-thickness, $space: fluent.$layout-space);
15
- }
16
7
  @mixin joy-style($radius: joy.$layout-radius, $thickness: joy.$layout-thickness, $space: joy.$layout-space) {
17
8
  @include joy.joy-style($radius: joy.$layout-radius, $thickness: joy.$layout-thickness, $space: joy.$layout-space);
18
9
  }
19
- @mixin material-style($radius: material.$layout-radius, $thickness: material.$layout-thickness, $space: material.$layout-space) {
20
- @include material.material-style($radius: material.$layout-radius, $thickness: material.$layout-thickness, $space: material.$layout-space);
21
- }
22
10
  @mixin memphis-style($radius: memphis.$layout-radius, $thickness: memphis.$layout-thickness, $space: memphis.$layout-space) {
23
11
  @include memphis.memphis-style($radius: memphis.$layout-radius, $thickness: memphis.$layout-thickness, $space: memphis.$layout-space);
24
12
  }