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

@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 5.0.0 to 5.1.0

3

cosmoz-bottom-bar.html.js

@@ -31,2 +31,5 @@ import '@neovici/cosmoz-dropdown';

}
:host([force-open]) {
transition: none;
}
[hidden], ::slotted([hidden]) {

@@ -33,0 +36,0 @@ display: none !important;

11

cosmoz-bottom-bar.js

@@ -133,2 +133,7 @@ /* eslint-disable max-lines */

forceOpen: {
type: Boolean,
value: false
},
/**

@@ -141,3 +146,3 @@ * Whether the bar is visible (has actions and is `active`)

readOnly: true,
computed: '_computeVisible(hasActions, active, hasExtraItems)'
computed: '_computeVisible(hasActions, active, hasExtraItems, forceOpen)'
},

@@ -235,4 +240,4 @@

_computeVisible(hasActions, active, hasExtraItems) {
return (hasActions || hasExtraItems) && active;
_computeVisible(hasActions, active, hasExtraItems, forceOpen) {
return forceOpen || ((hasActions || hasExtraItems) && active);
}

@@ -239,0 +244,0 @@

{
"name": "@neovici/cosmoz-bottom-bar",
"version": "5.0.0",
"version": "5.1.0",
"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