@prosperitainova/mirage-ui 1.0.51 → 1.0.53
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/InputCurrency/InputCurrency.d.ts +1 -1
- package/dist/cjs/types/lib/RadioGroup/RadioGroup.d.ts +0 -1
- package/dist/cjs/types/lib/RadioGroup/RadioGroup.stories.d.ts +1 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/lib/InputCurrency/InputCurrency.d.ts +1 -1
- package/dist/esm/types/lib/RadioGroup/RadioGroup.d.ts +0 -1
- package/dist/esm/types/lib/RadioGroup/RadioGroup.stories.d.ts +1 -0
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -16,7 +16,7 @@ export type InputCurrencyProps = InputHTMLAttributes<HTMLInputElement> & Textare
|
|
|
16
16
|
onChange?: (e: any) => void;
|
|
17
17
|
maxLength?: number;
|
|
18
18
|
fontSize?: "normal" | "large";
|
|
19
|
-
|
|
19
|
+
isPercentage?: boolean;
|
|
20
20
|
};
|
|
21
21
|
declare const InputCurrency: (props: InputCurrencyProps) => JSX.Element;
|
|
22
22
|
export default InputCurrency;
|
package/dist/index.d.ts
CHANGED
|
@@ -270,7 +270,7 @@ type InputCurrencyProps = InputHTMLAttributes<HTMLInputElement> & TextareaHTMLAt
|
|
|
270
270
|
onChange?: (e: any) => void;
|
|
271
271
|
maxLength?: number;
|
|
272
272
|
fontSize?: "normal" | "large";
|
|
273
|
-
|
|
273
|
+
isPercentage?: boolean;
|
|
274
274
|
};
|
|
275
275
|
declare const InputCurrency: (props: InputCurrencyProps) => JSX.Element;
|
|
276
276
|
|