Skip to content
This repository has been archived by the owner on Dec 3, 2021. It is now read-only.

Latest commit

 

History

History
50 lines (35 loc) · 851 Bytes

README.md

File metadata and controls

50 lines (35 loc) · 851 Bytes

Phoenix Loader

Ladeanzeige(n) für API-Abfragen oder ähnliches.

Die Komponente ist Teil des Phoenix Reisen Design-Systems.

Installation

Mithril wird benötigt.

npm install --save @phoenixreisen/loader

Anwendung

// entweder CommonJS
const Loader = require('@phoenixreisen/loader');

// oder ES6+
import Loader from '@phoenixreisen/loader';

Aufruf

// Hyperscript
m(Loader);
m(Loader, { type: 'overlay', text: 'Daten werden geladen...' });

// JSX
<Loader />
<Loader type="overlay" text="Daten werden geladen..." />

Test

npm install
npm test

Deployment

npm version [major|minor|patch]     # increase version x.x.x => major.minor.patch
npm publish                         # upload to npm
git push