@vaadin/email-field 25.2.7 → 25.3.0-alpha10
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 +67 -4
- package/package.json +9 -9
- package/src/vaadin-email-field.js +3 -1
- package/web-types.json +42 -8
- package/web-types.lit.json +17 -3
package/custom-elements.json
CHANGED
|
@@ -26,6 +26,20 @@
|
|
|
26
26
|
"description": "`<vaadin-email-field>` is a Web Component for email field control in forms.\n\n```html\n<vaadin-email-field label=\"Email\"></vaadin-email-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.",
|
|
27
27
|
"name": "EmailField",
|
|
28
28
|
"members": [
|
|
29
|
+
{
|
|
30
|
+
"kind": "field",
|
|
31
|
+
"name": "accessibleDescriptionRef",
|
|
32
|
+
"privacy": "public",
|
|
33
|
+
"type": {
|
|
34
|
+
"text": "string"
|
|
35
|
+
},
|
|
36
|
+
"description": "A space-separated list of IDs referencing the elements that\ndescribe the component for screen reader users. The referenced\nelements are announced in addition to the helper text and\nthe error message.",
|
|
37
|
+
"attribute": "accessible-description-ref",
|
|
38
|
+
"inheritedFrom": {
|
|
39
|
+
"name": "FieldMixin",
|
|
40
|
+
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
29
43
|
{
|
|
30
44
|
"kind": "field",
|
|
31
45
|
"name": "accessibleName",
|
|
@@ -33,7 +47,7 @@
|
|
|
33
47
|
"type": {
|
|
34
48
|
"text": "string"
|
|
35
49
|
},
|
|
36
|
-
"description": "String used to label the component
|
|
50
|
+
"description": "String used to label the component for screen reader users.",
|
|
37
51
|
"attribute": "accessible-name",
|
|
38
52
|
"inheritedFrom": {
|
|
39
53
|
"name": "FieldMixin",
|
|
@@ -47,7 +61,7 @@
|
|
|
47
61
|
"type": {
|
|
48
62
|
"text": "string"
|
|
49
63
|
},
|
|
50
|
-
"description": "
|
|
64
|
+
"description": "A space-separated list of IDs referencing the elements that\nlabel the component for screen reader users.",
|
|
51
65
|
"attribute": "accessible-name-ref",
|
|
52
66
|
"inheritedFrom": {
|
|
53
67
|
"name": "FieldMixin",
|
|
@@ -217,6 +231,20 @@
|
|
|
217
231
|
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
218
232
|
}
|
|
219
233
|
},
|
|
234
|
+
{
|
|
235
|
+
"kind": "field",
|
|
236
|
+
"name": "inputMode",
|
|
237
|
+
"privacy": "public",
|
|
238
|
+
"type": {
|
|
239
|
+
"text": "string"
|
|
240
|
+
},
|
|
241
|
+
"description": "A hint to the browser about the type of virtual keyboard to display\nwhen the user interacts with the field on a mobile device.\nList of available options at:\nhttps://developer.mozilla.org/en/docs/Web/HTML/Global_attributes/inputmode",
|
|
242
|
+
"attribute": "inputmode",
|
|
243
|
+
"inheritedFrom": {
|
|
244
|
+
"name": "TextFieldMixin",
|
|
245
|
+
"package": "@vaadin/text-field/src/vaadin-text-field-mixin.js"
|
|
246
|
+
}
|
|
247
|
+
},
|
|
220
248
|
{
|
|
221
249
|
"kind": "field",
|
|
222
250
|
"name": "invalid",
|
|
@@ -465,12 +493,24 @@
|
|
|
465
493
|
"tagName": "vaadin-email-field",
|
|
466
494
|
"customElement": true,
|
|
467
495
|
"attributes": [
|
|
496
|
+
{
|
|
497
|
+
"name": "accessible-description-ref",
|
|
498
|
+
"type": {
|
|
499
|
+
"text": "string"
|
|
500
|
+
},
|
|
501
|
+
"description": "A space-separated list of IDs referencing the elements that\ndescribe the component for screen reader users. The referenced\nelements are announced in addition to the helper text and\nthe error message.",
|
|
502
|
+
"fieldName": "accessibleDescriptionRef",
|
|
503
|
+
"inheritedFrom": {
|
|
504
|
+
"name": "FieldMixin",
|
|
505
|
+
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
506
|
+
}
|
|
507
|
+
},
|
|
468
508
|
{
|
|
469
509
|
"name": "accessible-name",
|
|
470
510
|
"type": {
|
|
471
511
|
"text": "string"
|
|
472
512
|
},
|
|
473
|
-
"description": "String used to label the component
|
|
513
|
+
"description": "String used to label the component for screen reader users.",
|
|
474
514
|
"fieldName": "accessibleName",
|
|
475
515
|
"inheritedFrom": {
|
|
476
516
|
"name": "FieldMixin",
|
|
@@ -482,7 +522,7 @@
|
|
|
482
522
|
"type": {
|
|
483
523
|
"text": "string"
|
|
484
524
|
},
|
|
485
|
-
"description": "
|
|
525
|
+
"description": "A space-separated list of IDs referencing the elements that\nlabel the component for screen reader users.",
|
|
486
526
|
"fieldName": "accessibleNameRef",
|
|
487
527
|
"inheritedFrom": {
|
|
488
528
|
"name": "FieldMixin",
|
|
@@ -609,6 +649,18 @@
|
|
|
609
649
|
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
610
650
|
}
|
|
611
651
|
},
|
|
652
|
+
{
|
|
653
|
+
"name": "inputmode",
|
|
654
|
+
"type": {
|
|
655
|
+
"text": "string"
|
|
656
|
+
},
|
|
657
|
+
"description": "A hint to the browser about the type of virtual keyboard to display\nwhen the user interacts with the field on a mobile device.\nList of available options at:\nhttps://developer.mozilla.org/en/docs/Web/HTML/Global_attributes/inputmode",
|
|
658
|
+
"fieldName": "inputMode",
|
|
659
|
+
"inheritedFrom": {
|
|
660
|
+
"name": "TextFieldMixin",
|
|
661
|
+
"package": "@vaadin/text-field/src/vaadin-text-field-mixin.js"
|
|
662
|
+
}
|
|
663
|
+
},
|
|
612
664
|
{
|
|
613
665
|
"name": "invalid",
|
|
614
666
|
"type": {
|
|
@@ -729,6 +781,17 @@
|
|
|
729
781
|
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
730
782
|
}
|
|
731
783
|
},
|
|
784
|
+
{
|
|
785
|
+
"type": {
|
|
786
|
+
"text": "string"
|
|
787
|
+
},
|
|
788
|
+
"description": "The theme variants to apply to the component.",
|
|
789
|
+
"name": "theme",
|
|
790
|
+
"inheritedFrom": {
|
|
791
|
+
"name": "TextField",
|
|
792
|
+
"package": "@vaadin/text-field/src/vaadin-text-field.js"
|
|
793
|
+
}
|
|
794
|
+
},
|
|
732
795
|
{
|
|
733
796
|
"name": "title",
|
|
734
797
|
"type": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/email-field",
|
|
3
|
-
"version": "25.
|
|
3
|
+
"version": "25.3.0-alpha10",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -34,17 +34,17 @@
|
|
|
34
34
|
"web-component"
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@vaadin/component-base": "
|
|
38
|
-
"@vaadin/text-field": "
|
|
39
|
-
"@vaadin/vaadin-themable-mixin": "
|
|
37
|
+
"@vaadin/component-base": "25.3.0-alpha10",
|
|
38
|
+
"@vaadin/text-field": "25.3.0-alpha10",
|
|
39
|
+
"@vaadin/vaadin-themable-mixin": "25.3.0-alpha10",
|
|
40
40
|
"lit": "^3.0.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@vaadin/aura": "
|
|
44
|
-
"@vaadin/chai-plugins": "
|
|
45
|
-
"@vaadin/test-runner-commands": "
|
|
43
|
+
"@vaadin/aura": "25.3.0-alpha10",
|
|
44
|
+
"@vaadin/chai-plugins": "25.3.0-alpha10",
|
|
45
|
+
"@vaadin/test-runner-commands": "25.3.0-alpha10",
|
|
46
46
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
47
|
-
"@vaadin/vaadin-lumo-styles": "
|
|
47
|
+
"@vaadin/vaadin-lumo-styles": "25.3.0-alpha10",
|
|
48
48
|
"sinon": "^22.0.0"
|
|
49
49
|
},
|
|
50
50
|
"customElements": "custom-elements.json",
|
|
@@ -52,5 +52,5 @@
|
|
|
52
52
|
"web-types.json",
|
|
53
53
|
"web-types.lit.json"
|
|
54
54
|
],
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "f2833abdf9b613fa0d0ed216830e3f4de87b7dac"
|
|
56
56
|
}
|
|
@@ -96,7 +96,7 @@ import { emailFieldStyles } from './styles/vaadin-email-field-base-styles.js';
|
|
|
96
96
|
* @customElement vaadin-email-field
|
|
97
97
|
* @extends TextField
|
|
98
98
|
*/
|
|
99
|
-
|
|
99
|
+
class EmailField extends TextField {
|
|
100
100
|
static get is() {
|
|
101
101
|
return 'vaadin-email-field';
|
|
102
102
|
}
|
|
@@ -128,3 +128,5 @@ export class EmailField extends TextField {
|
|
|
128
128
|
}
|
|
129
129
|
|
|
130
130
|
defineCustomElement(EmailField);
|
|
131
|
+
|
|
132
|
+
export { EmailField };
|
package/web-types.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/web-types",
|
|
3
3
|
"name": "@vaadin/email-field",
|
|
4
|
-
"version": "25.
|
|
4
|
+
"version": "25.3.0-alpha10",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
@@ -10,9 +10,18 @@
|
|
|
10
10
|
"name": "vaadin-email-field",
|
|
11
11
|
"description": "`<vaadin-email-field>` is a Web Component for email field control in forms.\n\n```html\n<vaadin-email-field label=\"Email\"></vaadin-email-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
|
+
{
|
|
14
|
+
"name": "accessible-description-ref",
|
|
15
|
+
"description": "A space-separated list of IDs referencing the elements that\ndescribe the component for screen reader users. The referenced\nelements are announced in addition to the helper text and\nthe error message.",
|
|
16
|
+
"value": {
|
|
17
|
+
"type": [
|
|
18
|
+
"string"
|
|
19
|
+
]
|
|
20
|
+
}
|
|
21
|
+
},
|
|
13
22
|
{
|
|
14
23
|
"name": "accessible-name",
|
|
15
|
-
"description": "String used to label the component
|
|
24
|
+
"description": "String used to label the component for screen reader users.",
|
|
16
25
|
"value": {
|
|
17
26
|
"type": [
|
|
18
27
|
"string"
|
|
@@ -21,7 +30,7 @@
|
|
|
21
30
|
},
|
|
22
31
|
{
|
|
23
32
|
"name": "accessible-name-ref",
|
|
24
|
-
"description": "
|
|
33
|
+
"description": "A space-separated list of IDs referencing the elements that\nlabel the component for screen reader users.",
|
|
25
34
|
"value": {
|
|
26
35
|
"type": [
|
|
27
36
|
"string"
|
|
@@ -118,6 +127,15 @@
|
|
|
118
127
|
]
|
|
119
128
|
}
|
|
120
129
|
},
|
|
130
|
+
{
|
|
131
|
+
"name": "inputmode",
|
|
132
|
+
"description": "A hint to the browser about the type of virtual keyboard to display\nwhen the user interacts with the field on a mobile device.\nList of available options at:\nhttps://developer.mozilla.org/en/docs/Web/HTML/Global_attributes/inputmode",
|
|
133
|
+
"value": {
|
|
134
|
+
"type": [
|
|
135
|
+
"string"
|
|
136
|
+
]
|
|
137
|
+
}
|
|
138
|
+
},
|
|
121
139
|
{
|
|
122
140
|
"name": "invalid",
|
|
123
141
|
"description": "Set to true when the field is invalid.",
|
|
@@ -213,9 +231,7 @@
|
|
|
213
231
|
"description": "The theme variants to apply to the component.",
|
|
214
232
|
"value": {
|
|
215
233
|
"type": [
|
|
216
|
-
"string"
|
|
217
|
-
"null",
|
|
218
|
-
"undefined"
|
|
234
|
+
"string"
|
|
219
235
|
]
|
|
220
236
|
}
|
|
221
237
|
},
|
|
@@ -240,9 +256,18 @@
|
|
|
240
256
|
],
|
|
241
257
|
"js": {
|
|
242
258
|
"properties": [
|
|
259
|
+
{
|
|
260
|
+
"name": "accessibleDescriptionRef",
|
|
261
|
+
"description": "A space-separated list of IDs referencing the elements that\ndescribe the component for screen reader users. The referenced\nelements are announced in addition to the helper text and\nthe error message.",
|
|
262
|
+
"value": {
|
|
263
|
+
"type": [
|
|
264
|
+
"string"
|
|
265
|
+
]
|
|
266
|
+
}
|
|
267
|
+
},
|
|
243
268
|
{
|
|
244
269
|
"name": "accessibleName",
|
|
245
|
-
"description": "String used to label the component
|
|
270
|
+
"description": "String used to label the component for screen reader users.",
|
|
246
271
|
"value": {
|
|
247
272
|
"type": [
|
|
248
273
|
"string"
|
|
@@ -251,7 +276,7 @@
|
|
|
251
276
|
},
|
|
252
277
|
{
|
|
253
278
|
"name": "accessibleNameRef",
|
|
254
|
-
"description": "
|
|
279
|
+
"description": "A space-separated list of IDs referencing the elements that\nlabel the component for screen reader users.",
|
|
255
280
|
"value": {
|
|
256
281
|
"type": [
|
|
257
282
|
"string"
|
|
@@ -348,6 +373,15 @@
|
|
|
348
373
|
]
|
|
349
374
|
}
|
|
350
375
|
},
|
|
376
|
+
{
|
|
377
|
+
"name": "inputMode",
|
|
378
|
+
"description": "A hint to the browser about the type of virtual keyboard to display\nwhen the user interacts with the field on a mobile device.\nList of available options at:\nhttps://developer.mozilla.org/en/docs/Web/HTML/Global_attributes/inputmode",
|
|
379
|
+
"value": {
|
|
380
|
+
"type": [
|
|
381
|
+
"string"
|
|
382
|
+
]
|
|
383
|
+
}
|
|
384
|
+
},
|
|
351
385
|
{
|
|
352
386
|
"name": "invalid",
|
|
353
387
|
"description": "Set to true when the field is invalid.",
|
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/email-field",
|
|
4
|
-
"version": "25.
|
|
4
|
+
"version": "25.3.0-alpha10",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"framework": "lit",
|
|
7
7
|
"framework-config": {
|
|
@@ -19,16 +19,23 @@
|
|
|
19
19
|
"description": "`<vaadin-email-field>` is a Web Component for email field control in forms.\n\n```html\n<vaadin-email-field label=\"Email\"></vaadin-email-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
|
+
{
|
|
23
|
+
"name": ".accessibleDescriptionRef",
|
|
24
|
+
"description": "A space-separated list of IDs referencing the elements that\ndescribe the component for screen reader users. The referenced\nelements are announced in addition to the helper text and\nthe error message.",
|
|
25
|
+
"value": {
|
|
26
|
+
"kind": "expression"
|
|
27
|
+
}
|
|
28
|
+
},
|
|
22
29
|
{
|
|
23
30
|
"name": ".accessibleName",
|
|
24
|
-
"description": "String used to label the component
|
|
31
|
+
"description": "String used to label the component for screen reader users.",
|
|
25
32
|
"value": {
|
|
26
33
|
"kind": "expression"
|
|
27
34
|
}
|
|
28
35
|
},
|
|
29
36
|
{
|
|
30
37
|
"name": ".accessibleNameRef",
|
|
31
|
-
"description": "
|
|
38
|
+
"description": "A space-separated list of IDs referencing the elements that\nlabel the component for screen reader users.",
|
|
32
39
|
"value": {
|
|
33
40
|
"kind": "expression"
|
|
34
41
|
}
|
|
@@ -103,6 +110,13 @@
|
|
|
103
110
|
"kind": "expression"
|
|
104
111
|
}
|
|
105
112
|
},
|
|
113
|
+
{
|
|
114
|
+
"name": ".inputMode",
|
|
115
|
+
"description": "A hint to the browser about the type of virtual keyboard to display\nwhen the user interacts with the field on a mobile device.\nList of available options at:\nhttps://developer.mozilla.org/en/docs/Web/HTML/Global_attributes/inputmode",
|
|
116
|
+
"value": {
|
|
117
|
+
"kind": "expression"
|
|
118
|
+
}
|
|
119
|
+
},
|
|
106
120
|
{
|
|
107
121
|
"name": "?invalid",
|
|
108
122
|
"description": "Set to true when the field is invalid.",
|