@festo-ui/web-essentials 3.2.1-pre-20220602.1 → 3.2.1
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/README.md +0 -16
- package/dist/css/festo-web-essentials.css +13 -16
- package/dist/css/festo-web-essentials.css.map +1 -1
- package/dist/css/festo-web-essentials.min.css +2 -2
- package/dist/css/festo-web-essentials.min.css.map +1 -1
- package/dist/css/fonts/MetaPro-Bold.otf +0 -0
- package/dist/css/fonts/MetaPro-Bold.woff +0 -0
- package/dist/css/fonts/MetaPro-Bold.woff2 +0 -0
- package/dist/css/fonts/MetaPro-Regular.otf +0 -0
- package/dist/css/fonts/MetaPro-Regular.woff +0 -0
- package/dist/css/fonts/MetaPro-Regular.woff2 +0 -0
- package/dist/css/organisms/festo-web-essentials-organisms.css +1 -1
- package/dist/css/organisms/festo-web-essentials-organisms.min.css +1 -1
- package/dist/css/themes/flatpickr/festo.css +1 -1
- package/dist/css/themes/flatpickr/festo.min.css +1 -1
- package/dist/fonts/MetaPro-Bold.otf +0 -0
- package/dist/fonts/MetaPro-Bold.woff +0 -0
- package/dist/fonts/MetaPro-Bold.woff2 +0 -0
- package/dist/fonts/MetaPro-Regular.otf +0 -0
- package/dist/fonts/MetaPro-Regular.woff +0 -0
- package/dist/fonts/MetaPro-Regular.woff2 +0 -0
- package/dist/scss/_breadcrumb.scss +2 -0
- package/dist/scss/_button.scss +4 -0
- package/dist/scss/_checkbox.scss +1 -0
- package/dist/scss/_fonts.scss +4 -10
- package/dist/scss/_icons.scss +0 -1
- package/dist/scss/_navbar-menu.scss +0 -1
- package/dist/scss/_radio.scss +1 -0
- package/dist/scss/_search-input.scss +1 -1
- package/dist/scss/_select.scss +0 -1
- package/dist/scss/_stepper-horizontal.scss +0 -1
- package/dist/scss/_stepper-vertical.scss +0 -1
- package/dist/scss/_table.scss +1 -2
- package/dist/scss/festo-web-essentials.scss +1 -1
- package/dist/scss/fonts/MetaPro-Bold.otf +0 -0
- package/dist/scss/fonts/MetaPro-Bold.woff +0 -0
- package/dist/scss/fonts/MetaPro-Bold.woff2 +0 -0
- package/dist/scss/fonts/MetaPro-Regular.otf +0 -0
- package/dist/scss/fonts/MetaPro-Regular.woff +0 -0
- package/dist/scss/fonts/MetaPro-Regular.woff2 +0 -0
- package/dist/scss/organisms/festo-web-essentials-organisms.scss +1 -1
- package/dist/scss/themes/flatpickr/festo.scss +1 -1
- package/package.json +1 -1
- package/scss/_breadcrumb.scss +2 -0
- package/scss/_button.scss +4 -0
- package/scss/_checkbox.scss +1 -0
- package/scss/_fonts.scss +4 -10
- package/scss/_icons.scss +0 -1
- package/scss/_navbar-menu.scss +0 -1
- package/scss/_radio.scss +1 -0
- package/scss/_search-input.scss +1 -1
- package/scss/_select.scss +0 -1
- package/scss/_stepper-horizontal.scss +0 -1
- package/scss/_stepper-vertical.scss +0 -1
- package/scss/_table.scss +1 -2
package/README.md
CHANGED
|
@@ -56,19 +56,3 @@ You can use the variables like this:
|
|
|
56
56
|
background: $hero; // background is carul now
|
|
57
57
|
@extend .fwe-icon-menu-close; // add the menu-close icon as ::before element
|
|
58
58
|
```
|
|
59
|
-
|
|
60
|
-
## Using Web Essentials with local fonts
|
|
61
|
-
|
|
62
|
-
If you want to use Web Essentials in an __offline__ environment, you have to provide local files for the MetaPro font.
|
|
63
|
-
* Download the required fonts here: https://festo.sharepoint.com/sites/tggfw/SitePages/Font-Richtlinie.aspx
|
|
64
|
-
* Override the css variable for the font:
|
|
65
|
-
```scss
|
|
66
|
-
@font-face {
|
|
67
|
-
font-family: "localMeta";
|
|
68
|
-
src: url("../src/fonts/MetaChinese.woff") format("woff"), url("../src/fonts/MetaChinese.woff2") format("woff2");
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
:root {
|
|
72
|
-
--fwe-font-family-sans-serif: "localMeta";
|
|
73
|
-
}
|
|
74
|
-
```
|
|
@@ -1,24 +1,19 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/*!
|
|
3
|
-
* Festo UI - Web Essentials v3.2.1
|
|
3
|
+
* Festo UI - Web Essentials v3.2.1 (https://storybook.festo.design/)
|
|
4
4
|
* Copyright 2022 Festo SE & Co. KG
|
|
5
5
|
* Licensed under Apache-2.0
|
|
6
6
|
*/
|
|
7
7
|
/* a screen reader friendly approach */
|
|
8
|
-
/* Festo Font Einbindung MetaPro */
|
|
9
|
-
/* (C)Festo/ pas 01.07.2019 */
|
|
10
|
-
/* MetaPro regular */
|
|
11
8
|
@font-face {
|
|
12
9
|
font-family: "MetaPro";
|
|
13
|
-
src:
|
|
10
|
+
src: url("../fonts/MetaPro-Regular.woff2") format("woff2"), url("../fonts/MetaPro-Regular.woff") format("woff"), url("../fonts/MetaPro-Regular.otf") format("truetype");
|
|
14
11
|
}
|
|
15
|
-
/* MetaPro bold */
|
|
16
12
|
@font-face {
|
|
17
13
|
font-family: "MetaPro";
|
|
18
|
-
src: local("MetaPro-Bold"), url("https://www.festo.com/Fonts/MetaPro-Bold.woff2") format("woff2"), url("https://www.festo.com/Fonts/MetaPro-Bold.woff") format("woff");
|
|
19
14
|
font-weight: bold;
|
|
15
|
+
src: url("../fonts/MetaPro-Bold.woff2") format("woff2"), url("../fonts/MetaPro-Bold.woff") format("woff"), url("../fonts/MetaPro-Bold.otf") format("truetype");
|
|
20
16
|
}
|
|
21
|
-
/* Festo Icon Font */
|
|
22
17
|
@font-face {
|
|
23
18
|
font-family: "festo_icons-16";
|
|
24
19
|
src: url("../fonts/festo_icons-16.woff2") format("woff2");
|
|
@@ -69,7 +64,6 @@
|
|
|
69
64
|
}
|
|
70
65
|
|
|
71
66
|
.fwe-icon, .fwe-stepper-vertical .fwe-step-container.fwe-step-done .fwe-step, .fwe-stepper-horizontal .fwe-step-container.fwe-step-done .fwe-step, .fwe-search-input .fwe-clear-icon, .fwe-search-input .fwe-search-icon, .fwe-notification-menu .fwe-notification-list .fwe-notification-item-content, .fwe-notification-menu .fwe-notification-list .fwe-notification-error, .fwe-notification-menu .fwe-notification-list .fwe-notification-warning, .fwe-notification-menu .fwe-notification-list .fwe-notification-info, .fwe-pagination .fwe-navigate-btn, .fwe-pagination .fwe-navigate-btn-down, .fwe-pagination .fwe-navigate-btn-up, .fwe-select-wrapper, label.fwe-checkbox .fwe-checkbox-checkmark, .fwe-mobile-flyout-page .fwe-page-back i, .fwe-mobile-flyout .fwe-mobile-flyout-button, .fwe-mobile-flyout .fwe-close-button, .fwe-mobile-flyout .fwe-burger-button, .fwe-navbar .fwe-navbar-burger-menu, table.fwe-table tr th.fwe-table-order {
|
|
72
|
-
font-family: var(--fwe-font-family-icons-16);
|
|
73
67
|
font-size: var(--fwe-font-size-base);
|
|
74
68
|
display: inline-block;
|
|
75
69
|
}
|
|
@@ -15839,7 +15833,6 @@ table.fwe-table tr th.fwe-table-order {
|
|
|
15839
15833
|
user-select: none;
|
|
15840
15834
|
white-space: nowrap;
|
|
15841
15835
|
direction: rtl;
|
|
15842
|
-
font-family: var(--fwe-font-family-sans-serif);
|
|
15843
15836
|
display: table-cell;
|
|
15844
15837
|
font-size: var(--fwe-font-size-md);
|
|
15845
15838
|
}
|
|
@@ -15849,7 +15842,7 @@ table.fwe-table tr th.fwe-table-order::before {
|
|
|
15849
15842
|
position: relative;
|
|
15850
15843
|
top: 3px;
|
|
15851
15844
|
left: 8px;
|
|
15852
|
-
transform-origin:
|
|
15845
|
+
transform-origin: center center;
|
|
15853
15846
|
transition: transform 0.3s;
|
|
15854
15847
|
}
|
|
15855
15848
|
table.fwe-table tr th.fwe-table-order.fwe-active {
|
|
@@ -16509,6 +16502,8 @@ header.fwe-fixed-header {
|
|
|
16509
16502
|
color: var(--fwe-text-light);
|
|
16510
16503
|
}
|
|
16511
16504
|
.fwe-breadcrumb .fwe-icon-arrows-right-2, .fwe-breadcrumb .fwe-pagination .fwe-navigate-btn-up, .fwe-pagination .fwe-breadcrumb .fwe-navigate-btn-up {
|
|
16505
|
+
margin-top: 1px;
|
|
16506
|
+
margin-bottom: -1px;
|
|
16512
16507
|
margin-left: 4px;
|
|
16513
16508
|
margin-right: 4px;
|
|
16514
16509
|
}
|
|
@@ -17027,6 +17022,7 @@ label.fwe-radio .fwe-radio-checkmark {
|
|
|
17027
17022
|
border: 1px solid var(--fwe-control-border);
|
|
17028
17023
|
background-color: var(--fwe-white);
|
|
17029
17024
|
border-radius: 50%;
|
|
17025
|
+
margin-top: 2px;
|
|
17030
17026
|
}
|
|
17031
17027
|
label.fwe-radio .fwe-radio-checkmark:after {
|
|
17032
17028
|
content: "";
|
|
@@ -17139,6 +17135,7 @@ label.fwe-checkbox .fwe-checkbox-checkmark {
|
|
|
17139
17135
|
border: 1px solid var(--fwe-control-border);
|
|
17140
17136
|
background-color: var(--fwe-white);
|
|
17141
17137
|
border-radius: 2px;
|
|
17138
|
+
margin-top: 2px;
|
|
17142
17139
|
font-size: var(--fwe-font-size-md);
|
|
17143
17140
|
}
|
|
17144
17141
|
label.fwe-checkbox .fwe-checkbox-checkmark:before {
|
|
@@ -17327,6 +17324,10 @@ button.fwe-btn i[class^=fwe-icon-],
|
|
|
17327
17324
|
button.fwe-btn i[class*=" fwe-icon-"] {
|
|
17328
17325
|
padding-right: 8px;
|
|
17329
17326
|
}
|
|
17327
|
+
a.fwe-btn span,
|
|
17328
|
+
button.fwe-btn span {
|
|
17329
|
+
margin: -1px 0px 1px 0px;
|
|
17330
|
+
}
|
|
17330
17331
|
a.fwe-btn:hover,
|
|
17331
17332
|
button.fwe-btn:hover {
|
|
17332
17333
|
color: var(--fwe-btn-text-hover);
|
|
@@ -17716,7 +17717,6 @@ input[type=range].fwe-slider-input:disabled::-ms-thumb {
|
|
|
17716
17717
|
}
|
|
17717
17718
|
|
|
17718
17719
|
.fwe-select-wrapper {
|
|
17719
|
-
font-family: var(--fwe-font-size-base);
|
|
17720
17720
|
position: relative;
|
|
17721
17721
|
display: flex;
|
|
17722
17722
|
flex-direction: column;
|
|
@@ -19052,7 +19052,6 @@ fieldset.fwe-progress-container label {
|
|
|
19052
19052
|
margin-right: 24px;
|
|
19053
19053
|
padding-top: 16px;
|
|
19054
19054
|
padding-bottom: 16px;
|
|
19055
|
-
font-family: var(--fwe-font-family-sans-serif);
|
|
19056
19055
|
}
|
|
19057
19056
|
.fwe-notification-menu .fwe-notification-list .fwe-notification-item-content .fwe-item-header, .fwe-notification-menu .fwe-notification-list .fwe-notification-error .fwe-item-header, .fwe-notification-menu .fwe-notification-list .fwe-notification-warning .fwe-item-header, .fwe-notification-menu .fwe-notification-list .fwe-notification-info .fwe-item-header {
|
|
19058
19057
|
font-weight: var(--fwe-font-weight-bold);
|
|
@@ -19143,7 +19142,7 @@ fieldset.fwe-progress-container label {
|
|
|
19143
19142
|
border-radius: 0px;
|
|
19144
19143
|
border-bottom: 1px solid var(--fwe-control-border);
|
|
19145
19144
|
background: transparent;
|
|
19146
|
-
padding:
|
|
19145
|
+
padding: 0px 24px 5px 32px;
|
|
19147
19146
|
}
|
|
19148
19147
|
.fwe-search-input input::-moz-placeholder {
|
|
19149
19148
|
color: var(--fwe-text);
|
|
@@ -19265,7 +19264,6 @@ input[type=search]::-webkit-search-cancel-button {
|
|
|
19265
19264
|
font-weight: var(--fwe-font-weight-bold);
|
|
19266
19265
|
}
|
|
19267
19266
|
.fwe-stepper-horizontal .fwe-step-container .fwe-step .fwe-step-name {
|
|
19268
|
-
font-family: var(--fwe-font-family-sans-serif);
|
|
19269
19267
|
font-size: var(--fwe-font-size-md);
|
|
19270
19268
|
position: absolute;
|
|
19271
19269
|
top: 30px;
|
|
@@ -19356,7 +19354,6 @@ input[type=search]::-webkit-search-cancel-button {
|
|
|
19356
19354
|
font-weight: var(--fwe-font-weight-bold);
|
|
19357
19355
|
}
|
|
19358
19356
|
.fwe-stepper-vertical .fwe-step-container .fwe-step .fwe-step-name {
|
|
19359
|
-
font-family: var(--fwe-font-family-sans-serif);
|
|
19360
19357
|
font-size: var(--fwe-font-size-md);
|
|
19361
19358
|
position: absolute;
|
|
19362
19359
|
left: 36px;
|