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

@froggdesign/enter-ui-solidjs

v0.2.0

Published

SolidJS components for EnterUI, built with FroggDesign tokens.

Readme

@froggdesign/enter-ui-solidjs

SolidJS components for EnterUI, built with FroggDesign theme variables.

This package is the SolidJS renderer sibling of @froggdesign/enter-ui. It shares the same token, theme, class, and CSS-variable styling contracts, while keeping framework runtime dependencies separate from the React package.

Installation

pnpm install @froggdesign/enter-ui-solidjs @froggdesign/theme solid-js

Import theme CSS before component CSS:

import "@froggdesign/theme/styles.css";
import "@froggdesign/enter-ui-solidjs/styles.css";

Public API

import { Badge, Button, Card, Form, Input } from "@froggdesign/enter-ui-solidjs";

Current component families:

  • Core: Button, ButtonGroup, IconButton, Link, Badge, Card, Avatar, Alert, Separator, Spinner, Skeleton, Text, Kbd
  • Forms: Form, FormSection, FormActions, FormDescription, FormMessage, Label, Input, TextArea
  • Data and feedback: MetricCard, StatusIndicator, EmptyState, EmptySearchResult, ErrorState, ErrorBoundaryFallback, LoadingOverlay
  • Layout and content: Container, Stack, Cluster, Grid, AppShell, DescriptionList, KeyValueList, List, Media, ScrollArea, Toolbar, WizardSteps, StepperProgress, VStack, HStack, ZStack, DetailPanel, ObjectDetail, KPISection

The package intentionally ports stateless and presentational primitives first. Complex interactive components such as dialogs, menus, selects, tabs, command menus, popovers, date pickers, and toasts should be ported with SolidJS-native behavior primitives rather than React wrappers.

Runtime

SolidJS is a peer dependency. Consumers must import the FroggDesign theme CSS once before the EnterUI SolidJS component CSS.

React, React DOM, and @radix-ui/react-* packages are not dependencies of this package.

Styling

EnterUI SolidJS is CSS-variable-first and class-based. Component styles are shipped through @froggdesign/enter-ui-solidjs/styles.css, use .eui-* class names, and expose --eui-* CSS variables that default to @froggdesign/theme variables.

Solid's native class prop is preferred. className is also accepted on these primitives as a migration convenience for consumers moving examples from React.

Stability

This is a public npm package. Component props, exported component names, CSS entry points, .eui-* class names, and documented --eui-* variables are public API.

Verification

Package verification:

pnpm --filter @froggdesign/enter-ui-solidjs typecheck
pnpm --filter @froggdesign/enter-ui-solidjs test
pnpm --filter @froggdesign/enter-ui-solidjs build
pnpm --filter @froggdesign/enter-ui-solidjs exec npm pack --dry-run

Package Contents

The npm package publishes dist and LICENSE.md through the files field. Expected published outputs are:

  • dist/index.js
  • dist/index.cjs
  • dist/index.d.ts
  • dist/styles.css
  • LICENSE.md