npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@moveindustries/wallet-adapter-move-design

v1.2.3

Published

Movement Wallet Adapter Move Design System - WalletModal component

Readme

@moveindustries/wallet-adapter-move-design

Movement Design System wallet components for the Movement Wallet Adapter. Provides a styled WalletModal for connecting wallets and a WalletSelector drop-in button component for Movement dApps.

Installation

npm install @moveindustries/wallet-adapter-move-design
# or
pnpm add @moveindustries/wallet-adapter-move-design

Prerequisites

  • @moveindustries/wallet-adapter-react must be set up with WalletProvider wrapping your app
  • Tailwind CSS v4 is required — this package uses Tailwind v4 utility classes

Tailwind CSS Setup

This package uses Tailwind CSS classes internally. For Tailwind to generate the necessary styles, it must scan this package's source files.

Add the following import to your main CSS file (e.g., globals.css), after the @import "tailwindcss" directive:

@import "tailwindcss";
@import "@moveindustries/wallet-adapter-move-design/styles";

This @source directive tells Tailwind to scan the package's source files for class names. Without it, the components will render without styles.

Fonts

The wallet components use the following fonts. Host them in your public/fonts/ directory and add the corresponding @font-face declarations to your CSS:

  • TWK Everett Mono (Regular 400, Medium 500, Bold 700)
  • Neue Haas Unica Pro (Regular 400)
@font-face {
  font-family: "TWK Everett Mono";
  src: url("/fonts/TWKEverettMono-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TWK Everett Mono";
  src: url("/fonts/TWKEverettMono-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TWK Everett Mono";
  src: url("/fonts/TWKEverettMono-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Haas Unica Pro";
  src: url("/fonts/NeueHaasUnicaPro-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

Components

WalletSelector

A complete, drop-in wallet button that handles the full connect/disconnect flow. Renders a gradient "CONNECT" button when disconnected, and a pill-shaped address display with dropdown when connected.

import { WalletSelector } from "@moveindustries/wallet-adapter-move-design";

function Header() {
  return (
    <nav>
      <WalletSelector />
    </nav>
  );
}

Props

| Prop | Type | Description | |------|------|-------------| | className | string | Optional class name applied to the outermost element |

The WalletSelector includes:

  • Skeleton loading state before hydration
  • Gradient connect button with hover effects
  • Connected state with wallet icon, truncated address, and Move network badge
  • Dropdown with copy address and disconnect actions
  • Automatic wallet modal integration

WalletModal

A lower-level modal component for wallet selection. Use this if you want to build your own connect button but use the standard wallet picker UI.

import { WalletModal } from "@moveindustries/wallet-adapter-move-design";
import { useState } from "react";

function WalletConnectButton() {
  const [isModalOpen, setIsModalOpen] = useState(false);

  return (
    <>
      <button onClick={() => setIsModalOpen(true)}>Connect Wallet</button>
      {isModalOpen && (
        <WalletModal onClose={() => setIsModalOpen(false)} />
      )}
    </>
  );
}

Props

| Prop | Type | Description | |------|------|-------------| | onClose | () => void | Callback when the modal is closed |

The modal automatically detects mobile devices and renders as a bottom drawer on mobile or a centered dialog on desktop.

Compatibility

  • React 18 or 19
  • Tailwind CSS v4+