@ni/nimble-components 19.2.2 → 19.2.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.
@@ -16232,7 +16232,7 @@
16232
16232
 
16233
16233
  /**
16234
16234
  * Do not edit directly
16235
- * Generated on Mon, 12 Jun 2023 21:19:37 GMT
16235
+ * Generated on Tue, 13 Jun 2023 14:32:32 GMT
16236
16236
  */
16237
16237
  const Information100DarkUi = "#a46eff";
16238
16238
  const Information100LightUi = "#804ad9";
@@ -20541,16 +20541,14 @@
20541
20541
  // See: https://github.com/microsoft/fast/issues/6749
20542
20542
  set value(next) {
20543
20543
  super.value = next;
20544
- if (!this.valueUpdatedByInput) {
20545
- // Workaround using index notation to manipulate private member
20546
- // Can remove when following resolved: https://github.com/microsoft/fast/issues/6749
20547
- // eslint-disable-next-line @typescript-eslint/dot-notation
20548
- this['filter'] = '';
20549
- this.filterOptions();
20550
- this.selectedIndex = this.options
20551
- .map(option => option.text)
20552
- .indexOf(this.value);
20553
- }
20544
+ // Workaround using index notation to manipulate private member
20545
+ // Can remove when following resolved: https://github.com/microsoft/fast/issues/6749
20546
+ // eslint-disable-next-line @typescript-eslint/dot-notation
20547
+ this['filter'] = next;
20548
+ this.filterOptions();
20549
+ this.selectedIndex = this.options
20550
+ .map(option => option.text)
20551
+ .indexOf(this.value);
20554
20552
  }
20555
20553
  // Workaround for https://github.com/microsoft/fast/issues/5123
20556
20554
  setPositioning() {