@vaadin/app-layout 22.0.12 → 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 +8 -8
- package/src/vaadin-app-layout.d.ts +2 -2
- package/src/vaadin-app-layout.js +5 -5
- package/src/vaadin-drawer-toggle.js +2 -2
- package/theme/lumo/vaadin-app-layout-styles.js +1 -1
- package/theme/material/vaadin-app-layout-styles.js +1 -1
- package/theme/material/vaadin-drawer-toggle-styles.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/app-layout",
|
|
3
|
-
"version": "22.0.
|
|
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.
|
|
38
|
-
"@vaadin/component-base": "^22.0.
|
|
39
|
-
"@vaadin/vaadin-lumo-styles": "^22.0.
|
|
40
|
-
"@vaadin/vaadin-material-styles": "^22.0.
|
|
41
|
-
"@vaadin/vaadin-themable-mixin": "^22.0.
|
|
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.
|
|
45
|
+
"@vaadin/tabs": "^22.0.15",
|
|
46
46
|
"@vaadin/testing-helpers": "^0.3.2",
|
|
47
47
|
"sinon": "^9.2.1"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
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
|
|
package/src/vaadin-app-layout.js
CHANGED
|
@@ -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
|
|