@descope-ui/descope-combo-box 0.1.8 → 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 CHANGED
@@ -2,6 +2,20 @@
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
+
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)
13
+
14
+ ### Dependency Updates
15
+
16
+ * `@descope-ui/common` updated to version `0.0.18`
17
+ * `@descope-ui/theme-globals` updated to version `0.0.19`
18
+ * `@descope-ui/theme-input-wrapper` updated to version `0.1.8`
5
19
  ## [0.1.8](https://github.com/descope/web-components-ui/compare/@descope-ui/descope-combo-box-0.1.7...@descope-ui/descope-combo-box-0.1.8) (2025-07-15)
6
20
 
7
21
  ### Dependency Updates
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@descope-ui/descope-combo-box",
3
- "version": "0.1.8",
3
+ "version": "0.1.10",
4
4
  "exports": {
5
5
  ".": {
6
6
  "import": "./src/component/index.js"
@@ -19,9 +19,9 @@
19
19
  },
20
20
  "dependencies": {
21
21
  "@vaadin/combo-box": "24.3.4",
22
- "@descope-ui/common": "0.0.17",
23
- "@descope-ui/theme-globals": "0.0.18",
24
- "@descope-ui/theme-input-wrapper": "0.1.7"
22
+ "@descope-ui/common": "0.0.18",
23
+ "@descope-ui/theme-globals": "0.0.19",
24
+ "@descope-ui/theme-input-wrapper": "0.1.8"
25
25
  },
26
26
  "publishConfig": {
27
27
  "link-workspace-packages": false
@@ -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'],