@vincentgraul/react-components 1.0.44 → 1.0.46

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.
@@ -1,6 +1,7 @@
1
1
  import { BreadcrumbType, BreadcrumbElementType } from '..';
2
2
  type Props = BreadcrumbType & {
3
3
  onClick: (element: BreadcrumbElementType) => void;
4
+ className?: string;
4
5
  };
5
6
  export declare const Breadcrumb: (props: Props) => import("react/jsx-runtime").JSX.Element;
6
7
  export {};
@@ -4,6 +4,7 @@ type Props = {
4
4
  value?: string;
5
5
  onChange?: (option: CountrySelectorOption) => void;
6
6
  flagWidth?: string;
7
+ className?: string;
7
8
  };
8
9
  export declare const CountrySelector: (props: Props) => import("react/jsx-runtime").JSX.Element;
9
10
  export {};
@@ -6,6 +6,7 @@ type Props = Exclude<React.InputHTMLAttributes<HTMLInputElement>, "type"> & {
6
6
  colors?: InputColors;
7
7
  status?: InputStatus;
8
8
  message?: string;
9
+ className?: string;
9
10
  };
10
- export declare const Input: ({ label, message, colors, status, ...rest }: Props) => import("react/jsx-runtime").JSX.Element;
11
+ export declare const Input: ({ className, label, message, colors, status, ...rest }: Props) => import("react/jsx-runtime").JSX.Element;
11
12
  export {};
@@ -1,10 +1,12 @@
1
1
  import { ReactNode } from 'react';
2
2
  type LoaderProps = {
3
3
  children: ReactNode;
4
+ className?: string;
4
5
  };
5
6
  type LoaderWithImageProps = {
6
7
  src: string;
7
8
  text: string;
9
+ className?: string;
8
10
  };
9
11
  export declare const Loader: (props: LoaderProps | LoaderWithImageProps) => import("react/jsx-runtime").JSX.Element;
10
12
  export {};
@@ -2,6 +2,7 @@ import { ReactNode } from 'react';
2
2
  type Props = {
3
3
  children: ReactNode;
4
4
  onClickedOutside?: () => void;
5
+ className?: string;
5
6
  };
6
- export declare const Modal: ({ children, onClickedOutside }: Props) => import("react/jsx-runtime").JSX.Element;
7
+ export declare const Modal: ({ className, children, onClickedOutside }: Props) => import("react/jsx-runtime").JSX.Element;
7
8
  export {};
@@ -8,6 +8,7 @@ type Props = PaginationData & {
8
8
  colors?: PaginationColors;
9
9
  renderSingleArrow?: (position: ArrowPosition) => ReactNode;
10
10
  renderDoubleArrow?: (position: ArrowPosition) => ReactNode;
11
+ className?: string;
11
12
  };
12
- export declare const Pagination: ({ page, total, items, colors, goToFirst, goToLeft, goToRight, goToLast, goToPage, renderSingleArrow, renderDoubleArrow, }: Props) => import("react/jsx-runtime").JSX.Element;
13
+ export declare const Pagination: ({ className, page, total, items, colors, goToFirst, goToLeft, goToRight, goToLast, goToPage, renderSingleArrow, renderDoubleArrow, }: Props) => import("react/jsx-runtime").JSX.Element;
13
14
  export {};