@festo-ui/web-essentials 11.0.0-dev.964 → 11.0.0-dev.971
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/dist/css/festo-web-essentials.css +62 -36
- package/dist/css/festo-web-essentials.css.map +1 -1
- package/dist/css/festo-web-essentials.min.css +14 -14
- package/dist/css/festo-web-essentials.min.css.map +1 -1
- package/dist/css/light/festo-web-essentials-light.css +53 -27
- package/dist/css/light/festo-web-essentials-light.css.map +1 -1
- package/dist/css/organisms/festo-web-essentials-organisms.css +4 -0
- package/dist/css/organisms/festo-web-essentials-organisms.css.map +1 -1
- package/dist/css/organisms/festo-web-essentials-organisms.min.css +1 -1
- package/dist/css/organisms/festo-web-essentials-organisms.min.css.map +1 -1
- package/dist/css/themes/flatpickr/festo.css +1 -1
- package/dist/css/themes/flatpickr/festo.min.css +1 -1
- package/dist/scss/_badge.scss +1 -1
- package/dist/scss/_button.scss +3 -3
- package/dist/scss/_chips.scss +1 -1
- package/dist/scss/_list.scss +11 -5
- package/dist/scss/{_bottom-navigation.scss → _mobile-tab-bar.scss} +50 -47
- package/dist/scss/_modal.scss +1 -0
- package/dist/scss/_tree.scss +1 -0
- package/dist/scss/festo-web-essentials.scss +2 -2
- package/dist/scss/light/festo-web-essentials-light.scss +1 -1
- package/dist/scss/organisms/_header-slider.scss +2 -0
- package/dist/scss/organisms/_image-gallery.scss +2 -0
- package/dist/scss/themes/flatpickr/festo.scss +1 -1
- package/llm-doc/components.md +3 -3
- package/package.json +1 -1
- package/scss/_badge.scss +1 -1
- package/scss/_button.scss +3 -3
- package/scss/_chips.scss +1 -1
- package/scss/_list.scss +11 -5
- package/scss/{_bottom-navigation.scss → _mobile-tab-bar.scss} +50 -47
- package/scss/_modal.scss +1 -0
- package/scss/_tree.scss +1 -0
- package/scss/festo-web-essentials.scss +1 -1
- package/scss/light/festo-web-essentials-light.scss +1 -1
- package/scss/organisms/_header-slider.scss +2 -0
- package/scss/organisms/_image-gallery.scss +2 -0
|
@@ -1,47 +1,50 @@
|
|
|
1
|
-
@use "variables";
|
|
2
|
-
|
|
3
|
-
.fwe-bottom-navigation
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
:
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
|
|
1
|
+
@use "variables";
|
|
2
|
+
|
|
3
|
+
.fwe-bottom-navigation, // deprecated
|
|
4
|
+
.fwe-mobile-tab-bar {
|
|
5
|
+
width: 100%;
|
|
6
|
+
display: flex;
|
|
7
|
+
background: variables.$white;
|
|
8
|
+
align-items: flex-start;
|
|
9
|
+
justify-content: space-around;
|
|
10
|
+
border-top: 1px solid variables.$border;
|
|
11
|
+
height: 84px;
|
|
12
|
+
padding: 22px 16px;
|
|
13
|
+
|
|
14
|
+
.fwe-bottom-navigation-button, // deprecated
|
|
15
|
+
.fwe-mobile-tab-bar-button {
|
|
16
|
+
cursor: pointer;
|
|
17
|
+
-webkit-user-select: none;
|
|
18
|
+
user-select: none;
|
|
19
|
+
.fwe-icon {
|
|
20
|
+
line-height: 0px;
|
|
21
|
+
}
|
|
22
|
+
display: flex;
|
|
23
|
+
align-items: center;
|
|
24
|
+
background: none;
|
|
25
|
+
border: none;
|
|
26
|
+
outline: none;
|
|
27
|
+
color: variables.$hero-gray;
|
|
28
|
+
position: relative;
|
|
29
|
+
:after {
|
|
30
|
+
content: "";
|
|
31
|
+
position: absolute;
|
|
32
|
+
top: -23px;
|
|
33
|
+
left: 0px;
|
|
34
|
+
right: 0px;
|
|
35
|
+
height: 0px;
|
|
36
|
+
background: variables.$hero;
|
|
37
|
+
transition: height 0.3s ease;
|
|
38
|
+
}
|
|
39
|
+
&.fwe-selected {
|
|
40
|
+
color: variables.$hero;
|
|
41
|
+
cursor: default;
|
|
42
|
+
:after {
|
|
43
|
+
height: 4px;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
&:active {
|
|
47
|
+
color: variables.$hero-active;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
package/dist/scss/_modal.scss
CHANGED
package/dist/scss/_tree.scss
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Festo UI - Web Essentials v11.0.0-dev.
|
|
2
|
+
* Festo UI - Web Essentials v11.0.0-dev.971 (https://storybook.festo.design/)
|
|
3
3
|
* Copyright 2022 Festo SE & Co. KG
|
|
4
4
|
* Licensed under Apache-2.0
|
|
5
5
|
*/
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
@use "search-input";
|
|
53
53
|
@use "stepper-horizontal";
|
|
54
54
|
@use "stepper-vertical";
|
|
55
|
-
@use "
|
|
55
|
+
@use "mobile-tab-bar";
|
|
56
56
|
@use "accordion";
|
|
57
57
|
@use "tree";
|
|
58
58
|
@use "sidebar-overlay";
|
|
@@ -35,6 +35,7 @@
|
|
|
35
35
|
margin: 0;
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
+
button.fwe-btn-hero, // override for deprecated class fwe-btn-hero
|
|
38
39
|
button.fwe-btn-primary {
|
|
39
40
|
margin-top: 24px;
|
|
40
41
|
justify-content: center;
|
|
@@ -97,6 +98,7 @@
|
|
|
97
98
|
-webkit-line-clamp: 3;
|
|
98
99
|
}
|
|
99
100
|
|
|
101
|
+
button.fwe-btn-hero, // override for deprecated class fwe-btn-hero
|
|
100
102
|
button.fwe-btn-primary {
|
|
101
103
|
justify-content: center;
|
|
102
104
|
margin-top: 0;
|
|
@@ -13,6 +13,8 @@
|
|
|
13
13
|
overflow-y: hidden;
|
|
14
14
|
|
|
15
15
|
.fwe-btn-tertiary i.fwe-icon-arrows-scale-up.fwe-modal-image-gallery-scale,
|
|
16
|
+
.fwe-btn-link i.fwe-icon-arrows-scale-up.fwe-modal-image-gallery-scale, // override for deprecated class fwe-btn-link
|
|
17
|
+
.fwe-btn-link i.fwe-icon-arrows-scale-down.fwe-modal-image-gallery-scale, // override for deprecated class fwe-btn-link
|
|
16
18
|
.fwe-btn-tertiary i.fwe-icon-arrows-scale-down.fwe-modal-image-gallery-scale {
|
|
17
19
|
font-size: 24px;
|
|
18
20
|
margin-right: 0px;
|
package/llm-doc/components.md
CHANGED
|
@@ -55,12 +55,12 @@ Small status/label indicators.
|
|
|
55
55
|
Mobile tab bar at the bottom of the screen.
|
|
56
56
|
|
|
57
57
|
```html
|
|
58
|
-
<div class="fwe-
|
|
59
|
-
<button class="fwe-
|
|
58
|
+
<div class="fwe-mobile-tab-bar">
|
|
59
|
+
<button class="fwe-mobile-tab-bar-button fwe-selected">
|
|
60
60
|
<i class="fwe-icon fwe-icon-menu-home"></i>
|
|
61
61
|
<span>Home</span>
|
|
62
62
|
</button>
|
|
63
|
-
<button class="fwe-
|
|
63
|
+
<button class="fwe-mobile-tab-bar-button">
|
|
64
64
|
<i class="fwe-icon fwe-icon-file-search"></i>
|
|
65
65
|
<span>Search</span>
|
|
66
66
|
</button>
|
package/package.json
CHANGED
package/scss/_badge.scss
CHANGED
package/scss/_button.scss
CHANGED
|
@@ -44,8 +44,8 @@ button.fwe-btn {
|
|
|
44
44
|
color: variables.$text-disabled;
|
|
45
45
|
}
|
|
46
46
|
|
|
47
|
-
&.fwe-btn-
|
|
48
|
-
&.fwe-btn-
|
|
47
|
+
&.fwe-btn-hero, // deprecated
|
|
48
|
+
&.fwe-btn-primary {
|
|
49
49
|
color: variables.$white;
|
|
50
50
|
background: variables.$hero;
|
|
51
51
|
|
|
@@ -69,7 +69,7 @@ button.fwe-btn {
|
|
|
69
69
|
width: 100%;
|
|
70
70
|
}
|
|
71
71
|
|
|
72
|
-
&.fwe-btn-link,
|
|
72
|
+
&.fwe-btn-link, // deprecated
|
|
73
73
|
&.fwe-btn-tertiary {
|
|
74
74
|
background: none;
|
|
75
75
|
color: variables.$hero;
|
package/scss/_chips.scss
CHANGED
package/scss/_list.scss
CHANGED
|
@@ -88,7 +88,7 @@ ul.fwe-list-group {
|
|
|
88
88
|
}
|
|
89
89
|
|
|
90
90
|
&.fwe-disabled {
|
|
91
|
-
color: variables.$
|
|
91
|
+
color: variables.$control-active;
|
|
92
92
|
&::before {
|
|
93
93
|
background-color: variables.$control-hover;
|
|
94
94
|
}
|
|
@@ -100,7 +100,7 @@ ul.fwe-list-group {
|
|
|
100
100
|
color: variables.$text;
|
|
101
101
|
|
|
102
102
|
&:not(.fwe-disabled):hover {
|
|
103
|
-
background-color: variables.$
|
|
103
|
+
background-color: variables.$background;
|
|
104
104
|
.fwe-list-group-item-body,
|
|
105
105
|
.fwe-list-group-item-footer {
|
|
106
106
|
color: variables.$text;
|
|
@@ -118,7 +118,7 @@ ul.fwe-list-group {
|
|
|
118
118
|
|
|
119
119
|
&:not(.fwe-disabled):hover {
|
|
120
120
|
color: variables.$hero;
|
|
121
|
-
background-color: variables.$
|
|
121
|
+
background-color: variables.$background;
|
|
122
122
|
}
|
|
123
123
|
}
|
|
124
124
|
|
|
@@ -172,7 +172,7 @@ ul.fwe-list-group {
|
|
|
172
172
|
}
|
|
173
173
|
|
|
174
174
|
&.fwe-disabled {
|
|
175
|
-
color: variables.$
|
|
175
|
+
color: variables.$control-active;
|
|
176
176
|
&::before {
|
|
177
177
|
background-color: variables.$control-hover;
|
|
178
178
|
}
|
|
@@ -191,9 +191,15 @@ ul.fwe-list-group {
|
|
|
191
191
|
button.fwe-list-group-item {
|
|
192
192
|
width: auto;
|
|
193
193
|
|
|
194
|
+
&:not(.fwe-disabled):hover {
|
|
195
|
+
background-color: variables.$background;
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
button.fwe-list-group-item {
|
|
194
200
|
&:not(.fwe-disabled):hover {
|
|
195
201
|
color: variables.$hero;
|
|
196
|
-
background-color:
|
|
202
|
+
background-color: variables.$background;
|
|
197
203
|
}
|
|
198
204
|
}
|
|
199
205
|
}
|
|
@@ -1,47 +1,50 @@
|
|
|
1
|
-
@use "variables";
|
|
2
|
-
|
|
3
|
-
.fwe-bottom-navigation
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
:
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
|
|
1
|
+
@use "variables";
|
|
2
|
+
|
|
3
|
+
.fwe-bottom-navigation, // deprecated
|
|
4
|
+
.fwe-mobile-tab-bar {
|
|
5
|
+
width: 100%;
|
|
6
|
+
display: flex;
|
|
7
|
+
background: variables.$white;
|
|
8
|
+
align-items: flex-start;
|
|
9
|
+
justify-content: space-around;
|
|
10
|
+
border-top: 1px solid variables.$border;
|
|
11
|
+
height: 84px;
|
|
12
|
+
padding: 22px 16px;
|
|
13
|
+
|
|
14
|
+
.fwe-bottom-navigation-button, // deprecated
|
|
15
|
+
.fwe-mobile-tab-bar-button {
|
|
16
|
+
cursor: pointer;
|
|
17
|
+
-webkit-user-select: none;
|
|
18
|
+
user-select: none;
|
|
19
|
+
.fwe-icon {
|
|
20
|
+
line-height: 0px;
|
|
21
|
+
}
|
|
22
|
+
display: flex;
|
|
23
|
+
align-items: center;
|
|
24
|
+
background: none;
|
|
25
|
+
border: none;
|
|
26
|
+
outline: none;
|
|
27
|
+
color: variables.$hero-gray;
|
|
28
|
+
position: relative;
|
|
29
|
+
:after {
|
|
30
|
+
content: "";
|
|
31
|
+
position: absolute;
|
|
32
|
+
top: -23px;
|
|
33
|
+
left: 0px;
|
|
34
|
+
right: 0px;
|
|
35
|
+
height: 0px;
|
|
36
|
+
background: variables.$hero;
|
|
37
|
+
transition: height 0.3s ease;
|
|
38
|
+
}
|
|
39
|
+
&.fwe-selected {
|
|
40
|
+
color: variables.$hero;
|
|
41
|
+
cursor: default;
|
|
42
|
+
:after {
|
|
43
|
+
height: 4px;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
&:active {
|
|
47
|
+
color: variables.$hero-active;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
package/scss/_modal.scss
CHANGED
package/scss/_tree.scss
CHANGED
|
@@ -35,6 +35,7 @@
|
|
|
35
35
|
margin: 0;
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
+
button.fwe-btn-hero, // override for deprecated class fwe-btn-hero
|
|
38
39
|
button.fwe-btn-primary {
|
|
39
40
|
margin-top: 24px;
|
|
40
41
|
justify-content: center;
|
|
@@ -97,6 +98,7 @@
|
|
|
97
98
|
-webkit-line-clamp: 3;
|
|
98
99
|
}
|
|
99
100
|
|
|
101
|
+
button.fwe-btn-hero, // override for deprecated class fwe-btn-hero
|
|
100
102
|
button.fwe-btn-primary {
|
|
101
103
|
justify-content: center;
|
|
102
104
|
margin-top: 0;
|
|
@@ -13,6 +13,8 @@
|
|
|
13
13
|
overflow-y: hidden;
|
|
14
14
|
|
|
15
15
|
.fwe-btn-tertiary i.fwe-icon-arrows-scale-up.fwe-modal-image-gallery-scale,
|
|
16
|
+
.fwe-btn-link i.fwe-icon-arrows-scale-up.fwe-modal-image-gallery-scale, // override for deprecated class fwe-btn-link
|
|
17
|
+
.fwe-btn-link i.fwe-icon-arrows-scale-down.fwe-modal-image-gallery-scale, // override for deprecated class fwe-btn-link
|
|
16
18
|
.fwe-btn-tertiary i.fwe-icon-arrows-scale-down.fwe-modal-image-gallery-scale {
|
|
17
19
|
font-size: 24px;
|
|
18
20
|
margin-right: 0px;
|