@hybr1d-tech/charizard 0.6.59 → 0.6.61
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/breadcrumb/types.d.ts +1 -1
- package/dist/components/button-v2/ButtonV2.d.ts +5 -4
- package/dist/components/checkbox-v2/CheckboxV2.d.ts +10 -0
- package/dist/components/checkbox-v2/index.d.ts +1 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/table-v3/table-filters-drawer/TableFiltersDrawerNew.d.ts +7 -0
- package/dist/components/table-v3/table-header-filters/FilterDrawerCheckboxNew.d.ts +9 -0
- package/dist/components/table-v3/table-pagination/TableLimit.d.ts +1 -2
- package/dist/hybr1d-ui.js +4687 -4590
- package/dist/hybr1d-ui.umd.cjs +14 -14
- package/dist/style.css +1 -1
- package/package.json +1 -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: ({ children, variant, disabled, menuItems, customData, size, actionsDropdownOptions, positionerProps, isTable, isCustomTrigger, customStyles, onClick, isSingleBtnTrigger, }: GroupActionProps) => import("react/jsx-runtime").JSX.Element;
|
|
31
|
+
var ActionsDropdown: typeof import("./ButtonV2").ActionsDropdown;
|
|
32
32
|
}
|
|
33
33
|
export type MenuItemV2 = {
|
|
34
34
|
label: string;
|
|
@@ -50,12 +50,12 @@ export interface GroupActionProps {
|
|
|
50
50
|
};
|
|
51
51
|
positionerProps?: PositioningOptions;
|
|
52
52
|
isTable?: boolean;
|
|
53
|
-
showDownIconBtn?: boolean;
|
|
54
53
|
customStyles?: {
|
|
55
54
|
customMenuStyles?: React.CSSProperties;
|
|
56
55
|
};
|
|
57
56
|
onClick?: any;
|
|
58
57
|
isCustomTrigger?: boolean;
|
|
58
|
+
isSingleBtnTrigger?: boolean;
|
|
59
59
|
}
|
|
60
60
|
export interface ActionsDropdownProps {
|
|
61
61
|
variant?: BUTTON_V2_VARIANT;
|
|
@@ -65,6 +65,7 @@ export interface ActionsDropdownProps {
|
|
|
65
65
|
size?: BUTTON_V2_SIZE;
|
|
66
66
|
positionerProps?: PositioningOptions;
|
|
67
67
|
isTable?: boolean;
|
|
68
|
+
children?: React.ReactNode;
|
|
68
69
|
}
|
|
69
|
-
export declare
|
|
70
|
+
export declare function ActionsDropdown({ variant, disabled, menuItems, customData, size, positionerProps, isTable, }: ActionsDropdownProps): import("react/jsx-runtime").JSX.Element;
|
|
70
71
|
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
interface CheckboxProps {
|
|
3
|
+
label: string;
|
|
4
|
+
checked?: boolean;
|
|
5
|
+
indeterminate?: boolean;
|
|
6
|
+
disabled?: boolean;
|
|
7
|
+
onChange: (checked: boolean) => void;
|
|
8
|
+
}
|
|
9
|
+
export declare const CheckboxV2: React.FC<CheckboxProps>;
|
|
10
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './CheckboxV2';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
export default function FilterDrawerCheckboxNew({ label, checked, onChange, countryCode, customName, customStyles, }: {
|
|
3
|
+
label: string;
|
|
4
|
+
checked: boolean;
|
|
5
|
+
onChange: (checked: boolean) => void;
|
|
6
|
+
countryCode?: string;
|
|
7
|
+
customName?: string;
|
|
8
|
+
customStyles?: React.CSSProperties;
|
|
9
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
interface TableLimitProps {
|
|
2
2
|
setLimit: (l: number) => void;
|
|
3
3
|
limit: number;
|
|
4
|
-
totalItems?: number;
|
|
5
4
|
itemsOnPage?: number;
|
|
6
5
|
}
|
|
7
|
-
export default function TableLimit({ setLimit, limit,
|
|
6
|
+
export default function TableLimit({ setLimit, limit, itemsOnPage }: TableLimitProps): import("react/jsx-runtime").JSX.Element;
|
|
8
7
|
export {};
|