@clickhouse/click-ui 0.0.90 → 0.0.91
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 +3396 -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/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;
|
|
@@ -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>;
|