@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.
- package/core/styles/core.scss +4 -0
- package/core.css +12 -0
- package/custom-elements.json +710 -710
- package/development/toast/toast.component.js +1 -1
- package/development/toast.component-DvVY7zpe.js +268 -0
- package/development/toast.js +1 -1
- package/development/toast.pure.js +1 -1
- package/off-brand-theme.css +12 -0
- package/package.json +2 -2
- package/safety-theme.css +12 -0
- package/standard-theme.css +12 -0
- package/toast/toast.component.js +1 -1
- package/{toast.component-CXouszwJ.js → toast.component-2hmfUgsX.js} +1 -1
- package/toast.js +1 -1
- package/toast.pure.js +1 -1
- package/development/toast.component-D1M3OYxv.js +0 -268
package/core/styles/core.scss
CHANGED
|
@@ -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);
|