Socket
Socket
Sign inDemoInstall

@dreamworld/dw-action-toolbar

Package Overview
Dependencies
49
Maintainers
4
Versions
94
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @dreamworld/dw-action-toolbar

LitElement WebComponent to be used as action toolbar. Toolbar with tool buttons & drop-down both.


Version published
Weekly downloads
136
increased by44.68%
Maintainers
4
Created
Weekly downloads
 

Readme

Source

action-toolbar

  • Extended version of dw-select.
  • It's mainly element is used to display action toolbar.
    • Show primary action by default.
    • Show semi primary action on hover of action-toolbar.
    • Other action(exclude primary) show in dropdown.

Install

npm install --save @dreamworld/dw-action-toolbar

Usage

import '@dreamworld/dw-action-toolbar/action-toolbar';

Events

  • Fire action event with action name and its trigger after once icon button ripple is completed.

Features

  • Hide actions
  • Disable action with tooltip

Hide actions

  • Provide way to hide actions from master actions.
  • Using hiddenActions property to hide a action.
Example with hidden actions:
<action-toolbar .actions="${[{name: 'ADD', label: 'Add', icon: 'content.add'}, {name: 'EDIT', label: 'Edit', icon: 'editor.edit'},      {name: 'DELETE', label: 'Delete', icon: 'action.delete'}]}" .hiddenActions="${['DELETE', 'ADD']}">
</action-toolbar>

Disable action with tooltip

  • Disable action using disabledActions property.
  • Passed action as key and tooltip as a value of object.
Example with disabled actions:
<action-toolbar .actions="${[{name: 'ADD', label: 'Add', icon: 'content.add'}, {name: 'EDIT', label: 'Edit', icon: 'editor.edit'},      {name: 'DELETE', label: 'Delete', icon: 'action.delete'}]}" .disabledActions="${{'DELETE': 'User has no write permission'}}">
</action-toolbar>

Examples

Example with actions:

<action-toolbar .actions="${[{name: 'ADD', label: 'Add', icon: 'content.add'}, {name: 'EDIT', label: 'Edit', icon: 'editor.edit'}, {name: 'DELETE', label: 'Delete', icon: 'action.delete'}]}"></action-toolbar>

Example with primary action's subActions:

<dw-action-toolbar .actions="${[{name: 'ADD', label: 'Add', icon: 'content.add'}, {name: 'EDIT', label: 'Edit', icon: 'editor.edit'}, {name: 'DOWNLOAD', label: 'Download', icon: 'action.download', subActionTitle: 'Sub Actions', subActions: [{ name: 'PDF', label: 'PDF', icon: 'picture_as_pdf' }, { name: 'Excel', label: 'Excel', icon: 'description' }]}]}" .primaryActions='["DOWNLOAD"]'>
</dw-action-toolbar>
Note:
  • On mobile devices, the menu renders as a bottom-sheet dialog and on desktop, the menu renders as a popover dialog. Generally, subActionTitle is shown in the bottom sheet dialog only. So set subActionTitle as per your need.

Road map

  • Support primaryActions & semiPrimaryActions.

FAQs

Last updated on 13 Jan 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc