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