@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
- .input-field .input-element {
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-field .input-element::placeholder {
1420
+ .input-element::placeholder {
1419
1421
  color: var(--theme-input-placeholder-color);
1420
1422
  }
1421
- .input-field .input-element:disabled {
1423
+ .input-element:disabled {
1422
1424
  color: var(--color-label-disabled);
1423
1425
  }
1424
- .input-field .input-element:disabled::placeholder {
1426
+ .input-element:disabled::placeholder {
1425
1427
  color: var(--color-label-disabled);
1426
1428
  }
1427
- .input-field .input-element:focus, .input-field .input-element:focus-visible, .input-field .input-element:focus-within {
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniai-fe/uds-primitives",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "UNIAI Design System; Primitives Components Package",
5
5
  "type": "module",
6
6
  "private": false,
@@ -187,39 +187,40 @@
187
187
  background-color: var(--theme-input-surface-disabled);
188
188
  }
189
189
  }
190
+ }
190
191
 
191
- .input-element {
192
- flex: 1 1 auto;
193
- width: 100%;
194
- border: none;
195
- background: transparent;
196
- color: var(--theme-input-text-color);
197
- caret-color: var(--theme-input-text-color);
198
- font-size: var(--font-body-medium-size);
199
- line-height: var(--font-body-medium-line-height);
200
- font-weight: var(--font-body-medium-weight);
201
- outline: none;
202
- box-shadow: none;
203
- min-width: 0;
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
- &::placeholder {
206
- color: var(--theme-input-placeholder-color);
207
- }
207
+ &::placeholder {
208
+ color: var(--theme-input-placeholder-color);
209
+ }
208
210
 
209
- &:disabled {
210
- color: var(--color-label-disabled);
211
+ &:disabled {
212
+ color: var(--color-label-disabled);
211
213
 
212
- &::placeholder {
213
- color: var(--color-label-disabled);
214
- }
214
+ &::placeholder {
215
+ color: var(--color-label-disabled);
215
216
  }
217
+ }
216
218
 
217
- &:focus,
218
- &:focus-visible,
219
- &:focus-within {
220
- outline: none;
221
- box-shadow: none;
222
- }
219
+ &:focus,
220
+ &:focus-visible,
221
+ &:focus-within {
222
+ outline: none;
223
+ box-shadow: none;
223
224
  }
224
225
  }
225
226