@hybr1d-tech/charizard 0.7.149 → 0.7.150

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/index.d.ts CHANGED
@@ -26,17 +26,14 @@ import { UseBoundStore } from 'zustand';
26
26
  import * as zagSwitch from '@zag-js/switch';
27
27
 
28
28
  export declare const Accordion: {
29
- ({ children, defaultActiveKey, customClasses, customStyle, }: AccordionProps): JSX_2.Element;
30
- Item({ eventKey, children }: ItemProps): JSX_2.Element;
31
- Header({ eventKey, children, customClasses, customStyle }: HeaderProps): JSX_2.Element;
32
- Collapse({ eventKey, children, customClasses, customStyle }: CollapseProps): JSX_2.Element;
29
+ ({ children, defaultActiveKey }: AccordionProps): JSX_2.Element;
30
+ Header({ eventKey, children, customStyle }: HeaderProps): JSX_2.Element;
31
+ Collapse({ eventKey, children, customStyle }: CollapseProps): JSX_2.Element;
33
32
  };
34
33
 
35
34
  declare interface AccordionProps {
36
- children: React.ReactNode;
35
+ children: React_2.ReactNode;
37
36
  defaultActiveKey?: string;
38
- customClasses?: string;
39
- customStyle?: React.CSSProperties;
40
37
  }
41
38
 
42
39
  export declare const ActionsDropdown: React_2.ForwardRefExoticComponent<ActionsDropdownProps & React_2.RefAttributes<unknown>>;
@@ -303,9 +300,8 @@ export declare const clipboard: (text?: string, showToast?: boolean) => Promise<
303
300
 
304
301
  declare interface CollapseProps {
305
302
  eventKey: string;
306
- children: React.ReactNode;
307
- customClasses?: string;
308
- customStyle?: React.CSSProperties;
303
+ children: React_2.ReactNode;
304
+ customStyle?: React_2.CSSProperties;
309
305
  }
310
306
 
311
307
  export declare function ColorPicker({ name, label, errorMsg, required, onChange, defaultColor, }: ColorPickerProps): JSX_2.Element;
@@ -720,7 +716,7 @@ declare interface DrawerProps_2 {
720
716
  customContainerStyles?: React_2.CSSProperties;
721
717
  }
722
718
 
723
- export declare function DrawerV2({ isOpen, onClose, children, title, subTitle, customHeader, customFooter, size, showBackdrop, showHeader, showFooter, buttons, footerAddon, headerClassName, contentClassName, footerClassName, drawerPosition, customContainerStyles, }: DrawerProps_2): JSX_2.Element;
719
+ export declare function DrawerV2({ isOpen, onClose, children, title, subTitle, customHeader, customFooter, size, showBackdrop, showHeader, showFooter, buttons, footerAddon, headerClassName, contentClassName, footerClassName, drawerPosition, customContainerStyles, }: DrawerProps_2): false | JSX_2.Element;
724
720
 
725
721
  /**
726
722
  * Represents an option in a dropdown menu for adornment.
@@ -952,9 +948,8 @@ export declare interface GroupActionProps {
952
948
 
953
949
  declare interface HeaderProps {
954
950
  eventKey: string;
955
- children: React.ReactNode;
956
- customClasses?: string;
957
- customStyle?: React.CSSProperties;
951
+ children: React_2.ReactNode;
952
+ customStyle?: React_2.CSSProperties;
958
953
  }
959
954
 
960
955
  export declare type HexColor = `#${string}`;
@@ -1656,11 +1651,6 @@ declare interface ITask {
1656
1651
  leaveFrom?: string;
1657
1652
  }
1658
1653
 
1659
- declare interface ItemProps {
1660
- eventKey: string;
1661
- children: React.ReactNode;
1662
- }
1663
-
1664
1654
  declare type IToastOptions = ToastOptions & CommonOptions;
1665
1655
 
1666
1656
  /**