@opendesign-plus-test/components 0.0.1-rc.22 → 0.0.1-rc.23
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/activity/OMyActivityCalendar.vue.d.ts +577 -1
- package/dist/components/activity/index.d.ts +294 -3
- package/dist/components/activity/types.d.ts +7 -3
- package/dist/components.cjs.js +38 -38
- package/dist/components.css +1 -1
- package/dist/components.es.js +10602 -10091
- package/package.json +1 -1
- package/src/components/activity/OActivityForm.vue +16 -91
- package/src/components/activity/OMyActivityCalendar.vue +1331 -2
- package/src/components/activity/types.ts +8 -3
- package/src/components/meeting/OMyMeetingCalendar.vue +0 -33
- package/src/components/meeting/components/OMeetingDetail.vue +27 -14
- package/src/components/meeting/components/OMyCalendarWrapper.vue +160 -0
|
@@ -314,18 +314,309 @@ declare const OActivityApproval: {
|
|
|
314
314
|
install(app: App): void;
|
|
315
315
|
};
|
|
316
316
|
declare const OMyActivityCalendar: {
|
|
317
|
-
new (...args: any[]): import('../../../vue/dist/vue.esm-bundler.js').CreateComponentPublicInstanceWithMixins<Readonly<
|
|
317
|
+
new (...args: any[]): import('../../../vue/dist/vue.esm-bundler.js').CreateComponentPublicInstanceWithMixins<Readonly<import('./types').MyActivityCalendarPropsT> & Readonly<{
|
|
318
|
+
onEdit?: ((...args: any[]) => any) | undefined;
|
|
319
|
+
}>, {}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
320
|
+
edit: (...args: any[]) => void;
|
|
321
|
+
}, 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, {
|
|
322
|
+
calendarRef: ({
|
|
323
|
+
$: import('../../../vue/dist/vue.esm-bundler.js').ComponentInternalInstance;
|
|
324
|
+
$data: {};
|
|
325
|
+
$props: Partial<{
|
|
326
|
+
readonly controllerType: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "button" | "select", unknown>;
|
|
327
|
+
}> & Omit<{
|
|
328
|
+
readonly controllerType: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "button" | "select", unknown>;
|
|
329
|
+
readonly modelValue?: Date | undefined;
|
|
330
|
+
readonly formatter?: ((value: number, type: "year" | "month") => string | number) | undefined;
|
|
331
|
+
readonly range?: [Date, Date] | undefined;
|
|
332
|
+
"onUpdate:modelValue"?: ((value: Date) => any) | undefined | undefined;
|
|
333
|
+
onInput?: ((value: Date) => any) | undefined | undefined;
|
|
334
|
+
} & 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
|
+
};
|
|
338
|
+
$refs: {
|
|
339
|
+
[x: string]: unknown;
|
|
340
|
+
};
|
|
341
|
+
$slots: Readonly<{
|
|
342
|
+
[name: string]: import('../../../vue/dist/vue.esm-bundler.js').Slot<any> | undefined;
|
|
343
|
+
}>;
|
|
344
|
+
$root: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
345
|
+
$parent: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
346
|
+
$host: Element | null;
|
|
347
|
+
$emit: ((event: "input", value: Date) => void) & ((event: "update:modelValue", value: Date) => void);
|
|
348
|
+
$el: any;
|
|
349
|
+
$options: import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
350
|
+
readonly modelValue: {
|
|
351
|
+
readonly type: import('../../../vue/dist/vue.esm-bundler.js').PropType<Date>;
|
|
352
|
+
readonly required: false;
|
|
353
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
354
|
+
__epPropKey: true;
|
|
355
|
+
};
|
|
356
|
+
readonly range: {
|
|
357
|
+
readonly type: import('../../../vue/dist/vue.esm-bundler.js').PropType<[Date, Date]>;
|
|
358
|
+
readonly required: false;
|
|
359
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
360
|
+
__epPropKey: true;
|
|
361
|
+
};
|
|
362
|
+
readonly controllerType: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, "button" | "select", unknown, "button", boolean>;
|
|
363
|
+
readonly formatter: {
|
|
364
|
+
readonly type: import('../../../vue/dist/vue.esm-bundler.js').PropType<(value: number, type: "year" | "month") => string | number>;
|
|
365
|
+
readonly required: false;
|
|
366
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
367
|
+
__epPropKey: true;
|
|
368
|
+
};
|
|
369
|
+
}>> & {
|
|
370
|
+
"onUpdate:modelValue"?: ((value: Date) => any) | undefined;
|
|
371
|
+
onInput?: ((value: Date) => any) | undefined;
|
|
372
|
+
}, {
|
|
373
|
+
selectedDay: import('../../../vue/dist/vue.esm-bundler.js').WritableComputedRef<import('dayjs').Dayjs | undefined>;
|
|
374
|
+
pickDay: (day: import('dayjs').Dayjs) => void;
|
|
375
|
+
selectDate: (type: import('element-plus').CalendarDateType) => void;
|
|
376
|
+
calculateValidatedDateRange: (startDayjs: import('dayjs').Dayjs, endDayjs: import('dayjs').Dayjs) => [import('dayjs').Dayjs, import('dayjs').Dayjs][];
|
|
377
|
+
}, unknown, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
378
|
+
"update:modelValue": (value: Date) => void;
|
|
379
|
+
input: (value: Date) => void;
|
|
380
|
+
}, string, {
|
|
381
|
+
readonly controllerType: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "button" | "select", unknown>;
|
|
382
|
+
}, {}, 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> & {
|
|
383
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
384
|
+
created?: (() => void) | (() => void)[];
|
|
385
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
386
|
+
mounted?: (() => void) | (() => void)[];
|
|
387
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
388
|
+
updated?: (() => void) | (() => void)[];
|
|
389
|
+
activated?: (() => void) | (() => void)[];
|
|
390
|
+
deactivated?: (() => void) | (() => void)[];
|
|
391
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
392
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
393
|
+
destroyed?: (() => void) | (() => void)[];
|
|
394
|
+
unmounted?: (() => void) | (() => void)[];
|
|
395
|
+
renderTracked?: ((e: import('../../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void) | ((e: import('../../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void)[];
|
|
396
|
+
renderTriggered?: ((e: import('../../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void) | ((e: import('../../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void)[];
|
|
397
|
+
errorCaptured?: ((err: unknown, instance: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
398
|
+
};
|
|
399
|
+
$forceUpdate: () => void;
|
|
400
|
+
$nextTick: typeof import('../../../vue/dist/vue.esm-bundler.js').nextTick;
|
|
401
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('../../../vue/dist/vue.esm-bundler.js').WatchOptions): import('../../../vue/dist/vue.esm-bundler.js').WatchStopHandle;
|
|
402
|
+
} & Readonly<{
|
|
403
|
+
readonly controllerType: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "button" | "select", unknown>;
|
|
404
|
+
}> & Omit<Readonly<import('../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
405
|
+
readonly modelValue: {
|
|
406
|
+
readonly type: import('../../../vue/dist/vue.esm-bundler.js').PropType<Date>;
|
|
407
|
+
readonly required: false;
|
|
408
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
409
|
+
__epPropKey: true;
|
|
410
|
+
};
|
|
411
|
+
readonly range: {
|
|
412
|
+
readonly type: import('../../../vue/dist/vue.esm-bundler.js').PropType<[Date, Date]>;
|
|
413
|
+
readonly required: false;
|
|
414
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
415
|
+
__epPropKey: true;
|
|
416
|
+
};
|
|
417
|
+
readonly controllerType: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, "button" | "select", unknown, "button", boolean>;
|
|
418
|
+
readonly formatter: {
|
|
419
|
+
readonly type: import('../../../vue/dist/vue.esm-bundler.js').PropType<(value: number, type: "year" | "month") => string | number>;
|
|
420
|
+
readonly required: false;
|
|
421
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
422
|
+
__epPropKey: true;
|
|
423
|
+
};
|
|
424
|
+
}>> & {
|
|
425
|
+
"onUpdate:modelValue"?: ((value: Date) => any) | undefined;
|
|
426
|
+
onInput?: ((value: Date) => any) | undefined;
|
|
427
|
+
}, "controllerType" | "selectedDay" | "pickDay" | "selectDate" | "calculateValidatedDateRange"> & import('../../../vue/dist/vue.esm-bundler.js').ShallowUnwrapRef<{
|
|
428
|
+
selectedDay: import('../../../vue/dist/vue.esm-bundler.js').WritableComputedRef<import('dayjs').Dayjs | undefined>;
|
|
429
|
+
pickDay: (day: import('dayjs').Dayjs) => void;
|
|
430
|
+
selectDate: (type: import('element-plus').CalendarDateType) => void;
|
|
431
|
+
calculateValidatedDateRange: (startDayjs: import('dayjs').Dayjs, endDayjs: import('dayjs').Dayjs) => [import('dayjs').Dayjs, import('dayjs').Dayjs][];
|
|
432
|
+
}> & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
433
|
+
$slots: {
|
|
434
|
+
header?: (props: {
|
|
435
|
+
date: string;
|
|
436
|
+
}) => any;
|
|
437
|
+
} & {
|
|
438
|
+
'date-cell'?: (props: {
|
|
439
|
+
data: {
|
|
440
|
+
isSelected: boolean;
|
|
441
|
+
type: string;
|
|
442
|
+
day: string;
|
|
443
|
+
date: Date;
|
|
444
|
+
};
|
|
445
|
+
}) => any;
|
|
446
|
+
} & {
|
|
447
|
+
'date-cell'?: (props: {
|
|
448
|
+
data: {
|
|
449
|
+
isSelected: boolean;
|
|
450
|
+
type: string;
|
|
451
|
+
day: string;
|
|
452
|
+
date: Date;
|
|
453
|
+
};
|
|
454
|
+
}) => any;
|
|
455
|
+
};
|
|
456
|
+
}) | null;
|
|
457
|
+
scrollerRef: ({
|
|
458
|
+
$: import('../../../vue/dist/vue.esm-bundler.js').ComponentInternalInstance;
|
|
459
|
+
$data: {};
|
|
460
|
+
$props: Partial<{
|
|
461
|
+
size: "medium" | "small";
|
|
462
|
+
duration: number;
|
|
463
|
+
disabledX: boolean;
|
|
464
|
+
disabledY: boolean;
|
|
465
|
+
showType: "auto" | "always" | "never" | "hover";
|
|
466
|
+
autoUpdateOnScrollSize: boolean;
|
|
467
|
+
}> & Omit<{
|
|
468
|
+
readonly size: "small" | "medium";
|
|
469
|
+
readonly disabledX: boolean;
|
|
470
|
+
readonly disabledY: boolean;
|
|
471
|
+
readonly duration: number;
|
|
472
|
+
readonly showType: "never" | "always" | "hover" | "auto";
|
|
473
|
+
readonly autoUpdateOnScrollSize: boolean;
|
|
474
|
+
readonly wrapClass?: string | object | any[] | undefined;
|
|
475
|
+
readonly barClass?: string | undefined;
|
|
476
|
+
} & 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" | "disabledX" | "disabledY" | "duration" | "showType" | "autoUpdateOnScrollSize">;
|
|
477
|
+
$attrs: {
|
|
478
|
+
[x: string]: unknown;
|
|
479
|
+
};
|
|
480
|
+
$refs: {
|
|
481
|
+
[x: string]: unknown;
|
|
482
|
+
} & {
|
|
483
|
+
targetRef: HTMLDivElement;
|
|
484
|
+
};
|
|
485
|
+
$slots: Readonly<{
|
|
486
|
+
[name: string]: import('../../../vue/dist/vue.esm-bundler.js').Slot<any> | undefined;
|
|
487
|
+
}>;
|
|
488
|
+
$root: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
489
|
+
$parent: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
490
|
+
$host: Element | null;
|
|
491
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
492
|
+
$el: HTMLDivElement;
|
|
493
|
+
$options: import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
494
|
+
wrapClass: {
|
|
495
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string | any[] | object>;
|
|
496
|
+
};
|
|
497
|
+
disabledX: {
|
|
498
|
+
type: BooleanConstructor;
|
|
499
|
+
required: boolean;
|
|
500
|
+
};
|
|
501
|
+
disabledY: {
|
|
502
|
+
type: BooleanConstructor;
|
|
503
|
+
};
|
|
504
|
+
duration: {
|
|
505
|
+
type: NumberConstructor;
|
|
506
|
+
default: number;
|
|
507
|
+
};
|
|
508
|
+
showType: {
|
|
509
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<"auto" | "always" | "hover" | "never">;
|
|
510
|
+
default: string;
|
|
511
|
+
};
|
|
512
|
+
size: {
|
|
513
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').ScrollerSizeT>;
|
|
514
|
+
default: string;
|
|
515
|
+
};
|
|
516
|
+
autoUpdateOnScrollSize: {
|
|
517
|
+
type: BooleanConstructor;
|
|
518
|
+
};
|
|
519
|
+
barClass: {
|
|
520
|
+
type: StringConstructor;
|
|
521
|
+
};
|
|
522
|
+
}>> & Readonly<{}>, {
|
|
523
|
+
scrollTo: (options?: ScrollToOptions | undefined) => void;
|
|
524
|
+
getContainerEl(): HTMLElement | null;
|
|
525
|
+
}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {}, string, {
|
|
526
|
+
size: "medium" | "small";
|
|
527
|
+
duration: number;
|
|
528
|
+
disabledX: boolean;
|
|
529
|
+
disabledY: boolean;
|
|
530
|
+
showType: "auto" | "always" | "never" | "hover";
|
|
531
|
+
autoUpdateOnScrollSize: boolean;
|
|
532
|
+
}, {}, 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> & {
|
|
533
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
534
|
+
created?: (() => void) | (() => void)[];
|
|
535
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
536
|
+
mounted?: (() => void) | (() => void)[];
|
|
537
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
538
|
+
updated?: (() => void) | (() => void)[];
|
|
539
|
+
activated?: (() => void) | (() => void)[];
|
|
540
|
+
deactivated?: (() => void) | (() => void)[];
|
|
541
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
542
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
543
|
+
destroyed?: (() => void) | (() => void)[];
|
|
544
|
+
unmounted?: (() => void) | (() => void)[];
|
|
545
|
+
renderTracked?: ((e: import('../../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void) | ((e: import('../../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void)[];
|
|
546
|
+
renderTriggered?: ((e: import('../../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void) | ((e: import('../../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void)[];
|
|
547
|
+
errorCaptured?: ((err: unknown, instance: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
548
|
+
};
|
|
549
|
+
$forceUpdate: () => void;
|
|
550
|
+
$nextTick: typeof import('../../../vue/dist/vue.esm-bundler.js').nextTick;
|
|
551
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('../../../vue/dist/vue.esm-bundler.js').WatchOptions): import('../../../vue/dist/vue.esm-bundler.js').WatchStopHandle;
|
|
552
|
+
} & Readonly<{
|
|
553
|
+
size: "medium" | "small";
|
|
554
|
+
duration: number;
|
|
555
|
+
disabledX: boolean;
|
|
556
|
+
disabledY: boolean;
|
|
557
|
+
showType: "auto" | "always" | "never" | "hover";
|
|
558
|
+
autoUpdateOnScrollSize: boolean;
|
|
559
|
+
}> & Omit<Readonly<import('../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
560
|
+
wrapClass: {
|
|
561
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string | any[] | object>;
|
|
562
|
+
};
|
|
563
|
+
disabledX: {
|
|
564
|
+
type: BooleanConstructor;
|
|
565
|
+
required: boolean;
|
|
566
|
+
};
|
|
567
|
+
disabledY: {
|
|
568
|
+
type: BooleanConstructor;
|
|
569
|
+
};
|
|
570
|
+
duration: {
|
|
571
|
+
type: NumberConstructor;
|
|
572
|
+
default: number;
|
|
573
|
+
};
|
|
574
|
+
showType: {
|
|
575
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<"auto" | "always" | "hover" | "never">;
|
|
576
|
+
default: string;
|
|
577
|
+
};
|
|
578
|
+
size: {
|
|
579
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').ScrollerSizeT>;
|
|
580
|
+
default: string;
|
|
581
|
+
};
|
|
582
|
+
autoUpdateOnScrollSize: {
|
|
583
|
+
type: BooleanConstructor;
|
|
584
|
+
};
|
|
585
|
+
barClass: {
|
|
586
|
+
type: StringConstructor;
|
|
587
|
+
};
|
|
588
|
+
}>> & Readonly<{}>, "size" | "disabledX" | "disabledY" | "duration" | "showType" | "autoUpdateOnScrollSize" | "scrollTo" | "getContainerEl"> & import('../../../vue/dist/vue.esm-bundler.js').ShallowUnwrapRef<{
|
|
589
|
+
scrollTo: (options?: ScrollToOptions | undefined) => void;
|
|
590
|
+
getContainerEl(): HTMLElement | null;
|
|
591
|
+
}> & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
592
|
+
$slots: {
|
|
593
|
+
default?(_: {}): any;
|
|
594
|
+
thumb?(_: {}): any;
|
|
595
|
+
track?(_: {}): any;
|
|
596
|
+
};
|
|
597
|
+
}) | null;
|
|
598
|
+
}, any, import('../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, {
|
|
318
599
|
P: {};
|
|
319
600
|
B: {};
|
|
320
601
|
D: {};
|
|
321
602
|
C: {};
|
|
322
603
|
M: {};
|
|
323
604
|
Defaults: {};
|
|
324
|
-
}, Readonly<
|
|
605
|
+
}, Readonly<import('./types').MyActivityCalendarPropsT> & Readonly<{
|
|
606
|
+
onEdit?: ((...args: any[]) => any) | undefined;
|
|
607
|
+
}>, {}, {}, {}, {}, {}>;
|
|
325
608
|
__isFragment?: never;
|
|
326
609
|
__isTeleport?: never;
|
|
327
610
|
__isSuspense?: never;
|
|
328
|
-
} & import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<
|
|
611
|
+
} & import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('./types').MyActivityCalendarPropsT> & Readonly<{
|
|
612
|
+
onEdit?: ((...args: any[]) => any) | undefined;
|
|
613
|
+
}>, {}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
614
|
+
edit: (...args: any[]) => void;
|
|
615
|
+
}, 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 () => {
|
|
616
|
+
$slots: {
|
|
617
|
+
empty?(_: {}): any;
|
|
618
|
+
};
|
|
619
|
+
}) & {
|
|
329
620
|
install(app: App): void;
|
|
330
621
|
};
|
|
331
622
|
export { OActivityForm, OActivityApproval, OMyActivityCalendar };
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
export interface ParamsItemT {
|
|
2
2
|
id?: number;
|
|
3
3
|
title: string;
|
|
4
|
-
organizer: string;
|
|
5
4
|
start_date: string;
|
|
6
5
|
end_date: string;
|
|
7
6
|
register_end_date: string;
|
|
@@ -16,8 +15,6 @@ export interface ParamsItemT {
|
|
|
16
15
|
is_publish: string;
|
|
17
16
|
update_activity_id?: string;
|
|
18
17
|
approver: string;
|
|
19
|
-
email_list: string;
|
|
20
|
-
content: string;
|
|
21
18
|
}
|
|
22
19
|
export interface ActivityFormPropsT {
|
|
23
20
|
data?: ParamsItemT;
|
|
@@ -70,3 +67,10 @@ export interface ActivityTablePropsT {
|
|
|
70
67
|
rejectActivityRequest: any;
|
|
71
68
|
getActivityDetailRequest: any;
|
|
72
69
|
}
|
|
70
|
+
export interface MyActivityCalendarPropsT {
|
|
71
|
+
getListRequest: any;
|
|
72
|
+
revokeActivityRequest: any;
|
|
73
|
+
deleteActivityRequest: any;
|
|
74
|
+
editActivityRequest: any;
|
|
75
|
+
getActivityDetailRequest: any;
|
|
76
|
+
}
|