@prosperitainova/mirage-ui 1.0.86 → 1.0.88
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.
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/lib/IconWithTooltip/index.d.ts +1 -0
- package/dist/cjs/types/lib/index.d.ts +1 -0
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/lib/IconWithTooltip/index.d.ts +1 -0
- package/dist/esm/types/lib/index.d.ts +1 -0
- package/dist/index.d.ts +10 -1
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "./IconWithTooltip";
|
|
@@ -28,3 +28,4 @@ export { default as BalanceAlert } from "./BalanceAlert";
|
|
|
28
28
|
export { default as ParcelSelector } from "./ParcelSelector";
|
|
29
29
|
export { default as ButtonMoreDetails } from "./ButtonMoreDetails";
|
|
30
30
|
export { default as AddBalanceOutput } from "./AddBalanceOutput";
|
|
31
|
+
export { default as IconWithTooltip } from "./IconWithTooltip";
|
package/dist/index.d.ts
CHANGED
|
@@ -356,5 +356,14 @@ type AddBalanceOutputProps = InputHTMLAttributes<HTMLInputElement> & {
|
|
|
356
356
|
};
|
|
357
357
|
declare const AddBalanceOutput: (props: AddBalanceOutputProps) => JSX.Element;
|
|
358
358
|
|
|
359
|
-
|
|
359
|
+
type IconProps = {
|
|
360
|
+
iconSize?: number;
|
|
361
|
+
tooltipColor?: string;
|
|
362
|
+
iconHoverFilterColor?: string;
|
|
363
|
+
tooltipLabel: string;
|
|
364
|
+
icon?: string;
|
|
365
|
+
};
|
|
366
|
+
declare const IconWithTooltip: (props: IconProps) => JSX.Element;
|
|
367
|
+
|
|
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 };
|
|
360
369
|
//# sourceMappingURL=index.d.ts.map
|