@opendesign-plus-test/components 0.0.1-rc.41 → 0.0.1-rc.43
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/chunk-OElCookieNotice.cjs.js +1 -1
- package/dist/chunk-OElCookieNotice.es.js +111 -111
- package/dist/components/OHeaderSearch.vue.d.ts +6 -10
- package/dist/components/OSourceCode.vue.d.ts +4 -6
- package/dist/components/activity/OActivityApproval.vue.d.ts +6 -10
- package/dist/components/activity/OActivityForm.vue.d.ts +3 -5
- package/dist/components/activity/OMyActivityCalendar.vue.d.ts +18 -26
- package/dist/components/activity/index.d.ts +15 -23
- package/dist/components/activity/types.d.ts +8 -1
- package/dist/components/events/config.d.ts +5 -18
- package/dist/components/events/types.d.ts +4 -1
- package/dist/components/header/OHeaderMobile.vue.d.ts +18 -11
- package/dist/components/header/components/HeaderNavMobile.vue.d.ts +4 -1
- package/dist/components/header/index.d.ts +12 -5
- package/dist/components/header/types.d.ts +4 -0
- package/dist/components/meeting/OMeetingCalendar.vue.d.ts +10 -14
- package/dist/components/meeting/OMeetingForm.vue.d.ts +3 -5
- package/dist/components/meeting/OMeetingPlayback.vue.d.ts +45 -0
- package/dist/components/meeting/OMyMeetingCalendar.vue.d.ts +18 -26
- package/dist/components/meeting/components/OMeetingCalendarList.vue.d.ts +1 -1
- package/dist/components/meeting/components/OMeetingDetail.vue.d.ts +2 -1
- package/dist/components/meeting/index.d.ts +786 -0
- package/dist/components/meeting/types.d.ts +83 -18
- package/dist/components/meeting/utils.d.ts +1 -1
- package/dist/components.cjs.js +38 -38
- package/dist/components.css +1 -1
- package/dist/components.es.js +12466 -12392
- package/package.json +3 -3
- package/src/components/OSourceCode.vue +8 -10
- package/src/components/activity/OActivityApproval.vue +35 -34
- package/src/components/activity/OActivityForm.vue +4 -4
- package/src/components/activity/OMyActivityCalendar.vue +44 -27
- package/src/components/activity/types.ts +8 -1
- package/src/components/common/MoreText.vue +1 -1
- package/src/components/common/ThFilter.vue +7 -7
- package/src/components/element-plus/OElCookieNotice.vue +1 -1
- package/src/components/events/OEventsList.vue +45 -10
- package/src/components/events/config.ts +1 -1
- package/src/components/events/types.ts +4 -1
- package/src/components/header/OHeaderMobile.vue +8 -1
- package/src/components/header/components/HeaderContent.vue +7 -3
- package/src/components/header/components/HeaderNavMobile.vue +5 -2
- package/src/components/header/types.ts +4 -0
- package/src/components/meeting/OMeetingCalendar.vue +42 -48
- package/src/components/meeting/OMeetingForm.vue +75 -37
- package/src/components/meeting/OMeetingPlayback.vue +4 -4
- package/src/components/meeting/OMyMeetingCalendar.vue +33 -27
- package/src/components/meeting/OSigMeetingCalendar.vue +29 -26
- package/src/components/meeting/components/OMeetingCalendarList.vue +107 -88
- package/src/components/meeting/components/OMeetingCalendarSelector.vue +10 -6
- package/src/components/meeting/components/OMeetingDetail.vue +32 -16
- package/src/components/meeting/components/OMeetingPlaybackVideo.vue +7 -7
- package/src/components/meeting/components/OSigMeetingAside.vue +2 -3
- package/src/components/meeting/config.ts +1 -12
- package/src/components/meeting/types.ts +89 -18
- package/vite.config.ts +3 -2
|
@@ -15,14 +15,12 @@ declare function __VLS_template(): {
|
|
|
15
15
|
}> & Omit<{
|
|
16
16
|
readonly controllerType: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "button" | "select", unknown>;
|
|
17
17
|
readonly modelValue?: Date | undefined;
|
|
18
|
-
readonly formatter?: ((value: number, type: "year" | "month") => string | number) | undefined;
|
|
19
18
|
readonly range?: [Date, Date] | undefined;
|
|
19
|
+
readonly formatter?: ((value: number, type: "year" | "month") => string | number) | undefined;
|
|
20
20
|
"onUpdate:modelValue"?: ((value: Date) => any) | undefined | undefined;
|
|
21
21
|
onInput?: ((value: Date) => any) | undefined | undefined;
|
|
22
22
|
} & import('../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps, "controllerType">;
|
|
23
|
-
$attrs:
|
|
24
|
-
[x: string]: unknown;
|
|
25
|
-
};
|
|
23
|
+
$attrs: import('../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
26
24
|
$refs: {
|
|
27
25
|
[x: string]: unknown;
|
|
28
26
|
};
|
|
@@ -112,12 +110,12 @@ declare function __VLS_template(): {
|
|
|
112
110
|
}>> & {
|
|
113
111
|
"onUpdate:modelValue"?: ((value: Date) => any) | undefined;
|
|
114
112
|
onInput?: ((value: Date) => any) | undefined;
|
|
115
|
-
}, "controllerType" | "selectedDay" | "pickDay" | "selectDate" | "calculateValidatedDateRange"> &
|
|
116
|
-
selectedDay:
|
|
113
|
+
}, "controllerType" | "selectedDay" | "pickDay" | "selectDate" | "calculateValidatedDateRange"> & {
|
|
114
|
+
selectedDay: dayjs.Dayjs | undefined;
|
|
117
115
|
pickDay: (day: import('dayjs').Dayjs) => void;
|
|
118
116
|
selectDate: (type: import('element-plus').CalendarDateType) => void;
|
|
119
117
|
calculateValidatedDateRange: (startDayjs: import('dayjs').Dayjs, endDayjs: import('dayjs').Dayjs) => [import('dayjs').Dayjs, import('dayjs').Dayjs][];
|
|
120
|
-
}
|
|
118
|
+
} & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
121
119
|
$slots: {
|
|
122
120
|
header?: (props: {
|
|
123
121
|
date: string;
|
|
@@ -162,9 +160,7 @@ declare function __VLS_template(): {
|
|
|
162
160
|
readonly wrapClass?: string | object | any[] | undefined;
|
|
163
161
|
readonly barClass?: string | undefined;
|
|
164
162
|
} & import('../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps, "size" | "duration" | "disabledX" | "disabledY" | "showType" | "autoUpdateOnScrollSize">;
|
|
165
|
-
$attrs:
|
|
166
|
-
[x: string]: unknown;
|
|
167
|
-
};
|
|
163
|
+
$attrs: import('../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
168
164
|
$refs: {
|
|
169
165
|
[x: string]: unknown;
|
|
170
166
|
} & {
|
|
@@ -273,10 +269,10 @@ declare function __VLS_template(): {
|
|
|
273
269
|
barClass: {
|
|
274
270
|
type: StringConstructor;
|
|
275
271
|
};
|
|
276
|
-
}>> & Readonly<{}>, "size" | "duration" | "disabledX" | "disabledY" | "showType" | "autoUpdateOnScrollSize" | "scrollTo" | "getContainerEl"> &
|
|
272
|
+
}>> & Readonly<{}>, "size" | "duration" | "disabledX" | "disabledY" | "showType" | "autoUpdateOnScrollSize" | "scrollTo" | "getContainerEl"> & {
|
|
277
273
|
scrollTo: (options?: ScrollToOptions | undefined) => void;
|
|
278
|
-
getContainerEl()
|
|
279
|
-
}
|
|
274
|
+
getContainerEl: () => HTMLElement | null;
|
|
275
|
+
} & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
280
276
|
$slots: {
|
|
281
277
|
default?(_: {}): any;
|
|
282
278
|
thumb?(_: {}): any;
|
|
@@ -300,14 +296,12 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
300
296
|
}> & Omit<{
|
|
301
297
|
readonly controllerType: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "button" | "select", unknown>;
|
|
302
298
|
readonly modelValue?: Date | undefined;
|
|
303
|
-
readonly formatter?: ((value: number, type: "year" | "month") => string | number) | undefined;
|
|
304
299
|
readonly range?: [Date, Date] | undefined;
|
|
300
|
+
readonly formatter?: ((value: number, type: "year" | "month") => string | number) | undefined;
|
|
305
301
|
"onUpdate:modelValue"?: ((value: Date) => any) | undefined | undefined;
|
|
306
302
|
onInput?: ((value: Date) => any) | undefined | undefined;
|
|
307
303
|
} & import('../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps, "controllerType">;
|
|
308
|
-
$attrs:
|
|
309
|
-
[x: string]: unknown;
|
|
310
|
-
};
|
|
304
|
+
$attrs: import('../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
311
305
|
$refs: {
|
|
312
306
|
[x: string]: unknown;
|
|
313
307
|
};
|
|
@@ -397,12 +391,12 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
397
391
|
}>> & {
|
|
398
392
|
"onUpdate:modelValue"?: ((value: Date) => any) | undefined;
|
|
399
393
|
onInput?: ((value: Date) => any) | undefined;
|
|
400
|
-
}, "controllerType" | "selectedDay" | "pickDay" | "selectDate" | "calculateValidatedDateRange"> &
|
|
401
|
-
selectedDay:
|
|
394
|
+
}, "controllerType" | "selectedDay" | "pickDay" | "selectDate" | "calculateValidatedDateRange"> & {
|
|
395
|
+
selectedDay: dayjs.Dayjs | undefined;
|
|
402
396
|
pickDay: (day: import('dayjs').Dayjs) => void;
|
|
403
397
|
selectDate: (type: import('element-plus').CalendarDateType) => void;
|
|
404
398
|
calculateValidatedDateRange: (startDayjs: import('dayjs').Dayjs, endDayjs: import('dayjs').Dayjs) => [import('dayjs').Dayjs, import('dayjs').Dayjs][];
|
|
405
|
-
}
|
|
399
|
+
} & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
406
400
|
$slots: {
|
|
407
401
|
header?: (props: {
|
|
408
402
|
date: string;
|
|
@@ -447,9 +441,7 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
447
441
|
readonly wrapClass?: string | object | any[] | undefined;
|
|
448
442
|
readonly barClass?: string | undefined;
|
|
449
443
|
} & import('../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps, "size" | "duration" | "disabledX" | "disabledY" | "showType" | "autoUpdateOnScrollSize">;
|
|
450
|
-
$attrs:
|
|
451
|
-
[x: string]: unknown;
|
|
452
|
-
};
|
|
444
|
+
$attrs: import('../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
453
445
|
$refs: {
|
|
454
446
|
[x: string]: unknown;
|
|
455
447
|
} & {
|
|
@@ -558,10 +550,10 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
558
550
|
barClass: {
|
|
559
551
|
type: StringConstructor;
|
|
560
552
|
};
|
|
561
|
-
}>> & Readonly<{}>, "size" | "duration" | "disabledX" | "disabledY" | "showType" | "autoUpdateOnScrollSize" | "scrollTo" | "getContainerEl"> &
|
|
553
|
+
}>> & Readonly<{}>, "size" | "duration" | "disabledX" | "disabledY" | "showType" | "autoUpdateOnScrollSize" | "scrollTo" | "getContainerEl"> & {
|
|
562
554
|
scrollTo: (options?: ScrollToOptions | undefined) => void;
|
|
563
|
-
getContainerEl()
|
|
564
|
-
}
|
|
555
|
+
getContainerEl: () => HTMLElement | null;
|
|
556
|
+
} & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
565
557
|
$slots: {
|
|
566
558
|
default?(_: {}): any;
|
|
567
559
|
thumb?(_: {}): any;
|
|
@@ -27,9 +27,7 @@ declare const OActivityForm: {
|
|
|
27
27
|
readonly onSubmit?: ((results: import('@opensig/opendesign').FieldResultT[]) => any) | undefined | undefined;
|
|
28
28
|
readonly onValidate?: ((results: import('@opensig/opendesign').FieldResultT[]) => any) | undefined | undefined;
|
|
29
29
|
} & import('../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps, "hasRequired" | "layout">;
|
|
30
|
-
$attrs:
|
|
31
|
-
[x: string]: unknown;
|
|
32
|
-
};
|
|
30
|
+
$attrs: import('../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
33
31
|
$refs: {
|
|
34
32
|
[x: string]: unknown;
|
|
35
33
|
};
|
|
@@ -128,11 +126,11 @@ declare const OActivityForm: {
|
|
|
128
126
|
onReset?: ((filed?: string | string[] | undefined) => any) | undefined;
|
|
129
127
|
onSubmit?: ((results: import('@opensig/opendesign').FieldResultT[]) => any) | undefined;
|
|
130
128
|
onValidate?: ((results: import('@opensig/opendesign').FieldResultT[]) => any) | undefined;
|
|
131
|
-
}>, "validate" | "hasRequired" | "layout" | "resetFields" | "clearValidate"> &
|
|
129
|
+
}>, "validate" | "hasRequired" | "layout" | "resetFields" | "clearValidate"> & {
|
|
132
130
|
validate: (filed?: string | string[]) => Promise<import('@opensig/opendesign').FieldResultT[]>;
|
|
133
131
|
resetFields: (filed?: string | string[]) => void;
|
|
134
132
|
clearValidate: (filed?: string | string[], onClear?: (filed: import('@opensig/opendesign').FiledInfoT) => void) => void;
|
|
135
|
-
}
|
|
133
|
+
} & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
136
134
|
$slots: {
|
|
137
135
|
default?(_: {}): any;
|
|
138
136
|
};
|
|
@@ -184,9 +182,7 @@ declare const OActivityApproval: {
|
|
|
184
182
|
readonly onSubmit?: ((results: import('@opensig/opendesign').FieldResultT[]) => any) | undefined | undefined;
|
|
185
183
|
readonly onValidate?: ((results: import('@opensig/opendesign').FieldResultT[]) => any) | undefined | undefined;
|
|
186
184
|
} & import('../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps, "hasRequired" | "layout">;
|
|
187
|
-
$attrs:
|
|
188
|
-
[x: string]: unknown;
|
|
189
|
-
};
|
|
185
|
+
$attrs: import('../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
190
186
|
$refs: {
|
|
191
187
|
[x: string]: unknown;
|
|
192
188
|
};
|
|
@@ -285,11 +281,11 @@ declare const OActivityApproval: {
|
|
|
285
281
|
onReset?: ((filed?: string | string[] | undefined) => any) | undefined;
|
|
286
282
|
onSubmit?: ((results: import('@opensig/opendesign').FieldResultT[]) => any) | undefined;
|
|
287
283
|
onValidate?: ((results: import('@opensig/opendesign').FieldResultT[]) => any) | undefined;
|
|
288
|
-
}>, "validate" | "hasRequired" | "layout" | "resetFields" | "clearValidate"> &
|
|
284
|
+
}>, "validate" | "hasRequired" | "layout" | "resetFields" | "clearValidate"> & {
|
|
289
285
|
validate: (filed?: string | string[]) => Promise<import('@opensig/opendesign').FieldResultT[]>;
|
|
290
286
|
resetFields: (filed?: string | string[]) => void;
|
|
291
287
|
clearValidate: (filed?: string | string[], onClear?: (filed: import('@opensig/opendesign').FiledInfoT) => void) => void;
|
|
292
|
-
}
|
|
288
|
+
} & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
293
289
|
$slots: {
|
|
294
290
|
default?(_: {}): any;
|
|
295
291
|
};
|
|
@@ -327,14 +323,12 @@ declare const OMyActivityCalendar: {
|
|
|
327
323
|
}> & Omit<{
|
|
328
324
|
readonly controllerType: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "button" | "select", unknown>;
|
|
329
325
|
readonly modelValue?: Date | undefined;
|
|
330
|
-
readonly formatter?: ((value: number, type: "year" | "month") => string | number) | undefined;
|
|
331
326
|
readonly range?: [Date, Date] | undefined;
|
|
327
|
+
readonly formatter?: ((value: number, type: "year" | "month") => string | number) | undefined;
|
|
332
328
|
"onUpdate:modelValue"?: ((value: Date) => any) | undefined | undefined;
|
|
333
329
|
onInput?: ((value: Date) => any) | undefined | undefined;
|
|
334
330
|
} & import('../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps, "controllerType">;
|
|
335
|
-
$attrs:
|
|
336
|
-
[x: string]: unknown;
|
|
337
|
-
};
|
|
331
|
+
$attrs: import('../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
338
332
|
$refs: {
|
|
339
333
|
[x: string]: unknown;
|
|
340
334
|
};
|
|
@@ -424,12 +418,12 @@ declare const OMyActivityCalendar: {
|
|
|
424
418
|
}>> & {
|
|
425
419
|
"onUpdate:modelValue"?: ((value: Date) => any) | undefined;
|
|
426
420
|
onInput?: ((value: Date) => any) | undefined;
|
|
427
|
-
}, "controllerType" | "selectedDay" | "pickDay" | "selectDate" | "calculateValidatedDateRange"> &
|
|
428
|
-
selectedDay: import('
|
|
421
|
+
}, "controllerType" | "selectedDay" | "pickDay" | "selectDate" | "calculateValidatedDateRange"> & {
|
|
422
|
+
selectedDay: import('dayjs').Dayjs | undefined;
|
|
429
423
|
pickDay: (day: import('dayjs').Dayjs) => void;
|
|
430
424
|
selectDate: (type: import('element-plus').CalendarDateType) => void;
|
|
431
425
|
calculateValidatedDateRange: (startDayjs: import('dayjs').Dayjs, endDayjs: import('dayjs').Dayjs) => [import('dayjs').Dayjs, import('dayjs').Dayjs][];
|
|
432
|
-
}
|
|
426
|
+
} & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
433
427
|
$slots: {
|
|
434
428
|
header?: (props: {
|
|
435
429
|
date: string;
|
|
@@ -474,9 +468,7 @@ declare const OMyActivityCalendar: {
|
|
|
474
468
|
readonly wrapClass?: string | object | any[] | undefined;
|
|
475
469
|
readonly barClass?: string | undefined;
|
|
476
470
|
} & import('../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps, "size" | "duration" | "disabledX" | "disabledY" | "showType" | "autoUpdateOnScrollSize">;
|
|
477
|
-
$attrs:
|
|
478
|
-
[x: string]: unknown;
|
|
479
|
-
};
|
|
471
|
+
$attrs: import('../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
480
472
|
$refs: {
|
|
481
473
|
[x: string]: unknown;
|
|
482
474
|
} & {
|
|
@@ -585,10 +577,10 @@ declare const OMyActivityCalendar: {
|
|
|
585
577
|
barClass: {
|
|
586
578
|
type: StringConstructor;
|
|
587
579
|
};
|
|
588
|
-
}>> & Readonly<{}>, "size" | "duration" | "disabledX" | "disabledY" | "showType" | "autoUpdateOnScrollSize" | "scrollTo" | "getContainerEl"> &
|
|
580
|
+
}>> & Readonly<{}>, "size" | "duration" | "disabledX" | "disabledY" | "showType" | "autoUpdateOnScrollSize" | "scrollTo" | "getContainerEl"> & {
|
|
589
581
|
scrollTo: (options?: ScrollToOptions | undefined) => void;
|
|
590
|
-
getContainerEl()
|
|
591
|
-
}
|
|
582
|
+
getContainerEl: () => HTMLElement | null;
|
|
583
|
+
} & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
592
584
|
$slots: {
|
|
593
585
|
default?(_: {}): any;
|
|
594
586
|
thumb?(_: {}): any;
|
|
@@ -13,10 +13,11 @@ export interface ParamsItemT {
|
|
|
13
13
|
end: string;
|
|
14
14
|
schedules?: string;
|
|
15
15
|
is_publish: string;
|
|
16
|
-
update_activity_id?: string;
|
|
16
|
+
update_activity_id?: string | number;
|
|
17
17
|
email_list?: string;
|
|
18
18
|
organizer?: string;
|
|
19
19
|
approver: string;
|
|
20
|
+
status?: number;
|
|
20
21
|
}
|
|
21
22
|
export interface ActivityFormPropsT {
|
|
22
23
|
data?: ParamsItemT;
|
|
@@ -46,12 +47,18 @@ export interface ActivityItemT {
|
|
|
46
47
|
live_address: string;
|
|
47
48
|
register_end_date: string;
|
|
48
49
|
register_url: string;
|
|
50
|
+
content_url: string;
|
|
49
51
|
start: string;
|
|
50
52
|
status: number;
|
|
51
53
|
synopsis: string;
|
|
52
54
|
title: string;
|
|
53
55
|
update_activity_id: number;
|
|
54
56
|
user: string;
|
|
57
|
+
sponsor: string;
|
|
58
|
+
create_time: string;
|
|
59
|
+
isExpired?: number;
|
|
60
|
+
sub_id?: string;
|
|
61
|
+
dateRange?: string;
|
|
55
62
|
}
|
|
56
63
|
export interface ReviewParamsT {
|
|
57
64
|
page: number;
|
|
@@ -5,23 +5,10 @@ export declare const EVENTS_COLOR_MAP: {
|
|
|
5
5
|
release: string;
|
|
6
6
|
};
|
|
7
7
|
export declare const EVENTS_ICON_MAP: {
|
|
8
|
-
events:
|
|
9
|
-
competition:
|
|
10
|
-
release:
|
|
11
|
-
summit:
|
|
12
|
-
};
|
|
13
|
-
export declare const CITY_MAP: {
|
|
14
|
-
上海: string;
|
|
15
|
-
北京: string;
|
|
16
|
-
南京: string;
|
|
17
|
-
天津: string;
|
|
18
|
-
成都: string;
|
|
19
|
-
无锡: string;
|
|
20
|
-
杭州: string;
|
|
21
|
-
深圳: string[];
|
|
22
|
-
苏州: string;
|
|
23
|
-
西安: string;
|
|
24
|
-
郑州: string;
|
|
25
|
-
武汉: string;
|
|
8
|
+
events: string;
|
|
9
|
+
competition: string;
|
|
10
|
+
release: string;
|
|
11
|
+
summit: string;
|
|
26
12
|
};
|
|
13
|
+
export declare const CITY_MAP: Record<string, string | string[]>;
|
|
27
14
|
export declare const DEFAULT_COVER = "https://infrastructure-website.osinfra.cn/picture/city/default-cover.jpg";
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { NavT } from './types.ts';
|
|
1
|
+
import { NavT, LangItemT } from './types.ts';
|
|
2
2
|
export interface OHeaderT {
|
|
3
3
|
(e: 'go-back'): void;
|
|
4
|
+
(e: 'lang-click', val: LangItemT): void;
|
|
4
5
|
(e: 'go-home'): void;
|
|
5
6
|
}
|
|
6
7
|
declare function __VLS_template(): {
|
|
@@ -22,10 +23,9 @@ declare function __VLS_template(): {
|
|
|
22
23
|
readonly langData?: import('./types.ts').LangT[] | undefined;
|
|
23
24
|
readonly "onHandle-click"?: ((val: any) => any) | undefined;
|
|
24
25
|
readonly "onOn-click"?: (() => any) | undefined;
|
|
26
|
+
readonly "onLang-click"?: ((val: LangItemT) => any) | undefined;
|
|
25
27
|
} & import('../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps;
|
|
26
|
-
$attrs:
|
|
27
|
-
[x: string]: unknown;
|
|
28
|
-
};
|
|
28
|
+
$attrs: import('../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
29
29
|
$refs: {
|
|
30
30
|
[x: string]: unknown;
|
|
31
31
|
};
|
|
@@ -35,14 +35,16 @@ declare function __VLS_template(): {
|
|
|
35
35
|
$root: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
36
36
|
$parent: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
37
37
|
$host: Element | null;
|
|
38
|
-
$emit: ((event: "handle-click", val: any) => void) & ((event: "on-click") => void);
|
|
38
|
+
$emit: ((event: "handle-click", val: any) => void) & ((event: "on-click") => void) & ((event: "lang-click", val: LangItemT) => void);
|
|
39
39
|
$el: HTMLDivElement;
|
|
40
40
|
$options: import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('./types.ts').NavMobileItemT> & Readonly<{
|
|
41
41
|
"onHandle-click"?: ((val: any) => any) | undefined;
|
|
42
42
|
"onOn-click"?: (() => any) | undefined;
|
|
43
|
+
"onLang-click"?: ((val: LangItemT) => any) | undefined;
|
|
43
44
|
}>, {}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {} & {
|
|
44
45
|
"handle-click": (val: any) => any;
|
|
45
46
|
"on-click": () => any;
|
|
47
|
+
"lang-click": (val: LangItemT) => any;
|
|
46
48
|
}, string, {
|
|
47
49
|
navData: import('./types.ts').NavItemT[];
|
|
48
50
|
codeData: import('./types.ts').CodeT[];
|
|
@@ -76,7 +78,8 @@ declare function __VLS_template(): {
|
|
|
76
78
|
}> & Omit<Readonly<import('./types.ts').NavMobileItemT> & Readonly<{
|
|
77
79
|
"onHandle-click"?: ((val: any) => any) | undefined;
|
|
78
80
|
"onOn-click"?: (() => any) | undefined;
|
|
79
|
-
|
|
81
|
+
"onLang-click"?: ((val: LangItemT) => any) | undefined;
|
|
82
|
+
}>, "navData" | "codeData" | "langData" | "menuShow"> & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
80
83
|
$slots: {
|
|
81
84
|
tool?(_: {}): any;
|
|
82
85
|
};
|
|
@@ -87,9 +90,11 @@ declare function __VLS_template(): {
|
|
|
87
90
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
88
91
|
declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').DefineComponent<NavT, {}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {} & {
|
|
89
92
|
"go-home": () => any;
|
|
93
|
+
"lang-click": (val: LangItemT) => any;
|
|
90
94
|
"go-back": () => any;
|
|
91
95
|
}, string, import('../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<NavT> & Readonly<{
|
|
92
96
|
"onGo-home"?: (() => any) | undefined;
|
|
97
|
+
"onLang-click"?: ((val: LangItemT) => any) | undefined;
|
|
93
98
|
"onGo-back"?: (() => any) | undefined;
|
|
94
99
|
}>, {}, {}, {}, {}, string, import('../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, false, {
|
|
95
100
|
mobileNav: ({
|
|
@@ -102,10 +107,9 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
102
107
|
readonly langData?: import('./types.ts').LangT[] | undefined;
|
|
103
108
|
readonly "onHandle-click"?: ((val: any) => any) | undefined;
|
|
104
109
|
readonly "onOn-click"?: (() => any) | undefined;
|
|
110
|
+
readonly "onLang-click"?: ((val: LangItemT) => any) | undefined;
|
|
105
111
|
} & import('../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps;
|
|
106
|
-
$attrs:
|
|
107
|
-
[x: string]: unknown;
|
|
108
|
-
};
|
|
112
|
+
$attrs: import('../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
109
113
|
$refs: {
|
|
110
114
|
[x: string]: unknown;
|
|
111
115
|
};
|
|
@@ -115,14 +119,16 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
115
119
|
$root: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
116
120
|
$parent: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
117
121
|
$host: Element | null;
|
|
118
|
-
$emit: ((event: "handle-click", val: any) => void) & ((event: "on-click") => void);
|
|
122
|
+
$emit: ((event: "handle-click", val: any) => void) & ((event: "on-click") => void) & ((event: "lang-click", val: LangItemT) => void);
|
|
119
123
|
$el: HTMLDivElement;
|
|
120
124
|
$options: import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('./types.ts').NavMobileItemT> & Readonly<{
|
|
121
125
|
"onHandle-click"?: ((val: any) => any) | undefined;
|
|
122
126
|
"onOn-click"?: (() => any) | undefined;
|
|
127
|
+
"onLang-click"?: ((val: LangItemT) => any) | undefined;
|
|
123
128
|
}>, {}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {} & {
|
|
124
129
|
"handle-click": (val: any) => any;
|
|
125
130
|
"on-click": () => any;
|
|
131
|
+
"lang-click": (val: LangItemT) => any;
|
|
126
132
|
}, string, {
|
|
127
133
|
navData: import('./types.ts').NavItemT[];
|
|
128
134
|
codeData: import('./types.ts').CodeT[];
|
|
@@ -156,7 +162,8 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
156
162
|
}> & Omit<Readonly<import('./types.ts').NavMobileItemT> & Readonly<{
|
|
157
163
|
"onHandle-click"?: ((val: any) => any) | undefined;
|
|
158
164
|
"onOn-click"?: (() => any) | undefined;
|
|
159
|
-
|
|
165
|
+
"onLang-click"?: ((val: LangItemT) => any) | undefined;
|
|
166
|
+
}>, "navData" | "codeData" | "langData" | "menuShow"> & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
160
167
|
$slots: {
|
|
161
168
|
tool?(_: {}): any;
|
|
162
169
|
};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { NavMobileItemT } from '../types.ts';
|
|
1
|
+
import { NavMobileItemT, LangItemT } from '../types.ts';
|
|
2
2
|
export interface OHeaderEmitsT {
|
|
3
3
|
(e: 'on-click'): void;
|
|
4
|
+
(e: 'lang-click', val: LangItemT): void;
|
|
4
5
|
(e: 'handle-click', val: any): void;
|
|
5
6
|
}
|
|
6
7
|
declare function __VLS_template(): {
|
|
@@ -15,9 +16,11 @@ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
|
15
16
|
declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js').DefineComponent<NavMobileItemT, {}, {}, {}, {}, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {} & {
|
|
16
17
|
"handle-click": (val: any) => any;
|
|
17
18
|
"on-click": () => any;
|
|
19
|
+
"lang-click": (val: LangItemT) => any;
|
|
18
20
|
}, string, import('../../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<NavMobileItemT> & Readonly<{
|
|
19
21
|
"onHandle-click"?: ((val: any) => any) | undefined;
|
|
20
22
|
"onOn-click"?: (() => any) | undefined;
|
|
23
|
+
"onLang-click"?: ((val: LangItemT) => any) | undefined;
|
|
21
24
|
}>, {
|
|
22
25
|
navData: import('../types.ts').NavItemT[];
|
|
23
26
|
codeData: import('../types.ts').CodeT[];
|
|
@@ -38,9 +38,11 @@ declare const OHeader: {
|
|
|
38
38
|
declare const OHeaderMobile: {
|
|
39
39
|
new (...args: any[]): import('../../../vue/dist/vue.esm-bundler.js').CreateComponentPublicInstanceWithMixins<Readonly<import('./types').NavT> & Readonly<{
|
|
40
40
|
"onGo-home"?: (() => any) | undefined;
|
|
41
|
+
"onLang-click"?: ((val: import('./types').LangItemT) => any) | undefined;
|
|
41
42
|
"onGo-back"?: (() => any) | undefined;
|
|
42
43
|
}>, {}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {} & {
|
|
43
44
|
"go-home": () => any;
|
|
45
|
+
"lang-click": (val: import('./types').LangItemT) => any;
|
|
44
46
|
"go-back": () => any;
|
|
45
47
|
}, import('../../../vue/dist/vue.esm-bundler.js').PublicProps, {}, false, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').GlobalComponents, import('../../../vue/dist/vue.esm-bundler.js').GlobalDirectives, string, {
|
|
46
48
|
mobileNav: ({
|
|
@@ -53,10 +55,9 @@ declare const OHeaderMobile: {
|
|
|
53
55
|
readonly langData?: import('./types').LangT[] | undefined;
|
|
54
56
|
readonly "onHandle-click"?: ((val: any) => any) | undefined;
|
|
55
57
|
readonly "onOn-click"?: (() => any) | undefined;
|
|
58
|
+
readonly "onLang-click"?: ((val: import('./types').LangItemT) => any) | undefined;
|
|
56
59
|
} & import('../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps;
|
|
57
|
-
$attrs:
|
|
58
|
-
[x: string]: unknown;
|
|
59
|
-
};
|
|
60
|
+
$attrs: import('../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
60
61
|
$refs: {
|
|
61
62
|
[x: string]: unknown;
|
|
62
63
|
};
|
|
@@ -66,14 +67,16 @@ declare const OHeaderMobile: {
|
|
|
66
67
|
$root: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
67
68
|
$parent: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
68
69
|
$host: Element | null;
|
|
69
|
-
$emit: ((event: "handle-click", val: any) => void) & ((event: "on-click") => void);
|
|
70
|
+
$emit: ((event: "handle-click", val: any) => void) & ((event: "on-click") => void) & ((event: "lang-click", val: import('./types').LangItemT) => void);
|
|
70
71
|
$el: HTMLDivElement;
|
|
71
72
|
$options: import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('./types').NavMobileItemT> & Readonly<{
|
|
72
73
|
"onHandle-click"?: ((val: any) => any) | undefined;
|
|
73
74
|
"onOn-click"?: (() => any) | undefined;
|
|
75
|
+
"onLang-click"?: ((val: import('./types').LangItemT) => any) | undefined;
|
|
74
76
|
}>, {}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {} & {
|
|
75
77
|
"handle-click": (val: any) => any;
|
|
76
78
|
"on-click": () => any;
|
|
79
|
+
"lang-click": (val: import('./types').LangItemT) => any;
|
|
77
80
|
}, string, {
|
|
78
81
|
navData: import('./types').NavItemT[];
|
|
79
82
|
codeData: import('./types').CodeT[];
|
|
@@ -107,7 +110,8 @@ declare const OHeaderMobile: {
|
|
|
107
110
|
}> & Omit<Readonly<import('./types').NavMobileItemT> & Readonly<{
|
|
108
111
|
"onHandle-click"?: ((val: any) => any) | undefined;
|
|
109
112
|
"onOn-click"?: (() => any) | undefined;
|
|
110
|
-
|
|
113
|
+
"onLang-click"?: ((val: import('./types').LangItemT) => any) | undefined;
|
|
114
|
+
}>, "navData" | "codeData" | "langData" | "menuShow"> & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
111
115
|
$slots: {
|
|
112
116
|
tool?(_: {}): any;
|
|
113
117
|
};
|
|
@@ -121,6 +125,7 @@ declare const OHeaderMobile: {
|
|
|
121
125
|
Defaults: {};
|
|
122
126
|
}, Readonly<import('./types').NavT> & Readonly<{
|
|
123
127
|
"onGo-home"?: (() => any) | undefined;
|
|
128
|
+
"onLang-click"?: ((val: import('./types').LangItemT) => any) | undefined;
|
|
124
129
|
"onGo-back"?: (() => any) | undefined;
|
|
125
130
|
}>, {}, {}, {}, {}, {}>;
|
|
126
131
|
__isFragment?: never;
|
|
@@ -128,9 +133,11 @@ declare const OHeaderMobile: {
|
|
|
128
133
|
__isSuspense?: never;
|
|
129
134
|
} & import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('./types').NavT> & Readonly<{
|
|
130
135
|
"onGo-home"?: (() => any) | undefined;
|
|
136
|
+
"onLang-click"?: ((val: import('./types').LangItemT) => any) | undefined;
|
|
131
137
|
"onGo-back"?: (() => any) | undefined;
|
|
132
138
|
}>, {}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {} & {
|
|
133
139
|
"go-home": () => any;
|
|
140
|
+
"lang-click": (val: import('./types').LangItemT) => any;
|
|
134
141
|
"go-back": () => any;
|
|
135
142
|
}, string, {}, {}, string, {}, import('../../../vue/dist/vue.esm-bundler.js').GlobalComponents, import('../../../vue/dist/vue.esm-bundler.js').GlobalDirectives, string, import('../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions> & import('../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps & (new () => {
|
|
136
143
|
$slots: {
|
|
@@ -9,6 +9,8 @@ export interface ChildrenItemT {
|
|
|
9
9
|
description?: string;
|
|
10
10
|
href?: string;
|
|
11
11
|
tag?: tagT;
|
|
12
|
+
icon?: any;
|
|
13
|
+
target?: string;
|
|
12
14
|
children?: ChildrenItemT[];
|
|
13
15
|
}
|
|
14
16
|
export interface ShortcutItemT {
|
|
@@ -19,6 +21,8 @@ export interface ShortcutItemT {
|
|
|
19
21
|
tag?: tagT;
|
|
20
22
|
remark?: string;
|
|
21
23
|
type?: string;
|
|
24
|
+
target?: string;
|
|
25
|
+
icon?: string;
|
|
22
26
|
}
|
|
23
27
|
export interface NavItemT {
|
|
24
28
|
label: string;
|
|
@@ -15,14 +15,12 @@ declare function __VLS_template(): {
|
|
|
15
15
|
}> & Omit<{
|
|
16
16
|
readonly controllerType: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "button" | "select", unknown>;
|
|
17
17
|
readonly modelValue?: Date | undefined;
|
|
18
|
-
readonly formatter?: ((value: number, type: "year" | "month") => string | number) | undefined;
|
|
19
18
|
readonly range?: [Date, Date] | undefined;
|
|
19
|
+
readonly formatter?: ((value: number, type: "year" | "month") => string | number) | undefined;
|
|
20
20
|
"onUpdate:modelValue"?: ((value: Date) => any) | undefined | undefined;
|
|
21
21
|
onInput?: ((value: Date) => any) | undefined | undefined;
|
|
22
22
|
} & import('../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps, "controllerType">;
|
|
23
|
-
$attrs:
|
|
24
|
-
[x: string]: unknown;
|
|
25
|
-
};
|
|
23
|
+
$attrs: import('../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
26
24
|
$refs: {
|
|
27
25
|
[x: string]: unknown;
|
|
28
26
|
};
|
|
@@ -112,12 +110,12 @@ declare function __VLS_template(): {
|
|
|
112
110
|
}>> & {
|
|
113
111
|
"onUpdate:modelValue"?: ((value: Date) => any) | undefined;
|
|
114
112
|
onInput?: ((value: Date) => any) | undefined;
|
|
115
|
-
}, "controllerType" | "selectedDay" | "pickDay" | "selectDate" | "calculateValidatedDateRange"> &
|
|
116
|
-
selectedDay:
|
|
113
|
+
}, "controllerType" | "selectedDay" | "pickDay" | "selectDate" | "calculateValidatedDateRange"> & {
|
|
114
|
+
selectedDay: dayjs.Dayjs | undefined;
|
|
117
115
|
pickDay: (day: import('dayjs').Dayjs) => void;
|
|
118
116
|
selectDate: (type: import('element-plus').CalendarDateType) => void;
|
|
119
117
|
calculateValidatedDateRange: (startDayjs: import('dayjs').Dayjs, endDayjs: import('dayjs').Dayjs) => [import('dayjs').Dayjs, import('dayjs').Dayjs][];
|
|
120
|
-
}
|
|
118
|
+
} & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
121
119
|
$slots: {
|
|
122
120
|
header?: (props: {
|
|
123
121
|
date: string;
|
|
@@ -162,14 +160,12 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
162
160
|
}> & Omit<{
|
|
163
161
|
readonly controllerType: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "button" | "select", unknown>;
|
|
164
162
|
readonly modelValue?: Date | undefined;
|
|
165
|
-
readonly formatter?: ((value: number, type: "year" | "month") => string | number) | undefined;
|
|
166
163
|
readonly range?: [Date, Date] | undefined;
|
|
164
|
+
readonly formatter?: ((value: number, type: "year" | "month") => string | number) | undefined;
|
|
167
165
|
"onUpdate:modelValue"?: ((value: Date) => any) | undefined | undefined;
|
|
168
166
|
onInput?: ((value: Date) => any) | undefined | undefined;
|
|
169
167
|
} & import('../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps, "controllerType">;
|
|
170
|
-
$attrs:
|
|
171
|
-
[x: string]: unknown;
|
|
172
|
-
};
|
|
168
|
+
$attrs: import('../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
173
169
|
$refs: {
|
|
174
170
|
[x: string]: unknown;
|
|
175
171
|
};
|
|
@@ -259,12 +255,12 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
259
255
|
}>> & {
|
|
260
256
|
"onUpdate:modelValue"?: ((value: Date) => any) | undefined;
|
|
261
257
|
onInput?: ((value: Date) => any) | undefined;
|
|
262
|
-
}, "controllerType" | "selectedDay" | "pickDay" | "selectDate" | "calculateValidatedDateRange"> &
|
|
263
|
-
selectedDay:
|
|
258
|
+
}, "controllerType" | "selectedDay" | "pickDay" | "selectDate" | "calculateValidatedDateRange"> & {
|
|
259
|
+
selectedDay: dayjs.Dayjs | undefined;
|
|
264
260
|
pickDay: (day: import('dayjs').Dayjs) => void;
|
|
265
261
|
selectDate: (type: import('element-plus').CalendarDateType) => void;
|
|
266
262
|
calculateValidatedDateRange: (startDayjs: import('dayjs').Dayjs, endDayjs: import('dayjs').Dayjs) => [import('dayjs').Dayjs, import('dayjs').Dayjs][];
|
|
267
|
-
}
|
|
263
|
+
} & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
268
264
|
$slots: {
|
|
269
265
|
header?: (props: {
|
|
270
266
|
date: string;
|
|
@@ -31,9 +31,7 @@ declare const _default: import('../../../vue/dist/vue.esm-bundler.js').DefineCom
|
|
|
31
31
|
readonly onSubmit?: ((results: import('@opensig/opendesign').FieldResultT[]) => any) | undefined | undefined;
|
|
32
32
|
readonly onValidate?: ((results: import('@opensig/opendesign').FieldResultT[]) => any) | undefined | undefined;
|
|
33
33
|
} & import('../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps, "hasRequired" | "layout">;
|
|
34
|
-
$attrs:
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
34
|
+
$attrs: import('../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
37
35
|
$refs: {
|
|
38
36
|
[x: string]: unknown;
|
|
39
37
|
};
|
|
@@ -132,11 +130,11 @@ declare const _default: import('../../../vue/dist/vue.esm-bundler.js').DefineCom
|
|
|
132
130
|
onReset?: ((filed?: string | string[] | undefined) => any) | undefined;
|
|
133
131
|
onSubmit?: ((results: import('@opensig/opendesign').FieldResultT[]) => any) | undefined;
|
|
134
132
|
onValidate?: ((results: import('@opensig/opendesign').FieldResultT[]) => any) | undefined;
|
|
135
|
-
}>, "validate" | "hasRequired" | "layout" | "resetFields" | "clearValidate"> &
|
|
133
|
+
}>, "validate" | "hasRequired" | "layout" | "resetFields" | "clearValidate"> & {
|
|
136
134
|
validate: (filed?: string | string[]) => Promise<import('@opensig/opendesign').FieldResultT[]>;
|
|
137
135
|
resetFields: (filed?: string | string[]) => void;
|
|
138
136
|
clearValidate: (filed?: string | string[], onClear?: (filed: import('@opensig/opendesign').FiledInfoT) => void) => void;
|
|
139
|
-
}
|
|
137
|
+
} & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
140
138
|
$slots: {
|
|
141
139
|
default?(_: {}): any;
|
|
142
140
|
};
|