shelving 1.258.1 → 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shelving",
3
- "version": "1.258.1",
3
+ "version": "1.258.3",
4
4
  "author": "Dave Houlbrooke <dave@shax.com>",
5
5
  "repository": {
6
6
  "type": "git",
@@ -70,7 +70,6 @@
70
70
  }
71
71
  &.strong {
72
72
  background: var(--button-strong-background, var(--tint-50));
73
- border: var(--button-strong-border, var(--button-stroke, var(--stroke-normal) solid transparent));
74
73
  color: var(--button-strong-text, var(--tint-100));
75
74
 
76
75
  &:enabled:hover,
@@ -97,6 +96,9 @@
97
96
  }
98
97
 
99
98
  /* Variants */
99
+ &.strong {
100
+ border-color: transparent;
101
+ }
100
102
  &.plain:not(:enabled:hover, :any-link:hover, :focus) {
101
103
  border-color: transparent;
102
104
  background: transparent;
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-title` | Title colour | `var(--tint-00)` |
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-description` | Description colour | `var(--shade-dark)` |
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`, `--shade-dark`, and `--color-red`.
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-90));
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(--shade-dark));
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);