@descope-ui/descope-combo-box 0.0.12 → 0.1.0
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 +17 -0
- package/package.json +4 -4
- package/src/component/ComboBoxClass.js +1 -0
- package/src/theme.js +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [0.1.0](https://github.com/descope/web-components-ui/compare/@descope-ui/descope-combo-box-0.0.13...@descope-ui/descope-combo-box-0.1.0) (2025-05-12)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
* `@descope-ui/theme-input-wrapper` updated to version `0.1.0`
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* control inputs error font size ([#643](https://github.com/descope/web-components-ui/issues/643)) ([16309ab](https://github.com/descope/web-components-ui/commit/16309aba6626f72d2c7301864ea25e006b408af9))
|
|
14
|
+
|
|
15
|
+
## [0.0.13](https://github.com/descope/web-components-ui/compare/@descope-ui/descope-combo-box-0.0.12...@descope-ui/descope-combo-box-0.0.13) (2025-04-29)
|
|
16
|
+
|
|
17
|
+
### Dependency Updates
|
|
18
|
+
|
|
19
|
+
* `@descope-ui/common` updated to version `0.0.11`
|
|
20
|
+
* `@descope-ui/theme-globals` updated to version `0.0.11`
|
|
21
|
+
* `@descope-ui/theme-input-wrapper` updated to version `0.0.11`
|
|
5
22
|
## [0.0.12](https://github.com/descope/web-components-ui/compare/@descope-ui/descope-combo-box-0.0.11...@descope-ui/descope-combo-box-0.0.12) (2025-04-16)
|
|
6
23
|
|
|
7
24
|
### Dependency Updates
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@descope-ui/descope-combo-box",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0",
|
|
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.0
|
|
22
|
+
"@descope-ui/common": "0.0.11",
|
|
23
|
+
"@descope-ui/theme-globals": "0.0.11",
|
|
24
|
+
"@descope-ui/theme-input-wrapper": "0.1.0"
|
|
25
25
|
},
|
|
26
26
|
"publishConfig": {
|
|
27
27
|
"link-workspace-packages": false
|
|
@@ -431,6 +431,7 @@ export const ComboBoxClass = compose(
|
|
|
431
431
|
...errorMessage,
|
|
432
432
|
property: 'background-position',
|
|
433
433
|
},
|
|
434
|
+
errorMessageFontSize: { ...errorMessage, property: 'font-size' },
|
|
434
435
|
inputHeight: { ...inputField, property: 'height' },
|
|
435
436
|
inputBackgroundColor: { ...inputField, property: 'background-color' },
|
|
436
437
|
inputBorderColor: { ...inputField, property: 'border-color' },
|
package/src/theme.js
CHANGED
|
@@ -52,6 +52,7 @@ export const comboBox = {
|
|
|
52
52
|
[vars.errorMessageIconPadding]: refs.errorMessageIconPadding,
|
|
53
53
|
[vars.errorMessageIconRepeat]: refs.errorMessageIconRepeat,
|
|
54
54
|
[vars.errorMessageIconPosition]: refs.errorMessageIconPosition,
|
|
55
|
+
[vars.errorMessageFontSize]: refs.errorMessageFontSize,
|
|
55
56
|
|
|
56
57
|
_readonly: {
|
|
57
58
|
[vars.inputDropdownButtonCursor]: 'default',
|