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

@spectrum-web-components/actionbar

Package Overview
Dependencies
Maintainers
5
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@spectrum-web-components/actionbar - npm Package Compare versions

Comparing version 0.4.0 to 0.4.1

7

CHANGELOG.md

@@ -6,2 +6,9 @@ # Change Log

## [0.4.1](https://github.com/adobe/spectrum-web-components/compare/@spectrum-web-components/actionbar@0.4.0...@spectrum-web-components/actionbar@0.4.1) (2020-09-25)
### Bug Fixes
- **actionbar:** include dependencies and outline API ([2fc42e5](https://github.com/adobe/spectrum-web-components/commit/2fc42e56e1b8c6744ffa0b430c26581f59cc26c5))
- update side effect listings ([8160d3a](https://github.com/adobe/spectrum-web-components/commit/8160d3ab2c4f5ea11ac40897a5cf1fdaa357f4a8))
# [0.4.0](https://github.com/adobe/spectrum-web-components/compare/@spectrum-web-components/actionbar@0.3.1...@spectrum-web-components/actionbar@0.4.0) (2020-08-31)

@@ -8,0 +15,0 @@

@@ -10,2 +10,8 @@ {

{
"name": "flexible",
"description": "When `flexible` the actionbar sizes itself to its content\nrather than a specific width.",
"type": "boolean",
"default": "false"
},
{
"name": "open",

@@ -23,2 +29,9 @@ "type": "boolean",

{
"name": "flexible",
"attribute": "flexible",
"description": "When `flexible` the actionbar sizes itself to its content\nrather than a specific width.",
"type": "boolean",
"default": "false"
},
{
"name": "open",

@@ -25,0 +38,0 @@ "attribute": "open",

11

package.json

@@ -21,3 +21,3 @@ {

],
"version": "0.4.0",
"version": "0.4.1",
"description": "",

@@ -42,4 +42,4 @@ "main": "src/index.js",

"sideEffects": [
"./sp-actionbar.js",
"./sp-actionbar.ts"
"./sp-*.js",
"./sp-*.ts"
],

@@ -55,6 +55,7 @@ "scripts": {

"dependencies": {
"@spectrum-web-components/base": "^0.1.0",
"@spectrum-web-components/base": "^0.1.1",
"@spectrum-web-components/popover": "^0.5.2",
"tslib": "^2.0.0"
},
"gitHead": "51706b5f7aeec990c6323501aa22f8aee5827e31"
"gitHead": "7ce968fced1870613e7ed4a9023eef6265a60154"
}
import { SpectrumElement, CSSResultArray, TemplateResult } from '@spectrum-web-components/base';
import '@spectrum-web-components/popover/sp-popover.js';
export declare const actionbarVariants: string[];

@@ -8,2 +9,9 @@ /**

static get styles(): CSSResultArray;
/**
* When `flexible` the actionbar sizes itself to its content
* rather than a specific width.
*
* @param {Boolean} flexible
*/
flexible: boolean;
open: boolean;

@@ -10,0 +18,0 @@ /**

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

import { html, SpectrumElement, property, } from '@spectrum-web-components/base';
import '@spectrum-web-components/popover/sp-popover.js';
import actionbarStyles from './actionbar.css.js';

@@ -23,2 +24,9 @@ export const actionbarVariants = ['sticky', 'fixed'];

super(...arguments);
/**
* When `flexible` the actionbar sizes itself to its content
* rather than a specific width.
*
* @param {Boolean} flexible
*/
this.flexible = false;
this.open = false;

@@ -61,2 +69,5 @@ this._variant = '';

property({ type: Boolean, reflect: true })
], Actionbar.prototype, "flexible", void 0);
__decorate([
property({ type: Boolean, reflect: true })
], Actionbar.prototype, "open", void 0);

@@ -63,0 +74,0 @@ __decorate([

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

} from '@spectrum-web-components/base';
import '@spectrum-web-components/popover/sp-popover.js';

@@ -34,3 +35,12 @@ import actionbarStyles from './actionbar.css.js';

/**
* When `flexible` the actionbar sizes itself to its content
* rather than a specific width.
*
* @param {Boolean} flexible
*/
@property({ type: Boolean, reflect: true })
public flexible = false;
@property({ type: Boolean, reflect: true })
public open = false;

@@ -37,0 +47,0 @@

Sorry, the diff of this file is not supported yet

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