@prosperitainova/mirage-ui 1.1.43 → 1.1.48

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,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { DropzoneProps as DropzoneRootProps } from "react-dropzone";
3
2
  import "../../../src/theme/fonts/ProximaNova.css";
4
3
  interface DropzoneRootPropsLite extends Omit<DropzoneRootProps, "onDrop"> {
@@ -0,0 +1,4 @@
1
+ import { UncontrolledTooltipProps } from "reactstrap";
2
+ export type NotControlledTooltipsProps = {} & UncontrolledTooltipProps;
3
+ declare const NotcontrolledTooltip: (props: NotControlledTooltipsProps) => JSX.Element;
4
+ export default NotcontrolledTooltip;
@@ -0,0 +1,7 @@
1
+ import { Story } from "@storybook/react";
2
+ declare const TooltipStories: {
3
+ title: string;
4
+ component: (props: import("reactstrap").UncontrolledTooltipProps) => JSX.Element;
5
+ };
6
+ export default TooltipStories;
7
+ export declare const Icon: Story<import("reactstrap").UncontrolledTooltipProps>;
@@ -0,0 +1 @@
1
+ export { default } from "./NotControlledTooltip";
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import "../../../src/theme/fonts/ProximaNova.css";
3
2
  export type MenuItem = {
4
3
  icon: string;
@@ -0,0 +1,4 @@
1
+ import { TooltipProps } from "reactstrap";
2
+ export type TooltipCustomProps = {} & TooltipProps;
3
+ declare const TooltipCustom: (props: TooltipCustomProps) => JSX.Element;
4
+ export default TooltipCustom;
@@ -0,0 +1,7 @@
1
+ import { Story } from "@storybook/react";
2
+ declare const TooltipStories: {
3
+ title: string;
4
+ component: (props: import("reactstrap").TooltipProps) => JSX.Element;
5
+ };
6
+ export default TooltipStories;
7
+ export declare const Icon: Story<import("reactstrap").TooltipProps>;
@@ -0,0 +1 @@
1
+ export { default } from "./TooltipCustom";
@@ -32,4 +32,6 @@ export { default as ButtonMoreDetails } from "./ButtonMoreDetails";
32
32
  export { default as AddBalanceOutput } from "./AddBalanceOutput";
33
33
  export { default as IconWithTooltip } from "./IconWithTooltip";
34
34
  export { default as Tooltip } from "./TooltTip";
35
+ export { default as TooltipCustom } from "./TooltipCustom";
36
+ export { default as NotControlledToolTip } from "./NotControlledTooltip";
35
37
  export { default as BottomModal } from "./BottomModal";