@uniai-fe/uds-primitives 0.1.2 → 0.1.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/styles.css
CHANGED
|
@@ -1401,7 +1401,8 @@ figure.chip {
|
|
|
1401
1401
|
border-width: var(--theme-input-border-width-default);
|
|
1402
1402
|
background-color: var(--theme-input-surface-disabled);
|
|
1403
1403
|
}
|
|
1404
|
-
|
|
1404
|
+
|
|
1405
|
+
.input-element {
|
|
1405
1406
|
flex: 1 1 auto;
|
|
1406
1407
|
width: 100%;
|
|
1407
1408
|
border: none;
|
|
@@ -1411,20 +1412,21 @@ figure.chip {
|
|
|
1411
1412
|
font-size: var(--font-body-medium-size);
|
|
1412
1413
|
line-height: var(--font-body-medium-line-height);
|
|
1413
1414
|
font-weight: var(--font-body-medium-weight);
|
|
1415
|
+
letter-spacing: 0px;
|
|
1414
1416
|
outline: none;
|
|
1415
1417
|
box-shadow: none;
|
|
1416
1418
|
min-width: 0;
|
|
1417
1419
|
}
|
|
1418
|
-
.input-
|
|
1420
|
+
.input-element::placeholder {
|
|
1419
1421
|
color: var(--theme-input-placeholder-color);
|
|
1420
1422
|
}
|
|
1421
|
-
.input-
|
|
1423
|
+
.input-element:disabled {
|
|
1422
1424
|
color: var(--color-label-disabled);
|
|
1423
1425
|
}
|
|
1424
|
-
.input-
|
|
1426
|
+
.input-element:disabled::placeholder {
|
|
1425
1427
|
color: var(--color-label-disabled);
|
|
1426
1428
|
}
|
|
1427
|
-
.input-
|
|
1429
|
+
.input-element:focus, .input-element:focus-visible, .input-element:focus-within {
|
|
1428
1430
|
outline: none;
|
|
1429
1431
|
box-shadow: none;
|
|
1430
1432
|
}
|
package/package.json
CHANGED
|
@@ -187,39 +187,40 @@
|
|
|
187
187
|
background-color: var(--theme-input-surface-disabled);
|
|
188
188
|
}
|
|
189
189
|
}
|
|
190
|
+
}
|
|
190
191
|
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
192
|
+
.input-element {
|
|
193
|
+
flex: 1 1 auto;
|
|
194
|
+
width: 100%;
|
|
195
|
+
border: none;
|
|
196
|
+
background: transparent;
|
|
197
|
+
color: var(--theme-input-text-color);
|
|
198
|
+
caret-color: var(--theme-input-text-color);
|
|
199
|
+
font-size: var(--font-body-medium-size);
|
|
200
|
+
line-height: var(--font-body-medium-line-height);
|
|
201
|
+
font-weight: var(--font-body-medium-weight);
|
|
202
|
+
letter-spacing: 0px;
|
|
203
|
+
outline: none;
|
|
204
|
+
box-shadow: none;
|
|
205
|
+
min-width: 0;
|
|
204
206
|
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
207
|
+
&::placeholder {
|
|
208
|
+
color: var(--theme-input-placeholder-color);
|
|
209
|
+
}
|
|
208
210
|
|
|
209
|
-
|
|
210
|
-
|
|
211
|
+
&:disabled {
|
|
212
|
+
color: var(--color-label-disabled);
|
|
211
213
|
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
}
|
|
214
|
+
&::placeholder {
|
|
215
|
+
color: var(--color-label-disabled);
|
|
215
216
|
}
|
|
217
|
+
}
|
|
216
218
|
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
}
|
|
219
|
+
&:focus,
|
|
220
|
+
&:focus-visible,
|
|
221
|
+
&:focus-within {
|
|
222
|
+
outline: none;
|
|
223
|
+
box-shadow: none;
|
|
223
224
|
}
|
|
224
225
|
}
|
|
225
226
|
|