@breadstone/mosaik-themes 0.0.224 → 0.0.227
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 +41 -0
- package/index.cjs +2 -2
- package/index.cjs.map +1 -1
- package/index.js +2 -2
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/themes/___cosmopolitan-tokens.css +23 -1
- package/themes/___joy-tokens.css +10 -0
- package/themes/___memphis-tokens.css +15 -3
- package/themes/cosmopolitan-tokens.scss +22 -1
- package/themes/cosmopolitan.scss +3869 -52
- package/themes/joy-tokens.scss +9 -0
- package/themes/joy.scss +3936 -118
- package/themes/memphis-tokens.scss +14 -3
- package/themes/memphis.scss +3858 -33
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,44 @@
|
|
|
1
|
+
## 0.0.226 (2026-01-28)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- **message:** refactor message component and update theme tokens for improved styling ([b5e23ce50a](https://github.com/RueDeRennes/mosaik/commit/b5e23ce50a))
|
|
6
|
+
|
|
7
|
+
### 🩹 Fixes
|
|
8
|
+
|
|
9
|
+
- **package:** add missing newline at end of file ([876a6f3b9f](https://github.com/RueDeRennes/mosaik/commit/876a6f3b9f))
|
|
10
|
+
|
|
11
|
+
## 0.0.225 (2026-01-27)
|
|
12
|
+
|
|
13
|
+
### 🚀 Features
|
|
14
|
+
|
|
15
|
+
- **message:** refactor message component and update theme tokens for improved styling ([b5e23ce50a](https://github.com/RueDeRennes/mosaik/commit/b5e23ce50a))
|
|
16
|
+
|
|
17
|
+
### 🩹 Fixes
|
|
18
|
+
|
|
19
|
+
- **package:** add missing newline at end of file ([876a6f3b9f](https://github.com/RueDeRennes/mosaik/commit/876a6f3b9f))
|
|
20
|
+
|
|
21
|
+
## 0.0.224 (2026-01-26)
|
|
22
|
+
|
|
23
|
+
### 🚀 Features
|
|
24
|
+
|
|
25
|
+
- **colors:** add split-complementary and tetradic color generation functions ([6306b04679](https://github.com/RueDeRennes/mosaik/commit/6306b04679))
|
|
26
|
+
- **theme:** enhance theme generation with font source and update personas ([09d041690c](https://github.com/RueDeRennes/mosaik/commit/09d041690c))
|
|
27
|
+
|
|
28
|
+
## 0.0.223 (2026-01-25)
|
|
29
|
+
|
|
30
|
+
### 🚀 Features
|
|
31
|
+
|
|
32
|
+
- **chipbox:** enhance styles and tokens for Cosmopolitan, Joy, and Memphis themes ([d1f69a7605](https://github.com/RueDeRennes/mosaik/commit/d1f69a7605))
|
|
33
|
+
- **components:** implement inheritance controllers for Selectors and Tree components ([1907f30979](https://github.com/RueDeRennes/mosaik/commit/1907f30979))
|
|
34
|
+
- **translations): add font picker translations for de, en, es, and fr languages feat(shadow): implement ShadowCssConverter for parsing and formatting CSS shadows fix(theme): update ThemePresetService to include additional theme properties refactor(theme): enhance AppThemeView and AppThemeSaveView for better theme management feat(elevation:** add elevation handling in AppThemeView and ThemeService ([5d8d639087](https://github.com/RueDeRennes/mosaik/commit/5d8d639087))
|
|
35
|
+
- **memphis:** add new token files for various components and implement memphis styles ([20bfa043a2](https://github.com/RueDeRennes/mosaik/commit/20bfa043a2))
|
|
36
|
+
|
|
37
|
+
### 🩹 Fixes
|
|
38
|
+
|
|
39
|
+
- **styles:** remove file extension from cosmopolitan theme import ([d95287824a](https://github.com/RueDeRennes/mosaik/commit/d95287824a))
|
|
40
|
+
- **docs:** standardize punctuation and formatting across multiple documentation files ([bed55885fe](https://github.com/RueDeRennes/mosaik/commit/bed55885fe))
|
|
41
|
+
|
|
1
42
|
## 0.0.222 (2026-01-21)
|
|
2
43
|
|
|
3
44
|
### 🚀 Features
|
package/index.cjs
CHANGED
|
@@ -1271,10 +1271,10 @@ var ELEVATION_KEY_BOLD2 = "bold";
|
|
|
1271
1271
|
var ELEVATION_KEY_EXTRABOLD2 = "extrabold";
|
|
1272
1272
|
var VARIANT_PRIMARY2 = "primary";
|
|
1273
1273
|
var VARIANT_SECONDARY2 = "secondary";
|
|
1274
|
-
var VARIANT_INFO2 = "info";
|
|
1275
|
-
var VARIANT_WARNING2 = "warning";
|
|
1276
1274
|
var VARIANT_DANGER2 = "danger";
|
|
1275
|
+
var VARIANT_WARNING2 = "warning";
|
|
1277
1276
|
var VARIANT_SUCCESS2 = "success";
|
|
1277
|
+
var VARIANT_INFO2 = "info";
|
|
1278
1278
|
var VARIANT_NEUTRAL2 = "neutral";
|
|
1279
1279
|
|
|
1280
1280
|
// src/Theming/MemphisTheme.ts
|