warqadui 0.0.149 → 0.0.151

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/index.d.mts CHANGED
@@ -289,6 +289,10 @@ interface DateInputProps<T extends FieldValues> {
289
289
  containerClassName?: string;
290
290
  name?: Path<T>;
291
291
  form?: UseFormReturn<T>;
292
+ value?: string;
293
+ onChange?: (value: string) => void;
294
+ onBlur?: () => void;
295
+ className?: string;
292
296
  [key: string]: any;
293
297
  }
294
298
  declare const DateInput: <T extends FieldValues>(props: DateInputProps<T> & {
package/dist/index.d.ts CHANGED
@@ -289,6 +289,10 @@ interface DateInputProps<T extends FieldValues> {
289
289
  containerClassName?: string;
290
290
  name?: Path<T>;
291
291
  form?: UseFormReturn<T>;
292
+ value?: string;
293
+ onChange?: (value: string) => void;
294
+ onBlur?: () => void;
295
+ className?: string;
292
296
  [key: string]: any;
293
297
  }
294
298
  declare const DateInput: <T extends FieldValues>(props: DateInputProps<T> & {