@vaadin/radio-group 23.2.2 → 23.3.0-alpha2
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 +7 -7
- package/src/vaadin-radio-group.js +6 -0
- package/web-types.json +1 -1
- package/web-types.lit.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/radio-group",
|
|
3
|
-
"version": "23.
|
|
3
|
+
"version": "23.3.0-alpha2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -38,11 +38,11 @@
|
|
|
38
38
|
],
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@polymer/polymer": "^3.0.0",
|
|
41
|
-
"@vaadin/component-base": "
|
|
42
|
-
"@vaadin/field-base": "
|
|
43
|
-
"@vaadin/vaadin-lumo-styles": "
|
|
44
|
-
"@vaadin/vaadin-material-styles": "
|
|
45
|
-
"@vaadin/vaadin-themable-mixin": "
|
|
41
|
+
"@vaadin/component-base": "23.3.0-alpha2",
|
|
42
|
+
"@vaadin/field-base": "23.3.0-alpha2",
|
|
43
|
+
"@vaadin/vaadin-lumo-styles": "23.3.0-alpha2",
|
|
44
|
+
"@vaadin/vaadin-material-styles": "23.3.0-alpha2",
|
|
45
|
+
"@vaadin/vaadin-themable-mixin": "23.3.0-alpha2"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@esm-bundle/chai": "^4.3.4",
|
|
@@ -53,5 +53,5 @@
|
|
|
53
53
|
"web-types.json",
|
|
54
54
|
"web-types.lit.json"
|
|
55
55
|
],
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "ae61027c62ffa7f7d70cfc50e43f333addfc74b6"
|
|
57
57
|
}
|
|
@@ -9,6 +9,7 @@ import { DisabledMixin } from '@vaadin/component-base/src/disabled-mixin.js';
|
|
|
9
9
|
import { ElementMixin } from '@vaadin/component-base/src/element-mixin.js';
|
|
10
10
|
import { FocusMixin } from '@vaadin/component-base/src/focus-mixin.js';
|
|
11
11
|
import { KeyboardMixin } from '@vaadin/component-base/src/keyboard-mixin.js';
|
|
12
|
+
import { TooltipController } from '@vaadin/component-base/src/tooltip-controller.js';
|
|
12
13
|
import { generateUniqueId } from '@vaadin/component-base/src/unique-id-utils.js';
|
|
13
14
|
import { FieldMixin } from '@vaadin/field-base/src/field-mixin.js';
|
|
14
15
|
import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
|
|
@@ -116,6 +117,8 @@ class RadioGroup extends FieldMixin(
|
|
|
116
117
|
<slot name="error-message"></slot>
|
|
117
118
|
</div>
|
|
118
119
|
</div>
|
|
120
|
+
|
|
121
|
+
<slot name="tooltip"></slot>
|
|
119
122
|
`;
|
|
120
123
|
}
|
|
121
124
|
|
|
@@ -185,6 +188,9 @@ class RadioGroup extends FieldMixin(
|
|
|
185
188
|
// Unregisters the removed radio buttons.
|
|
186
189
|
this.__filterRadioButtons(removedNodes).forEach(this.__unregisterRadioButton);
|
|
187
190
|
});
|
|
191
|
+
|
|
192
|
+
this._tooltipController = new TooltipController(this);
|
|
193
|
+
this.addController(this._tooltipController);
|
|
188
194
|
}
|
|
189
195
|
|
|
190
196
|
/**
|
package/web-types.json
CHANGED