@vaadin/accordion 23.0.8 → 23.0.11

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/accordion",
3
- "version": "23.0.8",
3
+ "version": "23.0.11",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -34,17 +34,17 @@
34
34
  ],
35
35
  "dependencies": {
36
36
  "@polymer/polymer": "^3.0.0",
37
- "@vaadin/component-base": "^23.0.8",
38
- "@vaadin/details": "^23.0.8",
39
- "@vaadin/vaadin-lumo-styles": "^23.0.8",
40
- "@vaadin/vaadin-material-styles": "^23.0.8",
41
- "@vaadin/vaadin-themable-mixin": "^23.0.8"
37
+ "@vaadin/component-base": "^23.0.11",
38
+ "@vaadin/details": "^23.0.11",
39
+ "@vaadin/vaadin-lumo-styles": "^23.0.11",
40
+ "@vaadin/vaadin-material-styles": "^23.0.11",
41
+ "@vaadin/vaadin-themable-mixin": "^23.0.11"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@esm-bundle/chai": "^4.3.4",
45
- "@vaadin/dialog": "^23.0.8",
45
+ "@vaadin/dialog": "^23.0.11",
46
46
  "@vaadin/testing-helpers": "^0.3.2",
47
47
  "sinon": "^9.2.1"
48
48
  },
49
- "gitHead": "43fe9d95c8cd745adc7bef214c0097c47f4f83ed"
49
+ "gitHead": "10838304fe6f5c98b838ec3a90bdcf49cbf4650b"
50
50
  }
@@ -87,13 +87,13 @@ declare class Accordion extends ElementMixin(ThemableMixin(HTMLElement)) {
87
87
  addEventListener<K extends keyof AccordionEventMap>(
88
88
  type: K,
89
89
  listener: (this: Accordion, ev: AccordionEventMap[K]) => void,
90
- options?: boolean | AddEventListenerOptions
90
+ options?: boolean | AddEventListenerOptions,
91
91
  ): void;
92
92
 
93
93
  removeEventListener<K extends keyof AccordionEventMap>(
94
94
  type: K,
95
95
  listener: (this: Accordion, ev: AccordionEventMap[K]) => void,
96
- options?: boolean | EventListenerOptions
96
+ options?: boolean | EventListenerOptions,
97
97
  ): void;
98
98
  }
99
99
 
@@ -89,7 +89,7 @@ class Accordion extends ThemableMixin(ElementMixin(PolymerElement)) {
89
89
  type: Number,
90
90
  value: 0,
91
91
  notify: true,
92
- reflectToAttribute: true
92
+ reflectToAttribute: true,
93
93
  },
94
94
 
95
95
  /**
@@ -101,8 +101,8 @@ class Accordion extends ThemableMixin(ElementMixin(PolymerElement)) {
101
101
  items: {
102
102
  type: Array,
103
103
  readOnly: true,
104
- notify: true
105
- }
104
+ notify: true,
105
+ },
106
106
  };
107
107
  }
108
108
 
@@ -50,5 +50,5 @@ const accordionPanel = css`
50
50
  `;
51
51
 
52
52
  registerStyles('vaadin-accordion-panel', [details, accordionPanel], {
53
- moduleId: 'material-accordion-panel'
53
+ moduleId: 'material-accordion-panel',
54
54
  });