@descope-ui/descope-combo-box 0.1.10 → 0.1.12
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 +10 -0
- package/package.json +4 -4
- package/src/component/ComboBoxClass.js +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [0.1.12](https://github.com/descope/web-components-ui/compare/@descope-ui/descope-combo-box-0.1.11...@descope-ui/descope-combo-box-0.1.12) (2025-09-02)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
* `e2e-utils` updated to version `0.1.0`
|
|
10
|
+
* `@descope-ui/common` updated to version `0.1.0`
|
|
11
|
+
* `@descope-ui/theme-globals` updated to version `0.0.20`
|
|
12
|
+
* `@descope-ui/theme-input-wrapper` updated to version `0.1.9`
|
|
13
|
+
## [0.1.11](https://github.com/descope/web-components-ui/compare/@descope-ui/descope-combo-box-0.1.10...@descope-ui/descope-combo-box-0.1.11) (2025-08-10)
|
|
14
|
+
|
|
5
15
|
## [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
16
|
|
|
7
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@descope-ui/descope-combo-box",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.12",
|
|
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
|
|
23
|
-
"@descope-ui/theme-globals": "0.0.
|
|
24
|
-
"@descope-ui/theme-input-wrapper": "0.1.
|
|
22
|
+
"@descope-ui/common": "0.1.0",
|
|
23
|
+
"@descope-ui/theme-globals": "0.0.20",
|
|
24
|
+
"@descope-ui/theme-input-wrapper": "0.1.9"
|
|
25
25
|
},
|
|
26
26
|
"publishConfig": {
|
|
27
27
|
"link-workspace-packages": false
|
|
@@ -420,6 +420,7 @@ export const ComboBoxClass = compose(
|
|
|
420
420
|
labelFontWeight: { ...label, property: 'font-weight' },
|
|
421
421
|
labelTextColor: [
|
|
422
422
|
{ ...label, property: 'color' },
|
|
423
|
+
{ ...label, property: '-webkit-text-fill-color' },
|
|
423
424
|
{ ...requiredIndicator, property: 'color' },
|
|
424
425
|
],
|
|
425
426
|
errorMessageTextColor: { ...errorMessage, property: 'color' },
|