@prosperitainova/mirage-ui 1.1.79 → 1.1.80

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.
@@ -3,4 +3,3 @@ import "./theme/fonts/OpenSans.css";
3
3
  import "./theme/fonts/NotoSans.css";
4
4
  import "./theme/fonts/Inter.css";
5
5
  export * from "./lib";
6
- export * from "./theme";
@@ -1,14 +1,14 @@
1
- import { ButtonHTMLAttributes, ReactNode } from "react";
1
+ import { ButtonHTMLAttributes } from "react";
2
2
  import "../../../src/theme/fonts/ProximaNova.css";
3
3
  export type UsersProps = {
4
- img?: string;
4
+ img?: JSX.Element;
5
5
  text: string;
6
6
  label: string;
7
7
  changeUser?: (index?: number) => void;
8
8
  };
9
9
  export type BottonButtonProps = {
10
10
  onBottomButtonClick: () => void;
11
- label: ReactNode;
11
+ label: JSX.Element;
12
12
  };
13
13
  export type MenuDropdownProps = ButtonHTMLAttributes<HTMLButtonElement> & {
14
14
  open?: boolean;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { MenuDropdownProps } from "./MenuDropdown";
3
2
  import { Story } from "@storybook/react";
4
3
  declare const MenuDropdownStories: {
@@ -35,3 +35,4 @@ export { default as Tooltip } from "./TooltTip";
35
35
  export { default as TooltipCustom } from "./TooltipCustom";
36
36
  export { default as NotControlledToolTip } from "./NotControlledTooltip";
37
37
  export { default as BottomModal } from "./BottomModal";
38
+ export { default as UITheme } from "../theme";