@prosperitainova/mirage-ui 1.0.79 → 1.0.80

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.
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prosperitainova/mirage-ui",
3
- "version": "1.0.79",
3
+ "version": "1.0.80",
4
4
  "private": false,
5
5
  "license": "MIT",
6
6
  "publishConfig": {