maru_design2 0.0.2 → 0.0.4

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,5 +27,4 @@ export interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElemen
27
27
  */
28
28
  endIcon?: IconProps;
29
29
  }
30
- declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
31
- export default Button;
30
+ export declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
@@ -18,5 +18,4 @@ export interface CheckboxProps extends Omit<React.InputHTMLAttributes<HTMLInputE
18
18
  */
19
19
  size?: TCheckboxSize;
20
20
  }
21
- declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & React.RefAttributes<HTMLInputElement>>;
22
- export default Checkbox;
21
+ export declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & React.RefAttributes<HTMLInputElement>>;
@@ -21,5 +21,4 @@ export interface ChipProps {
21
21
  */
22
22
  variant?: TChipVariant;
23
23
  }
24
- declare function Chip({ content, className, color, size, variant, }: ChipProps): import("react/jsx-runtime").JSX.Element;
25
- export default Chip;
24
+ export declare function Chip({ content, className, color, size, variant, }: ChipProps): import("react/jsx-runtime").JSX.Element;
@@ -14,5 +14,4 @@ export interface IconProps {
14
14
  */
15
15
  size?: TIconSize;
16
16
  }
17
- declare function Icon({ name, color, size }: IconProps): import("react/jsx-runtime").JSX.Element;
18
- export default Icon;
17
+ export declare function Icon({ name, color, size }: IconProps): import("react/jsx-runtime").JSX.Element;
@@ -28,5 +28,4 @@ export interface InputProps extends Omit<React.InputHTMLAttributes<HTMLInputElem
28
28
  */
29
29
  endNode?: React.ReactNode;
30
30
  }
31
- declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLInputElement>>;
32
- export default Input;
31
+ export declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLInputElement>>;
@@ -20,5 +20,4 @@ export interface PopoverProps {
20
20
  */
21
21
  portal?: boolean;
22
22
  }
23
- declare function Popover({ anchorEl, children, open, backdrop, className, direction, onClose, portal, }: PopoverProps): import("react/jsx-runtime").JSX.Element | null;
24
- export default Popover;
23
+ export declare function Popover({ anchorEl, children, open, backdrop, className, direction, onClose, portal, }: PopoverProps): import("react/jsx-runtime").JSX.Element | null;
@@ -9,5 +9,4 @@ export interface RadioProps extends Omit<React.InputHTMLAttributes<HTMLInputElem
9
9
  gap?: TGap;
10
10
  label?: string;
11
11
  }
12
- declare const Radio: React.ForwardRefExoticComponent<RadioProps & React.RefAttributes<HTMLInputElement>>;
13
- export default Radio;
12
+ export declare const Radio: React.ForwardRefExoticComponent<RadioProps & React.RefAttributes<HTMLInputElement>>;
@@ -17,5 +17,4 @@ export interface ToggleProps {
17
17
  right?: string;
18
18
  };
19
19
  }
20
- declare function Toggle({ checked, onChange, className, color, disabled, text, }: ToggleProps): import("react/jsx-runtime").JSX.Element;
21
- export default Toggle;
20
+ export declare function Toggle({ checked, onChange, className, color, disabled, text, }: ToggleProps): import("react/jsx-runtime").JSX.Element;
@@ -19,5 +19,4 @@ export interface TooltipProps {
19
19
  */
20
20
  portal?: boolean;
21
21
  }
22
- declare function Tooltip({ children, content, className, color, direction, portal, }: TooltipProps): import("react/jsx-runtime").JSX.Element;
23
- export default Tooltip;
22
+ export declare function Tooltip({ children, content, className, color, direction, portal, }: TooltipProps): import("react/jsx-runtime").JSX.Element;
@@ -85,5 +85,5 @@ interface DropdownProps<T extends Record<string, any>> {
85
85
  */
86
86
  width?: number;
87
87
  }
88
- declare function Dropdown<T extends Record<string, any>>({ data, selectedId, onSelect, idKey, displayKey, anchorEl, className, color, customButton, customMenuItem, disabled, errorMessage, inlineLabel, height, horizonMenu, label, noDataMessage, noSearchedMessage, onClear, placeholder, startArrow, toggleEndNode, type, width, }: DropdownProps<T>): import("react/jsx-runtime").JSX.Element;
89
- export default Dropdown;
88
+ export declare function Dropdown<T extends Record<string, any>>({ data, selectedId, onSelect, idKey, displayKey, anchorEl, className, color, customButton, customMenuItem, disabled, errorMessage, inlineLabel, height, horizonMenu, label, noDataMessage, noSearchedMessage, onClear, placeholder, startArrow, toggleEndNode, type, width, }: DropdownProps<T>): import("react/jsx-runtime").JSX.Element;
89
+ export {};
@@ -47,5 +47,4 @@ export interface ModalProps {
47
47
  */
48
48
  title?: string;
49
49
  }
50
- declare function Modal({ children, onClose, open, backdrop, cancelButton, className, disabledEnter, hiddenCloseButton, okButton, size, title, }: ModalProps): import("react/jsx-runtime").JSX.Element;
51
- export default Modal;
50
+ export declare function Modal({ children, onClose, open, backdrop, cancelButton, className, disabledEnter, hiddenCloseButton, okButton, size, title, }: ModalProps): import("react/jsx-runtime").JSX.Element;
@@ -23,5 +23,4 @@ export interface PaginationProps {
23
23
  */
24
24
  type?: TButtonType;
25
25
  }
26
- declare function Pagination({ page, onPageChange, totalPage, className, hiddenButton, type, }: PaginationProps): import("react/jsx-runtime").JSX.Element;
27
- export default Pagination;
26
+ export declare function Pagination({ page, onPageChange, totalPage, className, hiddenButton, type, }: PaginationProps): import("react/jsx-runtime").JSX.Element;
@@ -6,5 +6,5 @@ interface Props {
6
6
  children: React.ReactNode;
7
7
  theme: TTheme;
8
8
  }
9
- export declare const StyleProvider: ({ children, theme }: Props) => import("react/jsx-runtime").JSX.Element;
9
+ export declare function StyleProvider({ children, theme }: Props): import("react/jsx-runtime").JSX.Element;
10
10
  export {};