@ni/nimble-components 19.4.4 → 19.4.5
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.
- package/dist/all-components-bundle.js +5 -1
- package/dist/all-components-bundle.js.map +1 -1
- package/dist/all-components-bundle.min.js +1 -1
- package/dist/all-components-bundle.min.js.map +1 -1
- package/dist/esm/combobox/index.js +4 -0
- package/dist/esm/combobox/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -16232,7 +16232,7 @@
|
|
|
16232
16232
|
|
|
16233
16233
|
/**
|
|
16234
16234
|
* Do not edit directly
|
|
16235
|
-
* Generated on
|
|
16235
|
+
* Generated on Thu, 13 Jul 2023 16:36:04 GMT
|
|
16236
16236
|
*/
|
|
16237
16237
|
const Information100DarkUi = "#a46eff";
|
|
16238
16238
|
const Information100LightUi = "#804ad9";
|
|
@@ -20623,6 +20623,10 @@
|
|
|
20623
20623
|
this.valueBeforeTextUpdate = this.value;
|
|
20624
20624
|
}
|
|
20625
20625
|
this.valueUpdatedByInput = true;
|
|
20626
|
+
// This is a workaround for this FAST issue: https://github.com/microsoft/fast/issues/6776
|
|
20627
|
+
if (this.value !== this.control.value) {
|
|
20628
|
+
this.focusAndScrollOptionIntoView();
|
|
20629
|
+
}
|
|
20626
20630
|
this.value = this.control.value;
|
|
20627
20631
|
return returnValue;
|
|
20628
20632
|
}
|