New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@dreamworld/dw-action-toolbar

Package Overview
Dependencies
Maintainers
0
Versions
98
Alerts
File Explorer

Advanced tools

Socket logo

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.

  • 5.2.8
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
7
decreased by-78.12%
Maintainers
0
Weekly downloads
 
Created
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

Package last updated on 10 Jan 2025

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc