@stihl-design-system/components 1.0.0-RC.29 → 1.0.0-RC.30
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/{actionbutton.DHt1AL7U.js → actionbutton.u1qp8oGC.js} +1 -1
- package/{actionlink.BML1jenE.js → actionlink.C7HzeIVa.js} +1 -1
- package/assets/ActionButton.oGVPTS1J.css +1 -0
- package/assets/ActionLink.CTh6IXrN.css +1 -0
- package/assets/Header.CNqtWTxB.css +1 -0
- package/assets/MegaMenu.DX9gChtY.css +1 -0
- package/assets/banner.BLdW5VF4.css +1 -0
- package/banner.j9YpudOS.js +55 -0
- package/chunks/ActionButton.B8zFwOrJ.js +165 -0
- package/chunks/{ActionLink.BlhqDEtq.js → ActionLink.IX6oRXU3.js} +31 -31
- package/chunks/Header.DqZRryB5.js +366 -0
- package/chunks/MegaMenu.BY7eOnhj.js +189 -0
- package/chunks/Popover.NGetxKGg.js +159 -0
- package/chunks/floating-ui.react.x0F9CYgn.js +1637 -0
- package/components/Banner/Banner.d.ts +1 -1
- package/components/InputFile/InputFile.d.ts +1 -1
- package/components/MegaMenu/MegaMenu.d.ts +32 -0
- package/components/MegaMenu/MegaMenu.test.d.ts +1 -0
- package/components/MegaMenu/MegaMenu.utils.d.ts +52 -0
- package/components/MegaMenu/MegaMenu.utils.test.d.ts +1 -0
- package/components/Popover/Popover.d.ts +1 -1
- package/components/Scroller/Scroller.d.ts +1 -1
- package/github-mark-white.svg +1 -0
- package/github-mark.svg +1 -0
- package/{header.Z4Oxj_xL.js → header.QpNjE3N-.js} +1 -1
- package/index.d.ts +2 -0
- package/index.es.js +117 -112
- package/megamenu.CdHrEeoh.js +12 -0
- package/megamenu.d.ts +2 -0
- package/package.json +3 -1
- package/partials/index.js +21 -15
- package/partials/lib/partials.d.ts +1 -1
- package/{popover.BFx99cHg.js → popover.DXxm1oWI.js} +3 -2
- package/styles/scss/ds/index.scss +0 -1
- package/styles/scss/ds/lib/grid-main.scss +2 -13
- package/styles/scss/ds/lib/grid-sidebar.scss +38 -136
- package/{topbar.Bccms0xZ.js → topbar.Dhy_TL0U.js} +1 -1
- package/assets/ActionButton.Ewi0i1hW.css +0 -1
- package/assets/ActionLink.BdPEvuGm.css +0 -1
- package/assets/Header.DO34x-dO.css +0 -1
- package/assets/banner.D9EiZqqR.css +0 -1
- package/banner.B2YO054K.js +0 -55
- package/chunks/ActionButton.CzaWZGPt.js +0 -165
- package/chunks/Header.BSvyYrIV.js +0 -368
- package/chunks/Popover.hXQTvwwd.js +0 -1685
- package/styles/scss/ds/lib/grid-sidebar-sidebar.scss +0 -52
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
@use 'media-query' as *;
|
|
2
|
-
|
|
3
|
-
$grid-sidebar-sidebar-1-column-start: sidebar-1-start;
|
|
4
|
-
$grid-sidebar-sidebar-1-column-end: sidebar-1-end;
|
|
5
|
-
$grid-sidebar-sidebar-2-column-start: sidebar-2-start;
|
|
6
|
-
$grid-sidebar-sidebar-2-column-end: sidebar-2-end;
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
@mixin grid-sidebar-sidebar-1($is-open: false) {
|
|
10
|
-
display: none;
|
|
11
|
-
@include media-query-min('l') {
|
|
12
|
-
display: unset;
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
grid-row: span 300;
|
|
18
|
-
grid-column: $grid-sidebar-sidebar-1-column-start /
|
|
19
|
-
$grid-sidebar-sidebar-1-column-end;
|
|
20
|
-
margin-block-end: 0;
|
|
21
|
-
@if ($is-open == true) {
|
|
22
|
-
width: 264px;
|
|
23
|
-
max-width: 264px;
|
|
24
|
-
} @else {
|
|
25
|
-
width: 64px;
|
|
26
|
-
max-width: 64px;
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
@mixin grid-sidebar-sidebar-2($is-open: false) {
|
|
32
|
-
display: none;
|
|
33
|
-
@include media-query-min('l') {
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
grid-row: span 300;
|
|
39
|
-
margin-block-end: 0;
|
|
40
|
-
@if ($is-open == true) {
|
|
41
|
-
grid-column: $grid-sidebar-sidebar-2-column-start /
|
|
42
|
-
$grid-sidebar-sidebar-2-column-end;
|
|
43
|
-
display: unset;
|
|
44
|
-
width: 320px;
|
|
45
|
-
max-width: 320px;
|
|
46
|
-
margin-inline-start: -24px;
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
@media (min-width: 1535px) {
|
|
50
|
-
margin-inline-start: -32px;
|
|
51
|
-
}
|
|
52
|
-
}
|