@prosperitainova/mirage-ui 1.0.92 → 1.0.94
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/utils.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 +1 -1
- package/dist/esm/types/utils.d.ts +0 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -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
|
|
21
|
+
isPercentage?: boolean;
|
|
22
22
|
};
|
|
23
23
|
declare const InputCurrency: (props: InputCurrencyProps) => JSX.Element;
|
|
24
24
|
export default InputCurrency;
|
package/dist/index.d.ts
CHANGED
|
@@ -280,7 +280,7 @@ type InputCurrencyProps = InputHTMLAttributes<HTMLInputElement> & TextareaHTMLAt
|
|
|
280
280
|
fontSize?: "normal" | "large";
|
|
281
281
|
name?: string;
|
|
282
282
|
inputSize?: "normal" | "large";
|
|
283
|
-
isPercentage
|
|
283
|
+
isPercentage?: boolean;
|
|
284
284
|
};
|
|
285
285
|
declare const InputCurrency: (props: InputCurrencyProps) => JSX.Element;
|
|
286
286
|
|