@hybr1d-tech/charizard 1.1.92 → 1.1.94
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/hybr1d-ui.js +296 -287
- package/dist/hybr1d-ui.umd.cjs +6 -6
- package/dist/index.d.ts +5 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -30,7 +30,7 @@ import { VisibilityState } from '@tanstack/react-table';
|
|
|
30
30
|
import * as zagSwitch from '@zag-js/switch';
|
|
31
31
|
|
|
32
32
|
export declare const Accordion: {
|
|
33
|
-
({ children, defaultActiveKey, customClasses, customStyle, isMulti, }: AccordionProps): JSX_2.Element;
|
|
33
|
+
({ children, defaultActiveKey, customClasses, customStyle, isMulti, isOpenAll, }: AccordionProps): JSX_2.Element;
|
|
34
34
|
Item({ eventKey, children }: ItemProps): JSX_2.Element | undefined;
|
|
35
35
|
Header({ eventKey, children, customClasses, customStyle }: HeaderProps): JSX_2.Element | undefined;
|
|
36
36
|
Collapse({ eventKey, children, customClasses, customStyle }: CollapseProps): JSX_2.Element;
|
|
@@ -50,6 +50,7 @@ declare interface AccordionProps {
|
|
|
50
50
|
customClasses?: string;
|
|
51
51
|
customStyle?: React.CSSProperties;
|
|
52
52
|
isMulti?: boolean;
|
|
53
|
+
isOpenAll?: boolean;
|
|
53
54
|
}
|
|
54
55
|
|
|
55
56
|
export declare const ActionsDropdown: React_2.ForwardRefExoticComponent<ActionsDropdownProps & React_2.RefAttributes<unknown>>;
|
|
@@ -759,6 +760,7 @@ declare interface DropdownProps extends BaseInputAdornmentProps {
|
|
|
759
760
|
onOptionSelect: (value: string) => void;
|
|
760
761
|
hideSearch?: boolean;
|
|
761
762
|
isLoading?: boolean;
|
|
763
|
+
onclick?: () => void;
|
|
762
764
|
}
|
|
763
765
|
|
|
764
766
|
/**
|
|
@@ -1308,7 +1310,7 @@ export declare namespace InputLeftAddon {
|
|
|
1308
1310
|
* <InputV2 />
|
|
1309
1311
|
* </InputGroupV2>
|
|
1310
1312
|
*/
|
|
1311
|
-
export declare function InputLeftAdornment({ children, isLoading, disabled, isDropdown, options, hideSearch, onOptionSelect, }: InputAdornmentProps): JSX_2.Element;
|
|
1313
|
+
export declare function InputLeftAdornment({ children, isLoading, disabled, isDropdown, options, hideSearch, onOptionSelect, onclick, }: InputAdornmentProps): JSX_2.Element;
|
|
1312
1314
|
|
|
1313
1315
|
export declare namespace InputLeftAdornment {
|
|
1314
1316
|
var displayName: INPUT_COMPONENTS;
|
|
@@ -1931,6 +1933,7 @@ declare interface NonDropdownProps extends BaseInputAdornmentProps {
|
|
|
1931
1933
|
hideSearch?: never;
|
|
1932
1934
|
onOptionSelect?: never;
|
|
1933
1935
|
isLoading?: never;
|
|
1936
|
+
onclick?: () => void;
|
|
1934
1937
|
}
|
|
1935
1938
|
|
|
1936
1939
|
declare interface NonIconBadgeProps extends BaseBadgeProps {
|