Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@carry0987/action-bar
Advanced tools
A library for create flat-styled float ActionBar, with selection count, and more
A library for create flat-styled float ActionBar, with selection count, and more
pnpm i @carry0987/action-bar
Here is a simple example to use ActionBar-JS
<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>
import { ActionBar, Action } from '@carry0987/action-bar';
import '@carry0987/action-bar/theme/actionBar.min.css';
const actionBar = new ActionBar({
//...
});
const buttonList = [
Action.CLEAR,
//...
];
FAQs
A library for create flat-styled float ActionBar, with selection count, and more
We found that @carry0987/action-bar demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
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.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.