UNPKG

@mylozzax/mylozzax-web-components

Version:

This npm package contains a number of Lit web components.

95 lines (57 loc) 3.19 kB
#MyLozzax Web Components plugin <p align="center"> <img alt="MyLozzax" src="https://user-images.githubusercontent.com/1645428/120083066-8a394a00-c0c6-11eb-9bc5-1ce02784dab3.png"> </p> <p align="center"> <a href="https://github.com/mylozzax/mylozzax-utils/actions?query=branch%3Amaster+workflow%3Aci"><img alt="CI Status" src="https://github.com/mylozzax/mylozzax-utils/workflows/ci/badge.svg?branch=master"></a> <a href="https://snyk.io/test/github/mylozzax/mylozzax-utils"><img src="https://snyk.io/test/github/mylozzax/mylozzax-utils/badge.svg"></a> <a href="https://opensource.org/licenses/BSD-3-Clause"><img src="https://img.shields.io/badge/License-BSD%203--Clause-blue.svg"></a> <a href="https://codecov.io/gh/mylozzax/mylozzax-utils"> <img src="https://codecov.io/gh/mylozzax/mylozzax-utils/branch/master/graph/badge.svg?token=YCDBLLJJEP"/> </a> </p> This npm module is a collection of [Lit-based](https://lit.dev) web components. These components are used by the desktop, Android and web versions of the [MyLozzax wallet](https://github.com/mylozzax/mylozzax-app-js). The package is comprised of the following components: - Activity Indicator `<activity-indicator>` - A generic, customisable activity indicator component - Provider Card `<provider-card>` - A UI component used to display MyLozzax's various Exchange service providers - Searchable Select `<searchable-select>` - A dropdown-based searchable select web component - Wallet Selector `<wallet-selector>` - A component that renders a list of LOZZ wallets # Installation `npm i @mylozzax/mylozzax-web-components` Usage To make use of these components, import this module the same way you would a normal NPM package. In your javascript file: `require('@mylozzax/mylozzax-web-components');` This will register the web component custom element tags, making them available for use in your HTML DOM Then, in your HTML, use any of the custom elements like so: `<activity-indicator></activity-indicator>` ## Detailed usage documentation --- ### Activity Indicator Shows an animated indicator alongside an optional text message. `<activity-indicator .loadingText=${"Loading supported currencies"}></activity-indicator>` Suggested usage of this element would include a conditional expression to specify whether it should be hidden or not. For example: `<activity-indicator ?hidden=${this.hideActivityIndicator}></activity-indicator>` --- ### Provider Card `<provider-card .service=${service}></provider-card>` .service should be a JSON object in the following format: { service_provider: "locallozzax", title: "Buy Lozzax using LocalLozzax", description: "Long description text" } --- ### Searchable Select A drop-down based select input field. Pass a list of your values in the following format: [ { label: "Text to show inside <option> tag", value: "Value for `<option value=${value}>`" } ] `<searchable-select .values=${fiatCurrencies}></searchable-select>` Emits the event `searchable-select-update` once a use selects a value --- ### Wallet selector `<wallet-selector></wallet-selector>`