@breadstone/mosaik-themes 0.0.80 → 0.0.82

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 CHANGED
@@ -1,3 +1,29 @@
1
+ ## 0.0.81 (2025-07-30)
2
+
3
+ ### 🚀 Features
4
+
5
+ - enhance HTML code generation with new abstract methods and self-closing tag support feat: update icon registration to support aliases for icons style: adjust drawer component styles to use line thickness variable chore: add line thickness property to drawer theme tokens in Cosmopolitan, Joy, and Retro themes ([0174ad7acb](https://github.com/RueDeRennes/mosaik/commit/0174ad7acb))
6
+ - update release version to 0.0.80 in package.json ([96a94fca93](https://github.com/RueDeRennes/mosaik/commit/96a94fca93))
7
+
8
+ ## 0.0.80 (2025-07-30)
9
+
10
+ This was a version bump only for mosaik-themes to align it with other projects, there were no code changes.
11
+
12
+ ## 0.0.79 (2025-07-30)
13
+
14
+ ### 🚀 Features
15
+
16
+ - Add synchronous caching methods for file and directory checks in FileCache refactor: Update storage conversion methods to simplify data handling chore: Enhance styledictionary configuration with file caching and logging improvements ([0f6a7350f3](https://github.com/RueDeRennes/mosaik/commit/0f6a7350f3))
17
+ - **textbox:** add prefix and suffix icon support with customizable sizes ([eb9c019a17](https://github.com/RueDeRennes/mosaik/commit/eb9c019a17))
18
+ - update button components with new size tokens ([22d0cdd674](https://github.com/RueDeRennes/mosaik/commit/22d0cdd674))
19
+ - Implement SandboxProjectFactory and SandboxProjectTemplateEngine ([3300298aec](https://github.com/RueDeRennes/mosaik/commit/3300298aec))
20
+ - add YAML code generation and update chat mode configuration ([9fe1bb330c](https://github.com/RueDeRennes/mosaik/commit/9fe1bb330c))
21
+ - Enhance Landing and App View Components ([459cb772ed](https://github.com/RueDeRennes/mosaik/commit/459cb772ed))
22
+
23
+ ### 🩹 Fixes
24
+
25
+ - correct spelling of 'initialize' in various files and update related interfaces ([3c70f28918](https://github.com/RueDeRennes/mosaik/commit/3c70f28918))
26
+
1
27
  ## 0.0.78 (2025-07-20)
2
28
 
3
29
  ### 🚀 Features
@@ -2882,6 +2882,7 @@ $drawer-props: (
2882
2882
  'foreground-color': unset,
2883
2883
  'gap': unset,
2884
2884
  'height': unset,
2885
+ 'line-thickness': var(--cosmopolitan-layout-thickness),
2885
2886
  'padding-bottom': unset,
2886
2887
  'padding-left': unset,
2887
2888
  'padding-right': unset,
package/Themes/joy.scss CHANGED
@@ -3499,6 +3499,7 @@ $drawer-props: (
3499
3499
  'foreground-color': var(--joy-scheme-foreground),
3500
3500
  'gap': 8px,
3501
3501
  'height': 100%,
3502
+ 'line-thickness': var(--joy-layout-thickness),
3502
3503
  'padding-bottom': 8px,
3503
3504
  'padding-left': 16px,
3504
3505
  'padding-right': 16px,
package/Themes/retro.scss CHANGED
@@ -3316,6 +3316,7 @@ $drawer-props: (
3316
3316
  'foreground-color': var(--retro-scheme-foreground),
3317
3317
  'gap': 8px,
3318
3318
  'height': 100%,
3319
+ 'line-thickness': var(--retro-layout-thickness),
3319
3320
  'padding-bottom': 8px,
3320
3321
  'padding-left': 16px,
3321
3322
  'padding-right': 16px,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@breadstone/mosaik-themes",
3
- "version": "0.0.80",
3
+ "version": "0.0.82",
4
4
  "description": "Mosaik elements various themes.",
5
5
  "license": "MIT",
6
6
  "author": "andre.wehlert <awehlert@breadstone.de> (https://www.breadstone.de)",
@@ -15,7 +15,7 @@
15
15
  "url": "git+ssh://git@github.com/RueDeRennes/mosaik.git"
16
16
  },
17
17
  "dependencies": {
18
- "@breadstone/mosaik-elements": "^0.0.80",
18
+ "@breadstone/mosaik-elements": "^0.0.82",
19
19
  "@ctrl/tinycolor": "^4.1.0",
20
20
  "tslib": "^2.8.1"
21
21
  },