@vaadin/app-layout 22.0.14 → 22.0.15

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/app-layout",
3
- "version": "22.0.14",
3
+ "version": "22.0.15",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -34,17 +34,17 @@
34
34
  "dependencies": {
35
35
  "@polymer/iron-resizable-behavior": "^3.0.0",
36
36
  "@polymer/polymer": "^3.0.0",
37
- "@vaadin/button": "^22.0.14",
38
- "@vaadin/component-base": "^22.0.14",
39
- "@vaadin/vaadin-lumo-styles": "^22.0.14",
40
- "@vaadin/vaadin-material-styles": "^22.0.14",
41
- "@vaadin/vaadin-themable-mixin": "^22.0.14"
37
+ "@vaadin/button": "^22.0.15",
38
+ "@vaadin/component-base": "^22.0.15",
39
+ "@vaadin/vaadin-lumo-styles": "^22.0.15",
40
+ "@vaadin/vaadin-material-styles": "^22.0.15",
41
+ "@vaadin/vaadin-themable-mixin": "^22.0.15"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@esm-bundle/chai": "^4.3.4",
45
- "@vaadin/tabs": "^22.0.14",
45
+ "@vaadin/tabs": "^22.0.15",
46
46
  "@vaadin/testing-helpers": "^0.3.2",
47
47
  "sinon": "^9.2.1"
48
48
  },
49
- "gitHead": "62419e3f8f41fe9dc4f0bce5e1717b16828459b6"
49
+ "gitHead": "bba021b56ba45da93d2bb980242956ad929ecfe2"
50
50
  }
@@ -158,13 +158,13 @@ declare class AppLayout extends ElementMixin(ThemableMixin(HTMLElement)) {
158
158
  addEventListener<K extends keyof AppLayoutEventMap>(
159
159
  type: K,
160
160
  listener: (this: AppLayout, ev: AppLayoutEventMap[K]) => void,
161
- options?: boolean | AddEventListenerOptions
161
+ options?: boolean | AddEventListenerOptions,
162
162
  ): void;
163
163
 
164
164
  removeEventListener<K extends keyof AppLayoutEventMap>(
165
165
  type: K,
166
166
  listener: (this: AppLayout, ev: AppLayoutEventMap[K]) => void,
167
- options?: boolean | EventListenerOptions
167
+ options?: boolean | EventListenerOptions,
168
168
  ): void;
169
169
  }
170
170
 
@@ -316,7 +316,7 @@ class AppLayout extends ElementMixin(ThemableMixin(mixinBehaviors([IronResizable
316
316
  value: 'navbar',
317
317
  notify: true,
318
318
  reflectToAttribute: true,
319
- observer: '_primarySectionObserver'
319
+ observer: '_primarySectionObserver',
320
320
  },
321
321
 
322
322
  /**
@@ -332,7 +332,7 @@ class AppLayout extends ElementMixin(ThemableMixin(mixinBehaviors([IronResizable
332
332
  notify: true,
333
333
  value: true,
334
334
  reflectToAttribute: true,
335
- observer: '_drawerOpenedObserver'
335
+ observer: '_drawerOpenedObserver',
336
336
  },
337
337
 
338
338
  /**
@@ -345,7 +345,7 @@ class AppLayout extends ElementMixin(ThemableMixin(mixinBehaviors([IronResizable
345
345
  notify: true,
346
346
  readOnly: true,
347
347
  value: false,
348
- reflectToAttribute: true
348
+ reflectToAttribute: true,
349
349
  },
350
350
 
351
351
  /**
@@ -358,8 +358,8 @@ class AppLayout extends ElementMixin(ThemableMixin(mixinBehaviors([IronResizable
358
358
  closeDrawerOn: {
359
359
  type: String,
360
360
  value: 'vaadin-router-location-changed',
361
- observer: '_closeDrawerOnChanged'
362
- }
361
+ observer: '_closeDrawerOnChanged',
362
+ },
363
363
  };
364
364
  }
365
365
 
@@ -71,8 +71,8 @@ class DrawerToggle extends Button {
71
71
  ariaLabel: {
72
72
  type: String,
73
73
  value: 'Toggle',
74
- reflectToAttribute: true
75
- }
74
+ reflectToAttribute: true,
75
+ },
76
76
  };
77
77
  }
78
78
 
@@ -68,5 +68,5 @@ registerStyles(
68
68
  }
69
69
  }
70
70
  `,
71
- { moduleId: 'lumo-app-layout' }
71
+ { moduleId: 'lumo-app-layout' },
72
72
  );
@@ -56,5 +56,5 @@ registerStyles(
56
56
  }
57
57
  }
58
58
  `,
59
- { moduleId: 'material-app-layout' }
59
+ { moduleId: 'material-app-layout' },
60
60
  );
@@ -47,5 +47,5 @@ const drawerToggle = css`
47
47
  `;
48
48
 
49
49
  registerStyles('vaadin-drawer-toggle', [button, drawerToggle], {
50
- moduleId: 'material-drawer-toggle'
50
+ moduleId: 'material-drawer-toggle',
51
51
  });