@descope-ui/descope-combo-box 2.1.15 → 2.1.17

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,15 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [2.1.17](https://github.com/descope/web-components-ui/compare/web-components-ui-2.1.16...web-components-ui-2.1.17) (2025-10-20)
6
+
7
+ ## [2.1.16](https://github.com/descope/web-components-ui/compare/web-components-ui-2.1.15...web-components-ui-2.1.16) (2025-10-19)
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * exclude style attr from proxy sync ([#755](https://github.com/descope/web-components-ui/issues/755)) ([ca0bd1e](https://github.com/descope/web-components-ui/commit/ca0bd1e2a4e07435eec492b08d366c02dd5d687c))
13
+
5
14
  ## [2.1.15](https://github.com/descope/web-components-ui/compare/web-components-ui-2.1.14...web-components-ui-2.1.15) (2025-10-16)
6
15
 
7
16
  ## [2.1.14](https://github.com/descope/web-components-ui/compare/web-components-ui-2.1.13...web-components-ui-2.1.14) (2025-10-12)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@descope-ui/descope-combo-box",
3
- "version": "2.1.15",
3
+ "version": "2.1.17",
4
4
  "exports": {
5
5
  ".": {
6
6
  "import": "./src/component/index.js"
@@ -14,14 +14,14 @@
14
14
  },
15
15
  "devDependencies": {
16
16
  "@playwright/test": "1.38.1",
17
- "e2e-utils": "2.1.15",
18
- "test-drivers": "2.1.15"
17
+ "e2e-utils": "2.1.17",
18
+ "test-drivers": "2.1.17"
19
19
  },
20
20
  "dependencies": {
21
21
  "@vaadin/combo-box": "24.3.4",
22
- "@descope-ui/common": "2.1.15",
23
- "@descope-ui/theme-globals": "2.1.15",
24
- "@descope-ui/theme-input-wrapper": "2.1.15"
22
+ "@descope-ui/common": "2.1.17",
23
+ "@descope-ui/theme-globals": "2.1.17",
24
+ "@descope-ui/theme-input-wrapper": "2.1.17"
25
25
  },
26
26
  "publishConfig": {
27
27
  "link-workspace-packages": false
@@ -676,7 +676,7 @@ export const ComboBoxClass = compose(
676
676
  // with the same name. Including it will cause Vaadin to calculate NaN size,
677
677
  // and reset items to an empty array, and opening the list box with no items
678
678
  // to display.
679
- excludeAttrsSync: ['tabindex', 'size', 'data', 'loading'],
679
+ excludeAttrsSync: ['tabindex', 'size', 'data', 'loading', 'style'],
680
680
  componentName,
681
681
  includeForwardProps: ['items', 'renderer', 'selectedItem'],
682
682
  }),