@prosperitainova/mirage-ui 1.0.85 → 1.0.87
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 +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/lib/AddBalanceOutput/AddBalanceOutput.d.ts +22 -0
- package/dist/cjs/types/lib/AddBalanceOutput/AddBalanceOutput.stories.d.ts +8 -0
- package/dist/cjs/types/lib/AddBalanceOutput/index.d.ts +1 -0
- package/dist/cjs/types/lib/IconWithTooltip/IconWithTooltip.d.ts +9 -0
- package/dist/cjs/types/lib/IconWithTooltip/IconWithTooltip.stories.d.ts +8 -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/AddBalanceOutput/AddBalanceOutput.d.ts +22 -0
- package/dist/esm/types/lib/AddBalanceOutput/AddBalanceOutput.stories.d.ts +8 -0
- package/dist/esm/types/lib/AddBalanceOutput/index.d.ts +1 -0
- package/dist/esm/types/lib/IconWithTooltip/IconWithTooltip.d.ts +9 -0
- package/dist/esm/types/lib/IconWithTooltip/IconWithTooltip.stories.d.ts +8 -0
- package/dist/esm/types/lib/index.d.ts +1 -0
- package/dist/index.d.ts +21 -1
- package/package.json +1 -1
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { ChangeEvent, InputHTMLAttributes } from "react";
|
|
2
|
+
import "../../../src/theme/fonts/ProximaNova.css";
|
|
3
|
+
export type AddBalanceOutputProps = InputHTMLAttributes<HTMLInputElement> & {
|
|
4
|
+
value?: string;
|
|
5
|
+
error?: string | boolean;
|
|
6
|
+
success?: boolean;
|
|
7
|
+
helper?: string;
|
|
8
|
+
label?: string;
|
|
9
|
+
newPassword?: boolean;
|
|
10
|
+
newPasswordLevel?: string;
|
|
11
|
+
search?: boolean;
|
|
12
|
+
mask?: string;
|
|
13
|
+
required?: boolean;
|
|
14
|
+
disabled?: boolean;
|
|
15
|
+
type?: string;
|
|
16
|
+
onChange?: (e: ChangeEvent<HTMLInputElement>) => void;
|
|
17
|
+
maxLength?: number;
|
|
18
|
+
fontSize?: "normal" | "large";
|
|
19
|
+
name?: string;
|
|
20
|
+
};
|
|
21
|
+
declare const AddBalanceOutput: (props: AddBalanceOutputProps) => JSX.Element;
|
|
22
|
+
export default AddBalanceOutput;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { AddBalanceOutputProps } from "./AddBalanceOutput";
|
|
2
|
+
import { Story } from "@storybook/react";
|
|
3
|
+
declare const AddBalanceOutputStories: {
|
|
4
|
+
title: string;
|
|
5
|
+
component: (props: AddBalanceOutputProps) => JSX.Element;
|
|
6
|
+
};
|
|
7
|
+
export default AddBalanceOutputStories;
|
|
8
|
+
export declare const Output: Story<AddBalanceOutputProps>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "./AddBalanceOutput";
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IconProps } from "./IconWithTooltip";
|
|
2
|
+
import { Story } from "@storybook/react";
|
|
3
|
+
declare const IconWithTooltipStories: {
|
|
4
|
+
title: string;
|
|
5
|
+
component: (props: IconProps) => JSX.Element;
|
|
6
|
+
};
|
|
7
|
+
export default IconWithTooltipStories;
|
|
8
|
+
export declare const Icon: Story<IconProps>;
|
|
@@ -27,3 +27,4 @@ export { default as Pagination } from "./Pagination";
|
|
|
27
27
|
export { default as BalanceAlert } from "./BalanceAlert";
|
|
28
28
|
export { default as ParcelSelector } from "./ParcelSelector";
|
|
29
29
|
export { default as ButtonMoreDetails } from "./ButtonMoreDetails";
|
|
30
|
+
export { default as AddBalanceOutput } from "./AddBalanceOutput";
|