@vaadin/app-layout
Advanced tools
Comparing version 22.0.14 to 22.0.15
{ | ||
"name": "@vaadin/app-layout", | ||
"version": "22.0.14", | ||
"version": "22.0.15", | ||
"publishConfig": { | ||
@@ -37,15 +37,15 @@ "access": "public" | ||
"@polymer/polymer": "^3.0.0", | ||
"@vaadin/button": "^22.0.14", | ||
"@vaadin/component-base": "^22.0.14", | ||
"@vaadin/vaadin-lumo-styles": "^22.0.14", | ||
"@vaadin/vaadin-material-styles": "^22.0.14", | ||
"@vaadin/vaadin-themable-mixin": "^22.0.14" | ||
"@vaadin/button": "^22.0.15", | ||
"@vaadin/component-base": "^22.0.15", | ||
"@vaadin/vaadin-lumo-styles": "^22.0.15", | ||
"@vaadin/vaadin-material-styles": "^22.0.15", | ||
"@vaadin/vaadin-themable-mixin": "^22.0.15" | ||
}, | ||
"devDependencies": { | ||
"@esm-bundle/chai": "^4.3.4", | ||
"@vaadin/tabs": "^22.0.14", | ||
"@vaadin/tabs": "^22.0.15", | ||
"@vaadin/testing-helpers": "^0.3.2", | ||
"sinon": "^9.2.1" | ||
}, | ||
"gitHead": "62419e3f8f41fe9dc4f0bce5e1717b16828459b6" | ||
"gitHead": "bba021b56ba45da93d2bb980242956ad929ecfe2" | ||
} |
@@ -161,3 +161,3 @@ /** | ||
listener: (this: AppLayout, ev: AppLayoutEventMap[K]) => void, | ||
options?: boolean | AddEventListenerOptions | ||
options?: boolean | AddEventListenerOptions, | ||
): void; | ||
@@ -168,3 +168,3 @@ | ||
listener: (this: AppLayout, ev: AppLayoutEventMap[K]) => void, | ||
options?: boolean | EventListenerOptions | ||
options?: boolean | EventListenerOptions, | ||
): void; | ||
@@ -171,0 +171,0 @@ } |
@@ -319,3 +319,3 @@ /** | ||
reflectToAttribute: true, | ||
observer: '_primarySectionObserver' | ||
observer: '_primarySectionObserver', | ||
}, | ||
@@ -336,3 +336,3 @@ | ||
reflectToAttribute: true, | ||
observer: '_drawerOpenedObserver' | ||
observer: '_drawerOpenedObserver', | ||
}, | ||
@@ -350,3 +350,3 @@ | ||
value: false, | ||
reflectToAttribute: true | ||
reflectToAttribute: true, | ||
}, | ||
@@ -364,4 +364,4 @@ | ||
value: 'vaadin-router-location-changed', | ||
observer: '_closeDrawerOnChanged' | ||
} | ||
observer: '_closeDrawerOnChanged', | ||
}, | ||
}; | ||
@@ -368,0 +368,0 @@ } |
@@ -74,4 +74,4 @@ /** | ||
value: 'Toggle', | ||
reflectToAttribute: true | ||
} | ||
reflectToAttribute: true, | ||
}, | ||
}; | ||
@@ -78,0 +78,0 @@ } |
@@ -71,3 +71,3 @@ import '@vaadin/vaadin-lumo-styles/color.js'; | ||
`, | ||
{ moduleId: 'lumo-app-layout' } | ||
{ moduleId: 'lumo-app-layout' }, | ||
); |
@@ -59,3 +59,3 @@ import '@vaadin/vaadin-material-styles/color.js'; | ||
`, | ||
{ moduleId: 'material-app-layout' } | ||
{ moduleId: 'material-app-layout' }, | ||
); |
@@ -50,3 +50,3 @@ import '@vaadin/vaadin-material-styles/color.js'; | ||
registerStyles('vaadin-drawer-toggle', [button, drawerToggle], { | ||
moduleId: 'material-drawer-toggle' | ||
moduleId: 'material-drawer-toggle', | ||
}); |
52212