@prosperitainova/mirage-ui 1.1.149 → 1.1.150
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/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +3 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import React, { ButtonHTMLAttributes, InputHTMLAttributes, TextareaHTMLAttributes, HTMLAttributes, ChangeEvent, LiHTMLAttributes } from 'react';
|
|
2
|
+
import React, { ButtonHTMLAttributes, InputHTMLAttributes, TextareaHTMLAttributes, HTMLAttributes, ChangeEvent, RefObject, LiHTMLAttributes } from 'react';
|
|
3
3
|
import { DropzoneProps as DropzoneProps$1 } from 'react-dropzone';
|
|
4
4
|
import { Props } from 'react-select';
|
|
5
5
|
import { TooltipProps, UncontrolledTooltipProps } from 'reactstrap';
|
|
@@ -344,6 +344,8 @@ type InputCurrencyProps = InputHTMLAttributes<HTMLInputElement> & TextareaHTMLAt
|
|
|
344
344
|
name?: string;
|
|
345
345
|
inputSize?: "normal" | "large";
|
|
346
346
|
isPercentage?: boolean;
|
|
347
|
+
ref?: RefObject<HTMLInputElement>;
|
|
348
|
+
autoFocus?: boolean;
|
|
347
349
|
};
|
|
348
350
|
declare const InputCurrency: (props: InputCurrencyProps) => react_jsx_runtime.JSX.Element;
|
|
349
351
|
|