@breadstone/mosaik-themes 0.0.222 → 0.0.223
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 +13 -0
- package/_index.scss +1 -1
- package/index.cjs +5 -0
- package/index.cjs.map +1 -1
- package/index.d.mts +114 -73
- package/index.d.ts +114 -73
- package/index.js +5 -0
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/themes/cosmopolitan.scss +2 -0
- package/themes/joy.scss +16 -13
- package/themes/memphis.scss +27 -20
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
## 0.0.222 (2026-01-21)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- **Cdk/Utils:** add deepMerge function for merging nested objects ([958d8b1db2](https://github.com/RueDeRennes/mosaik/commit/958d8b1db2))
|
|
6
|
+
- **theme:** add theme mode support to theme preset saving and updating methods ([faf111347c](https://github.com/RueDeRennes/mosaik/commit/faf111347c))
|
|
7
|
+
- **theming): update Theme2Component to include 'name' and 'global' props refactor(theming): reorganize ITheme utility functions for better clarity feat(theming): add THEME_MODES and THEME_MODES_WITH_SYSTEM constants fix(theming:** export ThemeMode and THEME_MODES from index ([5b0d68ef4a](https://github.com/RueDeRennes/mosaik/commit/5b0d68ef4a))
|
|
8
|
+
|
|
9
|
+
### 🩹 Fixes
|
|
10
|
+
|
|
11
|
+
- **theme:** update paths for Tailwind presets and add Snyk organization setting ([a2defd1849](https://github.com/RueDeRennes/mosaik/commit/a2defd1849))
|
|
12
|
+
- **package.json:** add missing newline at end of file ([8b6d8f8c2b](https://github.com/RueDeRennes/mosaik/commit/8b6d8f8c2b))
|
|
13
|
+
|
|
1
14
|
## 0.0.221 (2026-01-16)
|
|
2
15
|
|
|
3
16
|
### 🩹 Fixes
|
package/_index.scss
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@use './themes/cosmopolitan
|
|
1
|
+
@use './themes/cosmopolitan' as cosmopolitan;
|
|
2
2
|
@use './themes/joy' as joy;
|
|
3
3
|
@use './themes/memphis' as memphis;
|
|
4
4
|
@mixin cosmopolitan-style($radius: cosmopolitan.$layout-radius, $thickness: cosmopolitan.$layout-thickness, $space: cosmopolitan.$layout-space) {
|
package/index.cjs
CHANGED
|
@@ -2824,6 +2824,11 @@ exports.ThemePalette = void 0;
|
|
|
2824
2824
|
}
|
|
2825
2825
|
__name(getPaletteColor, "getPaletteColor");
|
|
2826
2826
|
ITheme2.getPaletteColor = getPaletteColor;
|
|
2827
|
+
function getElevationShadow(theme, mode, key) {
|
|
2828
|
+
return theme.elevation[mode][key];
|
|
2829
|
+
}
|
|
2830
|
+
__name(getElevationShadow, "getElevationShadow");
|
|
2831
|
+
ITheme2.getElevationShadow = getElevationShadow;
|
|
2827
2832
|
})(exports.ITheme || (exports.ITheme = {}));
|
|
2828
2833
|
exports.ITheme = void 0;
|
|
2829
2834
|
|