elements-kit 0.18.0 → 0.18.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.
|
@@ -239,7 +239,8 @@
|
|
|
239
239
|
--text-input-height: var(--space-5);
|
|
240
240
|
--text-input-min-height: var(--space-8);
|
|
241
241
|
--text-input-padding: calc(var(--space-1) * 1.5 - var(--text-input-border-width));
|
|
242
|
-
--text-input-
|
|
242
|
+
--text-input-radius: var(--radius-2);
|
|
243
|
+
--text-input-border-radius: var(--text-input-radius);
|
|
243
244
|
--text-input-native-icon-size: var(--space-3);
|
|
244
245
|
font-size: var(--font-size-1);
|
|
245
246
|
line-height: var(--line-height-1);
|
|
@@ -256,7 +257,8 @@
|
|
|
256
257
|
--text-input-height: var(--space-6);
|
|
257
258
|
--text-input-min-height: var(--space-9);
|
|
258
259
|
--text-input-padding: calc(var(--space-2) - var(--text-input-border-width));
|
|
259
|
-
--text-input-
|
|
260
|
+
--text-input-radius: var(--radius-2);
|
|
261
|
+
--text-input-border-radius: var(--text-input-radius);
|
|
260
262
|
--text-input-native-icon-size: var(--space-4);
|
|
261
263
|
font-size: var(--font-size-2);
|
|
262
264
|
line-height: var(--line-height-2);
|
|
@@ -273,7 +275,8 @@
|
|
|
273
275
|
--text-input-height: var(--space-7);
|
|
274
276
|
--text-input-min-height: 80px;
|
|
275
277
|
--text-input-padding: calc(var(--space-3) - var(--text-input-border-width));
|
|
276
|
-
--text-input-
|
|
278
|
+
--text-input-radius: var(--radius-3);
|
|
279
|
+
--text-input-border-radius: var(--text-input-radius);
|
|
277
280
|
--text-input-native-icon-size: var(--space-4);
|
|
278
281
|
font-size: var(--font-size-3);
|
|
279
282
|
line-height: var(--line-height-3);
|
|
@@ -290,7 +293,8 @@
|
|
|
290
293
|
--text-input-height: var(--space-6);
|
|
291
294
|
--text-input-min-height: var(--space-9);
|
|
292
295
|
--text-input-padding: calc(var(--space-2) - var(--text-input-border-width));
|
|
293
|
-
--text-input-
|
|
296
|
+
--text-input-radius: var(--radius-2);
|
|
297
|
+
--text-input-border-radius: var(--text-input-radius);
|
|
294
298
|
--text-input-native-icon-size: var(--space-4);
|
|
295
299
|
font-size: var(--font-size-2);
|
|
296
300
|
line-height: var(--line-height-2);
|
|
@@ -303,6 +307,10 @@
|
|
|
303
307
|
padding-right: var(--space-2);
|
|
304
308
|
}
|
|
305
309
|
|
|
310
|
+
.x-text-input:where(input), .x-text-input:where(:has( > input)) {
|
|
311
|
+
--text-input-border-radius: max(var(--text-input-radius), var(--radius-pill));
|
|
312
|
+
}
|
|
313
|
+
|
|
306
314
|
.x-text-input:where(:not([data-variant="soft"])) {
|
|
307
315
|
--text-input-border-width: 1px;
|
|
308
316
|
--text-input-selection-color: var(--focus-a5);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "elements-kit",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.18.
|
|
4
|
+
"version": "0.18.1",
|
|
5
5
|
"description": "A lightweight reactive UI library that transforms native HTMLElements into reactive components with signals. Ideal for framework-agnostic applications and web components.",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"webcomponents",
|