@festo-ui/web-essentials 4.0.3-pre-20221124.8 → 5.0.0-dev.17

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 (76) hide show
  1. package/README.md +73 -73
  2. package/dist/css/festo-web-essentials.css +500 -3316
  3. package/dist/css/festo-web-essentials.css.map +1 -1
  4. package/dist/css/festo-web-essentials.min.css +3 -3
  5. package/dist/css/festo-web-essentials.min.css.map +1 -1
  6. package/dist/css/organisms/festo-web-essentials-organisms.css +8 -15
  7. package/dist/css/organisms/festo-web-essentials-organisms.css.map +1 -1
  8. package/dist/css/organisms/festo-web-essentials-organisms.min.css +1 -1
  9. package/dist/css/organisms/festo-web-essentials-organisms.min.css.map +1 -1
  10. package/dist/css/themes/flatpickr/festo.css +3 -18
  11. package/dist/css/themes/flatpickr/festo.css.map +1 -1
  12. package/dist/css/themes/flatpickr/festo.min.css +2 -2
  13. package/dist/css/themes/flatpickr/festo.min.css.map +1 -1
  14. package/dist/scss/_breadcrumb.scss +37 -37
  15. package/dist/scss/_button.scss +128 -128
  16. package/dist/scss/_cards.scss +98 -98
  17. package/dist/scss/_checkbox.scss +153 -153
  18. package/dist/scss/_chips.scss +145 -145
  19. package/dist/scss/_fonts.scss +59 -59
  20. package/dist/scss/_icons.scss +1446 -1446
  21. package/dist/scss/_loading-indicator.scss +176 -176
  22. package/dist/scss/_mobile-flyout.scss +108 -108
  23. package/dist/scss/_navbar-menu.scss +351 -351
  24. package/dist/scss/_navbar.scss +258 -258
  25. package/dist/scss/_popover.scss +201 -201
  26. package/dist/scss/_progressbar.scss +67 -67
  27. package/dist/scss/_radio.scss +152 -152
  28. package/dist/scss/_root.scss +111 -111
  29. package/dist/scss/_search-input.scss +92 -92
  30. package/dist/scss/_select.scss +95 -95
  31. package/dist/scss/_stepper-horizontal.scss +127 -127
  32. package/dist/scss/_stepper-vertical.scss +121 -121
  33. package/dist/scss/_table.scss +150 -150
  34. package/dist/scss/_timepicker.scss +68 -68
  35. package/dist/scss/_tree.scss +211 -211
  36. package/dist/scss/_variables.scss +252 -252
  37. package/dist/scss/festo-web-essentials.scss +1 -1
  38. package/dist/scss/organisms/_footer.scss +142 -142
  39. package/dist/scss/organisms/_header-slider.scss +153 -153
  40. package/dist/scss/organisms/_image-gallery.scss +257 -257
  41. package/dist/scss/organisms/_login.scss +57 -57
  42. package/dist/scss/organisms/_side-menu.scss +54 -54
  43. package/dist/scss/organisms/festo-web-essentials-organisms.scss +15 -15
  44. package/dist/scss/themes/flatpickr/festo.scss +834 -834
  45. package/package.json +88 -9
  46. package/scss/_breadcrumb.scss +37 -37
  47. package/scss/_button.scss +128 -128
  48. package/scss/_cards.scss +98 -98
  49. package/scss/_checkbox.scss +153 -153
  50. package/scss/_chips.scss +145 -145
  51. package/scss/_fonts.scss +59 -59
  52. package/scss/_icons.scss +1446 -1446
  53. package/scss/_loading-indicator.scss +176 -176
  54. package/scss/_mobile-flyout.scss +108 -108
  55. package/scss/_navbar-menu.scss +351 -351
  56. package/scss/_navbar.scss +258 -258
  57. package/scss/_popover.scss +201 -201
  58. package/scss/_progressbar.scss +67 -67
  59. package/scss/_radio.scss +152 -152
  60. package/scss/_root.scss +111 -111
  61. package/scss/_search-input.scss +92 -92
  62. package/scss/_select.scss +95 -95
  63. package/scss/_stepper-horizontal.scss +127 -127
  64. package/scss/_stepper-vertical.scss +121 -121
  65. package/scss/_table.scss +150 -150
  66. package/scss/_timepicker.scss +68 -68
  67. package/scss/_tree.scss +211 -211
  68. package/scss/_variables.scss +252 -252
  69. package/scss/festo-web-essentials.scss +1 -1
  70. package/scss/organisms/_footer.scss +142 -142
  71. package/scss/organisms/_header-slider.scss +153 -153
  72. package/scss/organisms/_image-gallery.scss +257 -257
  73. package/scss/organisms/_login.scss +57 -57
  74. package/scss/organisms/_side-menu.scss +54 -54
  75. package/scss/organisms/festo-web-essentials-organisms.scss +15 -15
  76. package/scss/themes/flatpickr/festo.scss +834 -834
@@ -1,351 +1,351 @@
1
- /*
2
- ** Basic navbar menu
3
- */
4
- .fwe-navbar-menu {
5
- position: relative;
6
- }
7
-
8
- .fwe-navbar-menu-button {
9
- padding: 0;
10
- border: none;
11
- background: none;
12
- span {
13
- margin-left: 4px; // separate icon from label
14
- }
15
- position: relative;
16
- cursor: pointer;
17
- color: $text;
18
- height: 32px;
19
- min-width: 32px;
20
- display: flex;
21
- align-items: center;
22
- justify-content: center;
23
- &::before {
24
- content: "";
25
- position: absolute;
26
- height: 0px;
27
- right: 0px;
28
- left: 0px;
29
- bottom: -13px;
30
- background: $caerul;
31
- transition: height 0.2s;
32
- }
33
- &.fwe-selected {
34
- color: $hero;
35
- &::before {
36
- height: 4px;
37
- }
38
- }
39
- &:hover {
40
- color: $hero;
41
- }
42
- }
43
-
44
- .fwe-navbar-menu-container {
45
- position: absolute;
46
- display: flex;
47
- top: 45px;
48
- right: 0px;
49
- width: 300px;
50
- background-color: $white;
51
- flex-direction: column;
52
- box-shadow: 0px 1px 4px #00000029;
53
- max-height: calc(100vh - #{$navbar-height});
54
- overflow: visible;
55
-
56
- @media (max-width: $grid-breakpoint-sm - 2) {
57
- width: 100% !important;
58
- position: fixed;
59
- top: $navbar-height;
60
- left: 0;
61
- height: calc(100vh - #{$navbar-height});
62
- }
63
- }
64
-
65
- /**
66
- * Profile menu
67
- */
68
- .fwe-profile-menu {
69
- .fwe-profile-menu-header {
70
- margin-bottom: $spacer-s;
71
- display: flex;
72
- flex-direction: row;
73
- padding: $spacer-l $spacer-m $spacer-m $spacer-m;
74
-
75
- .fwe-profile-image-container {
76
- width: $spacer-xl;
77
- height: $spacer-xl;
78
- flex-shrink: 0;
79
- border-radius: 50%;
80
- overflow: hidden;
81
- background-color: $gray-400;
82
- display: flex;
83
- align-items: center;
84
- justify-content: center;
85
- margin-right: $spacer-s;
86
-
87
- .fwe-profile-image {
88
- width: 100%;
89
- }
90
-
91
- .fwe-placeholder-letter {
92
- width: $spacer-l;
93
- height: $spacer-l;
94
- background-color: $gray-100;
95
- border-radius: 50%;
96
- align-items: center;
97
- justify-content: center;
98
- text-align: center;
99
- border: solid 6px $white;
100
- box-sizing: content-box;
101
- font-size: $font-size-base;
102
- line-height: 28px;
103
- }
104
- }
105
-
106
- .fwe-profile-data-container {
107
- display: flex;
108
- flex-direction: column;
109
-
110
- .fwe-username {
111
- overflow-wrap: anywhere;
112
- font-weight: $font-weight-bold;
113
- }
114
-
115
- .fwe-email {
116
- overflow-wrap: anywhere;
117
- font-size: $font-size-small;
118
- margin-top: $spacer-xxxs;
119
- }
120
- }
121
- }
122
-
123
- .fwe-profile-menu-item {
124
- padding: $spacer-xs $spacer-m !important;
125
- min-height: auto;
126
- text-align: left;
127
- justify-content: unset;
128
- i {
129
- padding-right: $spacer-xs !important;
130
- }
131
- }
132
-
133
- .fwe-btn-logout {
134
- border-radius: 0;
135
- justify-content: center;
136
- margin-top: $spacer-xxl - $spacer-m;
137
- }
138
-
139
- @media (max-width: $grid-breakpoint-sm - 2) {
140
- .fwe-profile-menu-header {
141
- margin-bottom: $spacer-s;
142
- background-color: $background;
143
- border-bottom: solid 1px $gray-200;
144
- padding: $spacer-m $spacer-s $spacer-m $spacer-s;
145
-
146
- .fwe-profile-image-container {
147
- width: $spacer-xxl;
148
- height: $spacer-xxl;
149
- margin-right: $spacer-l;
150
-
151
- .fwe-placeholder-letter {
152
- width: 42px;
153
- height: 42px;
154
- border: solid 9px $white;
155
- font-size: $font-size-xl;
156
- line-height: 40px;
157
- }
158
- }
159
- }
160
-
161
- .fwe-profile-data-container .fwe-email {
162
- font-size: $font-size-base !important;
163
- }
164
-
165
- .fwe-profile-menu-item {
166
- padding: 20px $spacer-s !important;
167
- i {
168
- padding-right: $spacer-m !important;
169
- }
170
- }
171
-
172
- .fwe-btn-logout {
173
- margin: auto $spacer-s $spacer-l $spacer-s !important;
174
- border-radius: $control-border-radius;
175
- }
176
- }
177
- }
178
-
179
- /**
180
- * Notification menu
181
- */
182
- .fwe-notification-button {
183
- @extend .fwe-navbar-menu-button;
184
-
185
- width: 32px;
186
- &.fwe-selected {
187
- .fwe-warning {
188
- color: $orange;
189
- }
190
- .fwe-error {
191
- color: $red;
192
- }
193
- }
194
-
195
- .fwe-notification-batch {
196
- position: absolute;
197
- border-radius: 50%;
198
- height: 22px;
199
- line-height: calc(#{$font-size-small} + 4px);
200
- width: 22px;
201
- font-size: $font-size-small;
202
- color: $white !important;
203
- background: $caerul;
204
- border: 2px solid $white;
205
- top: -10px;
206
- right: -10px;
207
- }
208
-
209
- &.fwe-warning {
210
- color: $white;
211
- background: $orange;
212
- &::before {
213
- background: $orange;
214
- }
215
- .fwe-notification-batch {
216
- background: $text;
217
- }
218
- }
219
-
220
- &.fwe-error {
221
- color: $white;
222
- background: $red;
223
- &::before {
224
- background: $red;
225
- }
226
- .fwe-notification-batch {
227
- background: $text;
228
- }
229
- }
230
-
231
- &:hover {
232
- &.fwe-warning {
233
- color: $white;
234
- background: $orange-dark;
235
- &::before {
236
- background: $orange-dark;
237
- }
238
- }
239
- &.fwe-error {
240
- color: $white;
241
- background: $red-dark;
242
- &::before {
243
- background: $red-dark;
244
- }
245
- }
246
- }
247
- }
248
-
249
- .fwe-notification-menu {
250
- width: 400px;
251
-
252
- .fwe-notification-title {
253
- display: flex;
254
- align-items: center;
255
- font-weight: $font-weight-bold;
256
- height: 48px;
257
- padding-left: $spacer-m;
258
- padding-right: $spacer-xxs;
259
- border-bottom: 1px solid $border;
260
- }
261
-
262
- .fwe-notification-footer {
263
- display: flex;
264
- align-items: center;
265
- justify-content: center;
266
- height: 48px;
267
- margin-left: $spacer-m;
268
- margin-right: $spacer-m;
269
- border-top: 1px solid $border;
270
- }
271
-
272
- .fwe-notification-list {
273
- display: flex;
274
- flex-direction: column;
275
- align-items: stretch;
276
-
277
- .fwe-notification-item {
278
- align-items: stretch;
279
- flex-direction: column;
280
- display: flex;
281
- cursor: pointer;
282
- &:hover {
283
- background: $background;
284
- }
285
- &.fwe-disabled {
286
- color: $text-disabled;
287
- .fwe-notification-item-content {
288
- &::before {
289
- color: $text-disabled;
290
- }
291
- }
292
- }
293
- .fwe-notification-item-content {
294
- border-top: 1px solid $border;
295
- }
296
- &:first-child {
297
- .fwe-notification-item-content {
298
- border-top: none;
299
- }
300
- }
301
- }
302
-
303
- .fwe-notification-item-content {
304
- position: relative;
305
- margin-left: $spacer-l + $spacer-m;
306
- margin-right: $spacer-m;
307
- padding-top: $spacer-s;
308
- padding-bottom: $spacer-s;
309
-
310
- .fwe-item-header {
311
- font-weight: $font-weight-bold;
312
- margin-bottom: 4px;
313
- }
314
- .fwe-item-footer {
315
- font-size: $font-size-small;
316
- color: $text-disabled;
317
- margin-top: 11px;
318
- }
319
- @extend .fwe-icon;
320
- font-family: $font-family-base;
321
- &::before {
322
- position: absolute;
323
- left: -32px;
324
- top: 21px;
325
- }
326
- }
327
-
328
- .fwe-notification-info {
329
- @extend .fwe-notification-item-content;
330
- @extend .fwe-icon-status-info;
331
- &::before {
332
- color: $caerul;
333
- }
334
- }
335
- .fwe-notification-warning {
336
- @extend .fwe-notification-item-content;
337
- @extend .fwe-icon-status-warning;
338
- &::before {
339
- color: $orange;
340
- }
341
- }
342
-
343
- .fwe-notification-error {
344
- @extend .fwe-notification-item-content;
345
- @extend .fwe-icon-status-warning;
346
- &::before {
347
- color: $red;
348
- }
349
- }
350
- }
351
- }
1
+ /*
2
+ ** Basic navbar menu
3
+ */
4
+ .fwe-navbar-menu {
5
+ position: relative;
6
+ }
7
+
8
+ .fwe-navbar-menu-button {
9
+ padding: 0;
10
+ border: none;
11
+ background: none;
12
+ span {
13
+ margin-left: 4px; // separate icon from label
14
+ }
15
+ position: relative;
16
+ cursor: pointer;
17
+ color: $text;
18
+ height: 32px;
19
+ min-width: 32px;
20
+ display: flex;
21
+ align-items: center;
22
+ justify-content: center;
23
+ &::before {
24
+ content: "";
25
+ position: absolute;
26
+ height: 0px;
27
+ right: 0px;
28
+ left: 0px;
29
+ bottom: -13px;
30
+ background: $caerul;
31
+ transition: height 0.2s;
32
+ }
33
+ &.fwe-selected {
34
+ color: $hero;
35
+ &::before {
36
+ height: 4px;
37
+ }
38
+ }
39
+ &:hover {
40
+ color: $hero;
41
+ }
42
+ }
43
+
44
+ .fwe-navbar-menu-container {
45
+ position: absolute;
46
+ display: flex;
47
+ top: 45px;
48
+ right: 0px;
49
+ width: 300px;
50
+ background-color: $white;
51
+ flex-direction: column;
52
+ box-shadow: 0px 1px 4px #00000029;
53
+ max-height: calc(100vh - #{$navbar-height});
54
+ overflow: visible;
55
+
56
+ @media (max-width: $grid-breakpoint-sm - 2) {
57
+ width: 100% !important;
58
+ position: fixed;
59
+ top: $navbar-height;
60
+ left: 0;
61
+ height: calc(100vh - #{$navbar-height});
62
+ }
63
+ }
64
+
65
+ /**
66
+ * Profile menu
67
+ */
68
+ .fwe-profile-menu {
69
+ .fwe-profile-menu-header {
70
+ margin-bottom: $spacer-s;
71
+ display: flex;
72
+ flex-direction: row;
73
+ padding: $spacer-l $spacer-m $spacer-m $spacer-m;
74
+
75
+ .fwe-profile-image-container {
76
+ width: $spacer-xl;
77
+ height: $spacer-xl;
78
+ flex-shrink: 0;
79
+ border-radius: 50%;
80
+ overflow: hidden;
81
+ background-color: $gray-400;
82
+ display: flex;
83
+ align-items: center;
84
+ justify-content: center;
85
+ margin-right: $spacer-s;
86
+
87
+ .fwe-profile-image {
88
+ width: 100%;
89
+ }
90
+
91
+ .fwe-placeholder-letter {
92
+ width: $spacer-l;
93
+ height: $spacer-l;
94
+ background-color: $gray-100;
95
+ border-radius: 50%;
96
+ align-items: center;
97
+ justify-content: center;
98
+ text-align: center;
99
+ border: solid 6px $white;
100
+ box-sizing: content-box;
101
+ font-size: $font-size-base;
102
+ line-height: 28px;
103
+ }
104
+ }
105
+
106
+ .fwe-profile-data-container {
107
+ display: flex;
108
+ flex-direction: column;
109
+
110
+ .fwe-username {
111
+ overflow-wrap: anywhere;
112
+ font-weight: $font-weight-bold;
113
+ }
114
+
115
+ .fwe-email {
116
+ overflow-wrap: anywhere;
117
+ font-size: $font-size-small;
118
+ margin-top: $spacer-xxxs;
119
+ }
120
+ }
121
+ }
122
+
123
+ .fwe-profile-menu-item {
124
+ padding: $spacer-xs $spacer-m !important;
125
+ min-height: auto;
126
+ text-align: left;
127
+ justify-content: unset;
128
+ i {
129
+ padding-right: $spacer-xs !important;
130
+ }
131
+ }
132
+
133
+ .fwe-btn-logout {
134
+ border-radius: 0;
135
+ justify-content: center;
136
+ margin-top: $spacer-xxl - $spacer-m;
137
+ }
138
+
139
+ @media (max-width: $grid-breakpoint-sm - 2) {
140
+ .fwe-profile-menu-header {
141
+ margin-bottom: $spacer-s;
142
+ background-color: $background;
143
+ border-bottom: solid 1px $gray-200;
144
+ padding: $spacer-m $spacer-s $spacer-m $spacer-s;
145
+
146
+ .fwe-profile-image-container {
147
+ width: $spacer-xxl;
148
+ height: $spacer-xxl;
149
+ margin-right: $spacer-l;
150
+
151
+ .fwe-placeholder-letter {
152
+ width: 42px;
153
+ height: 42px;
154
+ border: solid 9px $white;
155
+ font-size: $font-size-xl;
156
+ line-height: 40px;
157
+ }
158
+ }
159
+ }
160
+
161
+ .fwe-profile-data-container .fwe-email {
162
+ font-size: $font-size-base !important;
163
+ }
164
+
165
+ .fwe-profile-menu-item {
166
+ padding: 20px $spacer-s !important;
167
+ i {
168
+ padding-right: $spacer-m !important;
169
+ }
170
+ }
171
+
172
+ .fwe-btn-logout {
173
+ margin: auto $spacer-s $spacer-l $spacer-s !important;
174
+ border-radius: $control-border-radius;
175
+ }
176
+ }
177
+ }
178
+
179
+ /**
180
+ * Notification menu
181
+ */
182
+ .fwe-notification-button {
183
+ @extend .fwe-navbar-menu-button;
184
+
185
+ width: 32px;
186
+ &.fwe-selected {
187
+ .fwe-warning {
188
+ color: $orange;
189
+ }
190
+ .fwe-error {
191
+ color: $red;
192
+ }
193
+ }
194
+
195
+ .fwe-notification-batch {
196
+ position: absolute;
197
+ border-radius: 50%;
198
+ height: 22px;
199
+ line-height: calc(#{$font-size-small} + 4px);
200
+ width: 22px;
201
+ font-size: $font-size-small;
202
+ color: $white !important;
203
+ background: $caerul;
204
+ border: 2px solid $white;
205
+ top: -10px;
206
+ right: -10px;
207
+ }
208
+
209
+ &.fwe-warning {
210
+ color: $white;
211
+ background: $orange;
212
+ &::before {
213
+ background: $orange;
214
+ }
215
+ .fwe-notification-batch {
216
+ background: $text;
217
+ }
218
+ }
219
+
220
+ &.fwe-error {
221
+ color: $white;
222
+ background: $red;
223
+ &::before {
224
+ background: $red;
225
+ }
226
+ .fwe-notification-batch {
227
+ background: $text;
228
+ }
229
+ }
230
+
231
+ &:hover {
232
+ &.fwe-warning {
233
+ color: $white;
234
+ background: $orange-dark;
235
+ &::before {
236
+ background: $orange-dark;
237
+ }
238
+ }
239
+ &.fwe-error {
240
+ color: $white;
241
+ background: $red-dark;
242
+ &::before {
243
+ background: $red-dark;
244
+ }
245
+ }
246
+ }
247
+ }
248
+
249
+ .fwe-notification-menu {
250
+ width: 400px;
251
+
252
+ .fwe-notification-title {
253
+ display: flex;
254
+ align-items: center;
255
+ font-weight: $font-weight-bold;
256
+ height: 48px;
257
+ padding-left: $spacer-m;
258
+ padding-right: $spacer-xxs;
259
+ border-bottom: 1px solid $border;
260
+ }
261
+
262
+ .fwe-notification-footer {
263
+ display: flex;
264
+ align-items: center;
265
+ justify-content: center;
266
+ height: 48px;
267
+ margin-left: $spacer-m;
268
+ margin-right: $spacer-m;
269
+ border-top: 1px solid $border;
270
+ }
271
+
272
+ .fwe-notification-list {
273
+ display: flex;
274
+ flex-direction: column;
275
+ align-items: stretch;
276
+
277
+ .fwe-notification-item {
278
+ align-items: stretch;
279
+ flex-direction: column;
280
+ display: flex;
281
+ cursor: pointer;
282
+ &:hover {
283
+ background: $background;
284
+ }
285
+ &.fwe-disabled {
286
+ color: $text-disabled;
287
+ .fwe-notification-item-content {
288
+ &::before {
289
+ color: $text-disabled;
290
+ }
291
+ }
292
+ }
293
+ .fwe-notification-item-content {
294
+ border-top: 1px solid $border;
295
+ }
296
+ &:first-child {
297
+ .fwe-notification-item-content {
298
+ border-top: none;
299
+ }
300
+ }
301
+ }
302
+
303
+ .fwe-notification-item-content {
304
+ position: relative;
305
+ margin-left: $spacer-l + $spacer-m;
306
+ margin-right: $spacer-m;
307
+ padding-top: $spacer-s;
308
+ padding-bottom: $spacer-s;
309
+
310
+ .fwe-item-header {
311
+ font-weight: $font-weight-bold;
312
+ margin-bottom: 4px;
313
+ }
314
+ .fwe-item-footer {
315
+ font-size: $font-size-small;
316
+ color: $text-disabled;
317
+ margin-top: 11px;
318
+ }
319
+ @extend .fwe-icon;
320
+ font-family: $font-family-base;
321
+ &::before {
322
+ position: absolute;
323
+ left: -32px;
324
+ top: 21px;
325
+ }
326
+ }
327
+
328
+ .fwe-notification-info {
329
+ @extend .fwe-notification-item-content;
330
+ @extend .fwe-icon-status-info;
331
+ &::before {
332
+ color: $caerul;
333
+ }
334
+ }
335
+ .fwe-notification-warning {
336
+ @extend .fwe-notification-item-content;
337
+ @extend .fwe-icon-status-warning;
338
+ &::before {
339
+ color: $orange;
340
+ }
341
+ }
342
+
343
+ .fwe-notification-error {
344
+ @extend .fwe-notification-item-content;
345
+ @extend .fwe-icon-status-warning;
346
+ &::before {
347
+ color: $red;
348
+ }
349
+ }
350
+ }
351
+ }