@vaadin/checkbox-group 22.0.13 → 22.0.16

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.13",
3
+ "version": "22.0.16",
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.13",
37
- "@vaadin/component-base": "^22.0.13",
38
- "@vaadin/vaadin-lumo-styles": "^22.0.13",
39
- "@vaadin/vaadin-material-styles": "^22.0.13",
40
- "@vaadin/vaadin-themable-mixin": "^22.0.13"
36
+ "@vaadin/checkbox": "^22.0.16",
37
+ "@vaadin/component-base": "^22.0.16",
38
+ "@vaadin/vaadin-lumo-styles": "^22.0.16",
39
+ "@vaadin/vaadin-material-styles": "^22.0.16",
40
+ "@vaadin/vaadin-themable-mixin": "^22.0.16"
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": "0ef3a237a2db4255710aa878debb169eb52a1715"
47
+ "gitHead": "dac6f243594ea700bb796d3b41d7b17736d90be8"
48
48
  }
@@ -79,13 +79,13 @@ declare class CheckboxGroup extends FieldMixin(FocusMixin(DisabledMixin(DirMixin
79
79
  addEventListener<K extends keyof CheckboxGroupEventMap>(
80
80
  type: K,
81
81
  listener: (this: CheckboxGroup, ev: CheckboxGroupEventMap[K]) => void,
82
- options?: boolean | AddEventListenerOptions
82
+ options?: boolean | AddEventListenerOptions,
83
83
  ): void;
84
84
 
85
85
  removeEventListener<K extends keyof CheckboxGroupEventMap>(
86
86
  type: K,
87
87
  listener: (this: CheckboxGroup, ev: CheckboxGroupEventMap[K]) => void,
88
- options?: boolean | EventListenerOptions
88
+ options?: boolean | EventListenerOptions,
89
89
  ): void;
90
90
  }
91
91
 
@@ -125,8 +125,8 @@ class CheckboxGroup extends FieldMixin(FocusMixin(DisabledMixin(DirMixin(Themabl
125
125
  value: {
126
126
  type: Array,
127
127
  value: () => [],
128
- notify: true
129
- }
128
+ notify: true,
129
+ },
130
130
  };
131
131
  }
132
132
 
@@ -54,5 +54,5 @@ const checkboxGroup = css`
54
54
  `;
55
55
 
56
56
  registerStyles('vaadin-checkbox-group', [requiredField, helper, checkboxGroup], {
57
- moduleId: 'lumo-checkbox-group'
57
+ moduleId: 'lumo-checkbox-group',
58
58
  });
@@ -42,5 +42,5 @@ const checkboxGroup = css`
42
42
  `;
43
43
 
44
44
  registerStyles('vaadin-checkbox-group', [requiredField, helper, checkboxGroup], {
45
- moduleId: 'material-checkbox-group'
45
+ moduleId: 'material-checkbox-group',
46
46
  });