1
0
mirror of https://github.com/home-assistant/frontend.git synced 2025-12-20 02:38:53 +00:00

device selector - add missing disabled & helper (#28576)

* device selector - add missing disabled & helper

* more
This commit is contained in:
karwosts
2025-12-16 21:39:50 -08:00
committed by GitHub
parent 88faedba65
commit 9b6ebdfcc0
5 changed files with 8 additions and 0 deletions

View File

@@ -205,6 +205,8 @@ export class HaDevicePicker extends LitElement {
<ha-generic-picker
.hass=${this.hass}
.autofocus=${this.autofocus}
.disabled=${this.disabled}
.helper=${this.helper}
.label=${this.label}
.searchLabel=${this.searchLabel}
.notFoundLabel=${this._notFoundLabel}

View File

@@ -472,6 +472,7 @@ export class HaStatisticPicker extends LitElement {
.autofocus=${this.autofocus}
.allowCustomValue=${this.allowCustomEntity}
.label=${this.label}
.disabled=${this.disabled}
.notFoundLabel=${this._notFoundLabel}
.emptyLabel=${this.hass.localize(
"ui.components.statistic-picker.no_statistics"

View File

@@ -390,6 +390,8 @@ export class HaFloorPicker extends LitElement {
.hass=${this.hass}
.autofocus=${this.autofocus}
.label=${this.label}
.helper=${this.helper}
.disabled=${this.disabled}
.notFoundLabel=${this._notFoundLabel}
.emptyLabel=${this.hass.localize(
"ui.components.floor-picker.no_floors"

View File

@@ -227,6 +227,7 @@ export class HaLabelPicker extends SubscribeMixin(LitElement) {
.hass=${this.hass}
.autofocus=${this.autofocus}
.label=${this.label}
.helper=${this.helper}
.notFoundLabel=${this._notFoundLabel}
.emptyLabel=${this.hass.localize(
"ui.components.label-picker.no_labels"

View File

@@ -36,6 +36,7 @@ export class HaLabelSelector extends LitElement {
.required=${this.required}
.disabled=${this.disabled}
.label=${this.label}
.helper=${this.helper}
@value-changed=${this._handleChange}
>
</ha-labels-picker>
@@ -49,6 +50,7 @@ export class HaLabelSelector extends LitElement {
.required=${this.required}
.disabled=${this.disabled}
.label=${this.label}
.helper=${this.helper}
@value-changed=${this._handleChange}
>
</ha-label-picker>