@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.
Files changed (37) hide show
  1. package/dist/css/festo-web-essentials.css +62 -36
  2. package/dist/css/festo-web-essentials.css.map +1 -1
  3. package/dist/css/festo-web-essentials.min.css +14 -14
  4. package/dist/css/festo-web-essentials.min.css.map +1 -1
  5. package/dist/css/light/festo-web-essentials-light.css +53 -27
  6. package/dist/css/light/festo-web-essentials-light.css.map +1 -1
  7. package/dist/css/organisms/festo-web-essentials-organisms.css +4 -0
  8. package/dist/css/organisms/festo-web-essentials-organisms.css.map +1 -1
  9. package/dist/css/organisms/festo-web-essentials-organisms.min.css +1 -1
  10. package/dist/css/organisms/festo-web-essentials-organisms.min.css.map +1 -1
  11. package/dist/css/themes/flatpickr/festo.css +1 -1
  12. package/dist/css/themes/flatpickr/festo.min.css +1 -1
  13. package/dist/scss/_badge.scss +1 -1
  14. package/dist/scss/_button.scss +3 -3
  15. package/dist/scss/_chips.scss +1 -1
  16. package/dist/scss/_list.scss +11 -5
  17. package/dist/scss/{_bottom-navigation.scss → _mobile-tab-bar.scss} +50 -47
  18. package/dist/scss/_modal.scss +1 -0
  19. package/dist/scss/_tree.scss +1 -0
  20. package/dist/scss/festo-web-essentials.scss +2 -2
  21. package/dist/scss/light/festo-web-essentials-light.scss +1 -1
  22. package/dist/scss/organisms/_header-slider.scss +2 -0
  23. package/dist/scss/organisms/_image-gallery.scss +2 -0
  24. package/dist/scss/themes/flatpickr/festo.scss +1 -1
  25. package/llm-doc/components.md +3 -3
  26. package/package.json +1 -1
  27. package/scss/_badge.scss +1 -1
  28. package/scss/_button.scss +3 -3
  29. package/scss/_chips.scss +1 -1
  30. package/scss/_list.scss +11 -5
  31. package/scss/{_bottom-navigation.scss → _mobile-tab-bar.scss} +50 -47
  32. package/scss/_modal.scss +1 -0
  33. package/scss/_tree.scss +1 -0
  34. package/scss/festo-web-essentials.scss +1 -1
  35. package/scss/light/festo-web-essentials-light.scss +1 -1
  36. package/scss/organisms/_header-slider.scss +2 -0
  37. package/scss/organisms/_image-gallery.scss +2 -0
@@ -1,47 +1,50 @@
1
- @use "variables";
2
-
3
- .fwe-bottom-navigation {
4
- width: 100%;
5
- display: flex;
6
- background: variables.$white;
7
- align-items: flex-start;
8
- justify-content: space-around;
9
- border-top: 1px solid variables.$border;
10
- height: 84px;
11
- padding: 22px 16px;
12
- .fwe-bottom-navigation-button {
13
- cursor: pointer;
14
- -webkit-user-select: none;
15
- user-select: none;
16
- .fwe-icon {
17
- line-height: 0px;
18
- }
19
- display: flex;
20
- align-items: center;
21
- background: none;
22
- border: none;
23
- outline: none;
24
- color: variables.$hero-gray;
25
- position: relative;
26
- :after {
27
- content: "";
28
- position: absolute;
29
- top: -23px;
30
- left: 0px;
31
- right: 0px;
32
- height: 0px;
33
- background: variables.$hero;
34
- transition: height 0.3s ease;
35
- }
36
- &.fwe-selected {
37
- color: variables.$hero;
38
- cursor: default;
39
- :after {
40
- height: 4px;
41
- }
42
- }
43
- &:active {
44
- color: variables.$hero-active;
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
+ }
@@ -91,6 +91,7 @@
91
91
 
92
92
  &.fwe-modal--warning,
93
93
  &.fwe-modal--error {
94
+ button.fwe-btn.fwe-btn-link, // override for deprecated class fwe-btn-link
94
95
  button.fwe-btn.fwe-btn-tertiary {
95
96
  color: variables.$text;
96
97
  }
@@ -207,6 +207,7 @@
207
207
  }
208
208
  }
209
209
 
210
+ .fwe-btn.fwe-btn-link, // override for deprecated class fwe-btn-link
210
211
  .fwe-btn.fwe-btn-tertiary {
211
212
  &.fwe-btn--tree-node-toggle {
212
213
  color: variables.$text;
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Festo UI - Web Essentials v11.0.0-dev.964 (https://storybook.festo.design/)
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 "bottom-navigation";
55
+ @use "mobile-tab-bar";
56
56
  @use "accordion";
57
57
  @use "tree";
58
58
  @use "sidebar-overlay";
@@ -51,7 +51,7 @@
51
51
  @use "../search-input";
52
52
  @use "../stepper-horizontal";
53
53
  @use "../stepper-vertical";
54
- @use "../bottom-navigation";
54
+ @use "../mobile-tab-bar";
55
55
  @use "../accordion";
56
56
  @use "../tree";
57
57
  @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;
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Festo UI - Web Essentials v11.0.0-dev.964 (https://storybook.festo.design/)
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
  */
@@ -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-bottom-navigation">
59
- <button class="fwe-bottom-navigation-button fwe-selected">
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-bottom-navigation-button">
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@festo-ui/web-essentials",
3
- "version": "11.0.0-dev.964",
3
+ "version": "11.0.0-dev.971",
4
4
  "description": "CSS framework and utils to build FESTO web applications",
5
5
  "keywords": [
6
6
  "css",
package/scss/_badge.scss CHANGED
@@ -19,7 +19,7 @@
19
19
  line-height: 18px;
20
20
  }
21
21
 
22
- &.fwe-badge-md,
22
+ &.fwe-badge-md, // deprecated
23
23
  &.fwe-badge-lg {
24
24
  font-size: variables.$font-size-base;
25
25
  max-height: 22px;
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-primary,
48
- &.fwe-btn-hero {
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
@@ -143,7 +143,7 @@
143
143
  cursor: default;
144
144
  background: variables.$control-disabled;
145
145
  border: 1px solid variables.$control-disabled;
146
- color: variables.$text-disabled;
146
+ color: variables.$control-active;
147
147
 
148
148
  &.fwe-filter.fwe-selected {
149
149
  cursor: default;
package/scss/_list.scss CHANGED
@@ -88,7 +88,7 @@ ul.fwe-list-group {
88
88
  }
89
89
 
90
90
  &.fwe-disabled {
91
- color: variables.$text-disabled;
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.$sucanul;
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.$sucanul;
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.$text-disabled;
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: unset;
202
+ background-color: variables.$background;
197
203
  }
198
204
  }
199
205
  }
@@ -1,47 +1,50 @@
1
- @use "variables";
2
-
3
- .fwe-bottom-navigation {
4
- width: 100%;
5
- display: flex;
6
- background: variables.$white;
7
- align-items: flex-start;
8
- justify-content: space-around;
9
- border-top: 1px solid variables.$border;
10
- height: 84px;
11
- padding: 22px 16px;
12
- .fwe-bottom-navigation-button {
13
- cursor: pointer;
14
- -webkit-user-select: none;
15
- user-select: none;
16
- .fwe-icon {
17
- line-height: 0px;
18
- }
19
- display: flex;
20
- align-items: center;
21
- background: none;
22
- border: none;
23
- outline: none;
24
- color: variables.$hero-gray;
25
- position: relative;
26
- :after {
27
- content: "";
28
- position: absolute;
29
- top: -23px;
30
- left: 0px;
31
- right: 0px;
32
- height: 0px;
33
- background: variables.$hero;
34
- transition: height 0.3s ease;
35
- }
36
- &.fwe-selected {
37
- color: variables.$hero;
38
- cursor: default;
39
- :after {
40
- height: 4px;
41
- }
42
- }
43
- &:active {
44
- color: variables.$hero-active;
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
@@ -91,6 +91,7 @@
91
91
 
92
92
  &.fwe-modal--warning,
93
93
  &.fwe-modal--error {
94
+ button.fwe-btn.fwe-btn-link, // override for deprecated class fwe-btn-link
94
95
  button.fwe-btn.fwe-btn-tertiary {
95
96
  color: variables.$text;
96
97
  }
package/scss/_tree.scss CHANGED
@@ -207,6 +207,7 @@
207
207
  }
208
208
  }
209
209
 
210
+ .fwe-btn.fwe-btn-link, // override for deprecated class fwe-btn-link
210
211
  .fwe-btn.fwe-btn-tertiary {
211
212
  &.fwe-btn--tree-node-toggle {
212
213
  color: variables.$text;
@@ -52,7 +52,7 @@
52
52
  @use "search-input";
53
53
  @use "stepper-horizontal";
54
54
  @use "stepper-vertical";
55
- @use "bottom-navigation";
55
+ @use "mobile-tab-bar";
56
56
  @use "accordion";
57
57
  @use "tree";
58
58
  @use "sidebar-overlay";
@@ -51,7 +51,7 @@
51
51
  @use "../search-input";
52
52
  @use "../stepper-horizontal";
53
53
  @use "../stepper-vertical";
54
- @use "../bottom-navigation";
54
+ @use "../mobile-tab-bar";
55
55
  @use "../accordion";
56
56
  @use "../tree";
57
57
  @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;