notion-ui
Advanced tools
Comparing version
{ | ||
"name": "notion-ui", | ||
"version": "0.2.32", | ||
"version": "0.2.33", | ||
"keywords": [ | ||
@@ -12,3 +12,4 @@ "ui", | ||
"copy-svgs": "copyfiles -f ../src/components/Icon/icons/*.svg dist/components/Icon/icons", | ||
"build": "yarn pre-build && rollup -c" | ||
"build": "yarn pre-build && rollup -c", | ||
"publish": "cd build && npm publish" | ||
}, | ||
@@ -15,0 +16,0 @@ "main": "build/index.js", |
/// <reference types="react" /> | ||
import ButtonBase from './ButtonBase'; | ||
import Button from '.'; | ||
declare const _default: { | ||
title: string; | ||
component: typeof ButtonBase; | ||
component: typeof Button; | ||
}; | ||
@@ -7,0 +7,0 @@ export default _default; |
@@ -1,2 +0,16 @@ | ||
import ButtonBase from './ButtonBase'; | ||
export default ButtonBase; | ||
/** @jsx jsx */ | ||
import { SerializedStyles } from '@emotion/core'; | ||
import { ReactNode, MouseEventHandler } from 'react'; | ||
export declare type ButtonType = 'Default' | 'Primary' | 'PrimaryText'; | ||
export declare type ButtonSize = 'Tiny' | 'Small' | 'Medium' | 'Big'; | ||
interface ButtonProps { | ||
children: ReactNode; | ||
className?: string; | ||
onClick: MouseEventHandler; | ||
buttonType?: ButtonType; | ||
buttonSize?: ButtonSize; | ||
disabled?: boolean; | ||
style?: SerializedStyles[]; | ||
} | ||
export default function Button(props: ButtonProps): JSX.Element; | ||
export {}; |
@@ -5,2 +5,3 @@ export declare const baseStyle: import("@emotion/utils").SerializedStyles; | ||
Primary: import("@emotion/utils").SerializedStyles; | ||
PrimaryText: import("@emotion/utils").SerializedStyles; | ||
}; | ||
@@ -7,0 +8,0 @@ export declare const size: { |
@@ -6,3 +6,5 @@ export { default as Button } from './components/Button'; | ||
export { default as Switch } from './components/Switch'; | ||
export { default as Aside } from './components/Aside'; | ||
export { useModal } from './components/Modal'; | ||
export { colors, colorCss, useTheme, loadTheme, toggleTheme } from './styles'; | ||
export declare const TextFiled: typeof import("./components/Input/TextFiled").default; |
@@ -9,2 +9,3 @@ export declare const defaultColors: { | ||
grey32: string; | ||
grey40: string; | ||
grey60: string; | ||
@@ -17,2 +18,3 @@ backgroundEmbed: string; | ||
notDimmed: string; | ||
modalDimmed: string; | ||
}; | ||
@@ -19,0 +21,0 @@ export declare type Colors = Record<keyof typeof defaultColors, string>; |
@@ -9,2 +9,3 @@ /** @jsx jsx */ | ||
}; | ||
export declare const moreThan: (minWidth: number, style: SerializedStyles) => SerializedStyles; | ||
export declare const desktop: (style: SerializedStyles) => SerializedStyles; | ||
@@ -11,0 +12,0 @@ interface ResponseProps { |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
594774
7.46%51
21.43%6524
5.7%0
-100%