@hybr1d-tech/charizard 0.6.58 → 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.
@@ -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: ({ children, variant, disabled, menuItems, customData, size, actionsDropdownOptions, positionerProps, isTable, isCustomTrigger, showDownIconBtn, customStyles, onClick, }: GroupActionProps) => import("react/jsx-runtime").JSX.Element;
31
- var ActionsDropdown: typeof import("./ButtonV2").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 function ActionsDropdown({ variant, disabled, menuItems, customData, size, positionerProps, isTable, }: ActionsDropdownProps): import("react/jsx-runtime").JSX.Element;
69
+ export declare const ActionsDropdown: React.ForwardRefExoticComponent<ActionsDropdownProps & React.RefAttributes<unknown>>;
70
70
  export {};