@vaadin/field-base 24.3.0-rc1 → 24.3.0-rc2
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/package.json +4 -4
- package/src/field-mixin.d.ts +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/field-base",
|
|
3
|
-
"version": "24.3.0-
|
|
3
|
+
"version": "24.3.0-rc2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
34
34
|
"@polymer/polymer": "^3.0.0",
|
|
35
|
-
"@vaadin/a11y-base": "24.3.0-
|
|
36
|
-
"@vaadin/component-base": "24.3.0-
|
|
35
|
+
"@vaadin/a11y-base": "24.3.0-rc2",
|
|
36
|
+
"@vaadin/component-base": "24.3.0-rc2",
|
|
37
37
|
"lit": "^3.0.0"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"@vaadin/testing-helpers": "^0.6.0",
|
|
42
42
|
"sinon": "^13.0.2"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "4a393bc5d4706745d3ccca73632e6b1e207cc830"
|
|
45
45
|
}
|
package/src/field-mixin.d.ts
CHANGED
|
@@ -20,11 +20,6 @@ export declare function FieldMixin<T extends Constructor<HTMLElement>>(
|
|
|
20
20
|
T;
|
|
21
21
|
|
|
22
22
|
export declare class FieldMixinClass {
|
|
23
|
-
/**
|
|
24
|
-
* A target element to which ARIA attributes are set.
|
|
25
|
-
*/
|
|
26
|
-
ariaTarget: HTMLElement;
|
|
27
|
-
|
|
28
23
|
/**
|
|
29
24
|
* String used for the helper text.
|
|
30
25
|
*
|
|
@@ -51,6 +46,11 @@ export declare class FieldMixinClass {
|
|
|
51
46
|
*/
|
|
52
47
|
accessibleNameRef: string | null | undefined;
|
|
53
48
|
|
|
49
|
+
/**
|
|
50
|
+
* A target element to which ARIA attributes are set.
|
|
51
|
+
*/
|
|
52
|
+
protected ariaTarget: HTMLElement;
|
|
53
|
+
|
|
54
54
|
protected readonly _errorNode: HTMLElement;
|
|
55
55
|
|
|
56
56
|
protected readonly _helperNode?: HTMLElement;
|