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

@carry0987/action-bar

Package Overview
Dependencies
Maintainers
0
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@carry0987/action-bar

A library for create flat-styled float ActionBar, with selection count, and more

  • 2.1.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-50%
Maintainers
0
Weekly downloads
 
Created
Source

ActionBar-JS

version CI
A library for create flat-styled float ActionBar, with selection count, and more

Installation

pnpm i @carry0987/action-bar

Usage

Here is a simple example to use ActionBar-JS

UMD
<div class="d-flex flex-column justify-content-center align-items-center vh-100">
    <div id="app">
        <h1 class="mb-3">ActionBar</h1>
    </div>
    <div class="d-flex justify-content-center">
        <button id="showActionBar" class="btn btn-primary me-2">Show ActionBar</button>
        <button id="hideActionBar" class="btn btn-secondary">Hide ActionBar</button>
    </div>
    <div id="button" class="d-flex justify-content-center mt-1 hide">
        <button id="enableButton" class="btn btn-primary me-2">Enable Button</button>
        <button id="disableButton" class="btn btn-secondary">Disable Button</button>
    </div>
</div>
<link href="dist/theme/actionBar.min.css" rel="stylesheet">
<script src="dist/actionBar.min.js"></script>
<script type="text/javascript">
const actionBar = new actionBarjs.ActionBar({
    hideButton: ['clear', 'selectAll'],
    customButton: [
        {
            name: 'Test-1',
            icon: '<i class="fa-solid fa-circle-info h5 m-0"></i>',
            callback: (e) => {
                alert('Test-1');
            }
        },
        {
            name: 'Test-2',
            icon: '<i class="fa-solid fa-circle-info h5 m-0"></i>',
            callback: (e) => {
                alert('Test-2');
            }
        }
    ],
    styles: {
        '.action-bar .action-button:not([disabled]):hover': {
            'color': '#000'
        }
    }
});
let buttonList = actionBarjs.ActionBar.getButtonList();
const buttons = [
    ...buttonList,
    'Test-1',
];
//...
</script>
ES Module
import { ActionBar, Action } from '@carry0987/action-bar';
import '@carry0987/action-bar/theme/actionBar.min.css';

const actionBar = new ActionBar({
    //...
});
const buttonList = [
    Action.CLEAR,
    //...
];

Keywords

FAQs

Package last updated on 20 Oct 2024

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