@reinosoft-ui/core 0.1.39 → 0.1.41
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/components/Autocomplete/Autocomplete.d.ts +1 -0
- package/dist/components/DatePicker/DatePicker.vue.d.ts +3 -2
- package/dist/components/DatePicker/types.d.ts +1 -0
- package/dist/reinosoft-ui.es.js +1750 -1736
- package/dist/reinosoft-ui.umd.js +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -4,9 +4,9 @@ type __VLS_ModelProps = {
|
|
|
4
4
|
modelValue?: Date | null;
|
|
5
5
|
};
|
|
6
6
|
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
7
|
-
declare var
|
|
7
|
+
declare var __VLS_22: {};
|
|
8
8
|
type __VLS_Slots = {} & {
|
|
9
|
-
time?: (props: typeof
|
|
9
|
+
time?: (props: typeof __VLS_22) => any;
|
|
10
10
|
};
|
|
11
11
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
12
12
|
"update:modelValue": (value: Date | null | undefined) => any;
|
|
@@ -19,6 +19,7 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {
|
|
|
19
19
|
locale: string;
|
|
20
20
|
format: string;
|
|
21
21
|
firstDayOfWeek: number;
|
|
22
|
+
todayLabel: string;
|
|
22
23
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
23
24
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
24
25
|
declare const _default: typeof __VLS_export;
|