@hybr1d-tech/charizard 0.6.57 → 0.6.59
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/components/button-v2/ButtonV2.d.ts +3 -3
- package/dist/components/index.d.ts +1 -0
- package/dist/components/table-v3/table-header-filters/FilterDrawerAllCheckbox.d.ts +3 -3
- package/dist/components/toasts/Toasts.d.ts +14 -0
- package/dist/components/toasts/index.d.ts +1 -0
- package/dist/components/toasts/types.d.ts +5 -0
- package/dist/hybr1d-ui.js +3987 -3872
- package/dist/hybr1d-ui.umd.cjs +14 -14
- package/dist/style.css +1 -1
- package/package.json +3 -1
|
@@ -27,8 +27,8 @@ interface OtherButtonV2TypeProps extends BaseButtonProps {
|
|
|
27
27
|
export type ButtonV2Props = IconOnlyButtonV2TypeProps | IconButtonV2TypeProps | OtherButtonV2TypeProps;
|
|
28
28
|
export declare function ButtonV2({ children, variant, disabled, onClick, type, size, customStyles, icon, btnType, }: ButtonV2Props): import("react/jsx-runtime").JSX.Element;
|
|
29
29
|
export declare namespace ButtonV2 {
|
|
30
|
-
var GroupAction:
|
|
31
|
-
var ActionsDropdown:
|
|
30
|
+
var GroupAction: React.ForwardRefExoticComponent<GroupActionProps & React.RefAttributes<unknown>>;
|
|
31
|
+
var ActionsDropdown: React.ForwardRefExoticComponent<ActionsDropdownProps & React.RefAttributes<unknown>>;
|
|
32
32
|
}
|
|
33
33
|
export type MenuItemV2 = {
|
|
34
34
|
label: string;
|
|
@@ -66,5 +66,5 @@ export interface ActionsDropdownProps {
|
|
|
66
66
|
positionerProps?: PositioningOptions;
|
|
67
67
|
isTable?: boolean;
|
|
68
68
|
}
|
|
69
|
-
export declare
|
|
69
|
+
export declare const ActionsDropdown: React.ForwardRefExoticComponent<ActionsDropdownProps & React.RefAttributes<unknown>>;
|
|
70
70
|
export {};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
export default function FilterDrawerAllCheckbox({ checked, filterKey, setFilterCheckedState, setHasChanges, }: {
|
|
3
3
|
checked: boolean;
|
|
4
4
|
filterKey: string;
|
|
5
5
|
setFilterCheckedState: any;
|
|
6
|
-
|
|
6
|
+
setHasChanges: React.Dispatch<React.SetStateAction<boolean>>;
|
|
7
7
|
}): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Id, ToastOptions } from 'react-toastify';
|
|
2
|
+
import { ToastCloseButtonProps } from './types';
|
|
3
|
+
|
|
4
|
+
import * as React from 'react';
|
|
5
|
+
type ToastType = ({ msg, options }: {
|
|
6
|
+
msg: string | React.ReactElement;
|
|
7
|
+
options?: ToastOptions;
|
|
8
|
+
}) => Id;
|
|
9
|
+
export declare const toastSuccess: ToastType;
|
|
10
|
+
export declare const toastError: ToastType;
|
|
11
|
+
export declare const toastInfo: ToastType;
|
|
12
|
+
export declare const toastWarning: ToastType;
|
|
13
|
+
export declare function ToastCloseButton({ closeToast }: ToastCloseButtonProps): import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './Toasts';
|