@shoper/phoenix_design_system 1.15.6-0 → 1.15.6-2
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.
|
@@ -245,7 +245,7 @@ exports.HSelect = class HSelect extends phoenix_light_lit_element.PhoenixLightLi
|
|
|
245
245
|
this._optionsObserver = new observer.Observer((selectedOptions) => this._updateOptionsView(selectedOptions));
|
|
246
246
|
this._selectController.options$.subscribe(this._optionsObserver);
|
|
247
247
|
this._selectedOptionsAriaObserver = new observer.Observer((selectedOptions) => this._updateLabelAria(selectedOptions));
|
|
248
|
-
this._selectController.
|
|
248
|
+
this._selectController.selectedOptions$.subscribe(this._selectedOptionsAriaObserver);
|
|
249
249
|
this._updateOptions();
|
|
250
250
|
this._setupEvents();
|
|
251
251
|
}
|
|
@@ -241,7 +241,7 @@ let HSelect = class HSelect extends PhoenixLightLitElement {
|
|
|
241
241
|
this._optionsObserver = new Observer((selectedOptions) => this._updateOptionsView(selectedOptions));
|
|
242
242
|
this._selectController.options$.subscribe(this._optionsObserver);
|
|
243
243
|
this._selectedOptionsAriaObserver = new Observer((selectedOptions) => this._updateLabelAria(selectedOptions));
|
|
244
|
-
this._selectController.
|
|
244
|
+
this._selectController.selectedOptions$.subscribe(this._selectedOptionsAriaObserver);
|
|
245
245
|
this._updateOptions();
|
|
246
246
|
this._setupEvents();
|
|
247
247
|
}
|