@keyblade/pro-components 1.12.13 → 1.12.14
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/es/pro-date-range-picker/pro-date-range-picker.vue.d.ts +10 -12
- package/es/pro-date-range-picker/pro-date-range-picker.vue.js +3 -3
- package/es/pro-date-range-picker/pro-date-range-picker.vue2.js +49 -47
- package/es/pro-layout/index.d.ts +9 -9
- package/es/style.css +1 -1
- package/package.json +1 -1
- package/es/pro-date-range-picker/index.d.ts +0 -82
|
@@ -1,23 +1,21 @@
|
|
|
1
|
+
interface IModelValue {
|
|
2
|
+
[key: string]: string;
|
|
3
|
+
}
|
|
1
4
|
type __VLS_Props = {
|
|
2
|
-
modelValue:
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
};
|
|
5
|
+
modelValue: IModelValue;
|
|
6
|
+
startField?: string;
|
|
7
|
+
endField?: string;
|
|
6
8
|
startPlaceholder?: string;
|
|
7
9
|
endPlaceholder?: string;
|
|
8
10
|
separator?: string;
|
|
9
11
|
};
|
|
10
12
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
11
|
-
"update:modelValue": (value:
|
|
12
|
-
startDate?: string;
|
|
13
|
-
endDate?: string;
|
|
14
|
-
}) => any;
|
|
13
|
+
"update:modelValue": (value: IModelValue) => any;
|
|
15
14
|
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
16
|
-
"onUpdate:modelValue"?: ((value:
|
|
17
|
-
startDate?: string;
|
|
18
|
-
endDate?: string;
|
|
19
|
-
}) => any) | undefined;
|
|
15
|
+
"onUpdate:modelValue"?: ((value: IModelValue) => any) | undefined;
|
|
20
16
|
}>, {
|
|
17
|
+
startField: string;
|
|
18
|
+
endField: string;
|
|
21
19
|
startPlaceholder: string;
|
|
22
20
|
endPlaceholder: string;
|
|
23
21
|
separator: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./pro-date-range-picker.vue2.js";
|
|
2
2
|
/* empty css */
|
|
3
|
-
import
|
|
4
|
-
const
|
|
3
|
+
import a from "../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
+
const _ = /* @__PURE__ */ a(o, [["__scopeId", "data-v-a2d94a6c"]]);
|
|
5
5
|
export {
|
|
6
|
-
|
|
6
|
+
_ as default
|
|
7
7
|
};
|
|
@@ -1,101 +1,103 @@
|
|
|
1
|
-
import { defineComponent as
|
|
1
|
+
import { defineComponent as C, ref as f, computed as V, resolveComponent as k, createElementBlock as v, openBlock as P, normalizeClass as E, createVNode as d, withCtx as n, createTextVNode as S, toDisplayString as R, nextTick as h } from "vue";
|
|
2
2
|
import o from "dayjs";
|
|
3
|
-
const T = "keyblade-pro-date-range-picker",
|
|
3
|
+
const T = "keyblade-pro-date-range-picker", N = /* @__PURE__ */ C({
|
|
4
4
|
__name: "pro-date-range-picker",
|
|
5
5
|
props: {
|
|
6
6
|
modelValue: {},
|
|
7
|
+
startField: { default: "startDate" },
|
|
8
|
+
endField: { default: "endDate" },
|
|
7
9
|
startPlaceholder: { default: "开始日期" },
|
|
8
10
|
endPlaceholder: { default: "结束日期" },
|
|
9
11
|
separator: { default: "至" }
|
|
10
12
|
},
|
|
11
13
|
emits: ["update:modelValue"],
|
|
12
|
-
setup(
|
|
13
|
-
const
|
|
14
|
-
get: () =>
|
|
15
|
-
set: (
|
|
16
|
-
|
|
17
|
-
...
|
|
18
|
-
|
|
14
|
+
setup(D, { emit: F }) {
|
|
15
|
+
const e = D, i = F, s = f(), u = f(), m = V({
|
|
16
|
+
get: () => e.modelValue[e.startField],
|
|
17
|
+
set: (t) => {
|
|
18
|
+
i("update:modelValue", {
|
|
19
|
+
...e.modelValue,
|
|
20
|
+
[e.startField]: t
|
|
19
21
|
});
|
|
20
22
|
}
|
|
21
|
-
}),
|
|
22
|
-
get: () =>
|
|
23
|
-
set: (
|
|
24
|
-
|
|
25
|
-
...
|
|
26
|
-
|
|
23
|
+
}), p = V({
|
|
24
|
+
get: () => e.modelValue[e.endField],
|
|
25
|
+
set: (t) => {
|
|
26
|
+
i("update:modelValue", {
|
|
27
|
+
...e.modelValue,
|
|
28
|
+
[e.endField]: t
|
|
27
29
|
});
|
|
28
30
|
}
|
|
29
|
-
}),
|
|
31
|
+
}), g = (t) => e.modelValue.endDate ? o(t).isAfter(o(e.modelValue[e.startField])) : !1, b = (t) => e.modelValue.startDate ? o(t).isBefore(o(e.modelValue[e.endField])) : !1, _ = () => {
|
|
30
32
|
setTimeout(() => {
|
|
31
|
-
|
|
32
|
-
var
|
|
33
|
-
const
|
|
34
|
-
|
|
33
|
+
e.modelValue[e.startField] && !e.modelValue[e.endField] && h(() => {
|
|
34
|
+
var l;
|
|
35
|
+
const t = (l = u.value) == null ? void 0 : l.$el.parentElement.querySelector("input");
|
|
36
|
+
t && t.click();
|
|
35
37
|
});
|
|
36
38
|
});
|
|
37
|
-
},
|
|
39
|
+
}, y = () => {
|
|
38
40
|
setTimeout(() => {
|
|
39
|
-
|
|
40
|
-
var
|
|
41
|
-
const
|
|
42
|
-
|
|
41
|
+
e.modelValue[e.endField] && !e.modelValue[e.startField] && h(() => {
|
|
42
|
+
var l;
|
|
43
|
+
const t = (l = s.value) == null ? void 0 : l.$el.parentElement.querySelector("input");
|
|
44
|
+
t && t.click();
|
|
43
45
|
});
|
|
44
46
|
});
|
|
45
47
|
};
|
|
46
|
-
return (
|
|
47
|
-
const
|
|
48
|
-
return
|
|
48
|
+
return (t, l) => {
|
|
49
|
+
const c = k("a-date-picker"), r = k("a-form-item");
|
|
50
|
+
return P(), v("div", {
|
|
49
51
|
class: E(T)
|
|
50
52
|
}, [
|
|
51
53
|
d(r, {
|
|
52
|
-
field:
|
|
54
|
+
field: t.startField,
|
|
53
55
|
style: { "margin-right": "8px" },
|
|
54
56
|
"hide-label": ""
|
|
55
57
|
}, {
|
|
56
58
|
default: n(() => [
|
|
57
|
-
d(
|
|
59
|
+
d(c, {
|
|
58
60
|
ref_key: "startDatePickerRef",
|
|
59
|
-
ref:
|
|
61
|
+
ref: s,
|
|
60
62
|
modelValue: m.value,
|
|
61
|
-
"onUpdate:modelValue":
|
|
62
|
-
placeholder:
|
|
63
|
-
"disabled-date": (
|
|
64
|
-
onChange:
|
|
63
|
+
"onUpdate:modelValue": l[0] || (l[0] = (a) => m.value = a),
|
|
64
|
+
placeholder: t.startPlaceholder,
|
|
65
|
+
"disabled-date": (a) => g(a),
|
|
66
|
+
onChange: _
|
|
65
67
|
}, null, 8, ["modelValue", "placeholder", "disabled-date"])
|
|
66
68
|
]),
|
|
67
69
|
_: 1
|
|
68
|
-
}),
|
|
70
|
+
}, 8, ["field"]),
|
|
69
71
|
d(r, {
|
|
70
72
|
"hide-label": "",
|
|
71
73
|
style: { "margin-right": "8px" }
|
|
72
74
|
}, {
|
|
73
75
|
default: n(() => [
|
|
74
|
-
S(R(
|
|
76
|
+
S(R(t.separator), 1)
|
|
75
77
|
]),
|
|
76
78
|
_: 1
|
|
77
79
|
}),
|
|
78
80
|
d(r, {
|
|
79
|
-
field:
|
|
81
|
+
field: t.endField,
|
|
80
82
|
"hide-label": ""
|
|
81
83
|
}, {
|
|
82
84
|
default: n(() => [
|
|
83
|
-
d(
|
|
85
|
+
d(c, {
|
|
84
86
|
ref_key: "endDatePickerRef",
|
|
85
|
-
ref:
|
|
86
|
-
modelValue:
|
|
87
|
-
"onUpdate:modelValue":
|
|
88
|
-
placeholder:
|
|
89
|
-
"disabled-date": (
|
|
90
|
-
onChange:
|
|
87
|
+
ref: u,
|
|
88
|
+
modelValue: p.value,
|
|
89
|
+
"onUpdate:modelValue": l[1] || (l[1] = (a) => p.value = a),
|
|
90
|
+
placeholder: t.endPlaceholder,
|
|
91
|
+
"disabled-date": (a) => b(a),
|
|
92
|
+
onChange: y
|
|
91
93
|
}, null, 8, ["modelValue", "placeholder", "disabled-date"])
|
|
92
94
|
]),
|
|
93
95
|
_: 1
|
|
94
|
-
})
|
|
96
|
+
}, 8, ["field"])
|
|
95
97
|
]);
|
|
96
98
|
};
|
|
97
99
|
}
|
|
98
100
|
});
|
|
99
101
|
export {
|
|
100
|
-
|
|
102
|
+
N as default
|
|
101
103
|
};
|
package/es/pro-layout/index.d.ts
CHANGED
|
@@ -42,7 +42,7 @@ declare const ProLayout: {
|
|
|
42
42
|
default: boolean;
|
|
43
43
|
};
|
|
44
44
|
menuItems: {
|
|
45
|
-
type: import('vue').PropType<import('
|
|
45
|
+
type: import('vue').PropType<import('..').IProMenuItem[]>;
|
|
46
46
|
required: false;
|
|
47
47
|
default: () => never[];
|
|
48
48
|
};
|
|
@@ -87,7 +87,7 @@ declare const ProLayout: {
|
|
|
87
87
|
default: boolean;
|
|
88
88
|
};
|
|
89
89
|
onMenuItemClick: {
|
|
90
|
-
type: import('vue').PropType<(menuItem: import('
|
|
90
|
+
type: import('vue').PropType<(menuItem: import('..').IProMenuItem) => Promise<boolean>>;
|
|
91
91
|
required: false;
|
|
92
92
|
};
|
|
93
93
|
}>> & Readonly<{
|
|
@@ -109,7 +109,7 @@ declare const ProLayout: {
|
|
|
109
109
|
siderWidth: number;
|
|
110
110
|
siderBreakpoint: "xxl" | "xl" | "lg" | "md" | "sm" | "xs";
|
|
111
111
|
siderCollapsed: boolean;
|
|
112
|
-
menuItems: import('
|
|
112
|
+
menuItems: import('..').IProMenuItem[];
|
|
113
113
|
footerTitle: string;
|
|
114
114
|
hideFooter: boolean;
|
|
115
115
|
hideTabs: boolean;
|
|
@@ -163,7 +163,7 @@ declare const ProLayout: {
|
|
|
163
163
|
default: boolean;
|
|
164
164
|
};
|
|
165
165
|
menuItems: {
|
|
166
|
-
type: import('vue').PropType<import('
|
|
166
|
+
type: import('vue').PropType<import('..').IProMenuItem[]>;
|
|
167
167
|
required: false;
|
|
168
168
|
default: () => never[];
|
|
169
169
|
};
|
|
@@ -208,7 +208,7 @@ declare const ProLayout: {
|
|
|
208
208
|
default: boolean;
|
|
209
209
|
};
|
|
210
210
|
onMenuItemClick: {
|
|
211
|
-
type: import('vue').PropType<(menuItem: import('
|
|
211
|
+
type: import('vue').PropType<(menuItem: import('..').IProMenuItem) => Promise<boolean>>;
|
|
212
212
|
required: false;
|
|
213
213
|
};
|
|
214
214
|
}>> & Readonly<{
|
|
@@ -227,7 +227,7 @@ declare const ProLayout: {
|
|
|
227
227
|
siderWidth: number;
|
|
228
228
|
siderBreakpoint: "xxl" | "xl" | "lg" | "md" | "sm" | "xs";
|
|
229
229
|
siderCollapsed: boolean;
|
|
230
|
-
menuItems: import('
|
|
230
|
+
menuItems: import('..').IProMenuItem[];
|
|
231
231
|
footerTitle: string;
|
|
232
232
|
hideFooter: boolean;
|
|
233
233
|
hideTabs: boolean;
|
|
@@ -278,7 +278,7 @@ declare const ProLayout: {
|
|
|
278
278
|
default: boolean;
|
|
279
279
|
};
|
|
280
280
|
menuItems: {
|
|
281
|
-
type: import('vue').PropType<import('
|
|
281
|
+
type: import('vue').PropType<import('..').IProMenuItem[]>;
|
|
282
282
|
required: false;
|
|
283
283
|
default: () => never[];
|
|
284
284
|
};
|
|
@@ -323,7 +323,7 @@ declare const ProLayout: {
|
|
|
323
323
|
default: boolean;
|
|
324
324
|
};
|
|
325
325
|
onMenuItemClick: {
|
|
326
|
-
type: import('vue').PropType<(menuItem: import('
|
|
326
|
+
type: import('vue').PropType<(menuItem: import('..').IProMenuItem) => Promise<boolean>>;
|
|
327
327
|
required: false;
|
|
328
328
|
};
|
|
329
329
|
}>> & Readonly<{
|
|
@@ -345,7 +345,7 @@ declare const ProLayout: {
|
|
|
345
345
|
siderWidth: number;
|
|
346
346
|
siderBreakpoint: "xxl" | "xl" | "lg" | "md" | "sm" | "xs";
|
|
347
347
|
siderCollapsed: boolean;
|
|
348
|
-
menuItems: import('
|
|
348
|
+
menuItems: import('..').IProMenuItem[];
|
|
349
349
|
footerTitle: string;
|
|
350
350
|
hideFooter: boolean;
|
|
351
351
|
hideTabs: boolean;
|
package/es/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.keyblade-pro-page-header{background:var(--color-bg-2);padding:16px 32px}.keyblade-pro-page-header .keyblade-pro-page-header-section-breadcrumb .arco-breadcrumb-item:first-child{padding-left:0}.keyblade-pro-page-header .keyblade-pro-page-header-title.arco-typography{padding-top:4px;margin-top:0}.keyblade-pro-layout{width:100%;height:100%}.keyblade-pro-layout .keyblade-pro-layout-header{position:fixed;top:0;left:0;width:100%;height:var(--41512b1e);z-index:100;display:flex;align-items:center;justify-content:space-between;padding:0 20px;background-color:var(--color-bg-2);border-bottom:1px solid var(--color-border);transition:all .2s cubic-bezier(.34,.69,.1,1)}.keyblade-pro-layout .keyblade-pro-layout-header-left{cursor:pointer;display:flex;align-items:center}.keyblade-pro-layout .keyblade-pro-layout-header-left-logo-img{width:28px;height:28px}.keyblade-pro-layout .keyblade-pro-layout-header-left-logo-title.arco-typography{margin:0;font-size:18px}.keyblade-pro-layout .keyblade-pro-layout-header-center{flex:1}.keyblade-pro-layout .keyblade-pro-layout-sider{padding-top:var(--41512b1e);position:fixed;top:0;left:0;z-index:99;height:100%;transition:all .2s cubic-bezier(.34,.69,.1,1)}.keyblade-pro-layout .keyblade-pro-layout-sider-content{position:relative;height:100%;overflow:auto}.keyblade-pro-layout .keyblade-pro-layout-sider-collapse-btn.arco-btn{position:absolute;right:12px;bottom:12px}.keyblade-pro-layout .keyblade-pro-layout-body{padding-top:var(--41512b1e);padding-left:var(--514ba31c);min-height:100vh;overflow-y:hidden;background-color:var(--color-fill-2);transition:padding .2s cubic-bezier(.34,.69,.1,1)}.keyblade-pro-layout .keyblade-pro-layout-body-affix .arco-affix{z-index:98}.keyblade-pro-layout .keyblade-pro-layout-body-footer{display:flex;align-items:center;justify-content:center;height:40px;color:var(--color-text-2);text-align:center}.keyblade-pro-layout .keyblade-pro-layout-body-collapsed{padding-left:var(--27c679ae)}.keyblade-pro-layout-side .keyblade-pro-layout-header{z-index:98;left:var(--514ba31c);width:calc(100% - var(--514ba31c))}.keyblade-pro-layout-side .keyblade-pro-layout-header-collapsed{left:var(--27c679ae);width:calc(100% - var(--27c679ae))}.keyblade-pro-layout-side .keyblade-pro-layout-sider{padding-top:0}.keyblade-pro-layout-side .keyblade-pro-layout-sider-content-logo{position:relative;display:flex;align-items:center;padding:16px;cursor:pointer;transition:padding .3s cubic-bezier(.645,.045,.355,1)}.keyblade-pro-layout-side .keyblade-pro-layout-sider-content-logo-img{width:28px;height:28px}.keyblade-pro-layout-side .keyblade-pro-layout-sider-content-logo-title.arco-typography{margin:0;font-size:18px}.keyblade-pro-layout-side .keyblade-pro-layout-sider-collapsed .keyblade-pro-layout-sider-content-logo{padding:16px 10px}.keyblade-pro-menu .keyblade-pro-menu-item-img{width:14px;height:auto}.keyblade-pro-reuse-tabs{position:relative;background-color:var(--color-bg-2);padding:4px 20px}.keyblade-pro-page-container .keyblade-pro-page-container-content{padding:20px}.keyblade-pro-image-upload-cropper-dialog-cropper-wrapper[data-v-72acd329]{width:100%;height:400px}.keyblade-pro-image-upload-cropper-dialog-operate[data-v-72acd329]{margin-top:24px;display:flex;align-items:center;justify-content:center}.keyblade-pro-image-upload-cropper-dialog-footer[data-v-72acd329]{margin-top:24px;display:flex;align-items:center;justify-content:flex-end}.keyblade-pro-image-upload-cropper-dialog-footer-left[data-v-72acd329]{display:flex;align-items:center;justify-content:flex-start;margin-right:12px}.keyblade-pro-image-upload-cropper-dialog-footer-right[data-v-72acd329]{flex:1;display:flex;align-items:center;justify-content:flex-end}.keyblade-pro-date-range-picker[data-v-
|
|
1
|
+
.keyblade-pro-page-header{background:var(--color-bg-2);padding:16px 32px}.keyblade-pro-page-header .keyblade-pro-page-header-section-breadcrumb .arco-breadcrumb-item:first-child{padding-left:0}.keyblade-pro-page-header .keyblade-pro-page-header-title.arco-typography{padding-top:4px;margin-top:0}.keyblade-pro-layout{width:100%;height:100%}.keyblade-pro-layout .keyblade-pro-layout-header{position:fixed;top:0;left:0;width:100%;height:var(--41512b1e);z-index:100;display:flex;align-items:center;justify-content:space-between;padding:0 20px;background-color:var(--color-bg-2);border-bottom:1px solid var(--color-border);transition:all .2s cubic-bezier(.34,.69,.1,1)}.keyblade-pro-layout .keyblade-pro-layout-header-left{cursor:pointer;display:flex;align-items:center}.keyblade-pro-layout .keyblade-pro-layout-header-left-logo-img{width:28px;height:28px}.keyblade-pro-layout .keyblade-pro-layout-header-left-logo-title.arco-typography{margin:0;font-size:18px}.keyblade-pro-layout .keyblade-pro-layout-header-center{flex:1}.keyblade-pro-layout .keyblade-pro-layout-sider{padding-top:var(--41512b1e);position:fixed;top:0;left:0;z-index:99;height:100%;transition:all .2s cubic-bezier(.34,.69,.1,1)}.keyblade-pro-layout .keyblade-pro-layout-sider-content{position:relative;height:100%;overflow:auto}.keyblade-pro-layout .keyblade-pro-layout-sider-collapse-btn.arco-btn{position:absolute;right:12px;bottom:12px}.keyblade-pro-layout .keyblade-pro-layout-body{padding-top:var(--41512b1e);padding-left:var(--514ba31c);min-height:100vh;overflow-y:hidden;background-color:var(--color-fill-2);transition:padding .2s cubic-bezier(.34,.69,.1,1)}.keyblade-pro-layout .keyblade-pro-layout-body-affix .arco-affix{z-index:98}.keyblade-pro-layout .keyblade-pro-layout-body-footer{display:flex;align-items:center;justify-content:center;height:40px;color:var(--color-text-2);text-align:center}.keyblade-pro-layout .keyblade-pro-layout-body-collapsed{padding-left:var(--27c679ae)}.keyblade-pro-layout-side .keyblade-pro-layout-header{z-index:98;left:var(--514ba31c);width:calc(100% - var(--514ba31c))}.keyblade-pro-layout-side .keyblade-pro-layout-header-collapsed{left:var(--27c679ae);width:calc(100% - var(--27c679ae))}.keyblade-pro-layout-side .keyblade-pro-layout-sider{padding-top:0}.keyblade-pro-layout-side .keyblade-pro-layout-sider-content-logo{position:relative;display:flex;align-items:center;padding:16px;cursor:pointer;transition:padding .3s cubic-bezier(.645,.045,.355,1)}.keyblade-pro-layout-side .keyblade-pro-layout-sider-content-logo-img{width:28px;height:28px}.keyblade-pro-layout-side .keyblade-pro-layout-sider-content-logo-title.arco-typography{margin:0;font-size:18px}.keyblade-pro-layout-side .keyblade-pro-layout-sider-collapsed .keyblade-pro-layout-sider-content-logo{padding:16px 10px}.keyblade-pro-menu .keyblade-pro-menu-item-img{width:14px;height:auto}.keyblade-pro-reuse-tabs{position:relative;background-color:var(--color-bg-2);padding:4px 20px}.keyblade-pro-page-container .keyblade-pro-page-container-content{padding:20px}.keyblade-pro-image-upload-cropper-dialog-cropper-wrapper[data-v-72acd329]{width:100%;height:400px}.keyblade-pro-image-upload-cropper-dialog-operate[data-v-72acd329]{margin-top:24px;display:flex;align-items:center;justify-content:center}.keyblade-pro-image-upload-cropper-dialog-footer[data-v-72acd329]{margin-top:24px;display:flex;align-items:center;justify-content:flex-end}.keyblade-pro-image-upload-cropper-dialog-footer-left[data-v-72acd329]{display:flex;align-items:center;justify-content:flex-start;margin-right:12px}.keyblade-pro-image-upload-cropper-dialog-footer-right[data-v-72acd329]{flex:1;display:flex;align-items:center;justify-content:flex-end}.keyblade-pro-date-range-picker[data-v-a2d94a6c]{display:flex;align-items:center}
|
package/package.json
CHANGED
|
@@ -1,82 +0,0 @@
|
|
|
1
|
-
import { App } from 'vue';
|
|
2
|
-
declare const ProDateRangePicker: {
|
|
3
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
4
|
-
modelValue: {
|
|
5
|
-
startDate?: string;
|
|
6
|
-
endDate?: string;
|
|
7
|
-
};
|
|
8
|
-
startPlaceholder?: string;
|
|
9
|
-
endPlaceholder?: string;
|
|
10
|
-
separator?: string;
|
|
11
|
-
}> & Readonly<{
|
|
12
|
-
"onUpdate:modelValue"?: ((value: {
|
|
13
|
-
startDate?: string;
|
|
14
|
-
endDate?: string;
|
|
15
|
-
}) => any) | undefined;
|
|
16
|
-
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
17
|
-
"update:modelValue": (value: {
|
|
18
|
-
startDate?: string;
|
|
19
|
-
endDate?: string;
|
|
20
|
-
}) => any;
|
|
21
|
-
}, import('vue').PublicProps, {
|
|
22
|
-
startPlaceholder: string;
|
|
23
|
-
endPlaceholder: string;
|
|
24
|
-
separator: string;
|
|
25
|
-
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
26
|
-
startDatePickerRef: unknown;
|
|
27
|
-
endDatePickerRef: unknown;
|
|
28
|
-
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
29
|
-
P: {};
|
|
30
|
-
B: {};
|
|
31
|
-
D: {};
|
|
32
|
-
C: {};
|
|
33
|
-
M: {};
|
|
34
|
-
Defaults: {};
|
|
35
|
-
}, Readonly<{
|
|
36
|
-
modelValue: {
|
|
37
|
-
startDate?: string;
|
|
38
|
-
endDate?: string;
|
|
39
|
-
};
|
|
40
|
-
startPlaceholder?: string;
|
|
41
|
-
endPlaceholder?: string;
|
|
42
|
-
separator?: string;
|
|
43
|
-
}> & Readonly<{
|
|
44
|
-
"onUpdate:modelValue"?: ((value: {
|
|
45
|
-
startDate?: string;
|
|
46
|
-
endDate?: string;
|
|
47
|
-
}) => any) | undefined;
|
|
48
|
-
}>, {}, {}, {}, {}, {
|
|
49
|
-
startPlaceholder: string;
|
|
50
|
-
endPlaceholder: string;
|
|
51
|
-
separator: string;
|
|
52
|
-
}>;
|
|
53
|
-
__isFragment?: never;
|
|
54
|
-
__isTeleport?: never;
|
|
55
|
-
__isSuspense?: never;
|
|
56
|
-
} & import('vue').ComponentOptionsBase<Readonly<{
|
|
57
|
-
modelValue: {
|
|
58
|
-
startDate?: string;
|
|
59
|
-
endDate?: string;
|
|
60
|
-
};
|
|
61
|
-
startPlaceholder?: string;
|
|
62
|
-
endPlaceholder?: string;
|
|
63
|
-
separator?: string;
|
|
64
|
-
}> & Readonly<{
|
|
65
|
-
"onUpdate:modelValue"?: ((value: {
|
|
66
|
-
startDate?: string;
|
|
67
|
-
endDate?: string;
|
|
68
|
-
}) => any) | undefined;
|
|
69
|
-
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
70
|
-
"update:modelValue": (value: {
|
|
71
|
-
startDate?: string;
|
|
72
|
-
endDate?: string;
|
|
73
|
-
}) => any;
|
|
74
|
-
}, string, {
|
|
75
|
-
startPlaceholder: string;
|
|
76
|
-
endPlaceholder: string;
|
|
77
|
-
separator: string;
|
|
78
|
-
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
|
|
79
|
-
install: (app: App) => void;
|
|
80
|
-
};
|
|
81
|
-
export { ProDateRangePicker };
|
|
82
|
-
export default ProDateRangePicker;
|