@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.
- package/dist/all-components-bundle.js +9 -11
- 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 +8 -10
- 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 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
|
-
|
|
20545
|
-
|
|
20546
|
-
|
|
20547
|
-
|
|
20548
|
-
|
|
20549
|
-
|
|
20550
|
-
|
|
20551
|
-
|
|
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() {
|