@prosperitainova/mirage-ui 1.1.149 → 1.1.151
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 +4 -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';
|
|
@@ -267,6 +267,7 @@ type MenusProps = {
|
|
|
267
267
|
type TabMenuProps = {
|
|
268
268
|
menus: MenusProps[];
|
|
269
269
|
onChangeTab?: (index: number) => void;
|
|
270
|
+
menuActive?: number;
|
|
270
271
|
};
|
|
271
272
|
declare const TabMenu: (props: TabMenuProps) => react_jsx_runtime.JSX.Element;
|
|
272
273
|
|
|
@@ -344,6 +345,8 @@ type InputCurrencyProps = InputHTMLAttributes<HTMLInputElement> & TextareaHTMLAt
|
|
|
344
345
|
name?: string;
|
|
345
346
|
inputSize?: "normal" | "large";
|
|
346
347
|
isPercentage?: boolean;
|
|
348
|
+
ref?: RefObject<HTMLInputElement>;
|
|
349
|
+
autoFocus?: boolean;
|
|
347
350
|
};
|
|
348
351
|
declare const InputCurrency: (props: InputCurrencyProps) => react_jsx_runtime.JSX.Element;
|
|
349
352
|
|