mautourco-components 0.2.92 → 0.2.93
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.
|
@@ -17,23 +17,21 @@
|
|
|
17
17
|
max-width: 200px;
|
|
18
18
|
width: auto;
|
|
19
19
|
opacity: var(--opacity-opacity-100);
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
flex: 1;
|
|
36
|
-
/* Typography styles are now handled by the Text component */
|
|
20
|
+
/* Variant: text-only (no background, no padding) */
|
|
21
|
+
.selected-value--text {
|
|
22
|
+
background: transparent;
|
|
23
|
+
padding: 0;
|
|
24
|
+
color: var(--color-slate-900);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.selected-value__text {
|
|
28
|
+
color: inherit;
|
|
29
|
+
overflow: hidden;
|
|
30
|
+
text-overflow: ellipsis;
|
|
31
|
+
white-space: nowrap;
|
|
32
|
+
flex: 1;
|
|
33
|
+
/* Typography styles are now handled by the Text component */
|
|
34
|
+
}
|
|
37
35
|
}
|
|
38
36
|
|
|
39
37
|
.selected-value__remove {
|
package/package.json
CHANGED
|
@@ -11,22 +11,21 @@
|
|
|
11
11
|
max-width: 200px;
|
|
12
12
|
width: auto;
|
|
13
13
|
opacity: var(--opacity-opacity-100);
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
color: var(--color-slate-900);
|
|
21
|
-
}
|
|
14
|
+
/* Variant: text-only (no background, no padding) */
|
|
15
|
+
.selected-value--text {
|
|
16
|
+
background: transparent;
|
|
17
|
+
padding: 0;
|
|
18
|
+
color: var(--color-slate-900);
|
|
19
|
+
}
|
|
22
20
|
|
|
23
|
-
.selected-value__text {
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
21
|
+
.selected-value__text {
|
|
22
|
+
color: inherit;
|
|
23
|
+
overflow: hidden;
|
|
24
|
+
text-overflow: ellipsis;
|
|
25
|
+
white-space: nowrap;
|
|
26
|
+
flex: 1;
|
|
27
|
+
/* Typography styles are now handled by the Text component */
|
|
28
|
+
}
|
|
30
29
|
}
|
|
31
30
|
|
|
32
31
|
.selected-value__remove {
|