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

@dash4/plugin-actions

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dash4/plugin-actions

Create actions like form based executions or simple links

  • 0.9.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
24
decreased by-22.58%
Maintainers
1
Weekly downloads
 
Created
Source

Dash4 Plugin Actions

Create actions as teaser or simple links

NPM version License Commitizen friendly Prettier


Dash4 Plugin Actions screenshot

Table of Contents

Installation

npm i -D @dash4/plugin-actions

Usage

dash4.config.js

const { PluginActions } = require('@dash4/plugin-actions');

async function getConfig() {
  return {
    tabs: [
      {
        title: 'Root',
        rows: [
          [
            new PluginActions({
              title: 'Links',
              actions: [
                {
                  type: 'link',
                  href: 'http://localhost:6006',
                  title: 'Ui',
                  image: 'http://localhost:6006/assets/logo.png',
                },
              ],
            }),
            new PluginActions({
              actions: [
                {
                  type: 'teaser',
                  title: 'Ui',
                  subtitle: 'React ui kit using storybook',
                  image: 'http://localhost:6006/assets/logo.png',
                  links: [
                    {
                      type: 'link',
                      href: 'http://localhost:6006',
                      title: 'Ui',
                    },
                  ],
                },
              ],
            }),
          ],
        ],
      },
    ],
  };
}

module.exports = getConfig;

options:

interface IActionLink {
	type: 'link';
	title: string;
	href: string;
	image?: string;
	icon?: string;
}
interface IActionTeaser {
	type: 'teaser';
	title: string;
	subtitle?: string;
	link?: IActionLink | IActionLink[];
	image?: string;
	icon?: string;
}
// custom title (default=Code coverage)
title?: string;
// grid with per breakpoint
// [12,6,3] means 100% width on small viewports, 50% on medium viewports and 33.3% on largeviewports
width?: number[];
// enable / disable dark mode
dark?: boolean;
// Array of actions (displayed as list)
// an action could be a link or a teaser
actions?: IActionLink[] | IActionTeaser[];

License

The @dash4/plugin-actions is MIT licensed

FAQs

Package last updated on 07 Dec 2020

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