@vaadin/checkbox-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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/checkbox-group",
3
- "version": "23.2.2",
3
+ "version": "23.3.0-alpha2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -36,11 +36,11 @@
36
36
  ],
37
37
  "dependencies": {
38
38
  "@polymer/polymer": "^3.0.0",
39
- "@vaadin/checkbox": "~23.2.2",
40
- "@vaadin/component-base": "~23.2.2",
41
- "@vaadin/vaadin-lumo-styles": "~23.2.2",
42
- "@vaadin/vaadin-material-styles": "~23.2.2",
43
- "@vaadin/vaadin-themable-mixin": "~23.2.2"
39
+ "@vaadin/checkbox": "23.3.0-alpha2",
40
+ "@vaadin/component-base": "23.3.0-alpha2",
41
+ "@vaadin/vaadin-lumo-styles": "23.3.0-alpha2",
42
+ "@vaadin/vaadin-material-styles": "23.3.0-alpha2",
43
+ "@vaadin/vaadin-themable-mixin": "23.3.0-alpha2"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@esm-bundle/chai": "^4.3.4",
@@ -51,5 +51,5 @@
51
51
  "web-types.json",
52
52
  "web-types.lit.json"
53
53
  ],
54
- "gitHead": "a98818979098f4542ce557a58858fb6dad910a25"
54
+ "gitHead": "ae61027c62ffa7f7d70cfc50e43f333addfc74b6"
55
55
  }
@@ -9,6 +9,7 @@ import { Checkbox } from '@vaadin/checkbox/src/vaadin-checkbox.js';
9
9
  import { DisabledMixin } from '@vaadin/component-base/src/disabled-mixin.js';
10
10
  import { ElementMixin } from '@vaadin/component-base/src/element-mixin.js';
11
11
  import { FocusMixin } from '@vaadin/component-base/src/focus-mixin.js';
12
+ import { TooltipController } from '@vaadin/component-base/src/tooltip-controller.js';
12
13
  import { FieldMixin } from '@vaadin/field-base/src/field-mixin.js';
13
14
  import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
14
15
 
@@ -111,6 +112,8 @@ class CheckboxGroup extends FieldMixin(FocusMixin(DisabledMixin(ElementMixin(The
111
112
  <slot name="error-message"></slot>
112
113
  </div>
113
114
  </div>
115
+
116
+ <slot name="tooltip"></slot>
114
117
  `;
115
118
  }
116
119
 
@@ -159,6 +162,9 @@ class CheckboxGroup extends FieldMixin(FocusMixin(DisabledMixin(ElementMixin(The
159
162
 
160
163
  this.__warnOfCheckboxesWithoutValue(addedCheckboxes);
161
164
  });
165
+
166
+ this._tooltipController = new TooltipController(this);
167
+ this.addController(this._tooltipController);
162
168
  }
163
169
 
164
170
  /**
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/checkbox-group",
4
- "version": "23.2.2",
4
+ "version": "23.3.0-alpha2",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/checkbox-group",
4
- "version": "23.2.2",
4
+ "version": "23.3.0-alpha2",
5
5
  "description-markup": "markdown",
6
6
  "framework": "lit",
7
7
  "framework-config": {