voiptime-components 1.10.2 → 1.11.1

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
@@ -1142,7 +1142,7 @@ export declare const uniqueAsync: (checkFn: (val: any) => Promise<boolean>, mess
1142
1142
  /**
1143
1143
  * Build validation tree recursively
1144
1144
  */
1145
- export declare function useValidate(rulesOrFactory: RulesObject | (() => RulesObject), state: AnyObject, globalOpts?: {
1145
+ export declare function useValidate(rulesOrFactory: RulesObject | (() => RulesObject), state: AnyObject | any, globalOpts?: {
1146
1146
  silentErrors?: boolean;
1147
1147
  }): ValidationGroup;
1148
1148
 
@@ -1265,6 +1265,8 @@ export declare const VDatePicker: DefineComponent<VDatePickerProps, {
1265
1265
  use12Hours: boolean;
1266
1266
  hideDisabledOptions: boolean;
1267
1267
  valueFormat: string;
1268
+ maxDateRange: number;
1269
+ previousDateDisabled: boolean;
1268
1270
  }, {}, {}, {}, string, ComponentProvideOptions, false, {
1269
1271
  datePickerRef: HTMLDivElement;
1270
1272
  triggerRef: HTMLDivElement;
@@ -1462,6 +1464,8 @@ export declare interface VDatePickerProps {
1462
1464
  disabledMinutes?: (selectedHour: number) => number[];
1463
1465
  disabledSeconds?: (selectedHour: number, selectedMinute: number) => number[];
1464
1466
  hideDisabledOptions?: boolean;
1467
+ maxDateRange?: number;
1468
+ previousDateDisabled?: boolean;
1465
1469
  }
1466
1470
 
1467
1471
  export declare const VDropdown: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;