@lucca-front/scss 20.3.0-rc.2 → 20.3.0-rc.3
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/lucca-front.min.css +1 -1
- package/package.json +2 -2
- package/src/commons/config.scss +1 -1
- package/src/components/_sample/index.scss +1 -1
- package/src/components/breadcrumbs/index.scss +1 -1
- package/src/components/button/index.scss +1 -1
- package/src/components/calendar/index.scss +1 -1
- package/src/components/calloutDisclosure/index.scss +1 -1
- package/src/components/card/component.scss +1 -0
- package/src/components/card/index.scss +4 -2
- package/src/components/card/mods.scss +31 -0
- package/src/components/checkbox/index.scss +1 -1
- package/src/components/checkboxField/index.scss +2 -2
- package/src/components/chip/index.scss +1 -1
- package/src/components/clear/index.scss +1 -1
- package/src/components/collapse/index.scss +1 -1
- package/src/components/dataTable/index.scss +2 -2
- package/src/components/dataTableSticked/index.scss +1 -1
- package/src/components/dropdown/component.scss +43 -17
- package/src/components/dropdown/index.scss +5 -4
- package/src/components/dropdown/mods.scss +4 -4
- package/src/components/dropdown/states.scss +4 -3
- package/src/components/dropdown/vars.scss +8 -6
- package/src/components/field/index.scss +5 -5
- package/src/components/fieldset/index.scss +1 -1
- package/src/components/file/index.scss +2 -2
- package/src/components/fileEntry/index.scss +1 -1
- package/src/components/fileUpload/index.scss +1 -1
- package/src/components/filterPill/index.scss +2 -2
- package/src/components/form/index.scss +5 -5
- package/src/components/form/mods.scss +1 -1
- package/src/components/formLabel/index.scss +1 -1
- package/src/components/gauge/index.scss +1 -1
- package/src/components/header/index.scss +1 -1
- package/src/components/horizontalNavigation/index.scss +1 -1
- package/src/components/indexTable/index.scss +1 -1
- package/src/components/inlineMessage/index.scss +1 -1
- package/src/components/inputFramed/index.scss +1 -1
- package/src/components/layout/index.scss +1 -1
- package/src/components/link/index.scss +1 -1
- package/src/components/listboxOption/index.scss +3 -3
- package/src/components/main/index.scss +1 -1
- package/src/components/multiSelect/index.scss +18 -4
- package/src/components/multiSelect/mods.scss +0 -8
- package/src/components/multiSelect/states.scss +8 -0
- package/src/components/navside/index.scss +4 -4
- package/src/components/numericBadge/index.scss +1 -1
- package/src/components/pagination/index.scss +1 -1
- package/src/components/popover/component.scss +0 -17
- package/src/components/progress/index.scss +1 -1
- package/src/components/radio/index.scss +1 -1
- package/src/components/radioButtons/index.scss +1 -1
- package/src/components/radioField/index.scss +1 -1
- package/src/components/readMore/index.scss +1 -1
- package/src/components/richText/index.scss +1 -1
- package/src/components/scrollBox/index.scss +1 -1
- package/src/components/segmentedControl/index.scss +3 -3
- package/src/components/simpleSelect/index.scss +2 -2
- package/src/components/skeleton/index.scss +1 -1
- package/src/components/switch/index.scss +1 -1
- package/src/components/switchField/index.scss +1 -1
- package/src/components/tableOfContent/index.scss +1 -1
- package/src/components/tableSortable/index.scss +1 -1
- package/src/components/tag/index.scss +1 -1
- package/src/components/textField/index.scss +1 -1
- package/src/components/textfields/index.scss +4 -4
- package/src/components/timeline/index.scss +1 -1
- package/src/components/timepicker/index.scss +1 -1
- package/src/components/tooltip/index.scss +1 -1
- package/src/components/verticalNavigation/index.scss +2 -2
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
}
|
|
54
54
|
}
|
|
55
55
|
|
|
56
|
-
@layer
|
|
56
|
+
@layer mods {
|
|
57
57
|
&[aria-selected="true"],
|
|
58
58
|
&[aria-checked="true"] {
|
|
59
59
|
> .listboxOption-content {
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
@include varsContent;
|
|
95
95
|
}
|
|
96
96
|
|
|
97
|
-
@layer
|
|
97
|
+
@layer mods {
|
|
98
98
|
&.is-hovered,
|
|
99
99
|
&:hover {
|
|
100
100
|
@include hover;
|
|
@@ -120,7 +120,7 @@
|
|
|
120
120
|
}
|
|
121
121
|
}
|
|
122
122
|
|
|
123
|
-
@layer
|
|
123
|
+
@layer mods {
|
|
124
124
|
&[aria-busy="true"] {
|
|
125
125
|
@include busy;
|
|
126
126
|
}
|
|
@@ -6,17 +6,31 @@
|
|
|
6
6
|
@include component;
|
|
7
7
|
}
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
&.mod-S {
|
|
10
|
+
@layer mods {
|
|
11
11
|
@include S;
|
|
12
12
|
}
|
|
13
|
+
}
|
|
13
14
|
|
|
14
|
-
|
|
15
|
+
&.mod-filterPill {
|
|
16
|
+
@layer mods {
|
|
15
17
|
@include filterPill;
|
|
16
18
|
}
|
|
19
|
+
|
|
20
|
+
@layer mods {
|
|
21
|
+
&:has(.multipleSelect-displayer-search:focus-visible) {
|
|
22
|
+
@include filterPillFocused;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.multipleSelect-displayer {
|
|
26
|
+
&:has(.multipleSelect-displayer-search:focus-visible) {
|
|
27
|
+
@include filterPillDisplayerFocused;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
17
31
|
}
|
|
18
32
|
|
|
19
|
-
@layer
|
|
33
|
+
@layer mods {
|
|
20
34
|
&.is-selected {
|
|
21
35
|
@include selected;
|
|
22
36
|
}
|
|
@@ -73,20 +73,12 @@
|
|
|
73
73
|
inline-size: 21rem;
|
|
74
74
|
max-inline-size: calc(100vw - 2.5rem);
|
|
75
75
|
|
|
76
|
-
&:has(.multipleSelect-displayer-search:focus-visible) {
|
|
77
|
-
outline: none;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
76
|
.multipleSelect-displayer {
|
|
81
77
|
box-shadow: 0 0 0 1px var(--components-multiSelect-border-color);
|
|
82
78
|
border-radius: var(--pr-t-border-radius-input);
|
|
83
79
|
padding: var(--components-multiSelect-padding);
|
|
84
80
|
z-index: 1;
|
|
85
81
|
position: relative;
|
|
86
|
-
|
|
87
|
-
&:has(.multipleSelect-displayer-search:focus-visible) {
|
|
88
|
-
@include a11y.focusVisible($offset: 3px);
|
|
89
|
-
}
|
|
90
82
|
}
|
|
91
83
|
|
|
92
84
|
.lu-picker-content {
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
}
|
|
47
47
|
}
|
|
48
48
|
|
|
49
|
-
@layer
|
|
49
|
+
@layer mods {
|
|
50
50
|
@include media.max('S') {
|
|
51
51
|
&:not(.is-open, .open) {
|
|
52
52
|
.navSide-item {
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
}
|
|
87
87
|
}
|
|
88
88
|
|
|
89
|
-
@layer
|
|
89
|
+
@layer mods {
|
|
90
90
|
&:not(.is-open) {
|
|
91
91
|
@include notOpen;
|
|
92
92
|
}
|
|
@@ -109,7 +109,7 @@
|
|
|
109
109
|
|
|
110
110
|
.navSide-item-subMenu-link,
|
|
111
111
|
.navSide-item-link {
|
|
112
|
-
@layer
|
|
112
|
+
@layer mods {
|
|
113
113
|
&:is(.is-active, .active) {
|
|
114
114
|
@include active;
|
|
115
115
|
}
|
|
@@ -121,7 +121,7 @@
|
|
|
121
121
|
}
|
|
122
122
|
|
|
123
123
|
html {
|
|
124
|
-
@layer
|
|
124
|
+
@layer mods {
|
|
125
125
|
&:is(.hasMenu, .withMenu) {
|
|
126
126
|
@include media.max('S') {
|
|
127
127
|
@include overlay;
|
|
@@ -36,23 +36,6 @@
|
|
|
36
36
|
.popover-contentOptional {
|
|
37
37
|
padding: var(--components-popover-padding);
|
|
38
38
|
}
|
|
39
|
-
|
|
40
|
-
.popover-close {
|
|
41
|
-
@include button.outlined;
|
|
42
|
-
@include button.XS;
|
|
43
|
-
@include button.onlyIconXS;
|
|
44
|
-
|
|
45
|
-
padding: 0;
|
|
46
|
-
border-radius: 50%;
|
|
47
|
-
position: absolute;
|
|
48
|
-
inset-inline-start: calc(var(--pr-t-spacings-100) * -1);
|
|
49
|
-
inset-block-start: calc(var(--pr-t-spacings-100) * -1);
|
|
50
|
-
z-index: 2;
|
|
51
|
-
|
|
52
|
-
&:not(:focus-visible) {
|
|
53
|
-
@include a11y.mask;
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
39
|
}
|
|
57
40
|
|
|
58
41
|
@keyframes popup {
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
// .viewTabs-item-tab is deprecated
|
|
28
28
|
.segmentedControl-item-action,
|
|
29
29
|
.viewTabs-item-tab {
|
|
30
|
-
@layer
|
|
30
|
+
@layer mods {
|
|
31
31
|
.segmentedControl-item-input:checked + &,
|
|
32
32
|
&[aria-selected='true'] {
|
|
33
33
|
@include selected;
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
|
|
38
38
|
.segmentedControl-item-action:disabled,
|
|
39
39
|
.segmentedControl-item-input:disabled ~ .segmentedControl-item-action {
|
|
40
|
-
@layer
|
|
40
|
+
@layer mods {
|
|
41
41
|
@include disabled;
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
// .viewTabs_panel is deprecated
|
|
46
46
|
.segmentedControl_panel,
|
|
47
47
|
.viewTabs_panel {
|
|
48
|
-
@layer
|
|
48
|
+
@layer mods {
|
|
49
49
|
&:not(.is-active, .active) {
|
|
50
50
|
@include panelInactive;
|
|
51
51
|
}
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
@include component;
|
|
7
7
|
}
|
|
8
8
|
|
|
9
|
-
@layer
|
|
9
|
+
@layer mods {
|
|
10
10
|
&:has(.simpleSelect-field-input:focus-visible) {
|
|
11
11
|
@include focused;
|
|
12
12
|
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
}
|
|
48
48
|
}
|
|
49
49
|
|
|
50
|
-
@layer
|
|
50
|
+
@layer mods {
|
|
51
51
|
&.is-searchFilled {
|
|
52
52
|
@include searchFilled;
|
|
53
53
|
}
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
@include component;
|
|
7
7
|
}
|
|
8
8
|
|
|
9
|
-
@layer
|
|
9
|
+
@layer mods {
|
|
10
10
|
.textfield-input {
|
|
11
11
|
&:is([disabled], .is-disabled, .disabled, [readonly], .is-readonly, .readonly) {
|
|
12
12
|
@include inputDisabled;
|
|
@@ -227,7 +227,7 @@
|
|
|
227
227
|
}
|
|
228
228
|
}
|
|
229
229
|
|
|
230
|
-
@layer
|
|
230
|
+
@layer mods {
|
|
231
231
|
&.mod-material {
|
|
232
232
|
.textfield-input {
|
|
233
233
|
&:is(:focus, .is-focused, .focused) {
|
|
@@ -266,7 +266,7 @@
|
|
|
266
266
|
}
|
|
267
267
|
}
|
|
268
268
|
|
|
269
|
-
@layer
|
|
269
|
+
@layer mods {
|
|
270
270
|
.textfield-input {
|
|
271
271
|
&:is(:hover) {
|
|
272
272
|
@include inputHover;
|
|
@@ -311,7 +311,7 @@
|
|
|
311
311
|
}
|
|
312
312
|
}
|
|
313
313
|
|
|
314
|
-
@layer
|
|
314
|
+
@layer mods {
|
|
315
315
|
.textfield.mod-framed,
|
|
316
316
|
.form.mod-framed .textfield {
|
|
317
317
|
&:is(.is-error, .error) {
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
.verticalNavigation-list-item-link {
|
|
25
|
-
@layer
|
|
25
|
+
@layer mods {
|
|
26
26
|
&[aria-expanded='true'] {
|
|
27
27
|
@include expanded;
|
|
28
28
|
}
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
span.verticalNavigation-list-item-link {
|
|
42
|
-
@layer
|
|
42
|
+
@layer mods {
|
|
43
43
|
@include disabled;
|
|
44
44
|
}
|
|
45
45
|
}
|