@festo-ui/web-essentials 9.0.1-dev.767 → 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 +118 -40
- package/dist/css/festo-web-essentials.css.map +1 -1
- package/dist/css/festo-web-essentials.min.css +11 -11
- package/dist/css/festo-web-essentials.min.css.map +1 -1
- package/dist/css/light/festo-web-essentials-light.css +109 -31
- 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/_breadcrumb.scss +73 -23
- 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/_breadcrumb.scss +73 -23
- 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
|
*/
|
|
@@ -12532,54 +12532,80 @@ header.fwe-fixed-header {
|
|
|
12532
12532
|
}
|
|
12533
12533
|
|
|
12534
12534
|
.fwe-breadcrumb {
|
|
12535
|
+
overflow: hidden;
|
|
12536
|
+
}
|
|
12537
|
+
.fwe-breadcrumb ol {
|
|
12538
|
+
overflow: hidden;
|
|
12535
12539
|
display: flex;
|
|
12536
|
-
flex-wrap:
|
|
12537
|
-
|
|
12540
|
+
flex-wrap: nowrap;
|
|
12541
|
+
white-space: nowrap;
|
|
12538
12542
|
align-items: center;
|
|
12543
|
+
list-style: none;
|
|
12544
|
+
margin: 0;
|
|
12545
|
+
padding: 0;
|
|
12539
12546
|
}
|
|
12540
|
-
.fwe-breadcrumb
|
|
12541
|
-
.fwe-breadcrumb a {
|
|
12547
|
+
.fwe-breadcrumb li {
|
|
12542
12548
|
display: flex;
|
|
12549
|
+
overflow: hidden;
|
|
12550
|
+
flex-shrink: 0;
|
|
12543
12551
|
align-items: center;
|
|
12544
12552
|
min-height: 24px;
|
|
12545
12553
|
color: var(--fwe-text);
|
|
12554
|
+
font-size: var(--fwe-font-size-md);
|
|
12555
|
+
line-height: calc(var(--fwe-font-size-md) + 2px);
|
|
12556
|
+
}
|
|
12557
|
+
.fwe-breadcrumb li:last-child {
|
|
12558
|
+
flex-shrink: 1;
|
|
12559
|
+
min-width: 36px;
|
|
12560
|
+
}
|
|
12561
|
+
.fwe-breadcrumb li:last-child a {
|
|
12562
|
+
overflow: hidden;
|
|
12563
|
+
text-overflow: ellipsis;
|
|
12564
|
+
}
|
|
12565
|
+
.fwe-breadcrumb a {
|
|
12566
|
+
display: block;
|
|
12567
|
+
align-items: center;
|
|
12568
|
+
color: var(--fwe-text);
|
|
12546
12569
|
text-decoration: none;
|
|
12547
12570
|
-webkit-user-select: none;
|
|
12548
12571
|
-moz-user-select: none;
|
|
12549
12572
|
user-select: none;
|
|
12550
|
-
font-size: var(--fwe-font-size-md);
|
|
12551
|
-
line-height: calc(var(--fwe-font-size-md) + 2px);
|
|
12552
12573
|
}
|
|
12553
|
-
.fwe-breadcrumb .fwe-breadcrumb-item:focus,
|
|
12554
12574
|
.fwe-breadcrumb a:focus {
|
|
12555
12575
|
outline: none;
|
|
12556
12576
|
}
|
|
12557
|
-
.fwe-breadcrumb
|
|
12558
|
-
.fwe-breadcrumb a:not(:last-child) {
|
|
12559
|
-
cursor: pointer;
|
|
12560
|
-
}
|
|
12561
|
-
.fwe-breadcrumb .fwe-breadcrumb-item:not(:last-child):hover,
|
|
12562
|
-
.fwe-breadcrumb a:not(:last-child):hover {
|
|
12577
|
+
.fwe-breadcrumb a:hover {
|
|
12563
12578
|
color: var(--fwe-hero);
|
|
12564
12579
|
}
|
|
12565
|
-
.fwe-breadcrumb
|
|
12566
|
-
.fwe-breadcrumb a:not(:last-child):active {
|
|
12580
|
+
.fwe-breadcrumb a:active {
|
|
12567
12581
|
color: var(--fwe-hero-active);
|
|
12568
12582
|
}
|
|
12569
|
-
.fwe-breadcrumb
|
|
12570
|
-
|
|
12583
|
+
.fwe-breadcrumb a[aria-current=page] {
|
|
12584
|
+
font-weight: bold;
|
|
12585
|
+
cursor: default;
|
|
12586
|
+
pointer-events: none;
|
|
12587
|
+
}
|
|
12588
|
+
.fwe-breadcrumb li:not(:last-child)::after {
|
|
12571
12589
|
content: "";
|
|
12572
|
-
margin-left:
|
|
12590
|
+
margin-left: 4px;
|
|
12573
12591
|
margin-right: 4px;
|
|
12574
12592
|
height: 16px;
|
|
12575
12593
|
width: 16px;
|
|
12576
12594
|
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGRhdGEtbmFtZT0id2hpdGUgYmFja2dyb3VuZCIgdmlld0JveD0iMCAwIDE2IDE2Ij48cGF0aCBmaWxsPSJub25lIiBkPSJNMCAxNlYwaDE2djE2eiIvPjxwYXRoIGZpbGw9IiMzMzMiIGQ9Im0xMC43MDcgOC00LjM1MyA0LjM1NC0uNzA4LS43MDhMOS4yOTMgOCA1LjY0NiA0LjM1NGwuNzA4LS43MDhMMTAuNzA3IDh6Ii8+PC9zdmc+");
|
|
12577
12595
|
}
|
|
12578
|
-
.fwe-breadcrumb
|
|
12579
|
-
|
|
12580
|
-
|
|
12581
|
-
|
|
12582
|
-
|
|
12596
|
+
.fwe-breadcrumb--mobile li {
|
|
12597
|
+
display: none;
|
|
12598
|
+
}
|
|
12599
|
+
.fwe-breadcrumb--mobile li:nth-last-child(-n+2) {
|
|
12600
|
+
display: flex;
|
|
12601
|
+
}
|
|
12602
|
+
.fwe-breadcrumb--mobile li:nth-last-child(2)::before {
|
|
12603
|
+
content: "";
|
|
12604
|
+
margin-left: 0px;
|
|
12605
|
+
margin-right: 4px;
|
|
12606
|
+
height: 16px;
|
|
12607
|
+
width: 16px;
|
|
12608
|
+
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGRhdGEtbmFtZT0id2hpdGUgYmFja2dyb3VuZCIgdmlld0JveD0iMCAwIDE2IDE2Ij48cGF0aCBmaWxsPSJub25lIiBkPSJNMCAxNlYwaDE2djE2eiIvPjxwYXRoIGZpbGw9IiMzMzMiIGQ9Im0xMC43MDcgOC00LjM1MyA0LjM1NC0uNzA4LS43MDhMOS4yOTMgOCA1LjY0NiA0LjM1NGwuNzA4LS43MDhMMTAuNzA3IDh6Ii8+PC9zdmc+");
|
|
12583
12609
|
}
|
|
12584
12610
|
|
|
12585
12611
|
a {
|
|
@@ -13568,7 +13594,7 @@ a.fwe-btn.fwe-disabled {
|
|
|
13568
13594
|
}
|
|
13569
13595
|
|
|
13570
13596
|
/*!
|
|
13571
|
-
* Festo UI - Web Essentials v9.0.1-dev.
|
|
13597
|
+
* Festo UI - Web Essentials v9.0.1-dev.775 (https://storybook.festo.design/)
|
|
13572
13598
|
* Copyright 2022 Festo SE & Co. KG
|
|
13573
13599
|
* Licensed under Apache-2.0
|
|
13574
13600
|
*/
|
|
@@ -13913,11 +13939,15 @@ input[type=range].fwe-slider-input:disabled::-ms-thumb {
|
|
|
13913
13939
|
font-weight: var(--fwe-font-weight-bold);
|
|
13914
13940
|
}
|
|
13915
13941
|
.fwe-select-wrapper .fwe-select {
|
|
13942
|
+
text-align: left;
|
|
13943
|
+
overflow: hidden;
|
|
13944
|
+
white-space: nowrap;
|
|
13945
|
+
text-overflow: ellipsis;
|
|
13916
13946
|
cursor: pointer;
|
|
13917
13947
|
order: 2;
|
|
13918
13948
|
height: 33px;
|
|
13919
|
-
padding-
|
|
13920
|
-
padding
|
|
13949
|
+
padding-inline: unset;
|
|
13950
|
+
padding: 4px 24px 4px 0px;
|
|
13921
13951
|
width: 100%;
|
|
13922
13952
|
font-size: var(--fwe-font-size-base);
|
|
13923
13953
|
-webkit-appearance: none;
|
|
@@ -13929,14 +13959,14 @@ input[type=range].fwe-slider-input:disabled::-ms-thumb {
|
|
|
13929
13959
|
border: none;
|
|
13930
13960
|
border-bottom: 1px solid var(--fwe-control-border);
|
|
13931
13961
|
}
|
|
13932
|
-
.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) {
|
|
13933
13963
|
color: var(--fwe-hero);
|
|
13934
13964
|
border-color: var(--fwe-hero);
|
|
13935
13965
|
}
|
|
13936
|
-
.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 {
|
|
13937
13967
|
color: var(--fwe-text);
|
|
13938
13968
|
}
|
|
13939
|
-
.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 {
|
|
13940
13970
|
border-color: var(--fwe-red);
|
|
13941
13971
|
}
|
|
13942
13972
|
.fwe-select-wrapper .fwe-select:disabled {
|
|
@@ -13949,14 +13979,14 @@ input[type=range].fwe-slider-input:disabled::-ms-thumb {
|
|
|
13949
13979
|
.fwe-select-wrapper .fwe-select::-ms-expand {
|
|
13950
13980
|
display: none;
|
|
13951
13981
|
}
|
|
13952
|
-
.fwe-select-wrapper .fwe-select:user-invalid {
|
|
13982
|
+
.fwe-select-wrapper .fwe-select.fwe-invalid, .fwe-select-wrapper .fwe-select:user-invalid {
|
|
13953
13983
|
box-shadow: none;
|
|
13954
13984
|
border-color: var(--fwe-red);
|
|
13955
13985
|
}
|
|
13956
|
-
.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 {
|
|
13957
13987
|
display: block;
|
|
13958
13988
|
}
|
|
13959
|
-
.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 {
|
|
13960
13990
|
display: none;
|
|
13961
13991
|
}
|
|
13962
13992
|
.fwe-select-wrapper .fwe-select-invalid {
|
|
@@ -13964,6 +13994,54 @@ input[type=range].fwe-slider-input:disabled::-ms-thumb {
|
|
|
13964
13994
|
color: var(--fwe-red);
|
|
13965
13995
|
}
|
|
13966
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
|
+
|
|
13967
14045
|
.fwe-badge {
|
|
13968
14046
|
display: inline-block;
|
|
13969
14047
|
border-radius: 2px;
|
|
@@ -14424,7 +14502,7 @@ fieldset.fwe-progress-container label {
|
|
|
14424
14502
|
}
|
|
14425
14503
|
|
|
14426
14504
|
/*!
|
|
14427
|
-
* Festo UI - Web Essentials v9.0.1-dev.
|
|
14505
|
+
* Festo UI - Web Essentials v9.0.1-dev.775 (https://storybook.festo.design/)
|
|
14428
14506
|
* Copyright 2022 Festo SE & Co. KG
|
|
14429
14507
|
* Licensed under Apache-2.0
|
|
14430
14508
|
*/
|
|
@@ -14655,7 +14733,7 @@ fieldset.fwe-progress-container label {
|
|
|
14655
14733
|
}
|
|
14656
14734
|
}
|
|
14657
14735
|
/*!
|
|
14658
|
-
* Festo UI - Web Essentials v9.0.1-dev.
|
|
14736
|
+
* Festo UI - Web Essentials v9.0.1-dev.775 (https://storybook.festo.design/)
|
|
14659
14737
|
* Copyright 2022 Festo SE & Co. KG
|
|
14660
14738
|
* Licensed under Apache-2.0
|
|
14661
14739
|
*/
|
|
@@ -15391,7 +15469,7 @@ fieldset.fwe-progress-container label {
|
|
|
15391
15469
|
}
|
|
15392
15470
|
|
|
15393
15471
|
/*!
|
|
15394
|
-
* Festo UI - Web Essentials v9.0.1-dev.
|
|
15472
|
+
* Festo UI - Web Essentials v9.0.1-dev.775 (https://storybook.festo.design/)
|
|
15395
15473
|
* Copyright 2022 Festo SE & Co. KG
|
|
15396
15474
|
* Licensed under Apache-2.0
|
|
15397
15475
|
*/
|
|
@@ -15889,7 +15967,7 @@ input[type=search]::-webkit-search-cancel-button {
|
|
|
15889
15967
|
}
|
|
15890
15968
|
}
|
|
15891
15969
|
/*!
|
|
15892
|
-
* Festo UI - Web Essentials v9.0.1-dev.
|
|
15970
|
+
* Festo UI - Web Essentials v9.0.1-dev.775 (https://storybook.festo.design/)
|
|
15893
15971
|
* Copyright 2022 Festo SE & Co. KG
|
|
15894
15972
|
* Licensed under Apache-2.0
|
|
15895
15973
|
*/
|
|
@@ -16173,7 +16251,7 @@ input[type=search]::-webkit-search-cancel-button {
|
|
|
16173
16251
|
}
|
|
16174
16252
|
|
|
16175
16253
|
/*!
|
|
16176
|
-
* Festo UI - Web Essentials v9.0.1-dev.
|
|
16254
|
+
* Festo UI - Web Essentials v9.0.1-dev.775 (https://storybook.festo.design/)
|
|
16177
16255
|
* Copyright 2022 Festo SE & Co. KG
|
|
16178
16256
|
* Licensed under Apache-2.0
|
|
16179
16257
|
*/
|