@prosperitainova/mirage-ui 1.0.88 → 1.0.90

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.
@@ -0,0 +1,7 @@
1
+ export type IconProps = {
2
+ tooltipColor?: string;
3
+ tooltipLabel: string;
4
+ visible?: boolean;
5
+ };
6
+ declare const Tooltip: (props: IconProps) => JSX.Element;
7
+ export default Tooltip;
@@ -0,0 +1,8 @@
1
+ import { IconProps } from "./Tooltip";
2
+ import { Story } from "@storybook/react";
3
+ declare const TooltipStories: {
4
+ title: string;
5
+ component: (props: IconProps) => JSX.Element;
6
+ };
7
+ export default TooltipStories;
8
+ export declare const Icon: Story<IconProps>;
@@ -0,0 +1 @@
1
+ export { default } from "./Tooltip";
@@ -29,3 +29,4 @@ export { default as ParcelSelector } from "./ParcelSelector";
29
29
  export { default as ButtonMoreDetails } from "./ButtonMoreDetails";
30
30
  export { default as AddBalanceOutput } from "./AddBalanceOutput";
31
31
  export { default as IconWithTooltip } from "./IconWithTooltip";
32
+ export { default as Tooltip } from "./TooltTip";
package/dist/index.d.ts CHANGED
@@ -356,14 +356,21 @@ type AddBalanceOutputProps = InputHTMLAttributes<HTMLInputElement> & {
356
356
  };
357
357
  declare const AddBalanceOutput: (props: AddBalanceOutputProps) => JSX.Element;
358
358
 
359
- type IconProps = {
359
+ type IconProps$1 = {
360
360
  iconSize?: number;
361
361
  tooltipColor?: string;
362
362
  iconHoverFilterColor?: string;
363
363
  tooltipLabel: string;
364
364
  icon?: string;
365
365
  };
366
- declare const IconWithTooltip: (props: IconProps) => JSX.Element;
366
+ declare const IconWithTooltip: (props: IconProps$1) => JSX.Element;
367
+
368
+ type IconProps = {
369
+ tooltipColor?: string;
370
+ tooltipLabel: string;
371
+ visible?: boolean;
372
+ };
373
+ declare const Tooltip: (props: IconProps) => JSX.Element;
367
374
 
368
- export { AddBalanceOutput, BalanceAlert, Breadcrumb, Button, ButtonDropdown, ButtonMoreDetails, Checkbox, CustomSelect, Dropzone, IconWithTooltip, Input, InputCurrency, InputToken, InteractiveModal, lateralModal as LateralModal, MenuDropdown as Menudropdown, NotificationBar as NotificationsBar, Pagination, ParcelSelector, ProgressBar, Radio, RadioGroup, ReturnButton, Search, SideBar, Spacer, SummaryPanel, TabMenu, Table, Toast, Toggle };
375
+ export { AddBalanceOutput, BalanceAlert, Breadcrumb, Button, ButtonDropdown, ButtonMoreDetails, Checkbox, CustomSelect, Dropzone, IconWithTooltip, Input, InputCurrency, InputToken, InteractiveModal, lateralModal as LateralModal, MenuDropdown as Menudropdown, NotificationBar as NotificationsBar, Pagination, ParcelSelector, ProgressBar, Radio, RadioGroup, ReturnButton, Search, SideBar, Spacer, SummaryPanel, TabMenu, Table, Toast, Toggle, Tooltip };
369
376
  //# sourceMappingURL=index.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prosperitainova/mirage-ui",
3
- "version": "1.0.88",
3
+ "version": "1.0.90",
4
4
  "private": false,
5
5
  "license": "MIT",
6
6
  "publishConfig": {