@clickhouse/click-ui 0.0.21 → 0.0.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/click-ui.umd.js +1 -1
- package/package.json +1 -1
- package/dist/components/Accordion/Accordion.stories.d.ts +0 -293
- package/dist/components/Accordion/Accordion.test.d.ts +0 -1
- package/dist/components/Alert/Alert.stories.d.ts +0 -12
- package/dist/components/Alert/Alert.test.d.ts +0 -1
- package/dist/components/Avatar/Avatar.stories.d.ts +0 -11
- package/dist/components/Badge/Badge.stories.d.ts +0 -34
- package/dist/components/Badge/Badge.test.d.ts +0 -1
- package/dist/components/BigStat/BigStat.stories.d.ts +0 -20
- package/dist/components/Button/Button.stories.d.ts +0 -28
- package/dist/components/Button/Button.test.d.ts +0 -1
- package/dist/components/ButtonGroup/ButtonGroup.stories.d.ts +0 -12
- package/dist/components/CardPrimary/CardPrimary.stories.d.ts +0 -18
- package/dist/components/CardPrimary/CardPrimary.test.d.ts +0 -1
- package/dist/components/CardSecondary/CardSecondary.stories.d.ts +0 -27
- package/dist/components/CardSecondary/CardSecondary.test.d.ts +0 -1
- package/dist/components/Checkbox/Checkbox.stories.d.ts +0 -29
- package/dist/components/Checkbox/Checkbox.test.d.ts +0 -1
- package/dist/components/Collapsible/Collapsible.test.d.ts +0 -1
- package/dist/components/ContextMenu/ContextMenu.stories.d.ts +0 -30
- package/dist/components/ContextMenu/ContextMenu.test.d.ts +0 -1
- package/dist/components/Dropdown/Dropdown.stories.d.ts +0 -36
- package/dist/components/Dropdown/Dropdown.test.d.ts +0 -1
- package/dist/components/FileTabs/FileTabs.stories.d.ts +0 -23
- package/dist/components/FileTabs/FileTabs.test.d.ts +0 -0
- package/dist/components/HoverCard/HoverCard.stories.d.ts +0 -36
- package/dist/components/HoverCard/HoverCard.test.d.ts +0 -0
- package/dist/components/Icon/Icon.stories.d.ts +0 -503
- package/dist/components/IconButton/IconButton.stories.d.ts +0 -30
- package/dist/components/IconButton/IconButton.test.d.ts +0 -1
- package/dist/components/Input/NumberField.stories.d.ts +0 -34
- package/dist/components/Input/PasswordField.stories.d.ts +0 -34
- package/dist/components/Input/SearchField.stories.d.ts +0 -37
- package/dist/components/Input/TextField.stories.d.ts +0 -43
- package/dist/components/Label/Label.stories.d.ts +0 -28
- package/dist/components/Link/Link.stories.d.ts +0 -30
- package/dist/components/Link/Link.test.d.ts +0 -1
- package/dist/components/Logos/Logo.stories.d.ts +0 -504
- package/dist/components/Panel/Panel.stories.d.ts +0 -23
- package/dist/components/Popover/Popover.stories.d.ts +0 -43
- package/dist/components/Popover/Popover.test.d.ts +0 -1
- package/dist/components/RadioGroup/RadioGroup.stories.d.ts +0 -39
- package/dist/components/RadioGroup/RadioGroup.test.d.ts +0 -1
- package/dist/components/Select/Select.stories.d.ts +0 -54
- package/dist/components/Select/Select.test.d.ts +0 -0
- package/dist/components/SidebarCollapsibleItem/SidebarCollapsibleItem.stories.d.ts +0 -14
- package/dist/components/SidebarCollapsibleItem/SidebarCollapsibleItem.test.d.ts +0 -1
- package/dist/components/SidebarCollapsibleTitle/SidebarCollapsibleTitle.stories.d.ts +0 -14
- package/dist/components/SidebarCollapsibleTitle/SidebarCollapsibleTitle.test.d.ts +0 -1
- package/dist/components/SidebarNavigationItem/SidebarNavigationItem.stories.d.ts +0 -13
- package/dist/components/SidebarNavigationItem/SidebarNavigationItem.test.d.ts +0 -1
- package/dist/components/SidebarNavigationTitle/SidebarNavigationTitle.stories.d.ts +0 -13
- package/dist/components/SidebarNavigationTitle/SidebarNavigationTitle.test.d.ts +0 -1
- package/dist/components/Spacer/Spacer.stories.d.ts +0 -19
- package/dist/components/SplitButton/SplitButton.stories.d.ts +0 -28
- package/dist/components/SplitButton/SplitButton.test.d.ts +0 -1
- package/dist/components/Table/Table.stories.d.ts +0 -575
- package/dist/components/Tabs/Tabs.stories.d.ts +0 -845
- package/dist/components/Tabs/Tabs.test.d.ts +0 -1
- package/dist/components/Tooltip/Tooltip.stories.d.ts +0 -45
- package/dist/components/Tooltip/Tooltip.test.d.ts +0 -1
- package/dist/components/Typography/Text/Text.stories.d.ts +0 -29
- package/dist/components/Typography/Text/Text.test.d.ts +0 -1
- package/dist/components/Typography/Title/Title.stories.d.ts +0 -35
- package/dist/components/Typography/Title/Title.test.d.ts +0 -1
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
import { TooltipProps } from "@radix-ui/react-tooltip";
|
|
2
|
-
interface Props extends TooltipProps {
|
|
3
|
-
showArrow?: boolean;
|
|
4
|
-
delayDuration?: number;
|
|
5
|
-
skipDelayDuration?: number;
|
|
6
|
-
disableHoverableContent?: boolean;
|
|
7
|
-
side: "top" | "right" | "left" | "bottom";
|
|
8
|
-
}
|
|
9
|
-
declare const _default: {
|
|
10
|
-
component: ({ delayDuration, skipDelayDuration, showArrow, disableHoverableContent, side, ...props }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
-
title: string;
|
|
12
|
-
tags: string[];
|
|
13
|
-
argTypes: {
|
|
14
|
-
open: {
|
|
15
|
-
control: string;
|
|
16
|
-
options: (boolean | undefined)[];
|
|
17
|
-
};
|
|
18
|
-
defaultOpen: {
|
|
19
|
-
control: string;
|
|
20
|
-
};
|
|
21
|
-
showArrow: {
|
|
22
|
-
control: string;
|
|
23
|
-
};
|
|
24
|
-
delayDuration: {
|
|
25
|
-
control: string;
|
|
26
|
-
};
|
|
27
|
-
skipDelayDuration: {
|
|
28
|
-
control: string;
|
|
29
|
-
};
|
|
30
|
-
disableHoverableContent: {
|
|
31
|
-
control: string;
|
|
32
|
-
};
|
|
33
|
-
side: {
|
|
34
|
-
control: string;
|
|
35
|
-
options: string[];
|
|
36
|
-
};
|
|
37
|
-
};
|
|
38
|
-
};
|
|
39
|
-
export default _default;
|
|
40
|
-
export declare const Playground: {
|
|
41
|
-
args: {
|
|
42
|
-
side: string;
|
|
43
|
-
showArrow: boolean;
|
|
44
|
-
};
|
|
45
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
declare const _default: {
|
|
3
|
-
component: import("styled-components").IStyledComponent<"web", {
|
|
4
|
-
color?: import("./Text").TextColor | undefined;
|
|
5
|
-
size?: import("./Text").TextSize | undefined;
|
|
6
|
-
weight?: import("./Text").TextWeight | undefined;
|
|
7
|
-
className?: string | undefined;
|
|
8
|
-
children?: import("react").ReactNode;
|
|
9
|
-
}>;
|
|
10
|
-
title: string;
|
|
11
|
-
tags: string[];
|
|
12
|
-
argTypes: {
|
|
13
|
-
size: {
|
|
14
|
-
options: string[];
|
|
15
|
-
control: {
|
|
16
|
-
type: string;
|
|
17
|
-
};
|
|
18
|
-
};
|
|
19
|
-
};
|
|
20
|
-
};
|
|
21
|
-
export default _default;
|
|
22
|
-
export declare const Playground: {
|
|
23
|
-
args: {
|
|
24
|
-
size: string;
|
|
25
|
-
weight: string;
|
|
26
|
-
color: string;
|
|
27
|
-
children: string;
|
|
28
|
-
};
|
|
29
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
component: ({ size, family, type, color, children }: import("./Title").TitleProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
|
-
title: string;
|
|
4
|
-
tags: string[];
|
|
5
|
-
argTypes: {
|
|
6
|
-
size: {
|
|
7
|
-
options: string[];
|
|
8
|
-
control: {
|
|
9
|
-
type: string;
|
|
10
|
-
};
|
|
11
|
-
};
|
|
12
|
-
type: {
|
|
13
|
-
options: string[];
|
|
14
|
-
control: {
|
|
15
|
-
type: string;
|
|
16
|
-
};
|
|
17
|
-
};
|
|
18
|
-
family: {
|
|
19
|
-
options: string[];
|
|
20
|
-
control: {
|
|
21
|
-
type: string;
|
|
22
|
-
};
|
|
23
|
-
};
|
|
24
|
-
};
|
|
25
|
-
};
|
|
26
|
-
export default _default;
|
|
27
|
-
export declare const Playground: {
|
|
28
|
-
args: {
|
|
29
|
-
size: string;
|
|
30
|
-
type: string;
|
|
31
|
-
family: string;
|
|
32
|
-
color: string;
|
|
33
|
-
children: string;
|
|
34
|
-
};
|
|
35
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|