@thalassic/themes 22.19.0 → 22.19.2
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/package.json
CHANGED
|
@@ -24,6 +24,12 @@
|
|
|
24
24
|
|
|
25
25
|
@include mixins.panel-open;
|
|
26
26
|
|
|
27
|
+
// A query under the minimum shows neither options nor a message, and the bare box that
|
|
28
|
+
// would leave has nothing to say.
|
|
29
|
+
&--hidden {
|
|
30
|
+
display: none;
|
|
31
|
+
}
|
|
32
|
+
|
|
27
33
|
&--virtual {
|
|
28
34
|
// The virtual-scroll viewport inside is the scroll container; the panel only clips
|
|
29
35
|
// to its rounded corners.
|
|
@@ -92,7 +98,8 @@
|
|
|
92
98
|
}
|
|
93
99
|
}
|
|
94
100
|
|
|
95
|
-
.tls-autocomplete__empty
|
|
101
|
+
.tls-autocomplete__empty,
|
|
102
|
+
.tls-autocomplete__loading {
|
|
96
103
|
padding-block: var(--spacing-2);
|
|
97
104
|
padding-inline: var(--spacing-3);
|
|
98
105
|
|
|
@@ -103,3 +110,9 @@
|
|
|
103
110
|
line-height: var(--font-body-medium-line-height);
|
|
104
111
|
letter-spacing: var(--font-body-medium-letter-spacing);
|
|
105
112
|
}
|
|
113
|
+
|
|
114
|
+
.tls-autocomplete__loading {
|
|
115
|
+
display: flex;
|
|
116
|
+
align-items: center;
|
|
117
|
+
gap: var(--spacing-2);
|
|
118
|
+
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
@use '@thalassic/core/styles' as core;
|
|
1
2
|
@use '../../mixins' as mixins;
|
|
2
3
|
|
|
3
4
|
.tls-autocomplete {
|
|
@@ -62,6 +63,10 @@
|
|
|
62
63
|
);
|
|
63
64
|
}
|
|
64
65
|
|
|
66
|
+
.tls-autocomplete__status {
|
|
67
|
+
@include core.visually-hidden;
|
|
68
|
+
}
|
|
69
|
+
|
|
65
70
|
.tls-autocomplete__spinner {
|
|
66
71
|
position: absolute;
|
|
67
72
|
inset-block: 0;
|