@prosperitainova/mirage-ui 1.0.92 → 1.0.93

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.
@@ -18,7 +18,7 @@ export type InputCurrencyProps = InputHTMLAttributes<HTMLInputElement> & Textare
18
18
  fontSize?: "normal" | "large";
19
19
  name?: string;
20
20
  inputSize?: "normal" | "large";
21
- isPercentage: boolean;
21
+ isPercentage?: boolean;
22
22
  };
23
23
  declare const InputCurrency: (props: InputCurrencyProps) => JSX.Element;
24
24
  export default InputCurrency;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { InputCurrencyProps } from "./InputCurrency";
2
3
  import { Story } from "@storybook/react";
3
4
  declare const InputNumberStories: {