@vaadin/field-base 23.2.7 → 23.2.9
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 +3 -3
- package/src/error-controller.js +3 -3
- package/src/label-mixin.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/field-base",
|
|
3
|
-
"version": "23.2.
|
|
3
|
+
"version": "23.2.9",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
34
34
|
"@polymer/polymer": "^3.0.0",
|
|
35
|
-
"@vaadin/component-base": "~23.2.
|
|
35
|
+
"@vaadin/component-base": "~23.2.9",
|
|
36
36
|
"lit": "^2.0.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"@vaadin/testing-helpers": "^0.3.2",
|
|
41
41
|
"sinon": "^13.0.2"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "880679b5eca131e7fbd4f651726bea5abc270493"
|
|
44
44
|
}
|
package/src/error-controller.js
CHANGED
|
@@ -55,7 +55,7 @@ export class ErrorController extends SlotController {
|
|
|
55
55
|
}
|
|
56
56
|
|
|
57
57
|
/**
|
|
58
|
-
* Override to initialize the newly added custom
|
|
58
|
+
* Override to initialize the newly added custom error message.
|
|
59
59
|
*
|
|
60
60
|
* @param {Node} errorNode
|
|
61
61
|
* @protected
|
|
@@ -73,7 +73,7 @@ export class ErrorController extends SlotController {
|
|
|
73
73
|
}
|
|
74
74
|
|
|
75
75
|
/**
|
|
76
|
-
* Override to cleanup
|
|
76
|
+
* Override to cleanup error message node when it's removed.
|
|
77
77
|
*
|
|
78
78
|
* @param {Node} node
|
|
79
79
|
* @protected
|
|
@@ -86,7 +86,7 @@ export class ErrorController extends SlotController {
|
|
|
86
86
|
if (!errorNode && node !== this.defaultNode) {
|
|
87
87
|
errorNode = this.attachDefaultNode();
|
|
88
88
|
|
|
89
|
-
// Run initializer to update default
|
|
89
|
+
// Run initializer to update default error message ID.
|
|
90
90
|
this.initNode(errorNode);
|
|
91
91
|
}
|
|
92
92
|
|
package/src/label-mixin.js
CHANGED
|
@@ -11,7 +11,7 @@ import { LabelController } from './label-controller.js';
|
|
|
11
11
|
* A mixin to provide label via corresponding property or named slot.
|
|
12
12
|
*
|
|
13
13
|
* @polymerMixin
|
|
14
|
-
* @mixes
|
|
14
|
+
* @mixes ControllerMixin
|
|
15
15
|
*/
|
|
16
16
|
export const LabelMixin = dedupingMixin(
|
|
17
17
|
(superclass) =>
|