@lucca-front/scss 18.3.0 → 18.3.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/dist/lucca-front.min.css +1 -1
- package/package.json +2 -2
- package/src/commons/core.scss +1 -1
- package/src/components/calloutDisclosure/component.scss +5 -0
- package/src/components/comment/component.scss +1 -1
- package/src/components/dialog/component.scss +3 -0
- package/src/components/form/index.scss +21 -10
- package/src/components/form/states.scss +6 -0
- package/src/components/loading/mods.scss +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lucca-front/scss",
|
|
3
|
-
"version": "18.3.
|
|
3
|
+
"version": "18.3.1",
|
|
4
4
|
"description": "A Sass framework for Lucca products.",
|
|
5
5
|
"main": "src/main.scss",
|
|
6
6
|
"scripts": {},
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"normalize.css": "^8.0.0"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {
|
|
26
|
-
"@lucca-front/icons": "18.3.
|
|
26
|
+
"@lucca-front/icons": "18.3.1"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/src/commons/core.scss
CHANGED
|
@@ -115,7 +115,7 @@ $overflow: 'hidden', 'auto', 'visible', 'scroll';
|
|
|
115
115
|
@each $corner in $corners {
|
|
116
116
|
@each $key, $value in config.$borderRadius {
|
|
117
117
|
.u-border#{transform.capitalize(transform.camelize($corner))}Radius#{transform.capitalize($key)} {
|
|
118
|
-
border-#{$corner}radius: $
|
|
118
|
+
border-#{$corner}radius: var(--commons-borderRadius-#{$key}) #{$suffix};
|
|
119
119
|
}
|
|
120
120
|
}
|
|
121
121
|
}
|
|
@@ -37,6 +37,10 @@
|
|
|
37
37
|
box-shadow: none;
|
|
38
38
|
}
|
|
39
39
|
}
|
|
40
|
+
|
|
41
|
+
&::-webkit-details-marker {
|
|
42
|
+
display: none;
|
|
43
|
+
}
|
|
40
44
|
}
|
|
41
45
|
|
|
42
46
|
.calloutDisclosure-summary-icon {
|
|
@@ -48,6 +52,7 @@
|
|
|
48
52
|
}
|
|
49
53
|
|
|
50
54
|
.calloutDisclosure-summary-chevron {
|
|
55
|
+
align-self: start;
|
|
51
56
|
color: var(--palettes-neutral-700);
|
|
52
57
|
margin-left: auto;
|
|
53
58
|
transition: transform var(--commons-animations-durations-standard) ease;
|
|
@@ -90,6 +90,8 @@
|
|
|
90
90
|
}
|
|
91
91
|
|
|
92
92
|
.dialog-inside-footer {
|
|
93
|
+
grid-area: footer;
|
|
94
|
+
|
|
93
95
|
&.footer {
|
|
94
96
|
background-color: transparent;
|
|
95
97
|
position: relative;
|
|
@@ -106,6 +108,7 @@
|
|
|
106
108
|
gap: var(--pr-t-spacings-200);
|
|
107
109
|
position: relative;
|
|
108
110
|
z-index: 1;
|
|
111
|
+
grid-area: header;
|
|
109
112
|
}
|
|
110
113
|
|
|
111
114
|
.dialog-inside-content {
|
|
@@ -20,6 +20,23 @@
|
|
|
20
20
|
&.mod-S {
|
|
21
21
|
@include S;
|
|
22
22
|
}
|
|
23
|
+
|
|
24
|
+
&:has(~ .box) {
|
|
25
|
+
.form-field {
|
|
26
|
+
&.mod-withArrow {
|
|
27
|
+
@include withArrow;
|
|
28
|
+
|
|
29
|
+
&.mod-S {
|
|
30
|
+
@include withArrowS;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
&:has(.radioField-input[aria-invalid='true']),
|
|
37
|
+
&:has(.checkboxField-input[aria-invalid='true']) {
|
|
38
|
+
@include legendInvalid;
|
|
39
|
+
}
|
|
23
40
|
}
|
|
24
41
|
|
|
25
42
|
.form-field {
|
|
@@ -31,14 +48,6 @@
|
|
|
31
48
|
@include XS;
|
|
32
49
|
}
|
|
33
50
|
|
|
34
|
-
&.mod-withArrow {
|
|
35
|
-
@include withArrow;
|
|
36
|
-
|
|
37
|
-
&.mod-S {
|
|
38
|
-
@include withArrowS;
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
|
|
42
51
|
&.mod-checkable,
|
|
43
52
|
&:has(.radioField),
|
|
44
53
|
&:has(.checkboxField),
|
|
@@ -46,12 +55,14 @@
|
|
|
46
55
|
@include checkable;
|
|
47
56
|
}
|
|
48
57
|
|
|
49
|
-
&:has(.textField-input-value[aria-invalid='true'],
|
|
58
|
+
&:has(.textField-input-value[aria-invalid='true']),
|
|
59
|
+
&:has(.timePicker-fieldset-group-textfield-input[aria-invalid='true']) {
|
|
50
60
|
@include invalid;
|
|
51
61
|
}
|
|
52
62
|
|
|
53
63
|
&:has(.radioField-input:disabled),
|
|
54
|
-
&:has(.checkboxField-input:disabled)
|
|
64
|
+
&:has(.checkboxField-input:disabled),
|
|
65
|
+
&:has(.switchField-input:disabled) {
|
|
55
66
|
.formLabel {
|
|
56
67
|
@include formLabel.disabled;
|
|
57
68
|
}
|