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

@proveanything/smartlinks-utils-ui

v0.1.11

Published

Reusable React components for SmartLinks microapps — Asset Picker, Conditions Editor, Icon Picker, and more.

Readme

@proveanything/smartlinks-ui

Reusable React components for SmartLinks microapps.

Installation

npm install @proveanything/smartlinks-ui

Peer Dependencies

This package requires the following peer dependencies in your app:

npm install react react-dom @proveanything/smartlinks

Setup

Import the pre-compiled styles in your app's entry point:

import '@proveanything/smartlinks-ui/styles.css';
// — OR, if you import the main barrel, CSS is included automatically:
import { AssetPicker } from '@proveanything/smartlinks-ui';

This provides all the Tailwind utility classes used by the components. Your app still needs to define the CSS variables (e.g., --primary, --border) — these come from your own design system (shadcn, custom theme, etc.).

Note: If you use sub-path imports (e.g., @proveanything/smartlinks-ui/asset-picker), you must also import the styles separately since sub-path entry points don't include the CSS.

Components

Asset Picker

Browse, upload, and select media assets scoped to a collection, product, or proof.

import { AssetPicker } from '@proveanything/smartlinks-ui/asset-picker';

<AssetPicker
  scope={{ type: 'collection', collectionId: 'abc123' }}
  mode="dialog"
  allowUpload
  onSelect={(asset) => console.log('Selected:', asset)}
  trigger={<button>Choose Image</button>}
/>

Conditions Editor

Visual editor for building condition rules with AND/OR logic groups.

import { ConditionsEditor } from '@proveanything/smartlinks-ui/conditions-editor';

<ConditionsEditor
  value={conditionGroup}
  onChange={setConditionGroup}
  fields={[
    { key: 'status', label: 'Status', type: 'enum', options: [{ label: 'Active', value: 'active' }] },
    { key: 'age', label: 'Age', type: 'number' },
  ]}
/>

Icon Picker

Searchable Font Awesome icon picker with lazy-loaded icon index for tree shaking.

import { IconPicker } from '@proveanything/smartlinks-ui/icon-picker';

<IconPicker
  mode="dialog"
  value="fa-solid fa-heart"
  onSelect={(icon) => console.log(icon.name)}
  trigger={<button>Pick Icon</button>}
/>

Font Picker

Searchable font picker with Google Fonts catalog and support for custom uploaded fonts. Returns full loading metadata (CSS URLs, @font-face blocks, cssFontFamily strings) so the consumer knows exactly how to load the selected font.

import { FontPicker } from '@proveanything/smartlinks-ui/font-picker';

<FontPicker
  mode="dialog"
  value="Inter"
  showPreview
  onSelect={(font) => {
    console.log(font.family);        // "Inter"
    console.log(font.cssFontFamily); // "'Inter', ui-sans-serif, system-ui, sans-serif"
    console.log(font.loadSnippet);   // <link href="..." rel="stylesheet">
  }}
  trigger={<button>Pick Font</button>}
/>

{/* With custom uploaded fonts from SmartLinks */}
<FontPicker
  mode="dialog"
  showCustomFonts
  scope={{ collectionId: 'abc123' }}
  admin
  onSelect={(font) => console.log(font)}
/>

Prerequisites

All components assume @proveanything/smartlinks is already initialized in your app via SL.initializeApi(). Components that interact with the SmartLinks API (Asset Picker) will use the global SDK import directly.

Tree Shaking

Each component is a separate entry point. If you only import AssetPicker, the Icon Picker's Font Awesome index won't be bundled.

// ✅ Only loads AssetPicker code
import { AssetPicker } from '@proveanything/smartlinks-ui/asset-picker';

// ✅ Also works — barrel import, bundler tree-shakes unused
import { AssetPicker } from '@proveanything/smartlinks-ui';

Development

cd packages/smartlinks-ui
npm install
npm run build    # Build with tsup
npm run dev      # Watch mode

License

MIT