@clickhouse/click-ui 0.0.90 → 0.0.92
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.es.js +3398 -3370
- package/dist/click-ui.umd.js +119 -115
- package/dist/components/ConfirmationDialog/ConfirmationDialog.d.ts +1 -1
- package/dist/components/Icon/IconCommon.d.ts +1 -0
- package/dist/components/Icon/types.d.ts +1 -1
- package/dist/components/Input/InputWrapper.d.ts +3 -1
- package/dist/components/icons/Enter.d.ts +3 -0
- package/package.json +1 -1
|
@@ -13,5 +13,5 @@ export interface ConfirmationDialogProps {
|
|
|
13
13
|
showClose?: boolean;
|
|
14
14
|
onConfirm?: (() => void) | (() => Promise<void>);
|
|
15
15
|
}
|
|
16
|
-
export declare const ConfirmationDialog: ({ open, onCancel, title, message, loading, primaryActionType, primaryActionLabel, secondaryActionLabel, onConfirm, children, showClose, }: ConfirmationDialogProps) => ReactElement;
|
|
16
|
+
export declare const ConfirmationDialog: ({ open, onCancel, title, message, loading, primaryActionType, primaryActionLabel, secondaryActionLabel, onConfirm, children, showClose, ...props }: ConfirmationDialogProps) => ReactElement;
|
|
17
17
|
export {};
|
|
@@ -53,6 +53,7 @@ export declare const ICONS_MAP: {
|
|
|
53
53
|
"download-in-circle": (props: import("react").SVGAttributes<SVGElement>) => import("react/jsx-runtime").JSX.Element;
|
|
54
54
|
email: (props: import("react").SVGAttributes<SVGElement>) => import("react/jsx-runtime").JSX.Element;
|
|
55
55
|
empty: (props: import("react").SVGAttributes<SVGElement>) => import("react/jsx-runtime").JSX.Element;
|
|
56
|
+
enter: (props: import("react").SVGAttributes<SVGElement>) => import("react/jsx-runtime").JSX.Element;
|
|
56
57
|
eye: (props: import("react").SVGAttributes<SVGElement>) => import("react/jsx-runtime").JSX.Element;
|
|
57
58
|
"eye-closed": (props: import("react").SVGAttributes<SVGElement>) => import("react/jsx-runtime").JSX.Element;
|
|
58
59
|
filter: (props: import("react").SVGAttributes<SVGElement>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -4,7 +4,7 @@ import { FlagName, FlagProps } from "../icons/Flags";
|
|
|
4
4
|
import { LogoName } from "../Logos/types";
|
|
5
5
|
import { PaymentName, PaymentProps } from "../icons/Payments";
|
|
6
6
|
export type IconSize = "xs" | "sm" | "md" | "lg" | "xl" | "xxl";
|
|
7
|
-
export declare const ICON_NAMES: readonly ["activity", "alarm", "arrow-down", "arrow-right", "arrow-triangle", "arrow-directions", "arrow-up", "auth-app", "auth-sms", "backups", "bar-chart", "bell", "beta", "blog", "book", "brackets", "briefcase", "building", "burger-menu", "cards", "cell-tower", "chat", "check", "check-in-circle", "chevron-down", "chevron-left", "chevron-right", "chevron-up", "circle", "clock", "cloud", "code", "code-in-square", "connect", "connect-alt", "console", "copy", "cross", "credit-card", "data", "database", "disk", "display", "document", "dot", "dots-horizontal", "dots-triangle", "dots-vertical", "dots-vertical-double", "download", "download-in-circle", "email", "empty", "eye", "eye-closed", "filter", "fire", "flag", "flask", "folder-closed", "folder-open", "gear", "gift", "git-merge", "history", "horizontal-loading", "home", "http", "info-in-circle", "information", "insert-row", "integrations", "key", "keys", "lifebuoy", "light-bulb", "lightening", "line-in-circle", "loading", "loading-animated", "metrics", "metrics-alt", "no-cloud", "payment", "pencil", "pie-chart", "play", "play-in-circle", "plus", "popout", "puzzle-piece", "query", "question", "refresh", "rocket", "search", "secure", "server", "services", "settings", "share", "share-arrow", "share-network", "slide-in", "slide-out", "sort-alt", "sort", "sparkle", "speaker", "speed", "star", "support", "table", "taxi", "trash", "upload", "url", "user", "users", "warning", "waves"];
|
|
7
|
+
export declare const ICON_NAMES: readonly ["activity", "alarm", "arrow-down", "arrow-right", "arrow-triangle", "arrow-directions", "arrow-up", "auth-app", "auth-sms", "backups", "bar-chart", "bell", "beta", "blog", "book", "brackets", "briefcase", "building", "burger-menu", "cards", "cell-tower", "chat", "check", "check-in-circle", "chevron-down", "chevron-left", "chevron-right", "chevron-up", "circle", "clock", "cloud", "code", "code-in-square", "connect", "connect-alt", "console", "copy", "cross", "credit-card", "data", "database", "disk", "display", "document", "dot", "dots-horizontal", "dots-triangle", "dots-vertical", "dots-vertical-double", "download", "download-in-circle", "email", "empty", "enter", "eye", "eye-closed", "filter", "fire", "flag", "flask", "folder-closed", "folder-open", "gear", "gift", "git-merge", "history", "horizontal-loading", "home", "http", "info-in-circle", "information", "insert-row", "integrations", "key", "keys", "lifebuoy", "light-bulb", "lightening", "line-in-circle", "loading", "loading-animated", "metrics", "metrics-alt", "no-cloud", "payment", "pencil", "pie-chart", "play", "play-in-circle", "plus", "popout", "puzzle-piece", "query", "question", "refresh", "rocket", "search", "secure", "server", "services", "settings", "share", "share-arrow", "share-network", "slide-in", "slide-out", "sort-alt", "sort", "sparkle", "speaker", "speed", "star", "support", "table", "taxi", "trash", "upload", "url", "user", "users", "warning", "waves"];
|
|
8
8
|
export type IconName = (typeof ICON_NAMES)[number];
|
|
9
9
|
export interface IconProps extends SVGAttributes<HTMLOrSVGElement> {
|
|
10
10
|
name: IconName;
|
|
@@ -7,10 +7,12 @@ export interface WrapperProps {
|
|
|
7
7
|
children: ReactNode;
|
|
8
8
|
orientation?: "vertical" | "horizontal";
|
|
9
9
|
dir?: "start" | "end";
|
|
10
|
+
resize?: "none" | "vertical" | "horizontal" | "both";
|
|
10
11
|
}
|
|
11
|
-
export declare const InputWrapper: ({ id, label, error, disabled, children, orientation, dir, }: WrapperProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export declare const InputWrapper: ({ id, label, error, disabled, children, orientation, dir, resize, }: WrapperProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
13
|
export declare const InputElement: import("styled-components").StyledComponent<"input", import("styled-components").DefaultTheme, {}, never>;
|
|
13
14
|
export declare const TextAreaElement: import("styled-components").StyledComponent<"textarea", import("styled-components").DefaultTheme, {}, never>;
|
|
15
|
+
export declare const TextAreaWrapper: import("styled-components").StyledComponent<({ id, label, error, disabled, children, orientation, dir, resize, }: WrapperProps) => import("react/jsx-runtime").JSX.Element, import("styled-components").DefaultTheme, {}, never>;
|
|
14
16
|
export declare const IconButton: import("styled-components").StyledComponent<"button", import("styled-components").DefaultTheme, {
|
|
15
17
|
$show?: boolean | undefined;
|
|
16
18
|
}, never>;
|