0.3.2 • Published 2 years ago

@pictogrammers/components v0.3.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Material Design Icons - Website Components

Note this repo is for the components used in the Material Design Icons website. If you want components for your own project look here:

The website is made of many components, view the src/pg folder to see the source.

Contribute to this Project

To run the demo application locally use the following NPM commands.

npm install
npm test
npm start
# npm start [pgButton|pg-button]

Open http://localhost:8080 (port could vary)

To build just the components.

npm run build

Publish

This project does not use the normal npm publish. Always run the script.

npm run publish

Web Components

Web Components with a very basic wrapper. The only magic is...

  • @Prop() foo = 'Hello World;
    • Calls this.render() on change.
  • @Part() $foo: HTMLDivElement; = <div part="foo"></div>
    • this.$part.innerText = 'Hello World!';
  • @Local('default') foo; Shorthand for localStorage.

Learn More: https://github.com/Templarian/Element