Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@siteed/design-system

Package Overview
Dependencies
Maintainers
1
Versions
183
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@siteed/design-system

[![kandi X-Ray](https://kandi.openweaver.com/badges/xray.svg)](https://kandi.openweaver.com/typescript/siteed/design-system) [![Version](https://img.shields.io/npm/v/@siteed/design-system.svg)](https://www.npmjs.com/package/@siteed/design-system) [![Depen

latest
Source
npmnpm
Version
0.52.1
Version published
Maintainers
1
Created
Source

@siteed/design-system

kandi X-Ray Version Dependency Status License

Introduction

@siteed/design-system is a comprehensive cross-platform design system built around Expo for cross-platform applications. It extends react-native-paper to provide a robust set of UI components that are easy to implement and customize. Designed with an opinionated selection of libraries, it simplifies the integration process and reduces setup time, allowing developers to focus on building high-quality mobile apps efficiently.

Philosophy

The design system is currently under active development and is not production-ready at the moment. Components and features are being added as needed, typically when they are required for specific projects. Most components are wrappers around react-native-paper to provide a base for customization while maintaining backward compatibility. This allows for quick iteration and integration of new features without breaking existing implementations.

While the design system provides good defaults to get started quickly, users have the flexibility to choose the versions of all peer dependencies instead of hardcoding them as dependencies. This ensures compatibility and allows for greater control over the project's dependency management.

Key Features

  • Opinionated Library Choices: Includes essential libraries such as react-native-paper, react-native-safe-area-context, react-native-reanimated, react-native-paper-dates, ensuring compatibility and functionality.
  • Ready-to-Use Components: From typography to modals, get access to a variety of UI components that are production-ready and customizable.
  • Streamlined Configuration: Pre-configured settings and integrations to speed up the development process, making it ideal for rapid prototyping and production projects.

Installation

npx create-expo-app@latest
npx expo install @siteed/design-system @siteed/react-native-logger react-native-paper react-native-safe-area-context @gorhom/bottom-sheet react-native-gesture-handler @expo/vector-icons expo-localization react-native-reanimated react-native-screens react-native-vector-icons @react-navigation/native @react-native-community/slider
# we also use react-native-paper-dates for date pickers
npx expo install react-native-paper-dates react-native-localize @formatjs/intl-pluralrules @formatjs/intl-getcanonicallocales @formatjs/intl-listformat @formatjs/intl-displaynames @formatjs/intl-locale @formatjs/intl-datetimeformat @formatjs/intl-numberformat @formatjs/intl-relativetimeformat

with web support

npx expo install react-dom react-native-web @expo/metro-runtime react-native-web
npx expo customize metro.config.js

Usage

Quickly integrate the design system into your app by importing and using the provided components and utilities:

  • First overwrite the default entry point in main if you are using expo router.
{
  "name": "design-playground",
  "version": "1.0.1",
  "main": "src/index",
  ...
}

Then create a custom `src/index.tsx`

It is recommended to use the UIProvider at the root of your app to avoid issues with nested context when using modals.

import "intl-pluralrules";
// Keep polyfills at the top

import { UIProvider } from "@siteed/design-system/src";
import { registerRootComponent } from "expo";
import { App as ExpoRouterApp } from "expo-router/build/qualified-entry";

const AppEntry = () => {
  return (
    <UIProvider
      toastProviderProps={{
        overrides: {
          snackbarStyle: { marginBottom: 100 },
        },
      }}
    >
      <ExpoRouterApp />
    </UIProvider>
  );
};

registerRootComponent(AppEntry);

Finally you can have your regular code using the design system.

import {
  LabelSwitch,
  ScreenWrapper,
  UIProvider,
  useThemePreferences,
  Picker,
  SelectOption,
} from "@siteed/design-system";
import { StatusBar } from "expo-status-bar";
import { StyleSheet, View } from "react-native";
import { Text } from "react-native-paper";
import React from "react";

export function App() {
  const { toggleDarkMode, darkMode } = useThemePreferences();
  const [options, setOptions] = React.useState<SelectOption[]>([
    { label: "Option 1", value: "option1", selected: true },
    { label: "Option 2", value: "option2" },
  ]);
  return (
    <ScreenWrapper withScrollView contentContainerStyle={styles.container}>
      <Text>Open up App.tsx to start working on your app!</Text>
      <View style={{ width: "100%" }}>
        <LabelSwitch
          label="Dark Mode"
          value={darkMode}
          onValueChange={toggleDarkMode}
        />
        <Picker label="Category" options={options} onFinish={setOptions} />
      </View>
      <StatusBar style={darkMode ? "light" : "dark"} />
    </ScreenWrapper>
  );
}

export default function WrapApp() {
  return (
    <UIProvider>
      <App />
    </UIProvider>
  );
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    width: "100%",
    alignItems: "center",
    justifyContent: "center",
  },
});

For a full list of components and their usage, you can explore the storybook

Documentation

For more detailed information on the design system and its components, check out the storybook site at https://deeeed.github.io/universe/design-system-storybook/

Development

For information about deploying new versions, changelog management, and release procedures, please refer to DEPLOYMENT.md.

Storybook

Explore the components and their usage more thoroughly by running the Storybook locally:

yarn storybook

FAQs

Package last updated on 15 May 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts