@sbb-esta/lyne-elements-dev 4.9.0-dev.1774516800 → 4.9.0-dev.1774519787
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 +6 -2
- package/core.css +7 -0
- package/custom-elements.json +668 -668
- package/development/overlay/overlay.component.js +1 -1
- package/development/overlay.component-H1N5AUm0.js +408 -0
- package/development/overlay.js +1 -1
- package/development/overlay.pure.js +1 -1
- package/off-brand-theme.css +7 -0
- package/overlay/overlay.component.js +1 -1
- package/{overlay.component-CaBxt4sb.js → overlay.component-QYenVZtj.js} +1 -1
- package/overlay.js +1 -1
- package/overlay.pure.js +1 -1
- package/package.json +2 -2
- package/safety-theme.css +7 -0
- package/standard-theme.css +7 -0
- package/development/overlay.component-Btd42clm.js +0 -411
package/core/styles/core.scss
CHANGED
|
@@ -10,7 +10,7 @@ $theme: 'standard' !default;
|
|
|
10
10
|
@use './mixins/font-face';
|
|
11
11
|
@use './mixins/helpers';
|
|
12
12
|
@use './mixins/inputs';
|
|
13
|
-
@use './mixins/overlay' as overlay;
|
|
13
|
+
@use './mixins/overlay' as overlay-mixin;
|
|
14
14
|
@use './mixins/popover';
|
|
15
15
|
@use './mixins/scrollbar';
|
|
16
16
|
@use './mixins/typo';
|
|
@@ -172,6 +172,9 @@ $theme: 'standard' !default;
|
|
|
172
172
|
@use '../../option/option-hint/option-hint.global' as option-hint with (
|
|
173
173
|
$theme: $theme
|
|
174
174
|
);
|
|
175
|
+
@use '../../overlay/overlay.global' as overlay with (
|
|
176
|
+
$theme: $theme
|
|
177
|
+
);
|
|
175
178
|
@use '../../option/optgroup/optgroup.global' as optgroup with (
|
|
176
179
|
$theme: $theme
|
|
177
180
|
);
|
|
@@ -275,7 +278,8 @@ $theme: 'standard' !default;
|
|
|
275
278
|
@include option.base;
|
|
276
279
|
@include option-hint.base;
|
|
277
280
|
@include optgroup.base;
|
|
278
|
-
@include overlay.
|
|
281
|
+
@include overlay.base;
|
|
282
|
+
@include overlay-mixin.options-panel-overlay-variables--global($theme);
|
|
279
283
|
@include paginator.base;
|
|
280
284
|
@include compact-paginator.base;
|
|
281
285
|
@include popover-component.base;
|
package/core.css
CHANGED
|
@@ -1583,6 +1583,13 @@ slot[name=error]::slotted(*) {
|
|
|
1583
1583
|
--sbb-optgroup-label-font-size: var(--sbb-text-font-size-xxs);
|
|
1584
1584
|
--sbb-optgroup-label-padding-end: var(--sbb-spacing-fixed-2x);
|
|
1585
1585
|
--sbb-optgroup-label-padding-inline: var(--sbb-spacing-responsive-xxxs);
|
|
1586
|
+
--sbb-overlay-background-color: var(--sbb-background-color-3);
|
|
1587
|
+
--sbb-overlay-display: none;
|
|
1588
|
+
--sbb-overlay-height: 100%;
|
|
1589
|
+
--sbb-overlay-inset: 0 auto auto 0;
|
|
1590
|
+
--sbb-overlay-animation-easing: ease;
|
|
1591
|
+
--sbb-overlay-pointer-events: none;
|
|
1592
|
+
--sbb-overlay-container-display: none;
|
|
1586
1593
|
--sbb-options-panel-border-radius: var(--sbb-border-radius-4x);
|
|
1587
1594
|
--sbb-options-panel-animation-timing-function: ease;
|
|
1588
1595
|
--sbb-options-panel-background-color: var(--sbb-background-color-1);
|