@vaadin/custom-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.
@@ -26,6 +26,20 @@
26
26
  "description": "",
27
27
  "name": "CustomFieldMixin",
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 to screen reader users.",
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": "Id of the element used as label of the component to screen reader users.",
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",
@@ -237,12 +251,24 @@
237
251
  }
238
252
  ],
239
253
  "attributes": [
254
+ {
255
+ "name": "accessible-description-ref",
256
+ "type": {
257
+ "text": "string"
258
+ },
259
+ "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.",
260
+ "fieldName": "accessibleDescriptionRef",
261
+ "inheritedFrom": {
262
+ "name": "FieldMixin",
263
+ "package": "@vaadin/field-base/src/field-mixin.js"
264
+ }
265
+ },
240
266
  {
241
267
  "name": "accessible-name",
242
268
  "type": {
243
269
  "text": "string"
244
270
  },
245
- "description": "String used to label the component to screen reader users.",
271
+ "description": "String used to label the component for screen reader users.",
246
272
  "fieldName": "accessibleName",
247
273
  "inheritedFrom": {
248
274
  "name": "FieldMixin",
@@ -254,7 +280,7 @@
254
280
  "type": {
255
281
  "text": "string"
256
282
  },
257
- "description": "Id of the element used as label of the component to screen reader users.",
283
+ "description": "A space-separated list of IDs referencing the elements that\nlabel the component for screen reader users.",
258
284
  "fieldName": "accessibleNameRef",
259
285
  "inheritedFrom": {
260
286
  "name": "FieldMixin",
@@ -407,6 +433,20 @@
407
433
  "description": "`<vaadin-custom-field>` is a web component for wrapping multiple components as a single field.\n\n```html\n<vaadin-custom-field label=\"Appointment time\">\n <vaadin-date-picker></vaadin-date-picker>\n <vaadin-time-picker></vaadin-time-picker>\n</vaadin-custom-field>\n```\n\n### Styling\n\nThe following shadow DOM parts are available for styling:\n\nPart name | Description\n---------------------|----------------\n`label` | The slotted label element wrapper\n`helper-text` | The slotted helper text element wrapper\n`error-message` | The slotted error message element wrapper\n`required-indicator` | The `required` state indicator element\n`input-fields` | The slotted input elements wrapper\n\nThe following state attributes are available for styling:\n\nAttribute | Description\n--------------------|--------------------------------\n`invalid` | Set when the element is invalid\n`focused` | Set when the element is focused\n`has-label` | Set when the element has a label\n`has-value` | Set when the element has a value\n`has-helper` | Set when the element has helper text\n`has-error-message` | Set when the element has an error message\n`has-tooltip` | Set when the element has a slotted tooltip\n\nYou may also manually set `disabled` or `readonly` attribute on this component to make the label\npart look visually the same as on a `<vaadin-text-field>` when it is disabled or readonly.\n\nThe following custom CSS properties are available for styling:\n\nCustom CSS property |\n:--------------------------------------------------|\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-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-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-required-indicator-color` |\n| `--vaadin-input-field-required-indicator` |\n\nSee [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.",
408
434
  "name": "CustomField",
409
435
  "members": [
436
+ {
437
+ "kind": "field",
438
+ "name": "accessibleDescriptionRef",
439
+ "privacy": "public",
440
+ "type": {
441
+ "text": "string"
442
+ },
443
+ "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.",
444
+ "attribute": "accessible-description-ref",
445
+ "inheritedFrom": {
446
+ "name": "FieldMixin",
447
+ "package": "@vaadin/field-base/src/field-mixin.js"
448
+ }
449
+ },
410
450
  {
411
451
  "kind": "field",
412
452
  "name": "accessibleName",
@@ -414,7 +454,7 @@
414
454
  "type": {
415
455
  "text": "string"
416
456
  },
417
- "description": "String used to label the component to screen reader users.",
457
+ "description": "String used to label the component for screen reader users.",
418
458
  "attribute": "accessible-name",
419
459
  "inheritedFrom": {
420
460
  "name": "FieldMixin",
@@ -428,7 +468,7 @@
428
468
  "type": {
429
469
  "text": "string"
430
470
  },
431
- "description": "Id of the element used as label of the component to screen reader users.",
471
+ "description": "A space-separated list of IDs referencing the elements that\nlabel the component for screen reader users.",
432
472
  "attribute": "accessible-name-ref",
433
473
  "inheritedFrom": {
434
474
  "name": "FieldMixin",
@@ -653,41 +693,25 @@
653
693
  "name": "value-changed"
654
694
  }
655
695
  ],
656
- "mixins": [
657
- {
658
- "name": "CustomFieldMixin",
659
- "module": "src/vaadin-custom-field-mixin.js"
660
- },
661
- {
662
- "name": "ThemableMixin",
663
- "package": "@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js"
664
- },
665
- {
666
- "name": "ElementMixin",
667
- "package": "@vaadin/component-base/src/element-mixin.js"
668
- },
696
+ "attributes": [
669
697
  {
670
- "name": "PolylitMixin",
671
- "package": "@vaadin/component-base/src/polylit-mixin.js"
698
+ "name": "accessible-description-ref",
699
+ "type": {
700
+ "text": "string"
701
+ },
702
+ "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.",
703
+ "fieldName": "accessibleDescriptionRef",
704
+ "inheritedFrom": {
705
+ "name": "FieldMixin",
706
+ "package": "@vaadin/field-base/src/field-mixin.js"
707
+ }
672
708
  },
673
- {
674
- "name": "LumoInjectionMixin",
675
- "package": "@vaadin/vaadin-themable-mixin/lumo-injection-mixin.js"
676
- }
677
- ],
678
- "superclass": {
679
- "name": "LitElement",
680
- "package": "lit"
681
- },
682
- "tagName": "vaadin-custom-field",
683
- "customElement": true,
684
- "attributes": [
685
709
  {
686
710
  "name": "accessible-name",
687
711
  "type": {
688
712
  "text": "string"
689
713
  },
690
- "description": "String used to label the component to screen reader users.",
714
+ "description": "String used to label the component for screen reader users.",
691
715
  "fieldName": "accessibleName",
692
716
  "inheritedFrom": {
693
717
  "name": "FieldMixin",
@@ -699,7 +723,7 @@
699
723
  "type": {
700
724
  "text": "string"
701
725
  },
702
- "description": "Id of the element used as label of the component to screen reader users.",
726
+ "description": "A space-separated list of IDs referencing the elements that\nlabel the component for screen reader users.",
703
727
  "fieldName": "accessibleNameRef",
704
728
  "inheritedFrom": {
705
729
  "name": "FieldMixin",
@@ -814,6 +838,13 @@
814
838
  "package": "@vaadin/field-base/src/validate-mixin.js"
815
839
  }
816
840
  },
841
+ {
842
+ "type": {
843
+ "text": "string"
844
+ },
845
+ "description": "The theme variants to apply to the component.",
846
+ "name": "theme"
847
+ },
817
848
  {
818
849
  "name": "value",
819
850
  "type": {
@@ -826,7 +857,35 @@
826
857
  "module": "src/vaadin-custom-field-mixin.js"
827
858
  }
828
859
  }
829
- ]
860
+ ],
861
+ "mixins": [
862
+ {
863
+ "name": "CustomFieldMixin",
864
+ "module": "src/vaadin-custom-field-mixin.js"
865
+ },
866
+ {
867
+ "name": "ThemableMixin",
868
+ "package": "@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js"
869
+ },
870
+ {
871
+ "name": "ElementMixin",
872
+ "package": "@vaadin/component-base/src/element-mixin.js"
873
+ },
874
+ {
875
+ "name": "PolylitMixin",
876
+ "package": "@vaadin/component-base/src/polylit-mixin.js"
877
+ },
878
+ {
879
+ "name": "LumoInjectionMixin",
880
+ "package": "@vaadin/vaadin-themable-mixin/lumo-injection-mixin.js"
881
+ }
882
+ ],
883
+ "superclass": {
884
+ "name": "LitElement",
885
+ "package": "lit"
886
+ },
887
+ "tagName": "vaadin-custom-field",
888
+ "customElement": true
830
889
  }
831
890
  ],
832
891
  "exports": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/custom-field",
3
- "version": "25.2.7",
3
+ "version": "25.3.0-alpha10",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -35,28 +35,28 @@
35
35
  ],
36
36
  "dependencies": {
37
37
  "@open-wc/dedupe-mixin": "^1.3.0",
38
- "@vaadin/a11y-base": "~25.2.7",
39
- "@vaadin/component-base": "~25.2.7",
40
- "@vaadin/field-base": "~25.2.7",
41
- "@vaadin/vaadin-themable-mixin": "~25.2.7",
38
+ "@vaadin/a11y-base": "25.3.0-alpha10",
39
+ "@vaadin/component-base": "25.3.0-alpha10",
40
+ "@vaadin/field-base": "25.3.0-alpha10",
41
+ "@vaadin/vaadin-themable-mixin": "25.3.0-alpha10",
42
42
  "lit": "^3.0.0"
43
43
  },
44
44
  "devDependencies": {
45
- "@vaadin/aura": "~25.2.7",
46
- "@vaadin/chai-plugins": "~25.2.7",
47
- "@vaadin/combo-box": "~25.2.7",
48
- "@vaadin/date-picker": "~25.2.7",
49
- "@vaadin/email-field": "~25.2.7",
50
- "@vaadin/form-layout": "~25.2.7",
51
- "@vaadin/number-field": "~25.2.7",
52
- "@vaadin/password-field": "~25.2.7",
53
- "@vaadin/select": "~25.2.7",
54
- "@vaadin/test-runner-commands": "~25.2.7",
45
+ "@vaadin/aura": "25.3.0-alpha10",
46
+ "@vaadin/chai-plugins": "25.3.0-alpha10",
47
+ "@vaadin/combo-box": "25.3.0-alpha10",
48
+ "@vaadin/date-picker": "25.3.0-alpha10",
49
+ "@vaadin/email-field": "25.3.0-alpha10",
50
+ "@vaadin/form-layout": "25.3.0-alpha10",
51
+ "@vaadin/number-field": "25.3.0-alpha10",
52
+ "@vaadin/password-field": "25.3.0-alpha10",
53
+ "@vaadin/select": "25.3.0-alpha10",
54
+ "@vaadin/test-runner-commands": "25.3.0-alpha10",
55
55
  "@vaadin/testing-helpers": "^2.0.0",
56
- "@vaadin/text-area": "~25.2.7",
57
- "@vaadin/text-field": "~25.2.7",
58
- "@vaadin/time-picker": "~25.2.7",
59
- "@vaadin/vaadin-lumo-styles": "~25.2.7",
56
+ "@vaadin/text-area": "25.3.0-alpha10",
57
+ "@vaadin/text-field": "25.3.0-alpha10",
58
+ "@vaadin/time-picker": "25.3.0-alpha10",
59
+ "@vaadin/vaadin-lumo-styles": "25.3.0-alpha10",
60
60
  "sinon": "^22.0.0"
61
61
  },
62
62
  "customElements": "custom-elements.json",
@@ -64,5 +64,5 @@
64
64
  "web-types.json",
65
65
  "web-types.lit.json"
66
66
  ],
67
- "gitHead": "14be1af674f3968cce68c6eb4742340694c4a949"
67
+ "gitHead": "f2833abdf9b613fa0d0ed216830e3f4de87b7dac"
68
68
  }
@@ -140,6 +140,16 @@ export const CustomFieldMixin = (superClass) =>
140
140
  });
141
141
  }
142
142
 
143
+ /** @protected */
144
+ updated(props) {
145
+ super.updated(props);
146
+
147
+ // Validate when the required constraint is removed.
148
+ if (props.has('required') && this.required === false) {
149
+ this._requestValidation();
150
+ }
151
+ }
152
+
143
153
  /**
144
154
  * @param {FocusOptions=} options
145
155
  * @protected
@@ -193,21 +203,6 @@ export const CustomFieldMixin = (superClass) =>
193
203
  return true;
194
204
  }
195
205
 
196
- /**
197
- * Override an observer from `FieldMixin`
198
- * to validate when required is removed.
199
- *
200
- * @protected
201
- * @override
202
- */
203
- _requiredChanged(required) {
204
- super._requiredChanged(required);
205
-
206
- if (required === false) {
207
- this._requestValidation();
208
- }
209
- }
210
-
211
206
  /**
212
207
  * @param {KeyboardEvent} e
213
208
  * @protected
@@ -75,6 +75,7 @@ import { CustomFieldMixin } from './vaadin-custom-field-mixin.js';
75
75
  * @fires {CustomEvent} value-changed - Fired when the `value` property changes.
76
76
  * @fires {CustomEvent} validated - Fired whenever the field is validated.
77
77
  *
78
+ * @attr {string} theme - The theme variants to apply to the component.
78
79
  * @customElement vaadin-custom-field
79
80
  * @extends HTMLElement
80
81
  */
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/custom-field",
4
- "version": "25.2.7",
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-custom-field",
11
11
  "description": "`<vaadin-custom-field>` is a web component for wrapping multiple components as a single field.\n\n```html\n<vaadin-custom-field label=\"Appointment time\">\n <vaadin-date-picker></vaadin-date-picker>\n <vaadin-time-picker></vaadin-time-picker>\n</vaadin-custom-field>\n```\n\n### Styling\n\nThe following shadow DOM parts are available for styling:\n\nPart name | Description\n---------------------|----------------\n`label` | The slotted label element wrapper\n`helper-text` | The slotted helper text element wrapper\n`error-message` | The slotted error message element wrapper\n`required-indicator` | The `required` state indicator element\n`input-fields` | The slotted input elements wrapper\n\nThe following state attributes are available for styling:\n\nAttribute | Description\n--------------------|--------------------------------\n`invalid` | Set when the element is invalid\n`focused` | Set when the element is focused\n`has-label` | Set when the element has a label\n`has-value` | Set when the element has a value\n`has-helper` | Set when the element has helper text\n`has-error-message` | Set when the element has an error message\n`has-tooltip` | Set when the element has a slotted tooltip\n\nYou may also manually set `disabled` or `readonly` attribute on this component to make the label\npart look visually the same as on a `<vaadin-text-field>` when it is disabled or readonly.\n\nThe following custom CSS properties are available for styling:\n\nCustom CSS property |\n:--------------------------------------------------|\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-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-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-required-indicator-color` |\n| `--vaadin-input-field-required-indicator` |\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 to screen reader users.",
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": "Id of the element used as label of the component to screen reader users.",
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"
@@ -96,15 +105,13 @@
96
105
  "description": "The theme variants to apply to the component.",
97
106
  "value": {
98
107
  "type": [
99
- "string",
100
- "null",
101
- "undefined"
108
+ "string"
102
109
  ]
103
110
  }
104
111
  },
105
112
  {
106
113
  "name": "value",
107
- "description": "The value of the field. When wrapping several inputs, it will contain `\\t`\n(Tab character) as a delimiter indicating parts intended to be used as the\ncorresponding inputs values.\nUse the [`formatValue`](https://cdn.vaadin.com/vaadin-web-components/25.2.7/#/elements/vaadin-custom-field#property-formatValue)\nand [`parseValue`](https://cdn.vaadin.com/vaadin-web-components/25.2.7/#/elements/vaadin-custom-field#property-parseValue)\nproperties to customize this behavior.",
114
+ "description": "The value of the field. When wrapping several inputs, it will contain `\\t`\n(Tab character) as a delimiter indicating parts intended to be used as the\ncorresponding inputs values.\nUse the [`formatValue`](https://cdn.vaadin.com/vaadin-web-components/25.3.0-alpha10/#/elements/vaadin-custom-field#property-formatValue)\nand [`parseValue`](https://cdn.vaadin.com/vaadin-web-components/25.3.0-alpha10/#/elements/vaadin-custom-field#property-parseValue)\nproperties to customize this behavior.",
108
115
  "value": {
109
116
  "type": [
110
117
  "string"
@@ -114,9 +121,18 @@
114
121
  ],
115
122
  "js": {
116
123
  "properties": [
124
+ {
125
+ "name": "accessibleDescriptionRef",
126
+ "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.",
127
+ "value": {
128
+ "type": [
129
+ "string"
130
+ ]
131
+ }
132
+ },
117
133
  {
118
134
  "name": "accessibleName",
119
- "description": "String used to label the component to screen reader users.",
135
+ "description": "String used to label the component for screen reader users.",
120
136
  "value": {
121
137
  "type": [
122
138
  "string"
@@ -125,7 +141,7 @@
125
141
  },
126
142
  {
127
143
  "name": "accessibleNameRef",
128
- "description": "Id of the element used as label of the component to screen reader users.",
144
+ "description": "A space-separated list of IDs referencing the elements that\nlabel the component for screen reader users.",
129
145
  "value": {
130
146
  "type": [
131
147
  "string"
@@ -217,7 +233,7 @@
217
233
  },
218
234
  {
219
235
  "name": "value",
220
- "description": "The value of the field. When wrapping several inputs, it will contain `\\t`\n(Tab character) as a delimiter indicating parts intended to be used as the\ncorresponding inputs values.\nUse the [`formatValue`](https://cdn.vaadin.com/vaadin-web-components/25.2.7/#/elements/vaadin-custom-field#property-formatValue)\nand [`parseValue`](https://cdn.vaadin.com/vaadin-web-components/25.2.7/#/elements/vaadin-custom-field#property-parseValue)\nproperties to customize this behavior.",
236
+ "description": "The value of the field. When wrapping several inputs, it will contain `\\t`\n(Tab character) as a delimiter indicating parts intended to be used as the\ncorresponding inputs values.\nUse the [`formatValue`](https://cdn.vaadin.com/vaadin-web-components/25.3.0-alpha10/#/elements/vaadin-custom-field#property-formatValue)\nand [`parseValue`](https://cdn.vaadin.com/vaadin-web-components/25.3.0-alpha10/#/elements/vaadin-custom-field#property-parseValue)\nproperties to customize this behavior.",
221
237
  "value": {
222
238
  "type": [
223
239
  "string"
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/custom-field",
4
- "version": "25.2.7",
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-custom-field>` is a web component for wrapping multiple components as a single field.\n\n```html\n<vaadin-custom-field label=\"Appointment time\">\n <vaadin-date-picker></vaadin-date-picker>\n <vaadin-time-picker></vaadin-time-picker>\n</vaadin-custom-field>\n```\n\n### Styling\n\nThe following shadow DOM parts are available for styling:\n\nPart name | Description\n---------------------|----------------\n`label` | The slotted label element wrapper\n`helper-text` | The slotted helper text element wrapper\n`error-message` | The slotted error message element wrapper\n`required-indicator` | The `required` state indicator element\n`input-fields` | The slotted input elements wrapper\n\nThe following state attributes are available for styling:\n\nAttribute | Description\n--------------------|--------------------------------\n`invalid` | Set when the element is invalid\n`focused` | Set when the element is focused\n`has-label` | Set when the element has a label\n`has-value` | Set when the element has a value\n`has-helper` | Set when the element has helper text\n`has-error-message` | Set when the element has an error message\n`has-tooltip` | Set when the element has a slotted tooltip\n\nYou may also manually set `disabled` or `readonly` attribute on this component to make the label\npart look visually the same as on a `<vaadin-text-field>` when it is disabled or readonly.\n\nThe following custom CSS properties are available for styling:\n\nCustom CSS property |\n:--------------------------------------------------|\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-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-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-required-indicator-color` |\n| `--vaadin-input-field-required-indicator` |\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 to screen reader users.",
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": "Id of the element used as label of the component to screen reader users.",
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
  }
@@ -98,7 +105,7 @@
98
105
  },
99
106
  {
100
107
  "name": ".value",
101
- "description": "The value of the field. When wrapping several inputs, it will contain `\\t`\n(Tab character) as a delimiter indicating parts intended to be used as the\ncorresponding inputs values.\nUse the [`formatValue`](https://cdn.vaadin.com/vaadin-web-components/25.2.7/#/elements/vaadin-custom-field#property-formatValue)\nand [`parseValue`](https://cdn.vaadin.com/vaadin-web-components/25.2.7/#/elements/vaadin-custom-field#property-parseValue)\nproperties to customize this behavior.",
108
+ "description": "The value of the field. When wrapping several inputs, it will contain `\\t`\n(Tab character) as a delimiter indicating parts intended to be used as the\ncorresponding inputs values.\nUse the [`formatValue`](https://cdn.vaadin.com/vaadin-web-components/25.3.0-alpha10/#/elements/vaadin-custom-field#property-formatValue)\nand [`parseValue`](https://cdn.vaadin.com/vaadin-web-components/25.3.0-alpha10/#/elements/vaadin-custom-field#property-parseValue)\nproperties to customize this behavior.",
102
109
  "value": {
103
110
  "kind": "expression"
104
111
  }