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

@tesserix/native

v1.0.0

Published

Tesserix Design System - React Native UI components (Expo-first)

Downloads

75

Readme

@tesserix/native

React Native UI components for the Tesserix Design System.

Roadmap

Features

  • Expo-first design (compatible with bare React Native)
  • Built with @tesserix/tokens for consistent theming
  • TypeScript support
  • Platform-optimized components
  • Lightweight and tree-shakeable

Installation

npm install @tesserix/native @tesserix/tokens
# or
pnpm add @tesserix/native @tesserix/tokens
# or
yarn add @tesserix/native @tesserix/tokens

Peer Dependencies

npm install react react-native

Usage

Layout Components

import { Box, Stack, VStack, HStack, Flex } from '@tesserix/native'

function MyScreen() {
  return (
    <Box p={4} bg="#f3f4f6">
      <VStack space={4}>
        <Box p={3} bg="#ffffff" rounded>
          <Text>Card content</Text>
        </Box>
        <HStack space={2}>
          <Button>Action 1</Button>
          <Button variant="outline">Action 2</Button>
        </HStack>
      </VStack>
    </Box>
  )
}

Typography

import { Text, Heading, H1, H2 } from '@tesserix/native'

function Article() {
  return (
    <>
      <H1>Main Title</H1>
      <H2>Subtitle</H2>
      <Text size="base" color="#6b7280">
        Body text with custom color
      </Text>
      <Text bold>Bold text</Text>
      <Text italic>Italic text</Text>
    </>
  )
}

Buttons

import { Button } from '@tesserix/native'

function Actions() {
  return (
    <>
      <Button variant="solid" colorScheme="primary">
        Primary Action
      </Button>
      <Button variant="outline" colorScheme="error">
        Delete
      </Button>
      <Button variant="ghost" isLoading>
        Loading...
      </Button>
    </>
  )
}

Available Components

Layout

  • Box - Flexible container with spacing props
  • Stack - Vertical/horizontal stack with spacing
  • VStack - Vertical stack (alias for Stack with direction="column")
  • HStack - Horizontal stack (alias for Stack with direction="row")
  • Flex - Flexbox container with flex props
  • SplitPane - Resizable two-pane layout container

Typography

  • Text - Text component with size and weight props
  • Heading - Heading component with levels (H1-H6)

Buttons

  • Button - Touchable button with variants and states
  • IconButton - Icon-only action button

Forms

  • FormControl - Field wrapper with label/helper/error support
  • Field - Composed form field helper that injects state/accessibility props
  • Form / useForm - Form state container and validation lifecycle
  • FormField - Binds form state to controls with FormControl integration
  • useFieldArray - Array field operations (append, remove, update, replace)
  • createZodAdapter / createYupAdapter - Schema validation adapters
  • Input - Single-line text input
  • Textarea - Multi-line text input
  • Select - Option picker with modal menu
  • Checkbox - Binary/multi-select checkbox
  • Radio / RadioGroup - Single-select options
  • Switch - On/off toggle
  • FileUpload - File/image selection with preview and remove

Overlays

  • Modal - Centered dialog overlay
  • BottomSheet - Bottom-anchored overlay panel
  • Drawer - Side drawer overlay
  • ActionSheet - Mobile action chooser sheet
  • Toast - Timed notification popup
  • ContextMenu - Long-press contextual action menu
  • Spotlight - Highlighted feature callout overlay
  • Walkthrough - Multi-step in-app guided tour overlay

Media & Data

  • ChatBubble - Conversation message bubble
  • ActivityFeed - Timeline-style activity stream
  • ImageGallery - Thumbnail and fullscreen image gallery
  • MasonryGrid - Multi-column masonry layout
  • VirtualList - FlatList wrapper with virtualization defaults
  • InfiniteScroll - Paginated list wrapper with loading/end states
  • AudioPlayer - Embedded audio playback UI
  • VideoPlayer - Embedded video playback UI
  • QRCode - QR code display component

Utilities

  • FloatingMenu - Expandable floating action menu
  • Countdown - Live countdown timer component
  • CopyToClipboard - Copy-action trigger with copied feedback
  • RichTextEditor - Toolbar-based rich text editor shell
  • TagsInput - Multi-tag input with add/remove actions

Design Tokens

This package uses @tesserix/tokens for:

  • Spacing scale (4px-based)
  • Typography (font sizes, weights)
  • Colors (semantic color tokens)
import { spacing } from '@tesserix/tokens/spacing'
import { fontSize } from '@tesserix/tokens/typography'

// Use tokens directly
<Box p={spacing[4]}>
  <Text style={{ fontSize: fontSize.lg }}>Custom styled text</Text>
</Box>

Expo Compatibility

This package is designed Expo-first:

{
  "dependencies": {
    "@tesserix/native": "^1.0.0",
    "expo": "~52.0.0",
    "react-native": "0.76.x"
  }
}

Bare React Native

Also works with bare React Native projects:

{
  "dependencies": {
    "@tesserix/native": "^1.0.0",
    "react-native": "^0.76.0"
  }
}

TypeScript

Full TypeScript support with exported types:

import type { BoxProps, TextProps, ButtonProps } from '@tesserix/native'

const CustomBox: React.FC<BoxProps> = (props) => <Box {...props} />

License

MIT