@myuw-web-components/myuw-launch-button

A launch button for MyUW Cards.

Usage no npm install needed!

<script type="module">
  import myuwWebComponentsMyuwLaunchButton from 'https://cdn.skypack.dev/@myuw-web-components/myuw-launch-button';
</script>

README

Angular Web Component Template

This repo is meant to be a template for uPortal Angular web components.

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

Creating a web component

src/index.html is used to render the component locally.

src/app/app.module.ts is the main (and only) module for the web component. This is also where you will import all Angular Material modules and define your web component selector.

src/app/element contains all of the logic, HTML, and CSS for the web component. The name of this component can be updated but has to be updated in the component itself, module, etc.

Things to figure out

This template has some things that are not yet answered. The biggest question is how to import an existing web component into this project.