@festo-ui/web-essentials 9.0.1-dev.772 → 9.0.1-dev.775
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 +69 -17
- package/dist/css/festo-web-essentials.css.map +1 -1
- package/dist/css/festo-web-essentials.min.css +10 -10
- package/dist/css/festo-web-essentials.min.css.map +1 -1
- package/dist/css/light/festo-web-essentials-light.css +60 -8
- package/dist/css/light/festo-web-essentials-light.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/_select.scss +74 -3
- package/dist/scss/festo-web-essentials.scss +1 -1
- package/dist/scss/themes/flatpickr/festo.scss +1 -1
- package/package.json +1 -1
- package/scss/_select.scss +74 -3
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Festo UI - Web Essentials v9.0.1-dev.
|
|
2
|
+
* Festo UI - Web Essentials v9.0.1-dev.775 (https://storybook.festo.design/)
|
|
3
3
|
* Copyright 2022 Festo SE & Co. KG
|
|
4
4
|
* Licensed under Apache-2.0
|
|
5
5
|
*/
|
|
@@ -927,7 +927,7 @@ template {
|
|
|
927
927
|
}
|
|
928
928
|
|
|
929
929
|
/*!
|
|
930
|
-
* Festo UI - Web Essentials v9.0.1-dev.
|
|
930
|
+
* Festo UI - Web Essentials v9.0.1-dev.775 (https://storybook.festo.design/)
|
|
931
931
|
* Copyright 2022 Festo SE & Co. KG
|
|
932
932
|
* Licensed under Apache-2.0
|
|
933
933
|
*/
|
|
@@ -12388,7 +12388,7 @@ header.fwe-fixed-header {
|
|
|
12388
12388
|
}
|
|
12389
12389
|
|
|
12390
12390
|
/*!
|
|
12391
|
-
* Festo UI - Web Essentials v9.0.1-dev.
|
|
12391
|
+
* Festo UI - Web Essentials v9.0.1-dev.775 (https://storybook.festo.design/)
|
|
12392
12392
|
* Copyright 2022 Festo SE & Co. KG
|
|
12393
12393
|
* Licensed under Apache-2.0
|
|
12394
12394
|
*/
|
|
@@ -13594,7 +13594,7 @@ a.fwe-btn.fwe-disabled {
|
|
|
13594
13594
|
}
|
|
13595
13595
|
|
|
13596
13596
|
/*!
|
|
13597
|
-
* Festo UI - Web Essentials v9.0.1-dev.
|
|
13597
|
+
* Festo UI - Web Essentials v9.0.1-dev.775 (https://storybook.festo.design/)
|
|
13598
13598
|
* Copyright 2022 Festo SE & Co. KG
|
|
13599
13599
|
* Licensed under Apache-2.0
|
|
13600
13600
|
*/
|
|
@@ -13939,11 +13939,15 @@ input[type=range].fwe-slider-input:disabled::-ms-thumb {
|
|
|
13939
13939
|
font-weight: var(--fwe-font-weight-bold);
|
|
13940
13940
|
}
|
|
13941
13941
|
.fwe-select-wrapper .fwe-select {
|
|
13942
|
+
text-align: left;
|
|
13943
|
+
overflow: hidden;
|
|
13944
|
+
white-space: nowrap;
|
|
13945
|
+
text-overflow: ellipsis;
|
|
13942
13946
|
cursor: pointer;
|
|
13943
13947
|
order: 2;
|
|
13944
13948
|
height: 33px;
|
|
13945
|
-
padding-
|
|
13946
|
-
padding
|
|
13949
|
+
padding-inline: unset;
|
|
13950
|
+
padding: 4px 24px 4px 0px;
|
|
13947
13951
|
width: 100%;
|
|
13948
13952
|
font-size: var(--fwe-font-size-base);
|
|
13949
13953
|
-webkit-appearance: none;
|
|
@@ -13955,14 +13959,14 @@ input[type=range].fwe-slider-input:disabled::-ms-thumb {
|
|
|
13955
13959
|
border: none;
|
|
13956
13960
|
border-bottom: 1px solid var(--fwe-control-border);
|
|
13957
13961
|
}
|
|
13958
|
-
.fwe-select-wrapper .fwe-select:hover:not(:disabled) {
|
|
13962
|
+
.fwe-select-wrapper .fwe-select:hover:not(:disabled), .fwe-select-wrapper .fwe-select:focus:not(:disabled) {
|
|
13959
13963
|
color: var(--fwe-hero);
|
|
13960
13964
|
border-color: var(--fwe-hero);
|
|
13961
13965
|
}
|
|
13962
|
-
.fwe-select-wrapper .fwe-select:hover:not(:disabled) option {
|
|
13966
|
+
.fwe-select-wrapper .fwe-select:hover:not(:disabled) option, .fwe-select-wrapper .fwe-select:focus:not(:disabled) option {
|
|
13963
13967
|
color: var(--fwe-text);
|
|
13964
13968
|
}
|
|
13965
|
-
.fwe-select-wrapper .fwe-select:hover:user-invalid {
|
|
13969
|
+
.fwe-select-wrapper .fwe-select:hover.fwe-invalid, .fwe-select-wrapper .fwe-select:hover:user-invalid, .fwe-select-wrapper .fwe-select:focus.fwe-invalid, .fwe-select-wrapper .fwe-select:focus:user-invalid {
|
|
13966
13970
|
border-color: var(--fwe-red);
|
|
13967
13971
|
}
|
|
13968
13972
|
.fwe-select-wrapper .fwe-select:disabled {
|
|
@@ -13975,14 +13979,14 @@ input[type=range].fwe-slider-input:disabled::-ms-thumb {
|
|
|
13975
13979
|
.fwe-select-wrapper .fwe-select::-ms-expand {
|
|
13976
13980
|
display: none;
|
|
13977
13981
|
}
|
|
13978
|
-
.fwe-select-wrapper .fwe-select:user-invalid {
|
|
13982
|
+
.fwe-select-wrapper .fwe-select.fwe-invalid, .fwe-select-wrapper .fwe-select:user-invalid {
|
|
13979
13983
|
box-shadow: none;
|
|
13980
13984
|
border-color: var(--fwe-red);
|
|
13981
13985
|
}
|
|
13982
|
-
.fwe-select-wrapper .fwe-select:user-invalid ~ .fwe-select-invalid {
|
|
13986
|
+
.fwe-select-wrapper .fwe-select.fwe-invalid ~ .fwe-select-invalid, .fwe-select-wrapper .fwe-select:user-invalid ~ .fwe-select-invalid {
|
|
13983
13987
|
display: block;
|
|
13984
13988
|
}
|
|
13985
|
-
.fwe-select-wrapper .fwe-select:user-invalid ~ .fwe-select-description {
|
|
13989
|
+
.fwe-select-wrapper .fwe-select.fwe-invalid ~ .fwe-select-description, .fwe-select-wrapper .fwe-select:user-invalid ~ .fwe-select-description {
|
|
13986
13990
|
display: none;
|
|
13987
13991
|
}
|
|
13988
13992
|
.fwe-select-wrapper .fwe-select-invalid {
|
|
@@ -13990,6 +13994,54 @@ input[type=range].fwe-slider-input:disabled::-ms-thumb {
|
|
|
13990
13994
|
color: var(--fwe-red);
|
|
13991
13995
|
}
|
|
13992
13996
|
|
|
13997
|
+
.fwe-options-container {
|
|
13998
|
+
max-width: 100%;
|
|
13999
|
+
background-color: var(--fwe-white);
|
|
14000
|
+
padding: 16px 0px;
|
|
14001
|
+
margin: 0;
|
|
14002
|
+
box-shadow: 0 1px 8px 1px rgba(0, 0, 0, 0.2);
|
|
14003
|
+
list-style: none;
|
|
14004
|
+
}
|
|
14005
|
+
.fwe-options-container:focus {
|
|
14006
|
+
outline: none;
|
|
14007
|
+
}
|
|
14008
|
+
.fwe-options-container--multi-select {
|
|
14009
|
+
display: flex;
|
|
14010
|
+
flex-direction: column;
|
|
14011
|
+
gap: 8px;
|
|
14012
|
+
padding: 24px 12px;
|
|
14013
|
+
}
|
|
14014
|
+
|
|
14015
|
+
.fwe-combobox-option {
|
|
14016
|
+
padding: 8px 16px;
|
|
14017
|
+
cursor: pointer;
|
|
14018
|
+
position: relative;
|
|
14019
|
+
}
|
|
14020
|
+
.fwe-combobox-option:hover, .fwe-combobox-option:focus, .fwe-combobox-option.fwe-focus {
|
|
14021
|
+
background-color: var(--fwe-background);
|
|
14022
|
+
color: var(--fwe-hero);
|
|
14023
|
+
}
|
|
14024
|
+
.fwe-combobox-option:active, .fwe-combobox-option.fwe-selected {
|
|
14025
|
+
color: var(--fwe-hero);
|
|
14026
|
+
}
|
|
14027
|
+
.fwe-combobox-option:active::before, .fwe-combobox-option.fwe-selected::before {
|
|
14028
|
+
content: "";
|
|
14029
|
+
width: 4px;
|
|
14030
|
+
height: 100%;
|
|
14031
|
+
background-color: var(--fwe-hero);
|
|
14032
|
+
position: absolute;
|
|
14033
|
+
left: 0;
|
|
14034
|
+
top: 0;
|
|
14035
|
+
}
|
|
14036
|
+
.fwe-combobox-option.fwe-disabled {
|
|
14037
|
+
color: var(--fwe-text-disabled);
|
|
14038
|
+
cursor: default;
|
|
14039
|
+
}
|
|
14040
|
+
.fwe-combobox-option.fwe-disabled:hover {
|
|
14041
|
+
background-color: transparent;
|
|
14042
|
+
color: var(--fwe-text-disabled);
|
|
14043
|
+
}
|
|
14044
|
+
|
|
13993
14045
|
.fwe-badge {
|
|
13994
14046
|
display: inline-block;
|
|
13995
14047
|
border-radius: 2px;
|
|
@@ -14450,7 +14502,7 @@ fieldset.fwe-progress-container label {
|
|
|
14450
14502
|
}
|
|
14451
14503
|
|
|
14452
14504
|
/*!
|
|
14453
|
-
* Festo UI - Web Essentials v9.0.1-dev.
|
|
14505
|
+
* Festo UI - Web Essentials v9.0.1-dev.775 (https://storybook.festo.design/)
|
|
14454
14506
|
* Copyright 2022 Festo SE & Co. KG
|
|
14455
14507
|
* Licensed under Apache-2.0
|
|
14456
14508
|
*/
|
|
@@ -14681,7 +14733,7 @@ fieldset.fwe-progress-container label {
|
|
|
14681
14733
|
}
|
|
14682
14734
|
}
|
|
14683
14735
|
/*!
|
|
14684
|
-
* Festo UI - Web Essentials v9.0.1-dev.
|
|
14736
|
+
* Festo UI - Web Essentials v9.0.1-dev.775 (https://storybook.festo.design/)
|
|
14685
14737
|
* Copyright 2022 Festo SE & Co. KG
|
|
14686
14738
|
* Licensed under Apache-2.0
|
|
14687
14739
|
*/
|
|
@@ -15417,7 +15469,7 @@ fieldset.fwe-progress-container label {
|
|
|
15417
15469
|
}
|
|
15418
15470
|
|
|
15419
15471
|
/*!
|
|
15420
|
-
* Festo UI - Web Essentials v9.0.1-dev.
|
|
15472
|
+
* Festo UI - Web Essentials v9.0.1-dev.775 (https://storybook.festo.design/)
|
|
15421
15473
|
* Copyright 2022 Festo SE & Co. KG
|
|
15422
15474
|
* Licensed under Apache-2.0
|
|
15423
15475
|
*/
|
|
@@ -15915,7 +15967,7 @@ input[type=search]::-webkit-search-cancel-button {
|
|
|
15915
15967
|
}
|
|
15916
15968
|
}
|
|
15917
15969
|
/*!
|
|
15918
|
-
* Festo UI - Web Essentials v9.0.1-dev.
|
|
15970
|
+
* Festo UI - Web Essentials v9.0.1-dev.775 (https://storybook.festo.design/)
|
|
15919
15971
|
* Copyright 2022 Festo SE & Co. KG
|
|
15920
15972
|
* Licensed under Apache-2.0
|
|
15921
15973
|
*/
|
|
@@ -16199,7 +16251,7 @@ input[type=search]::-webkit-search-cancel-button {
|
|
|
16199
16251
|
}
|
|
16200
16252
|
|
|
16201
16253
|
/*!
|
|
16202
|
-
* Festo UI - Web Essentials v9.0.1-dev.
|
|
16254
|
+
* Festo UI - Web Essentials v9.0.1-dev.775 (https://storybook.festo.design/)
|
|
16203
16255
|
* Copyright 2022 Festo SE & Co. KG
|
|
16204
16256
|
* Licensed under Apache-2.0
|
|
16205
16257
|
*/
|