@prosperitainova/mirage-ui 1.1.162 → 1.1.165
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/esm/index.js +4 -4
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -89,6 +89,7 @@ interface DropzoneProps extends DropzoneRootPropsLite {
|
|
|
89
89
|
onRemoveFile?: (removedIndex: number) => void;
|
|
90
90
|
onFilesChanged?: (files: DropzoneFileProps[]) => void;
|
|
91
91
|
dumbo?: boolean;
|
|
92
|
+
notShowFile?: boolean;
|
|
92
93
|
}
|
|
93
94
|
declare const Dropzone: (props: DropzoneProps) => react_jsx_runtime.JSX.Element;
|
|
94
95
|
|
|
@@ -107,6 +108,7 @@ type InputProps = InputHTMLAttributes<HTMLInputElement> & TextareaHTMLAttributes
|
|
|
107
108
|
onFocus?: boolean;
|
|
108
109
|
min?: string;
|
|
109
110
|
max?: string;
|
|
111
|
+
isPercentage?: boolean;
|
|
110
112
|
};
|
|
111
113
|
declare const Input: (props: InputProps) => react_jsx_runtime.JSX.Element;
|
|
112
114
|
|