@prosperitainova/mirage-ui 1.0.75 → 1.0.76

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.
@@ -1,6 +1,7 @@
1
1
  /// <reference types="react" />
2
2
  export type InputTokenProps = {
3
3
  inputsNumber?: number;
4
+ onInputChange?: (value: string) => void;
4
5
  };
5
- declare function InputToken({ inputsNumber: numberOfInputs }: InputTokenProps): JSX.Element;
6
+ declare function InputToken({ inputsNumber: numberOfInputs, onInputChange, }: InputTokenProps): JSX.Element;
6
7
  export default InputToken;
package/dist/index.d.ts CHANGED
@@ -241,8 +241,9 @@ declare const ProgressBar: (props: ProgressBarProps) => JSX.Element;
241
241
 
242
242
  type InputTokenProps = {
243
243
  inputsNumber?: number;
244
+ onInputChange?: (value: string) => void;
244
245
  };
245
- declare function InputToken({ inputsNumber: numberOfInputs }: InputTokenProps): JSX.Element;
246
+ declare function InputToken({ inputsNumber: numberOfInputs, onInputChange, }: InputTokenProps): JSX.Element;
246
247
 
247
248
  type TableColumn<T = any> = {
248
249
  label: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prosperitainova/mirage-ui",
3
- "version": "1.0.75",
3
+ "version": "1.0.76",
4
4
  "private": false,
5
5
  "license": "MIT",
6
6
  "publishConfig": {