@neovici/cosmoz-bottom-bar
Advanced tools
Comparing version 5.0.0 to 5.1.0
@@ -31,2 +31,5 @@ import '@neovici/cosmoz-dropdown'; | ||
} | ||
:host([force-open]) { | ||
transition: none; | ||
} | ||
[hidden], ::slotted([hidden]) { | ||
@@ -33,0 +36,0 @@ display: none !important; |
@@ -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": [ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
29053
407