shelving 1.258.2 → 1.258.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/package.json +1 -1
- package/ui/form/Field.md +3 -5
- package/ui/misc/Loading.module.css +2 -2
package/package.json
CHANGED
package/ui/form/Field.md
CHANGED
|
@@ -43,11 +43,9 @@ import { Field, TextInput } from "shelving/ui";
|
|
|
43
43
|
| `--field-gap` | Gap between label, control, and message | `var(--space-xsmall)` |
|
|
44
44
|
| `--field-title-size` | Title font size | `var(--size-normal)` |
|
|
45
45
|
| `--field-title-weight` | Title font weight | `var(--weight-strong)` |
|
|
46
|
-
| `--field-color
|
|
46
|
+
| `--field-title-color` | Title colour | `var(--tint-00)` |
|
|
47
47
|
| `--field-description-size` | Description font size | `var(--size-normal)` |
|
|
48
48
|
| `--field-description-weight` | Description font weight | `var(--weight-normal)` |
|
|
49
|
-
| `--field-color
|
|
50
|
-
| `--field-message-weight` | Message font weight | `var(--weight-strong)` |
|
|
51
|
-
| `--field-color-message` | Message colour | `var(--color-red)` |
|
|
49
|
+
| `--field-description-color` | Description colour | `var(--tint-70)` |
|
|
52
50
|
|
|
53
|
-
**Global tokens it reads:** the tint ladder `--tint-00`, plus `--space-paragraph`, `--space-xsmall`, `--size-normal`, `--weight-strong`, `--weight-normal`,
|
|
51
|
+
**Global tokens it reads:** the tint ladder `--tint-00` and `--tint-70`, plus `--space-paragraph`, `--space-xsmall`, `--size-normal`, `--weight-strong`, `--weight-normal`,
|
|
@@ -11,13 +11,13 @@
|
|
|
11
11
|
|
|
12
12
|
.track {
|
|
13
13
|
fill: none;
|
|
14
|
-
stroke: var(--loading-color, var(--tint-
|
|
14
|
+
stroke: var(--loading-color, var(--tint-70));
|
|
15
15
|
stroke-width: var(--loading-stroke-width, 2.5);
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
.indicator {
|
|
19
19
|
fill: none;
|
|
20
|
-
stroke: var(--loading-fill, var(--
|
|
20
|
+
stroke: var(--loading-fill, var(--tint-80));
|
|
21
21
|
stroke-width: var(--loading-stroke-width, 2.5);
|
|
22
22
|
stroke-linecap: round;
|
|
23
23
|
stroke-dasharray: var(--loading-indicator-length, 28 100);
|