fix part names; closes #1142

pull/1128/head
Cory LaViska 2023-01-23 10:51:24 -05:00
rodzic 7c3896ed42
commit e9aca6cedb
2 zmienionych plików z 11 dodań i 8 usunięć

Wyświetl plik

@ -17,6 +17,7 @@ New versions of Shoelace are released as-needed and generally occur when a criti
- Added the `form` attribute to all form controls to allow placing them outside of a `<form>` element [#1130](https://github.com/shoelace-style/shoelace/issues/1130)
- Added the `getFormControls()` function as an alternative to `HTMLFormElement.elements`
- Added missing docs for the `header-actions` slot in `<sl-dialog>` and `<sl-drawer>`
- Added `hue-slider-handle` and `opacity-slider-handle` parts to `<sl-color-picker>` and correct other part names in the docs [#1142](https://github.com/shoelace-style/shoelace/issues/1142)
- Fixed a bug in `<sl-select>` that prevented placeholders from showing when `multiple` was used [#1109](https://github.com/shoelace-style/shoelace/issues/1109)
- Fixed a bug in `<sl-select>` that caused tags to not be rounded when using the `pill` attribute [#1117](https://github.com/shoelace-style/shoelace/issues/1117)
- Fixed a bug in `<sl-select>` where the `sl-change` and `sl-input` events didn't weren't emitted when removing tags [#1119](https://github.com/shoelace-style/shoelace/issues/1119)

Wyświetl plik

@ -58,23 +58,25 @@ declare const EyeDropper: EyeDropperConstructor;
* @csspart swatch - Each individual swatch.
* @csspart grid - The color grid.
* @csspart grid-handle - The color grid's handle.
* @csspart hue-slider - The hue slider.
* @csspart opacity-slider - The opacity slider.
* @csspart slider - Hue and opacity sliders.
* @csspart slider-handle - Hue and opacity slider handles.
* @csspart hue-slider - The hue slider.
* @csspart hue-slider-handle - The hue slider's handle.
* @csspart opacity-slider - The opacity slider.
* @csspart opacity-slider-handle - The opacity slider's handle.
* @csspart preview - The preview color.
* @csspart input - The text input.
* @csspart eye-dropper-button - The eye dropper button.
* @csspart eye-dropper-button__button - The eye dropper button's exported `button` part.
* @csspart eye-dropper-button__base - The eye dropper button's exported `button` part.
* @csspart eye-dropper-button__prefix - The eye dropper button's exported `prefix` part.
* @csspart eye-dropper-button__label - The eye dropper button's exported `label` part.
* @csspart eye-dropper-button__button-suffix - The eye dropper button's exported `suffix` part.
* @csspart eye-dropper-button__suffix - The eye dropper button's exported `suffix` part.
* @csspart eye-dropper-button__caret - The eye dropper button's exported `caret` part.
* @csspart format-button - The format button.
* @csspart format-button__button - The format button's exported `button` part.
* @csspart format-button__base - The format button's exported `button` part.
* @csspart format-button__prefix - The format button's exported `prefix` part.
* @csspart format-button__label - The format button's exported `label` part.
* @csspart format-button__button-suffix - The format button's exported `suffix` part.
* @csspart format-button__suffix - The format button's exported `suffix` part.
* @csspart format-button__caret - The format button's exported `caret` part.
*
* @cssproperty --grid-width - The width of the color grid.
@ -759,7 +761,7 @@ export default class SlColorPicker extends ShoelaceElement implements ShoelaceFo
@touchmove=${this.handleTouchMove}
>
<span
part="slider-handle"
part="slider-handle hue-slider-handle"
class="color-picker__slider-handle"
style=${styleMap({
left: `${this.hue === 0 ? 0 : 100 / (360 / this.hue)}%`
@ -794,7 +796,7 @@ export default class SlColorPicker extends ShoelaceElement implements ShoelaceFo
})}
></div>
<span
part="slider-handle"
part="slider-handle opacity-slider-handle"
class="color-picker__slider-handle"
style=${styleMap({
left: `${this.alpha}%`