@breadstone/mosaik-themes 0.0.169 → 0.0.170

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 (2) hide show
  1. package/Themes/joy.scss +30 -13
  2. package/package.json +2 -2
package/Themes/joy.scss CHANGED
@@ -2680,21 +2680,38 @@ $chat-message-props: (
2680
2680
  'white-space': 44px
2681
2681
  );
2682
2682
  $chat-message-avatar-props: (
2683
- 'font-family': unset,
2684
- 'font-letter-spacing': unset,
2685
- 'font-line-height': unset,
2686
- 'font-size': unset,
2683
+ 'background-color': var(--joy-scheme-background),
2684
+ 'badge-gap': var(--joy-layout-thickness),
2685
+ 'badge-horizontal-align': right,
2686
+ 'badge-radius': var(--joy-layout-space),
2687
+ 'badge-vertical-align': bottom,
2688
+ 'border-color': var(--joy-scheme-highlight),
2689
+ 'border-radius': 50%,
2690
+ 'border-style': solid,
2691
+ 'border-width': 0px,
2692
+ 'diameter': 64px,
2693
+ 'font-family': var(--joy-font-family),
2694
+ 'font-letter-spacing': 0px,
2695
+ 'font-line-height': calc(var(--avatar-font-size) + 4px),
2696
+ 'font-size': 32px,
2687
2697
  'font-text-decoration': unset,
2688
2698
  'font-text-transform': unset,
2689
- 'font-weight': unset,
2690
- 'gap': unset,
2691
- 'padding-bottom': unset,
2692
- 'padding-left': unset,
2693
- 'padding-right': unset,
2694
- 'padding-top': unset,
2695
- 'transition-duration': unset,
2696
- 'transition-mode': unset,
2697
- 'transition-property': unset,
2699
+ 'font-weight': 600,
2700
+ 'foreground-color': var(--joy-scheme-foreground),
2701
+ 'gap': var(--joy-layout-space),
2702
+ 'offset': calc(var(--joy-layout-space) * 2),
2703
+ 'padding-bottom': calc(var(--joy-layout-space) / 2),
2704
+ 'padding-left': var(--joy-layout-space),
2705
+ 'padding-right': var(--joy-layout-space),
2706
+ 'padding-top': calc(var(--joy-layout-space) / 2),
2707
+ 'shadow-blur': unset,
2708
+ 'shadow-color': unset,
2709
+ 'shadow-offset-x': unset,
2710
+ 'shadow-offset-y': unset,
2711
+ 'shadow-spread': unset,
2712
+ 'transition-duration': var(--joy-duration-short),
2713
+ 'transition-mode': ease,
2714
+ 'transition-property': (background-color, color, border-color, opacity, box-shadow),
2698
2715
  'translate': unset
2699
2716
  );
2700
2717
  $chat-message-divider-props: (
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@breadstone/mosaik-themes",
3
- "version": "0.0.169",
3
+ "version": "0.0.170",
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.169",
18
+ "@breadstone/mosaik-elements": "^0.0.170",
19
19
  "@ctrl/tinycolor": "^4.2.0",
20
20
  "tslib": "^2.8.1"
21
21
  },