@near-wallet-selector/modal-ui
Version:
Modal UI package for NEAR wallet Selector
101 lines (74 loc) • 2.63 kB
Markdown
This is the Modal UI package for NEAR Wallet Selector.
The easiest way to use this package is to install it from the NPM registry:
```bash
pnpm add -w @near-wallet-selector/modal-ui
npm install @near-wallet-selector/modal-ui
```
Then use it in your dApp:
```ts
import { setupWalletSelector } from "@near-wallet-selector/core";
import { setupModal } from "@near-wallet-selector/modal-ui";
import { setupMyNearWallet } from "@near-wallet-selector/my-near-wallet";
const selector = await setupWalletSelector({
network: "testnet",
modules: [setupMyNearWallet()],
});
const modal = setupModal(selector, {
contractId: "test.testnet",
});
modal.show();
```
- `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.
Import modal css styles:
```css
/* Add import in the main css file */
@import "~@near-wallet-selector/modal-ui/styles.css";
```
```ts
// Add import in the main component
import "@near-wallet-selector/modal-ui/styles.css";
```
These are the available css variables:
```css
--wallet-selector-backdrop-bg
--wallet-selector-heading-color
--wallet-selector-text-color
--wallet-selector-sidebar-border-color
--wallet-selector-selected-wallet-bg
--wallet-selector-selected-wallet-bg-hover
--wallet-selector-wallet-option-border-color
--wallet-selector-wallet-option-bg-hover
--wallet-selector-content-bg
--wallet-selector-change-path-bg
--wallet-selector-home-button-bg
--wallet-selector-confirm-button-bg
--confirm-button-bg-hover
--wallet-selector-error
--wallet-selector-close-button-bg-color
--wallet-selector-close-button-fill-icon-colo
--wallet-selector-spinner-color
--wallet-selector-bottom-section
--wallet-selector-mobile-text
--wallet-selector-connected-green
```
Customizing css is done simply by updating the value of a variable in the root of your css file.
```css
:root {
--wallet-selector-backdrop-bg:
}
```
You can find the entire API reference for Modal UI [here](./docs/api/modal.md).
This repository is distributed under the terms of both the MIT license and the Apache License (Version 2.0).