Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@vaadin/vaadin-app-layout

Package Overview
Dependencies
Maintainers
16
Versions
253
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vaadin/vaadin-app-layout - npm Package Compare versions

Comparing version 2.0.4 to 2.0.5

2

package.json

@@ -13,3 +13,3 @@ {

"name": "@vaadin/vaadin-app-layout",
"version": "2.0.4",
"version": "2.0.5",
"main": "vaadin-app-layout.js",

@@ -16,0 +16,0 @@ "author": "Vaadin Ltd",

@@ -271,2 +271,3 @@ /**

</div>
<div hidden=""><slot id="touchSlot" name="navbar touch-optimized"></slot></div>
`;

@@ -280,3 +281,3 @@ }

static get version() {
return '2.0.4';
return '2.0.5';
}

@@ -362,3 +363,12 @@

this._navbarChildObserver = new FlattenedNodesObserver(this.$.drawerSlot, (info) => {
const navbarSlot = this.$.navbarTop.firstElementChild;
this._navbarChildObserver = new FlattenedNodesObserver(navbarSlot, (info) => {
this._updateTouchOptimizedMode();
});
this._touchChildObserver = new FlattenedNodesObserver(this.$.touchSlot, (info) => {
this._updateTouchOptimizedMode();
});
this._drawerChildObserver = new FlattenedNodesObserver(this.$.drawerSlot, (info) => {
this._updateDrawerSize();

@@ -379,2 +389,4 @@ });

this._navbarChildObserver && this._navbarChildObserver.disconnect();
this._drawerChildObserver && this._drawerChildObserver.disconnect();
this._touchChildObserver && this._touchChildObserver.disconnect();
window.removeEventListener('resize', this.__boundResizeListener);

@@ -381,0 +393,0 @@ this.removeEventListener('drawer-toggle-click', this.__drawerToggleClickListener);

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc