@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.
- package/dist/cjs/index.js +2 -2
- 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
|
@@ -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;
|