pesona-ui 0.1.15 → 0.1.16

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.ts CHANGED
@@ -148,6 +148,7 @@ export declare const DatePicker: default_2.FC<DatePickerProps>;
148
148
  declare interface DatePickerProps {
149
149
  onSelect: (date: string) => void;
150
150
  defaultDate?: Date | string;
151
+ full?: boolean;
151
152
  }
152
153
 
153
154
  export declare const DivTable: default_2.FC<DivTableProps>;
@@ -265,15 +266,17 @@ export declare const FormRadio: default_2.FC<FormGroupProps>;
265
266
 
266
267
  export declare const Input: default_2.ForwardRefExoticComponent<Omit<InputProps, "ref"> & default_2.RefAttributes<HTMLInputElement>>;
267
268
 
268
- export declare const InputDate: default_2.ForwardRefExoticComponent<Omit<InputDateProps, "ref"> & default_2.RefAttributes<HTMLInputElement>>;
269
+ export declare const InputDate: default_2.ForwardRefExoticComponent<InputDateProps & default_2.RefAttributes<HTMLInputElement>>;
269
270
 
270
- declare interface InputDateProps extends HTMLProps<HTMLInputElement> {
271
+ declare interface InputDateProps extends Omit<default_2.InputHTMLAttributes<HTMLInputElement>, 'onChange' | 'value'> {
271
272
  name: string;
272
273
  label: string;
273
274
  message?: string;
274
275
  floatingLabel?: boolean;
275
- error?: string | undefined;
276
+ full?: boolean;
277
+ error?: string;
276
278
  value?: string;
279
+ onChange?: (e: ChangeEvent<HTMLInputElement>) => void;
277
280
  }
278
281
 
279
282
  export declare const InputFile: default_2.ForwardRefExoticComponent<InputFileProps & default_2.RefAttributes<HTMLInputElement>>;