@prosperitainova/mirage-ui 1.0.79 → 1.0.81
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/InputToken/InputToken.d.ts +2 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/lib/InputToken/InputToken.d.ts +2 -1
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
export type InputTokenProps = {
|
|
3
3
|
inputsNumber?: number;
|
|
4
4
|
onInputChange?: (value: string) => void;
|
|
5
|
+
clearAll?: boolean;
|
|
5
6
|
};
|
|
6
|
-
declare function InputToken({ inputsNumber: numberOfInputs, onInputChange, }: InputTokenProps): JSX.Element;
|
|
7
|
+
declare function InputToken({ inputsNumber: numberOfInputs, onInputChange, clearAll, }: InputTokenProps): JSX.Element;
|
|
7
8
|
export default InputToken;
|
package/dist/index.d.ts
CHANGED
|
@@ -242,8 +242,9 @@ declare const ProgressBar: (props: ProgressBarProps) => JSX.Element;
|
|
|
242
242
|
type InputTokenProps = {
|
|
243
243
|
inputsNumber?: number;
|
|
244
244
|
onInputChange?: (value: string) => void;
|
|
245
|
+
clearAll?: boolean;
|
|
245
246
|
};
|
|
246
|
-
declare function InputToken({ inputsNumber: numberOfInputs, onInputChange, }: InputTokenProps): JSX.Element;
|
|
247
|
+
declare function InputToken({ inputsNumber: numberOfInputs, onInputChange, clearAll, }: InputTokenProps): JSX.Element;
|
|
247
248
|
|
|
248
249
|
type TableColumn<T = any> = {
|
|
249
250
|
label: string;
|