@descope-ui/descope-combo-box 0.1.9 → 0.1.10
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/CHANGELOG.md +7 -0
- package/package.json +1 -1
- package/src/component/ComboBoxClass.js +8 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [0.1.10](https://github.com/descope/web-components-ui/compare/@descope-ui/descope-combo-box-0.1.9...@descope-ui/descope-combo-box-0.1.10) (2025-07-27)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* wait for combo box to be ready before overriding its internals ([#695](https://github.com/descope/web-components-ui/issues/695)) ([0723f17](https://github.com/descope/web-components-ui/commit/0723f173be7ecf29e2a4e7e79dea569ad744eed9))
|
|
11
|
+
|
|
5
12
|
## [0.1.9](https://github.com/descope/web-components-ui/compare/@descope-ui/descope-combo-box-0.1.8...@descope-ui/descope-combo-box-0.1.9) (2025-07-21)
|
|
6
13
|
|
|
7
14
|
### Dependency Updates
|
package/package.json
CHANGED
|
@@ -263,11 +263,17 @@ const ComboBoxMixin = (superclass) =>
|
|
|
263
263
|
return {};
|
|
264
264
|
};
|
|
265
265
|
|
|
266
|
-
this.setComboBoxDescriptor();
|
|
267
|
-
this.#overrideOverlaySettings();
|
|
268
266
|
this.#overrideRenderer();
|
|
269
267
|
this.#disableDataProviderFilterEventIfNeeded();
|
|
270
268
|
|
|
269
|
+
// This is a workaround for a problem we have in Console App, where in ScreenBuilder - the inputElement is not ready when trying to
|
|
270
|
+
// set the component's descriptor and override the overlay settings.
|
|
271
|
+
// THIS IS A PROBLEM WITH THE CONSOLE APP THAT NEEDS TO BE RESOLVED. Until then, we use this workaround.
|
|
272
|
+
setTimeout(() => {
|
|
273
|
+
this.setComboBoxDescriptor();
|
|
274
|
+
this.#overrideOverlaySettings();
|
|
275
|
+
});
|
|
276
|
+
|
|
271
277
|
// Set up observers - order matters here since renderItems can clear innerHTML
|
|
272
278
|
observeAttributes(this, this.renderItems.bind(this), {
|
|
273
279
|
includeAttrs: ['data'],
|