@sbb-esta/lyne-elements-dev 5.0.0-next-dev.1777283651 → 5.0.0-next.1-dev.1777286188

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.
@@ -304,6 +304,9 @@ $theme: 'standard' !default;
304
304
  @use '../../tooltip/tooltip.global' as tooltip with (
305
305
  $theme: $theme
306
306
  );
307
+ @use '../../toast/toast.global' as toast with (
308
+ $theme: $theme
309
+ );
307
310
  @use '../../visual-checkbox/visual-checkbox.global' as visual-checkbox with (
308
311
  $theme: $theme
309
312
  );
@@ -404,6 +407,7 @@ $theme: 'standard' !default;
404
407
  @include toggle.base;
405
408
  @include toggle-option.base;
406
409
  @include tooltip.base;
410
+ @include toast.base;
407
411
  @include visual-checkbox.base;
408
412
 
409
413
  @include a11y.if-forced-colors {
package/core.css CHANGED
@@ -1929,6 +1929,18 @@ slot[name=error]::slotted(*) {
1929
1929
  --sbb-overlay-position-try-fallbacks:
1930
1930
  block-start span-inline-end, block-start span-inline-start, block-end,
1931
1931
  block-end span-inline-end, block-end span-inline-start;
1932
+ --sbb-toast-max-width: 25rem;
1933
+ --sbb-toast-animation-timing-function: ease;
1934
+ --sbb-toast-text-color: var(--sbb-color-3-inverted);
1935
+ --sbb-toast-background-color: var(--sbb-background-color-1-inverted);
1936
+ --sbb-toast-margin: var(--sbb-spacing-responsive-s);
1937
+ --sbb-toast-padding-block: var(--sbb-spacing-responsive-xxxs);
1938
+ --sbb-toast-padding-inline: var(--sbb-spacing-responsive-xs);
1939
+ --sbb-toast-border-radius: var(--sbb-border-radius-4x);
1940
+ --sbb-toast-container-position: fixed;
1941
+ --sbb-toast-horizontal-position: initial;
1942
+ --sbb-toast-vertical-position: initial;
1943
+ --sbb-toast-gap: var(--sbb-spacing-fixed-2x);
1932
1944
  --sbb-visual-checkbox-dimension: var(--sbb-checkbox-dimension-m);
1933
1945
  --sbb-visual-checkbox-selection-color: var(--sbb-color-primary);
1934
1946
  --sbb-visual-checkbox-selection-color-negative: var(--sbb-color-primary85);