@vaadin/text-field 25.2.0-alpha11 → 25.2.0-alpha13
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/custom-elements.json +1 -1
- package/package.json +11 -11
- package/src/vaadin-text-field.d.ts +39 -6
- package/src/vaadin-text-field.js +39 -6
- package/web-types.json +2 -2
- package/web-types.lit.json +2 -2
package/custom-elements.json
CHANGED
|
@@ -718,7 +718,7 @@
|
|
|
718
718
|
"declarations": [
|
|
719
719
|
{
|
|
720
720
|
"kind": "class",
|
|
721
|
-
"description": "`<vaadin-text-field>` is a web component that allows the user to input and edit text.\n\n```html\n<vaadin-text-field label=\"First Name\"></vaadin-text-field>\n```\n\n### Prefixes and suffixes\n\nThese are child elements of a `<vaadin-text-field>` that are displayed\ninline with the input, before or after.\nIn order for an element to be considered as a prefix, it must have the slot\nattribute set to `prefix` (and similarly for `suffix`).\n\n```html\n<vaadin-text-field label=\"Email address\">\n <div slot=\"prefix\">Sent to:</div>\n <div slot=\"suffix\">@vaadin.com</div>\n</vaadin-text-field>\n```\n\n### Styling\n\nThe following
|
|
721
|
+
"description": "`<vaadin-text-field>` is a web component that allows the user to input and edit text.\n\n```html\n<vaadin-text-field label=\"First Name\"></vaadin-text-field>\n```\n\n### Prefixes and suffixes\n\nThese are child elements of a `<vaadin-text-field>` that are displayed\ninline with the input, before or after.\nIn order for an element to be considered as a prefix, it must have the slot\nattribute set to `prefix` (and similarly for `suffix`).\n\n```html\n<vaadin-text-field label=\"Email address\">\n <div slot=\"prefix\">Sent to:</div>\n <div slot=\"suffix\">@vaadin.com</div>\n</vaadin-text-field>\n```\n\n### Styling\n\nThe following shadow DOM parts are available for styling:\n\nPart name | Description\n---------------------|----------------\n`label` | The label element\n`input-field` | The element that wraps prefix, value and suffix\n`field-button` | Set on the clear button\n`clear-button` | The clear button\n`error-message` | The error message element\n`helper-text` | The helper text element wrapper\n`required-indicator` | The `required` state indicator element\n\nThe following state attributes are available for styling:\n\nAttribute | Description\n---------------------|---------------------------------\n`disabled` | Set when the element is disabled\n`has-value` | Set when the element has a value\n`has-label` | Set when the element has a label\n`has-helper` | Set when the element has helper text or slot\n`has-error-message` | Set when the element has an error message\n`has-tooltip` | Set when the element has a slotted tooltip\n`invalid` | Set when the element is invalid\n`input-prevented` | Temporarily set when invalid input is prevented\n`focused` | Set when the element is focused\n`focus-ring` | Set when the element is keyboard focused\n`readonly` | Set when the element is readonly\n\nNote, the `input-prevented` state attribute is only supported when `allowedCharPattern` is set.\n\nThe following custom CSS properties are available for styling:\n\nCustom CSS property |\n:--------------------------------------------------|\n| `--vaadin-field-default-width` |\n| `--vaadin-input-field-background` |\n| `--vaadin-input-field-border-color` |\n| `--vaadin-input-field-border-radius` |\n| `--vaadin-input-field-border-width` |\n| `--vaadin-input-field-bottom-end-radius` |\n| `--vaadin-input-field-bottom-start-radius` |\n| `--vaadin-input-field-button-text-color` |\n| `--vaadin-input-field-container-gap` |\n| `--vaadin-input-field-disabled-background` |\n| `--vaadin-input-field-disabled-text-color` |\n| `--vaadin-input-field-error-color` |\n| `--vaadin-input-field-error-font-size` |\n| `--vaadin-input-field-error-font-weight` |\n| `--vaadin-input-field-error-line-height` |\n| `--vaadin-input-field-gap` |\n| `--vaadin-input-field-helper-color` |\n| `--vaadin-input-field-helper-font-size` |\n| `--vaadin-input-field-helper-font-weight` |\n| `--vaadin-input-field-helper-line-height` |\n| `--vaadin-input-field-label-color` |\n| `--vaadin-input-field-label-font-size` |\n| `--vaadin-input-field-label-font-weight` |\n| `--vaadin-input-field-label-line-height` |\n| `--vaadin-input-field-padding` |\n| `--vaadin-input-field-placeholder-color` |\n| `--vaadin-input-field-required-indicator` |\n| `--vaadin-input-field-required-indicator-color` |\n| `--vaadin-input-field-top-end-radius` |\n| `--vaadin-input-field-top-start-radius` |\n| `--vaadin-input-field-value-color` |\n| `--vaadin-input-field-value-font-size` |\n| `--vaadin-input-field-value-font-weight` |\n| `--vaadin-input-field-value-line-height` |\n\nSee [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.",
|
|
722
722
|
"name": "TextField",
|
|
723
723
|
"members": [
|
|
724
724
|
{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/text-field",
|
|
3
|
-
"version": "25.2.0-
|
|
3
|
+
"version": "25.2.0-alpha13",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -35,19 +35,19 @@
|
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
38
|
-
"@vaadin/a11y-base": "25.2.0-
|
|
39
|
-
"@vaadin/component-base": "25.2.0-
|
|
40
|
-
"@vaadin/field-base": "25.2.0-
|
|
41
|
-
"@vaadin/input-container": "25.2.0-
|
|
42
|
-
"@vaadin/vaadin-themable-mixin": "25.2.0-
|
|
38
|
+
"@vaadin/a11y-base": "25.2.0-alpha13",
|
|
39
|
+
"@vaadin/component-base": "25.2.0-alpha13",
|
|
40
|
+
"@vaadin/field-base": "25.2.0-alpha13",
|
|
41
|
+
"@vaadin/input-container": "25.2.0-alpha13",
|
|
42
|
+
"@vaadin/vaadin-themable-mixin": "25.2.0-alpha13",
|
|
43
43
|
"lit": "^3.0.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@vaadin/aura": "25.2.0-
|
|
47
|
-
"@vaadin/chai-plugins": "25.2.0-
|
|
48
|
-
"@vaadin/test-runner-commands": "25.2.0-
|
|
46
|
+
"@vaadin/aura": "25.2.0-alpha13",
|
|
47
|
+
"@vaadin/chai-plugins": "25.2.0-alpha13",
|
|
48
|
+
"@vaadin/test-runner-commands": "25.2.0-alpha13",
|
|
49
49
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
50
|
-
"@vaadin/vaadin-lumo-styles": "25.2.0-
|
|
50
|
+
"@vaadin/vaadin-lumo-styles": "25.2.0-alpha13",
|
|
51
51
|
"sinon": "^21.0.2"
|
|
52
52
|
},
|
|
53
53
|
"customElements": "custom-elements.json",
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
"web-types.json",
|
|
56
56
|
"web-types.lit.json"
|
|
57
57
|
],
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "a1052aee053529ffcef1a1e9be2c855ed3e98cb2"
|
|
59
59
|
}
|
|
@@ -64,12 +64,6 @@ export interface TextFieldEventMap extends HTMLElementEventMap, TextFieldCustomE
|
|
|
64
64
|
*
|
|
65
65
|
* ### Styling
|
|
66
66
|
*
|
|
67
|
-
* The following custom properties are available for styling:
|
|
68
|
-
*
|
|
69
|
-
* Custom property | Description | Default
|
|
70
|
-
* -------------------------------|----------------------------|---------
|
|
71
|
-
* `--vaadin-field-default-width` | Default width of the field | `12em`
|
|
72
|
-
*
|
|
73
67
|
* The following shadow DOM parts are available for styling:
|
|
74
68
|
*
|
|
75
69
|
* Part name | Description
|
|
@@ -100,6 +94,45 @@ export interface TextFieldEventMap extends HTMLElementEventMap, TextFieldCustomE
|
|
|
100
94
|
*
|
|
101
95
|
* Note, the `input-prevented` state attribute is only supported when `allowedCharPattern` is set.
|
|
102
96
|
*
|
|
97
|
+
* The following custom CSS properties are available for styling:
|
|
98
|
+
*
|
|
99
|
+
* Custom CSS property |
|
|
100
|
+
* :--------------------------------------------------|
|
|
101
|
+
* | `--vaadin-field-default-width` |
|
|
102
|
+
* | `--vaadin-input-field-background` |
|
|
103
|
+
* | `--vaadin-input-field-border-color` |
|
|
104
|
+
* | `--vaadin-input-field-border-radius` |
|
|
105
|
+
* | `--vaadin-input-field-border-width` |
|
|
106
|
+
* | `--vaadin-input-field-bottom-end-radius` |
|
|
107
|
+
* | `--vaadin-input-field-bottom-start-radius` |
|
|
108
|
+
* | `--vaadin-input-field-button-text-color` |
|
|
109
|
+
* | `--vaadin-input-field-container-gap` |
|
|
110
|
+
* | `--vaadin-input-field-disabled-background` |
|
|
111
|
+
* | `--vaadin-input-field-disabled-text-color` |
|
|
112
|
+
* | `--vaadin-input-field-error-color` |
|
|
113
|
+
* | `--vaadin-input-field-error-font-size` |
|
|
114
|
+
* | `--vaadin-input-field-error-font-weight` |
|
|
115
|
+
* | `--vaadin-input-field-error-line-height` |
|
|
116
|
+
* | `--vaadin-input-field-gap` |
|
|
117
|
+
* | `--vaadin-input-field-helper-color` |
|
|
118
|
+
* | `--vaadin-input-field-helper-font-size` |
|
|
119
|
+
* | `--vaadin-input-field-helper-font-weight` |
|
|
120
|
+
* | `--vaadin-input-field-helper-line-height` |
|
|
121
|
+
* | `--vaadin-input-field-label-color` |
|
|
122
|
+
* | `--vaadin-input-field-label-font-size` |
|
|
123
|
+
* | `--vaadin-input-field-label-font-weight` |
|
|
124
|
+
* | `--vaadin-input-field-label-line-height` |
|
|
125
|
+
* | `--vaadin-input-field-padding` |
|
|
126
|
+
* | `--vaadin-input-field-placeholder-color` |
|
|
127
|
+
* | `--vaadin-input-field-required-indicator` |
|
|
128
|
+
* | `--vaadin-input-field-required-indicator-color` |
|
|
129
|
+
* | `--vaadin-input-field-top-end-radius` |
|
|
130
|
+
* | `--vaadin-input-field-top-start-radius` |
|
|
131
|
+
* | `--vaadin-input-field-value-color` |
|
|
132
|
+
* | `--vaadin-input-field-value-font-size` |
|
|
133
|
+
* | `--vaadin-input-field-value-font-weight` |
|
|
134
|
+
* | `--vaadin-input-field-value-line-height` |
|
|
135
|
+
*
|
|
103
136
|
* See [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.
|
|
104
137
|
*
|
|
105
138
|
* @fires {Event} input - Fired when the value is changed by the user: on every typing keystroke, and the value is cleared using the clear button.
|
package/src/vaadin-text-field.js
CHANGED
|
@@ -38,12 +38,6 @@ import { TextFieldMixin } from './vaadin-text-field-mixin.js';
|
|
|
38
38
|
*
|
|
39
39
|
* ### Styling
|
|
40
40
|
*
|
|
41
|
-
* The following custom properties are available for styling:
|
|
42
|
-
*
|
|
43
|
-
* Custom property | Description | Default
|
|
44
|
-
* -------------------------------|----------------------------|---------
|
|
45
|
-
* `--vaadin-field-default-width` | Default width of the field | `12em`
|
|
46
|
-
*
|
|
47
41
|
* The following shadow DOM parts are available for styling:
|
|
48
42
|
*
|
|
49
43
|
* Part name | Description
|
|
@@ -74,6 +68,45 @@ import { TextFieldMixin } from './vaadin-text-field-mixin.js';
|
|
|
74
68
|
*
|
|
75
69
|
* Note, the `input-prevented` state attribute is only supported when `allowedCharPattern` is set.
|
|
76
70
|
*
|
|
71
|
+
* The following custom CSS properties are available for styling:
|
|
72
|
+
*
|
|
73
|
+
* Custom CSS property |
|
|
74
|
+
* :--------------------------------------------------|
|
|
75
|
+
* | `--vaadin-field-default-width` |
|
|
76
|
+
* | `--vaadin-input-field-background` |
|
|
77
|
+
* | `--vaadin-input-field-border-color` |
|
|
78
|
+
* | `--vaadin-input-field-border-radius` |
|
|
79
|
+
* | `--vaadin-input-field-border-width` |
|
|
80
|
+
* | `--vaadin-input-field-bottom-end-radius` |
|
|
81
|
+
* | `--vaadin-input-field-bottom-start-radius` |
|
|
82
|
+
* | `--vaadin-input-field-button-text-color` |
|
|
83
|
+
* | `--vaadin-input-field-container-gap` |
|
|
84
|
+
* | `--vaadin-input-field-disabled-background` |
|
|
85
|
+
* | `--vaadin-input-field-disabled-text-color` |
|
|
86
|
+
* | `--vaadin-input-field-error-color` |
|
|
87
|
+
* | `--vaadin-input-field-error-font-size` |
|
|
88
|
+
* | `--vaadin-input-field-error-font-weight` |
|
|
89
|
+
* | `--vaadin-input-field-error-line-height` |
|
|
90
|
+
* | `--vaadin-input-field-gap` |
|
|
91
|
+
* | `--vaadin-input-field-helper-color` |
|
|
92
|
+
* | `--vaadin-input-field-helper-font-size` |
|
|
93
|
+
* | `--vaadin-input-field-helper-font-weight` |
|
|
94
|
+
* | `--vaadin-input-field-helper-line-height` |
|
|
95
|
+
* | `--vaadin-input-field-label-color` |
|
|
96
|
+
* | `--vaadin-input-field-label-font-size` |
|
|
97
|
+
* | `--vaadin-input-field-label-font-weight` |
|
|
98
|
+
* | `--vaadin-input-field-label-line-height` |
|
|
99
|
+
* | `--vaadin-input-field-padding` |
|
|
100
|
+
* | `--vaadin-input-field-placeholder-color` |
|
|
101
|
+
* | `--vaadin-input-field-required-indicator` |
|
|
102
|
+
* | `--vaadin-input-field-required-indicator-color` |
|
|
103
|
+
* | `--vaadin-input-field-top-end-radius` |
|
|
104
|
+
* | `--vaadin-input-field-top-start-radius` |
|
|
105
|
+
* | `--vaadin-input-field-value-color` |
|
|
106
|
+
* | `--vaadin-input-field-value-font-size` |
|
|
107
|
+
* | `--vaadin-input-field-value-font-weight` |
|
|
108
|
+
* | `--vaadin-input-field-value-line-height` |
|
|
109
|
+
*
|
|
77
110
|
* See [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.
|
|
78
111
|
*
|
|
79
112
|
* @fires {Event} input - Fired when the value is changed by the user: on every typing keystroke, and the value is cleared using the clear button.
|
package/web-types.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/web-types",
|
|
3
3
|
"name": "@vaadin/text-field",
|
|
4
|
-
"version": "25.2.0-
|
|
4
|
+
"version": "25.2.0-alpha13",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"elements": [
|
|
9
9
|
{
|
|
10
10
|
"name": "vaadin-text-field",
|
|
11
|
-
"description": "`<vaadin-text-field>` is a web component that allows the user to input and edit text.\n\n```html\n<vaadin-text-field label=\"First Name\"></vaadin-text-field>\n```\n\n### Prefixes and suffixes\n\nThese are child elements of a `<vaadin-text-field>` that are displayed\ninline with the input, before or after.\nIn order for an element to be considered as a prefix, it must have the slot\nattribute set to `prefix` (and similarly for `suffix`).\n\n```html\n<vaadin-text-field label=\"Email address\">\n <div slot=\"prefix\">Sent to:</div>\n <div slot=\"suffix\">@vaadin.com</div>\n</vaadin-text-field>\n```\n\n### Styling\n\nThe following
|
|
11
|
+
"description": "`<vaadin-text-field>` is a web component that allows the user to input and edit text.\n\n```html\n<vaadin-text-field label=\"First Name\"></vaadin-text-field>\n```\n\n### Prefixes and suffixes\n\nThese are child elements of a `<vaadin-text-field>` that are displayed\ninline with the input, before or after.\nIn order for an element to be considered as a prefix, it must have the slot\nattribute set to `prefix` (and similarly for `suffix`).\n\n```html\n<vaadin-text-field label=\"Email address\">\n <div slot=\"prefix\">Sent to:</div>\n <div slot=\"suffix\">@vaadin.com</div>\n</vaadin-text-field>\n```\n\n### Styling\n\nThe following shadow DOM parts are available for styling:\n\nPart name | Description\n---------------------|----------------\n`label` | The label element\n`input-field` | The element that wraps prefix, value and suffix\n`field-button` | Set on the clear button\n`clear-button` | The clear button\n`error-message` | The error message element\n`helper-text` | The helper text element wrapper\n`required-indicator` | The `required` state indicator element\n\nThe following state attributes are available for styling:\n\nAttribute | Description\n---------------------|---------------------------------\n`disabled` | Set when the element is disabled\n`has-value` | Set when the element has a value\n`has-label` | Set when the element has a label\n`has-helper` | Set when the element has helper text or slot\n`has-error-message` | Set when the element has an error message\n`has-tooltip` | Set when the element has a slotted tooltip\n`invalid` | Set when the element is invalid\n`input-prevented` | Temporarily set when invalid input is prevented\n`focused` | Set when the element is focused\n`focus-ring` | Set when the element is keyboard focused\n`readonly` | Set when the element is readonly\n\nNote, the `input-prevented` state attribute is only supported when `allowedCharPattern` is set.\n\nThe following custom CSS properties are available for styling:\n\nCustom CSS property |\n:--------------------------------------------------|\n| `--vaadin-field-default-width` |\n| `--vaadin-input-field-background` |\n| `--vaadin-input-field-border-color` |\n| `--vaadin-input-field-border-radius` |\n| `--vaadin-input-field-border-width` |\n| `--vaadin-input-field-bottom-end-radius` |\n| `--vaadin-input-field-bottom-start-radius` |\n| `--vaadin-input-field-button-text-color` |\n| `--vaadin-input-field-container-gap` |\n| `--vaadin-input-field-disabled-background` |\n| `--vaadin-input-field-disabled-text-color` |\n| `--vaadin-input-field-error-color` |\n| `--vaadin-input-field-error-font-size` |\n| `--vaadin-input-field-error-font-weight` |\n| `--vaadin-input-field-error-line-height` |\n| `--vaadin-input-field-gap` |\n| `--vaadin-input-field-helper-color` |\n| `--vaadin-input-field-helper-font-size` |\n| `--vaadin-input-field-helper-font-weight` |\n| `--vaadin-input-field-helper-line-height` |\n| `--vaadin-input-field-label-color` |\n| `--vaadin-input-field-label-font-size` |\n| `--vaadin-input-field-label-font-weight` |\n| `--vaadin-input-field-label-line-height` |\n| `--vaadin-input-field-padding` |\n| `--vaadin-input-field-placeholder-color` |\n| `--vaadin-input-field-required-indicator` |\n| `--vaadin-input-field-required-indicator-color` |\n| `--vaadin-input-field-top-end-radius` |\n| `--vaadin-input-field-top-start-radius` |\n| `--vaadin-input-field-value-color` |\n| `--vaadin-input-field-value-font-size` |\n| `--vaadin-input-field-value-font-weight` |\n| `--vaadin-input-field-value-line-height` |\n\nSee [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.",
|
|
12
12
|
"attributes": [
|
|
13
13
|
{
|
|
14
14
|
"name": "accessible-name",
|
package/web-types.lit.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/web-types",
|
|
3
3
|
"name": "@vaadin/text-field",
|
|
4
|
-
"version": "25.2.0-
|
|
4
|
+
"version": "25.2.0-alpha13",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"framework": "lit",
|
|
7
7
|
"framework-config": {
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"elements": [
|
|
17
17
|
{
|
|
18
18
|
"name": "vaadin-text-field",
|
|
19
|
-
"description": "`<vaadin-text-field>` is a web component that allows the user to input and edit text.\n\n```html\n<vaadin-text-field label=\"First Name\"></vaadin-text-field>\n```\n\n### Prefixes and suffixes\n\nThese are child elements of a `<vaadin-text-field>` that are displayed\ninline with the input, before or after.\nIn order for an element to be considered as a prefix, it must have the slot\nattribute set to `prefix` (and similarly for `suffix`).\n\n```html\n<vaadin-text-field label=\"Email address\">\n <div slot=\"prefix\">Sent to:</div>\n <div slot=\"suffix\">@vaadin.com</div>\n</vaadin-text-field>\n```\n\n### Styling\n\nThe following
|
|
19
|
+
"description": "`<vaadin-text-field>` is a web component that allows the user to input and edit text.\n\n```html\n<vaadin-text-field label=\"First Name\"></vaadin-text-field>\n```\n\n### Prefixes and suffixes\n\nThese are child elements of a `<vaadin-text-field>` that are displayed\ninline with the input, before or after.\nIn order for an element to be considered as a prefix, it must have the slot\nattribute set to `prefix` (and similarly for `suffix`).\n\n```html\n<vaadin-text-field label=\"Email address\">\n <div slot=\"prefix\">Sent to:</div>\n <div slot=\"suffix\">@vaadin.com</div>\n</vaadin-text-field>\n```\n\n### Styling\n\nThe following shadow DOM parts are available for styling:\n\nPart name | Description\n---------------------|----------------\n`label` | The label element\n`input-field` | The element that wraps prefix, value and suffix\n`field-button` | Set on the clear button\n`clear-button` | The clear button\n`error-message` | The error message element\n`helper-text` | The helper text element wrapper\n`required-indicator` | The `required` state indicator element\n\nThe following state attributes are available for styling:\n\nAttribute | Description\n---------------------|---------------------------------\n`disabled` | Set when the element is disabled\n`has-value` | Set when the element has a value\n`has-label` | Set when the element has a label\n`has-helper` | Set when the element has helper text or slot\n`has-error-message` | Set when the element has an error message\n`has-tooltip` | Set when the element has a slotted tooltip\n`invalid` | Set when the element is invalid\n`input-prevented` | Temporarily set when invalid input is prevented\n`focused` | Set when the element is focused\n`focus-ring` | Set when the element is keyboard focused\n`readonly` | Set when the element is readonly\n\nNote, the `input-prevented` state attribute is only supported when `allowedCharPattern` is set.\n\nThe following custom CSS properties are available for styling:\n\nCustom CSS property |\n:--------------------------------------------------|\n| `--vaadin-field-default-width` |\n| `--vaadin-input-field-background` |\n| `--vaadin-input-field-border-color` |\n| `--vaadin-input-field-border-radius` |\n| `--vaadin-input-field-border-width` |\n| `--vaadin-input-field-bottom-end-radius` |\n| `--vaadin-input-field-bottom-start-radius` |\n| `--vaadin-input-field-button-text-color` |\n| `--vaadin-input-field-container-gap` |\n| `--vaadin-input-field-disabled-background` |\n| `--vaadin-input-field-disabled-text-color` |\n| `--vaadin-input-field-error-color` |\n| `--vaadin-input-field-error-font-size` |\n| `--vaadin-input-field-error-font-weight` |\n| `--vaadin-input-field-error-line-height` |\n| `--vaadin-input-field-gap` |\n| `--vaadin-input-field-helper-color` |\n| `--vaadin-input-field-helper-font-size` |\n| `--vaadin-input-field-helper-font-weight` |\n| `--vaadin-input-field-helper-line-height` |\n| `--vaadin-input-field-label-color` |\n| `--vaadin-input-field-label-font-size` |\n| `--vaadin-input-field-label-font-weight` |\n| `--vaadin-input-field-label-line-height` |\n| `--vaadin-input-field-padding` |\n| `--vaadin-input-field-placeholder-color` |\n| `--vaadin-input-field-required-indicator` |\n| `--vaadin-input-field-required-indicator-color` |\n| `--vaadin-input-field-top-end-radius` |\n| `--vaadin-input-field-top-start-radius` |\n| `--vaadin-input-field-value-color` |\n| `--vaadin-input-field-value-font-size` |\n| `--vaadin-input-field-value-font-weight` |\n| `--vaadin-input-field-value-line-height` |\n\nSee [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.",
|
|
20
20
|
"extension": true,
|
|
21
21
|
"attributes": [
|
|
22
22
|
{
|