voiptime-components 1.12.49 → 1.12.50

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
@@ -1355,7 +1355,10 @@ export declare const VDatePicker: DefineComponent<VDatePickerProps, {
1355
1355
  blur: () => void;
1356
1356
  open: () => void;
1357
1357
  close: () => void;
1358
- validate: (required?: boolean) => DateValidationResult;
1358
+ validate: () => {
1359
+ isValid: boolean;
1360
+ errors: string[];
1361
+ };
1359
1362
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1360
1363
  blur: (instance: any) => any;
1361
1364
  change: (value: DatePickerValue) => any;