fix label colors in checkbox, radio, and switch

pull/1128/head
Cory LaViska 2023-01-19 14:34:43 -05:00
rodzic 29c671c0f4
commit 3a0f486e98
4 zmienionych plików z 4 dodań i 3 usunięć

Wyświetl plik

@ -29,6 +29,7 @@ New versions of Shoelace are released as-needed and generally occur when a criti
- Fixed a bug that caused the value of `<sl-radio-group>` to be `undefined` depending on where the radio was activated [#1134](https://github.com/shoelace-style/shoelace/issues/1134)
- Fixed a bug that caused body content to shift when scroll locking was enabled [#1132](https://github.com/shoelace-style/shoelace/issues/1132)
- Fixed a bug in `<sl-icon>` that caused icons to sometimes be clipped in Safari
- Fixed a bug that prevented label colors from inheriting by default in `<sl-checkbox>`, `<sl-radio>`, and `<sl-switch>`
- Refactored the `ShoelaceFormControl` interface to remove the `invalid` property, allowing a more intuitive API for controlling validation internally
- Renamed the internal `FormSubmitController` to `FormControlController` to better reflect what it's used for
- Updated Lit to 2.6.1

Wyświetl plik

@ -13,7 +13,7 @@ export default css`
align-items: top;
font-family: var(--sl-input-font-family);
font-weight: var(--sl-input-font-weight);
color: var(--sl-input-color);
color: var(--sl-input-label-color);
vertical-align: middle;
cursor: pointer;
}

Wyświetl plik

@ -18,7 +18,7 @@ export default css`
font-family: var(--sl-input-font-family);
font-size: var(--sl-input-font-size-medium);
font-weight: var(--sl-input-font-weight);
color: var(--sl-input-color);
color: var(--sl-input-label-color);
vertical-align: middle;
cursor: pointer;
}

Wyświetl plik

@ -38,7 +38,7 @@ export default css`
font-family: var(--sl-input-font-family);
font-size: inherit;
font-weight: var(--sl-input-font-weight);
color: var(--sl-input-color);
color: var(--sl-input-label-color);
vertical-align: middle;
cursor: pointer;
}