@fluidattacks/design 3.35.1 → 3.35.3

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,5 +1,5 @@
1
1
  import { InputHTMLAttributes, TextareaHTMLAttributes } from 'react';
2
- import { Control, ControllerFieldState, ControllerRenderProps, FieldArrayWithId, FieldValues, UseFieldArrayAppend, UseFieldArrayRemove, UseFormRegister, UseFormResetField, UseFormSetValue, UseFormWatch } from 'react-hook-form';
2
+ import { Control, ControllerFieldState, ControllerRenderProps, FieldArrayWithId, UseFieldArrayAppend, UseFieldArrayRemove, UseFormRegister, UseFormResetField, UseFormSetValue, UseFormWatch } from 'react-hook-form';
3
3
  type TInputFileVariant = "default" | "dropzone";
4
4
  /**
5
5
  * Defines a dictionary-like object for mapping string keys to string values.
@@ -73,7 +73,7 @@ interface IInputProps extends InputHTMLAttributes<HTMLInputElement>, Partial<Omi
73
73
  removeItemArray?: (index: number) => () => void;
74
74
  register?: UseFormRegister<any>;
75
75
  setValue?: UseFormSetValue<any>;
76
- resetField?: UseFormResetField<FieldValues>;
76
+ resetField?: UseFormResetField<any>;
77
77
  suggestions?: string[];
78
78
  watch?: UseFormWatch<any>;
79
79
  }
package/package.json CHANGED
@@ -120,5 +120,5 @@
120
120
  "test": "vitest --project=storybook --coverage"
121
121
  },
122
122
  "typings": "./dist/index.d.ts",
123
- "version": "3.35.1"
123
+ "version": "3.35.3"
124
124
  }