@vaadin/text-area 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": "A mixin providing common text area functionality.",
27
27
  "name": "TextAreaMixin",
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",
@@ -419,12 +433,24 @@
419
433
  }
420
434
  ],
421
435
  "attributes": [
436
+ {
437
+ "name": "accessible-description-ref",
438
+ "type": {
439
+ "text": "string"
440
+ },
441
+ "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.",
442
+ "fieldName": "accessibleDescriptionRef",
443
+ "inheritedFrom": {
444
+ "name": "FieldMixin",
445
+ "package": "@vaadin/field-base/src/field-mixin.js"
446
+ }
447
+ },
422
448
  {
423
449
  "name": "accessible-name",
424
450
  "type": {
425
451
  "text": "string"
426
452
  },
427
- "description": "String used to label the component to screen reader users.",
453
+ "description": "String used to label the component for screen reader users.",
428
454
  "fieldName": "accessibleName",
429
455
  "inheritedFrom": {
430
456
  "name": "FieldMixin",
@@ -436,7 +462,7 @@
436
462
  "type": {
437
463
  "text": "string"
438
464
  },
439
- "description": "Id of the element used as label of the component to screen reader users.",
465
+ "description": "A space-separated list of IDs referencing the elements that\nlabel the component for screen reader users.",
440
466
  "fieldName": "accessibleNameRef",
441
467
  "inheritedFrom": {
442
468
  "name": "FieldMixin",
@@ -771,6 +797,20 @@
771
797
  "description": "`<vaadin-text-area>` is a web component for multi-line text input.\n\n```html\n<vaadin-text-area label=\"Comment\"></vaadin-text-area>\n```\n\n### Prefixes and suffixes\n\nThese are child elements of a `<vaadin-text-area>` 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-area label=\"Description\">\n <div slot=\"prefix\">Details:</div>\n <div slot=\"suffix\">The end!</div>\n</vaadin-text-area>\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.",
772
798
  "name": "TextArea",
773
799
  "members": [
800
+ {
801
+ "kind": "field",
802
+ "name": "accessibleDescriptionRef",
803
+ "privacy": "public",
804
+ "type": {
805
+ "text": "string"
806
+ },
807
+ "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.",
808
+ "attribute": "accessible-description-ref",
809
+ "inheritedFrom": {
810
+ "name": "FieldMixin",
811
+ "package": "@vaadin/field-base/src/field-mixin.js"
812
+ }
813
+ },
774
814
  {
775
815
  "kind": "field",
776
816
  "name": "accessibleName",
@@ -778,7 +818,7 @@
778
818
  "type": {
779
819
  "text": "string"
780
820
  },
781
- "description": "String used to label the component to screen reader users.",
821
+ "description": "String used to label the component for screen reader users.",
782
822
  "attribute": "accessible-name",
783
823
  "inheritedFrom": {
784
824
  "name": "FieldMixin",
@@ -792,7 +832,7 @@
792
832
  "type": {
793
833
  "text": "string"
794
834
  },
795
- "description": "Id of the element used as label of the component to screen reader users.",
835
+ "description": "A space-separated list of IDs referencing the elements that\nlabel the component for screen reader users.",
796
836
  "attribute": "accessible-name-ref",
797
837
  "inheritedFrom": {
798
838
  "name": "FieldMixin",
@@ -1232,41 +1272,25 @@
1232
1272
  "name": "value-changed"
1233
1273
  }
1234
1274
  ],
1235
- "mixins": [
1236
- {
1237
- "name": "TextAreaMixin",
1238
- "module": "src/vaadin-text-area-mixin.js"
1239
- },
1240
- {
1241
- "name": "ThemableMixin",
1242
- "package": "@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js"
1243
- },
1244
- {
1245
- "name": "ElementMixin",
1246
- "package": "@vaadin/component-base/src/element-mixin.js"
1247
- },
1275
+ "attributes": [
1248
1276
  {
1249
- "name": "PolylitMixin",
1250
- "package": "@vaadin/component-base/src/polylit-mixin.js"
1277
+ "name": "accessible-description-ref",
1278
+ "type": {
1279
+ "text": "string"
1280
+ },
1281
+ "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.",
1282
+ "fieldName": "accessibleDescriptionRef",
1283
+ "inheritedFrom": {
1284
+ "name": "FieldMixin",
1285
+ "package": "@vaadin/field-base/src/field-mixin.js"
1286
+ }
1251
1287
  },
1252
- {
1253
- "name": "LumoInjectionMixin",
1254
- "package": "@vaadin/vaadin-themable-mixin/lumo-injection-mixin.js"
1255
- }
1256
- ],
1257
- "superclass": {
1258
- "name": "LitElement",
1259
- "package": "lit"
1260
- },
1261
- "tagName": "vaadin-text-area",
1262
- "customElement": true,
1263
- "attributes": [
1264
1288
  {
1265
1289
  "name": "accessible-name",
1266
1290
  "type": {
1267
1291
  "text": "string"
1268
1292
  },
1269
- "description": "String used to label the component to screen reader users.",
1293
+ "description": "String used to label the component for screen reader users.",
1270
1294
  "fieldName": "accessibleName",
1271
1295
  "inheritedFrom": {
1272
1296
  "name": "FieldMixin",
@@ -1278,7 +1302,7 @@
1278
1302
  "type": {
1279
1303
  "text": "string"
1280
1304
  },
1281
- "description": "Id of the element used as label of the component to screen reader users.",
1305
+ "description": "A space-separated list of IDs referencing the elements that\nlabel the component for screen reader users.",
1282
1306
  "fieldName": "accessibleNameRef",
1283
1307
  "inheritedFrom": {
1284
1308
  "name": "FieldMixin",
@@ -1549,6 +1573,13 @@
1549
1573
  "package": "@vaadin/field-base/src/field-mixin.js"
1550
1574
  }
1551
1575
  },
1576
+ {
1577
+ "type": {
1578
+ "text": "string"
1579
+ },
1580
+ "description": "The theme variants to apply to the component.",
1581
+ "name": "theme"
1582
+ },
1552
1583
  {
1553
1584
  "name": "title",
1554
1585
  "type": {
@@ -1573,7 +1604,35 @@
1573
1604
  "package": "@vaadin/field-base/src/clear-button-mixin.js"
1574
1605
  }
1575
1606
  }
1576
- ]
1607
+ ],
1608
+ "mixins": [
1609
+ {
1610
+ "name": "TextAreaMixin",
1611
+ "module": "src/vaadin-text-area-mixin.js"
1612
+ },
1613
+ {
1614
+ "name": "ThemableMixin",
1615
+ "package": "@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js"
1616
+ },
1617
+ {
1618
+ "name": "ElementMixin",
1619
+ "package": "@vaadin/component-base/src/element-mixin.js"
1620
+ },
1621
+ {
1622
+ "name": "PolylitMixin",
1623
+ "package": "@vaadin/component-base/src/polylit-mixin.js"
1624
+ },
1625
+ {
1626
+ "name": "LumoInjectionMixin",
1627
+ "package": "@vaadin/vaadin-themable-mixin/lumo-injection-mixin.js"
1628
+ }
1629
+ ],
1630
+ "superclass": {
1631
+ "name": "LitElement",
1632
+ "package": "lit"
1633
+ },
1634
+ "tagName": "vaadin-text-area",
1635
+ "customElement": true
1577
1636
  }
1578
1637
  ],
1579
1638
  "exports": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/text-area",
3
- "version": "25.2.7",
3
+ "version": "25.3.0-alpha10",
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.7",
39
- "@vaadin/component-base": "~25.2.7",
40
- "@vaadin/field-base": "~25.2.7",
41
- "@vaadin/input-container": "~25.2.7",
42
- "@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/input-container": "25.3.0-alpha10",
42
+ "@vaadin/vaadin-themable-mixin": "25.3.0-alpha10",
43
43
  "lit": "^3.0.0"
44
44
  },
45
45
  "devDependencies": {
46
- "@vaadin/aura": "~25.2.7",
47
- "@vaadin/chai-plugins": "~25.2.7",
48
- "@vaadin/test-runner-commands": "~25.2.7",
46
+ "@vaadin/aura": "25.3.0-alpha10",
47
+ "@vaadin/chai-plugins": "25.3.0-alpha10",
48
+ "@vaadin/test-runner-commands": "25.3.0-alpha10",
49
49
  "@vaadin/testing-helpers": "^2.0.0",
50
- "@vaadin/vaadin-lumo-styles": "~25.2.7",
50
+ "@vaadin/vaadin-lumo-styles": "25.3.0-alpha10",
51
51
  "sinon": "^22.0.0"
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": "14be1af674f3968cce68c6eb4742340694c4a949"
58
+ "gitHead": "f2833abdf9b613fa0d0ed216830e3f4de87b7dac"
59
59
  }
@@ -116,10 +116,11 @@ import { TextAreaMixin } from './vaadin-text-area-mixin.js';
116
116
  * @fires {CustomEvent} value-changed - Fired when the `value` property changes.
117
117
  * @fires {CustomEvent} validated - Fired whenever the field is validated.
118
118
  *
119
+ * @attr {string} theme - The theme variants to apply to the component.
119
120
  * @customElement vaadin-text-area
120
121
  * @extends HTMLElement
121
122
  */
122
- export class TextArea extends TextAreaMixin(ThemableMixin(ElementMixin(PolylitMixin(LumoInjectionMixin(LitElement))))) {
123
+ class TextArea extends TextAreaMixin(ThemableMixin(ElementMixin(PolylitMixin(LumoInjectionMixin(LitElement))))) {
123
124
  static get is() {
124
125
  return 'vaadin-text-area';
125
126
  }
@@ -176,3 +177,5 @@ export class TextArea extends TextAreaMixin(ThemableMixin(ElementMixin(PolylitMi
176
177
  }
177
178
 
178
179
  defineCustomElement(TextArea);
180
+
181
+ export { TextArea };
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/text-area",
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-text-area",
11
11
  "description": "`<vaadin-text-area>` is a web component for multi-line text input.\n\n```html\n<vaadin-text-area label=\"Comment\"></vaadin-text-area>\n```\n\n### Prefixes and suffixes\n\nThese are child elements of a `<vaadin-text-area>` 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-area label=\"Description\">\n <div slot=\"prefix\">Details:</div>\n <div slot=\"suffix\">The end!</div>\n</vaadin-text-area>\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 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"
@@ -231,9 +240,7 @@
231
240
  "description": "The theme variants to apply to the component.",
232
241
  "value": {
233
242
  "type": [
234
- "string",
235
- "null",
236
- "undefined"
243
+ "string"
237
244
  ]
238
245
  }
239
246
  },
@@ -258,9 +265,18 @@
258
265
  ],
259
266
  "js": {
260
267
  "properties": [
268
+ {
269
+ "name": "accessibleDescriptionRef",
270
+ "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.",
271
+ "value": {
272
+ "type": [
273
+ "string"
274
+ ]
275
+ }
276
+ },
261
277
  {
262
278
  "name": "accessibleName",
263
- "description": "String used to label the component to screen reader users.",
279
+ "description": "String used to label the component for screen reader users.",
264
280
  "value": {
265
281
  "type": [
266
282
  "string"
@@ -269,7 +285,7 @@
269
285
  },
270
286
  {
271
287
  "name": "accessibleNameRef",
272
- "description": "Id of the element used as label of the component to screen reader users.",
288
+ "description": "A space-separated list of IDs referencing the elements that\nlabel the component for screen reader users.",
273
289
  "value": {
274
290
  "type": [
275
291
  "string"
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/text-area",
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-text-area>` is a web component for multi-line text input.\n\n```html\n<vaadin-text-area label=\"Comment\"></vaadin-text-area>\n```\n\n### Prefixes and suffixes\n\nThese are child elements of a `<vaadin-text-area>` 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-area label=\"Description\">\n <div slot=\"prefix\">Details:</div>\n <div slot=\"suffix\">The end!</div>\n</vaadin-text-area>\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 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
  }