@wisemen/vue-core-components 2.0.0-beta.0 → 2.0.0-beta.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/{AlertCircleIcon-D7CicIEs.js → AlertCircleIcon-BLbtEUH-.js} +3 -3
- package/dist/{AlertTriangleIcon-DzlLdT1q.js → AlertTriangleIcon-kJw_T9e-.js} +3 -3
- package/dist/{ArrowDownIcon-DZr01Sf6.js → ArrowDownIcon-CkVQsEvv.js} +3 -3
- package/dist/{ArrowLeftIcon-CVU7B5Rv.js → ArrowLeftIcon-CP9_-qnd.js} +3 -3
- package/dist/{ArrowRightIcon-A8_LzUxJ.js → ArrowRightIcon-w5fVDFiq.js} +3 -3
- package/dist/{ArrowUpIcon-c-BbbYHh.js → ArrowUpIcon-DKZjRlmj.js} +3 -3
- package/dist/{CalendarIcon-D2NvYthk.js → CalendarIcon-7fprEqFc.js} +3 -3
- package/dist/{CheckCircleIcon-DKnYfS0a.js → CheckCircleIcon-HbJLgOw9.js} +3 -3
- package/dist/{CheckIcon-BdFM_PWS.js → CheckIcon-BBFmLGuv.js} +3 -3
- package/dist/{ChevronLeftDoubleIcon-BjIKgpkh.js → ChevronLeftDoubleIcon-Drc444v-.js} +3 -3
- package/dist/{ChevronLeftIcon-DhUy0U_9.js → ChevronLeftIcon-B4KT0JAn.js} +3 -3
- package/dist/{ChevronRightDoubleIcon-BF0prMpM.js → ChevronRightDoubleIcon-CQvmF4I2.js} +3 -3
- package/dist/{ChevronRightIcon-5hSTA6TF.js → ChevronRightIcon-0XgcagRL.js} +3 -3
- package/dist/{CloseIcon-C0sSLkrm.js → CloseIcon-BHMSev8x.js} +3 -3
- package/dist/{EyeIcon-LaL5PkGR.js → EyeIcon-B6T7aYfu.js} +3 -3
- package/dist/{EyeOffIcon-CG1ArkOt.js → EyeOffIcon-Ct16b1Ad.js} +3 -3
- package/dist/{InfoCircleIcon-itEN2uGV.js → InfoCircleIcon-BmWDjIZI.js} +3 -3
- package/dist/{MinusIcon-Dm3It5EC.js → MinusIcon-uRMLJl9L.js} +3 -3
- package/dist/{PlusIcon-C71GCIJ1.js → PlusIcon-ClWc-DVk.js} +3 -3
- package/dist/{SearchIcon-DMDvaCjI.js → SearchIcon-CbBNTlci.js} +3 -3
- package/dist/{SelectIconRight-CpQjNlqt.js → SelectIconRight-DjElyeZe.js} +3 -3
- package/dist/{StarsIcon-CtRxOZ6l.js → StarsIcon-C7prwd5n.js} +3 -3
- package/dist/{SwitchVerticalIcon-BbFWYPhT.js → SwitchVerticalIcon-Dps8uK3y.js} +3 -3
- package/dist/{TranslateIcon-BWa8fOJh.js → TranslateIcon-OYD9gTka.js} +3 -3
- package/dist/components/date-field/parts/DateFieldRoot.d.ts +4 -4
- package/dist/components/date-picker/range/parts/DateRangePickerRoot.d.ts +4 -4
- package/dist/components/date-picker/single/parts/DatePickerRoot.d.ts +4 -4
- package/dist/components/date-range-field/parts/DateRangeFieldRoot.d.ts +4 -4
- package/dist/{index-B8ijWIxM.js → index-Dj_duNG8.js} +3906 -3645
- package/dist/index.js +1 -1
- package/dist/index.umd +14 -14
- package/dist/style.css +1 -1
- package/dist/types/shareDateProps.type.d.ts +5 -4
- package/package.json +19 -19
|
@@ -53,10 +53,10 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
53
53
|
classConfig: ResolvedClassConfig<"dateRangeField"> | null;
|
|
54
54
|
autocomplete: "off" | "on";
|
|
55
55
|
hideDatePicker: boolean;
|
|
56
|
-
maxDate:
|
|
57
|
-
minDate:
|
|
58
|
-
isDateDisabled: (date:
|
|
59
|
-
isDateUnavailable: (date:
|
|
56
|
+
maxDate: Temporal.PlainDate | null;
|
|
57
|
+
minDate: Temporal.PlainDate | null;
|
|
58
|
+
isDateDisabled: (date: Temporal.PlainDate) => boolean;
|
|
59
|
+
isDateUnavailable: (date: Temporal.PlainDate) => boolean;
|
|
60
60
|
allowDeselect: boolean;
|
|
61
61
|
showTwoMonths: boolean;
|
|
62
62
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|