Socket
Socket
Sign inDemoInstall

@neovici/cosmoz-bottom-bar

Package Overview
Dependencies
Maintainers
4
Versions
49
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@neovici/cosmoz-bottom-bar - npm Package Compare versions

Comparing version 4.0.0 to 4.0.1

7

CHANGELOG.md

@@ -0,1 +1,8 @@

## [4.0.1](https://github.com/neovici/cosmoz-bottom-bar/compare/v4.0.0...v4.0.1) (2020-10-15)
### Bug Fixes
* prevent resize observer loops ([7994a7f](https://github.com/neovici/cosmoz-bottom-bar/commit/7994a7f827e601e6ffbb18c7096e03af224dc098))
# [4.0.0](https://github.com/neovici/cosmoz-bottom-bar/compare/v3.1.5...v4.0.0) (2020-10-15)

@@ -2,0 +9,0 @@

7

cosmoz-bottom-bar.js

@@ -172,7 +172,9 @@ /* eslint-disable max-lines */

super();
this._boundOnResize = this._onResize.bind(this);
this._boundDropdownClosed = this._dropdownClosed.bind(this);
this._boundChildrenUpdated = this._childrenUpdated.bind(this);
this._boundLayoutActions = this._layoutActions.bind(this);
this._resizeObserver = new ResizeObserver(this._boundOnResize);
this._resizeObserver = new ResizeObserver((...args) => {
cancelAnimationFrame(this._resizeId);
this._resizeId = requestAnimationFrame(() => this._onResize(...args));
});
}

@@ -200,3 +202,2 @@

this.removeEventListener('iron-resize', this._boundOnResize);
this.removeEventListener('iron-closed-overlay', this._boundDropdownClosed);

@@ -203,0 +204,0 @@

{
"name": "@neovici/cosmoz-bottom-bar",
"version": "4.0.0",
"version": "4.0.1",
"description": "A responsive bottom-bar that can house buttons/actions and a menu for the buttons that won't fit the available width.",

@@ -5,0 +5,0 @@ "keywords": [

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