@vaadin/checkbox-group 22.0.1 → 23.0.0-alpha3

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": "22.0.1",
3
+ "version": "23.0.0-alpha3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -33,16 +33,16 @@
33
33
  ],
34
34
  "dependencies": {
35
35
  "@polymer/polymer": "^3.0.0",
36
- "@vaadin/checkbox": "^22.0.1",
37
- "@vaadin/component-base": "^22.0.1",
38
- "@vaadin/vaadin-lumo-styles": "^22.0.1",
39
- "@vaadin/vaadin-material-styles": "^22.0.1",
40
- "@vaadin/vaadin-themable-mixin": "^22.0.1"
36
+ "@vaadin/checkbox": "23.0.0-alpha3",
37
+ "@vaadin/component-base": "23.0.0-alpha3",
38
+ "@vaadin/vaadin-lumo-styles": "23.0.0-alpha3",
39
+ "@vaadin/vaadin-material-styles": "23.0.0-alpha3",
40
+ "@vaadin/vaadin-themable-mixin": "23.0.0-alpha3"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@esm-bundle/chai": "^4.3.4",
44
44
  "@vaadin/testing-helpers": "^0.3.2",
45
45
  "sinon": "^9.2.0"
46
46
  },
47
- "gitHead": "2b0a2bff0369d6020f7cc33ad35506aa2d1f6f68"
47
+ "gitHead": "490037919a9e054cc002c1b3be0c94a1603e1a44"
48
48
  }
@@ -1,10 +1,10 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2018 - 2022 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
- import { DirMixin } from '@vaadin/component-base/src/dir-mixin.js';
7
6
  import { DisabledMixin } from '@vaadin/component-base/src/disabled-mixin.js';
7
+ import { ElementMixin } from '@vaadin/component-base/src/element-mixin.js';
8
8
  import { FocusMixin } from '@vaadin/component-base/src/focus-mixin.js';
9
9
  import { FieldMixin } from '@vaadin/field-base/src/field-mixin.js';
10
10
  import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
@@ -67,7 +67,7 @@ export interface CheckboxGroupEventMap extends HTMLElementEventMap, CheckboxGrou
67
67
  * @fires {CustomEvent} invalid-changed - Fired when the `invalid` property changes.
68
68
  * @fires {CustomEvent} value-changed - Fired when the `value` property changes.
69
69
  */
70
- declare class CheckboxGroup extends FieldMixin(FocusMixin(DisabledMixin(DirMixin(ThemableMixin(HTMLElement))))) {
70
+ declare class CheckboxGroup extends FieldMixin(FocusMixin(DisabledMixin(ElementMixin(ThemableMixin(HTMLElement))))) {
71
71
  /**
72
72
  * The value of the checkbox group.
73
73
  * Note: toggling the checkboxes modifies the value by creating new
@@ -1,13 +1,13 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2018 - 2022 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
  import { FlattenedNodesObserver } from '@polymer/polymer/lib/utils/flattened-nodes-observer.js';
7
7
  import { html, PolymerElement } from '@polymer/polymer/polymer-element.js';
8
8
  import { Checkbox } from '@vaadin/checkbox/src/vaadin-checkbox.js';
9
- import { DirMixin } from '@vaadin/component-base/src/dir-mixin.js';
10
9
  import { DisabledMixin } from '@vaadin/component-base/src/disabled-mixin.js';
10
+ import { ElementMixin } from '@vaadin/component-base/src/element-mixin.js';
11
11
  import { FocusMixin } from '@vaadin/component-base/src/focus-mixin.js';
12
12
  import { FieldMixin } from '@vaadin/field-base/src/field-mixin.js';
13
13
  import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
@@ -54,12 +54,12 @@ import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mix
54
54
  *
55
55
  * @extends HTMLElement
56
56
  * @mixes ThemableMixin
57
- * @mixes DirMixin
58
57
  * @mixes DisabledMixin
58
+ * @mixes ElementMixin
59
59
  * @mixes FocusMixin
60
60
  * @mixes FieldMixin
61
61
  */
62
- class CheckboxGroup extends FieldMixin(FocusMixin(DisabledMixin(DirMixin(ThemableMixin(PolymerElement))))) {
62
+ class CheckboxGroup extends FieldMixin(FocusMixin(DisabledMixin(ElementMixin(ThemableMixin(PolymerElement))))) {
63
63
  static get is() {
64
64
  return 'vaadin-checkbox-group';
65
65
  }