Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@0xsequence/design-system

Package Overview
Dependencies
Maintainers
6
Versions
196
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@0xsequence/design-system - npm Package Compare versions

Comparing version 0.1.22 to 0.1.23

2

dist/types/components/index.d.ts

@@ -25,4 +25,4 @@ export { Box } from './Box';

export { ControlledTextInput, TextInput } from './TextInput';
export { ThemeProvider } from './ThemeProvider';
export { ThemeProvider, useTheme } from './ThemeProvider';
export { TokenImage } from './TokenImage';
export { Tooltip } from './Tooltip';
import { PropsWithChildren } from 'react';
declare const THEMES: readonly ["dark", "light"];
declare type Theme = typeof THEMES[number];
interface ThemeContextValue {
theme: 'light' | 'dark';
theme: Theme;
setTheme: (mode: Theme) => void;
}
interface ThemeProviderProps {
theme?: 'light' | 'dark';
theme?: Theme;
}
export declare const ThemeProvider: (props: PropsWithChildren<ThemeProviderProps>) => JSX.Element;
export declare const useTheme: () => ThemeContextValue | null;
export declare const useTheme: () => ThemeContextValue;
export {};
{
"name": "@0xsequence/design-system",
"version": "0.1.22",
"version": "0.1.23",
"license": "Apache-2.0",

@@ -5,0 +5,0 @@ "type": "module",

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc