JSPM

@peersyst/ws-modal-ui-js

8.9.18
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1
  • Score
    100M100P100Q9871F

Modal UI package for NEAR wallet Selector

Package Exports

  • @peersyst/ws-modal-ui-js
  • @peersyst/ws-modal-ui-js/index.cjs
  • @peersyst/ws-modal-ui-js/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@peersyst/ws-modal-ui-js) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

@peersyst/ws-modal-ui-js

This is the Modal UI package for NEAR Wallet Selector.

Installation and Usage

The easiest way to use this package is to install it from the NPM registry:

# Using Yarn
yarn add @peersyst/ws-modal-ui-js

# Using NPM.
npm install @peersyst/ws-modal-ui-js

Then use it in your dApp:

import { setupWalletSelector } from "@peersyst/ws-core";
import { setupModal } from "@peersyst/ws-modal-ui-js";
import { setupMyNearWallet } from "@peersyst/ws-my-near-wallet";

const selector = await setupWalletSelector({
  network: "testnet",
  modules: [setupMyNearWallet()],
});

const modal = setupModal(selector, {
  contractId: "test.testnet",
});

modal.show();

Options

  • contractId (string): Account ID of the Smart Contract used for sign in and signing transactions.
  • methodNames (Array<string>?): Specify limited access to particular methods on the Smart Contract.
  • theme (Theme?): Specify light/dark theme for UI. Defaults to the browser configuration when omitted or set to 'auto'. This can be either light, dark or auto.
  • description (string?): Define a custom description in the UI.

Styles & Customizing CSS

Import modal css styles:

Angular

/* Add import in the main css file */
@import "~@peersyst/ws-modal-ui-js/styles.css";

React & Vue

// Add import in the main component
import "@peersyst/ws-modal-ui-js/styles.css";

These are the available css variables:

--backdrop-bg
--heading-color
--text-color
--sidebar-border-color
--selected-wallet-bg
--selected-wallet-bg-hover
--wallet-option-border-color
--wallet-option-bg-hover
--content-bg
--change-path-bg
--home-button-bg
--confirm-button-bg
--confirm-button-bg-hover
--error
--close-button-bg-color
--close-button-fill-icon-colo
--spinner-color
--bottom-section
--mobile-text
--connected-green

Customizing css is done simply by updating the value of a variable in the root of your css file.

:root {
  --backdrop-bg: #26262630;
}

API Reference

You can find the entire API reference for Modal UI here.

License

This repository is distributed under the terms of both the MIT license and the Apache License (Version 2.0).