New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

notion-ui

Package Overview
Dependencies
Maintainers
1
Versions
119
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

notion-ui - npm Package Compare versions

Comparing version

to
0.2.33

types/components/Aside/Aside.stories.d.ts

5

package.json
{
"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",

4

types/components/Button/Button.stories.d.ts
/// <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