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

@myuw-web-components/myuw-basic-card

Package Overview
Dependencies
Maintainers
8
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@myuw-web-components/myuw-basic-card

A basic card for MyUW

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
8
Weekly downloads
 
Created
Source

MyUW Basic Card

This is a basic card web component used with MyUW.

Screenshot showing an example of a basic card

Using

Add the following to your page's <head>:

<script src="https://unpkg.com/@myuw-web-components/myuw-basic-card@^1"></script>

Using the component

  <myuw-basic-card
    title="My Account"
    uid="unique-identifier"
    url="/star"
    md-icon="account_circle"
    button-text="Launch"
  >
  </myuw-compact-card>

Configurable properties

title: The title of the web component.

uid: The unique ID of the card.

md-icon: Material UI icon name.

fa-icon: Font Awesome icon name.

svg-icon: A relative SVG icon URL.

url: The URL to open when the card is clicked. If the URL starts with http or https the link will open in a new tab. If it is relative it will open in the same tab.

button-text: The text to show in the launch button.

Removing Card

When the remove card button is clicked a deleteCardNotify event is fired where event.detail as the UID of the card.

  const el = document.getElementById('my-card');
  el.addEventListener('deleteCardNotify', event => {
    console.log(event.detail);
  });

Local Development

Install dependencies with npm install

Run local server with npm run serve:element

Building

Build the element into a single JavaScript file with npm run build-element. A single file will be generated in element/element.js. This build path can be changed in build-elements.js

FAQs

Package last updated on 04 Sep 2019

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