@descope-ui/descope-combo-box 2.1.15 → 2.1.16
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 +6 -6
- package/src/component/ComboBoxClass.js +1 -1
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
|
+
## [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)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* 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))
|
|
11
|
+
|
|
5
12
|
## [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
13
|
|
|
7
14
|
## [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.
|
|
3
|
+
"version": "2.1.16",
|
|
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.
|
|
18
|
-
"test-drivers": "2.1.
|
|
17
|
+
"e2e-utils": "2.1.16",
|
|
18
|
+
"test-drivers": "2.1.16"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@vaadin/combo-box": "24.3.4",
|
|
22
|
-
"@descope-ui/common": "2.1.
|
|
23
|
-
"@descope-ui/theme-globals": "2.1.
|
|
24
|
-
"@descope-ui/theme-input-wrapper": "2.1.
|
|
22
|
+
"@descope-ui/common": "2.1.16",
|
|
23
|
+
"@descope-ui/theme-globals": "2.1.16",
|
|
24
|
+
"@descope-ui/theme-input-wrapper": "2.1.16"
|
|
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
|
}),
|