@opendesign-plus-test/components 0.0.1-rc.26 → 0.0.1-rc.28
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 +269 -197
- package/dist/components/OCookieNotice.vue.d.ts +3 -2
- package/dist/components/OFooter.vue.d.ts +22 -1
- package/dist/components/OHeaderUser.vue.d.ts +0 -2
- package/dist/components/activity/OMyActivityCalendar.vue.d.ts +6 -6
- package/dist/components/activity/index.d.ts +3 -3
- package/dist/components/element-plus/OElCookieNotice.vue.d.ts +6 -3
- package/dist/components/{OHeader.vue.d.ts → header/OHeader.vue.d.ts} +2 -1
- package/dist/components/{OHeaderMoblie.vue.d.ts → header/OHeaderMoblie.vue.d.ts} +2 -2
- package/dist/components/header/components/HeaderContent.vue.d.ts +6 -0
- package/dist/components/header/components/HeaderNav.vue.d.ts +7 -0
- package/dist/components/header/components/HeaderNavMoblie.vue.d.ts +17 -0
- package/dist/components/header/components/HeaderUbmcNav.vue.d.ts +2 -0
- package/dist/components/header/index.d.ts +22 -0
- package/dist/components/meeting/OMeetingCalendar.vue.d.ts +1 -6
- package/dist/components/meeting/OMeetingForm.vue.d.ts +3 -15
- package/dist/components/meeting/OMyMeetingCalendar.vue.d.ts +6 -6
- package/dist/components/meeting/types.d.ts +14 -5
- package/dist/components/meeting/utils.d.ts +1 -0
- package/dist/components.cjs.js +46 -46
- package/dist/components.css +1 -1
- package/dist/components.es.js +17909 -17780
- package/dist/index.d.ts +2 -3
- package/package.json +1 -1
- package/src/assets/svg-icons/icon-chevron-down.svg +1 -1
- package/src/components/OCookieNotice.vue +270 -118
- package/src/components/OFooter.vue +11 -1
- package/src/components/OHeaderUser.vue +14 -81
- package/src/components/OSourceCode.vue +1 -1
- package/src/components/activity/OActivityApproval.vue +60 -26
- package/src/components/activity/OActivityForm.vue +2 -5
- package/src/components/activity/OMyActivityCalendar.vue +80 -73
- package/src/components/common/MoreText.vue +3 -2
- package/src/components/common/ThFilter.vue +7 -3
- package/src/components/element-plus/OElCookieNotice.vue +306 -115
- package/src/components/events/OEventsApply.vue +16 -0
- package/src/components/events/OEventsList.vue +3 -0
- package/src/components/header/OHeader.vue +175 -0
- package/src/components/{OHeaderMoblie.vue → header/OHeaderMoblie.vue} +6 -3
- package/src/components/{common/HeaderEulerNav.vue → header/components/HeaderContent.vue} +375 -551
- package/src/components/header/components/HeaderNav.vue +280 -0
- package/src/components/{common → header/components}/HeaderNavMoblie.vue +20 -18
- package/src/components/{common → header/components}/HeaderUbmcNav.vue +6 -63
- package/src/components/header/index.ts +16 -0
- package/src/components/meeting/OMeetingCalendar.vue +19 -12
- package/src/components/meeting/OMeetingForm.vue +20 -27
- package/src/components/meeting/OMeetingPlayback.vue +1 -1
- package/src/components/meeting/OMyMeetingCalendar.vue +36 -36
- package/src/components/meeting/components/OMeetingCalendarList.vue +12 -9
- package/src/components/meeting/components/OMeetingDetail.vue +38 -17
- package/src/components/meeting/types.ts +13 -5
- package/src/components/meeting/utils.ts +18 -1
- package/src/i18n/en.ts +3 -1
- package/src/i18n/zh.ts +4 -2
- package/src/index.ts +2 -5
- package/dist/components/activity/data.d.ts +0 -51
- package/src/components/OHeader.vue +0 -97
- package/src/components/activity/data.ts +0 -365
- package/src/components/meeting/components/OMyCalendarWrapper.vue +0 -160
|
@@ -16,7 +16,6 @@ interface UserPropsT {
|
|
|
16
16
|
lang?: string;
|
|
17
17
|
noticeTotal?: number;
|
|
18
18
|
userInfo?: UserInfoT;
|
|
19
|
-
userInfoVisible?: boolean;
|
|
20
19
|
options?: OptionsItemT[];
|
|
21
20
|
}
|
|
22
21
|
export interface OHeaderUserEmitsT {
|
|
@@ -35,6 +34,5 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
35
34
|
token: string;
|
|
36
35
|
noticeTotal: number;
|
|
37
36
|
userInfo: UserInfoT;
|
|
38
|
-
userInfoVisible: boolean;
|
|
39
37
|
}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
40
38
|
export default _default;
|
|
@@ -154,14 +154,14 @@ declare function __VLS_template(): {
|
|
|
154
154
|
autoUpdateOnScrollSize: boolean;
|
|
155
155
|
}> & Omit<{
|
|
156
156
|
readonly size: "small" | "medium";
|
|
157
|
+
readonly duration: number;
|
|
157
158
|
readonly disabledX: boolean;
|
|
158
159
|
readonly disabledY: boolean;
|
|
159
|
-
readonly duration: number;
|
|
160
160
|
readonly showType: "never" | "always" | "hover" | "auto";
|
|
161
161
|
readonly autoUpdateOnScrollSize: boolean;
|
|
162
162
|
readonly wrapClass?: string | object | any[] | undefined;
|
|
163
163
|
readonly barClass?: string | undefined;
|
|
164
|
-
} & 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" | "
|
|
164
|
+
} & 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
165
|
$attrs: {
|
|
166
166
|
[x: string]: unknown;
|
|
167
167
|
};
|
|
@@ -273,7 +273,7 @@ declare function __VLS_template(): {
|
|
|
273
273
|
barClass: {
|
|
274
274
|
type: StringConstructor;
|
|
275
275
|
};
|
|
276
|
-
}>> & Readonly<{}>, "size" | "
|
|
276
|
+
}>> & Readonly<{}>, "size" | "duration" | "disabledX" | "disabledY" | "showType" | "autoUpdateOnScrollSize" | "scrollTo" | "getContainerEl"> & import('../../../vue/dist/vue.esm-bundler.js').ShallowUnwrapRef<{
|
|
277
277
|
scrollTo: (options?: ScrollToOptions | undefined) => void;
|
|
278
278
|
getContainerEl(): HTMLElement | null;
|
|
279
279
|
}> & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
@@ -439,14 +439,14 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
439
439
|
autoUpdateOnScrollSize: boolean;
|
|
440
440
|
}> & Omit<{
|
|
441
441
|
readonly size: "small" | "medium";
|
|
442
|
+
readonly duration: number;
|
|
442
443
|
readonly disabledX: boolean;
|
|
443
444
|
readonly disabledY: boolean;
|
|
444
|
-
readonly duration: number;
|
|
445
445
|
readonly showType: "never" | "always" | "hover" | "auto";
|
|
446
446
|
readonly autoUpdateOnScrollSize: boolean;
|
|
447
447
|
readonly wrapClass?: string | object | any[] | undefined;
|
|
448
448
|
readonly barClass?: string | undefined;
|
|
449
|
-
} & 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" | "
|
|
449
|
+
} & 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
450
|
$attrs: {
|
|
451
451
|
[x: string]: unknown;
|
|
452
452
|
};
|
|
@@ -558,7 +558,7 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
558
558
|
barClass: {
|
|
559
559
|
type: StringConstructor;
|
|
560
560
|
};
|
|
561
|
-
}>> & Readonly<{}>, "size" | "
|
|
561
|
+
}>> & Readonly<{}>, "size" | "duration" | "disabledX" | "disabledY" | "showType" | "autoUpdateOnScrollSize" | "scrollTo" | "getContainerEl"> & import('../../../vue/dist/vue.esm-bundler.js').ShallowUnwrapRef<{
|
|
562
562
|
scrollTo: (options?: ScrollToOptions | undefined) => void;
|
|
563
563
|
getContainerEl(): HTMLElement | null;
|
|
564
564
|
}> & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
@@ -466,14 +466,14 @@ declare const OMyActivityCalendar: {
|
|
|
466
466
|
autoUpdateOnScrollSize: boolean;
|
|
467
467
|
}> & Omit<{
|
|
468
468
|
readonly size: "small" | "medium";
|
|
469
|
+
readonly duration: number;
|
|
469
470
|
readonly disabledX: boolean;
|
|
470
471
|
readonly disabledY: boolean;
|
|
471
|
-
readonly duration: number;
|
|
472
472
|
readonly showType: "never" | "always" | "hover" | "auto";
|
|
473
473
|
readonly autoUpdateOnScrollSize: boolean;
|
|
474
474
|
readonly wrapClass?: string | object | any[] | undefined;
|
|
475
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" | "
|
|
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" | "duration" | "disabledX" | "disabledY" | "showType" | "autoUpdateOnScrollSize">;
|
|
477
477
|
$attrs: {
|
|
478
478
|
[x: string]: unknown;
|
|
479
479
|
};
|
|
@@ -585,7 +585,7 @@ declare const OMyActivityCalendar: {
|
|
|
585
585
|
barClass: {
|
|
586
586
|
type: StringConstructor;
|
|
587
587
|
};
|
|
588
|
-
}>> & Readonly<{}>, "size" | "
|
|
588
|
+
}>> & Readonly<{}>, "size" | "duration" | "disabledX" | "disabledY" | "showType" | "autoUpdateOnScrollSize" | "scrollTo" | "getContainerEl"> & import('../../../vue/dist/vue.esm-bundler.js').ShallowUnwrapRef<{
|
|
589
589
|
scrollTo: (options?: ScrollToOptions | undefined) => void;
|
|
590
590
|
getContainerEl(): HTMLElement | null;
|
|
591
591
|
}> & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
type __VLS_Props = {
|
|
2
2
|
visible?: boolean;
|
|
3
|
-
enableGrid?: boolean;
|
|
4
3
|
community: string;
|
|
5
4
|
detailUrl: string;
|
|
6
5
|
wrapper?: string | HTMLElement;
|
|
@@ -11,7 +10,9 @@ declare function __VLS_template(): {
|
|
|
11
10
|
slots: {
|
|
12
11
|
'close-icon'?(_: {}): any;
|
|
13
12
|
};
|
|
14
|
-
refs: {
|
|
13
|
+
refs: {
|
|
14
|
+
cookieNoticeRef: HTMLDivElement;
|
|
15
|
+
};
|
|
15
16
|
rootEl: any;
|
|
16
17
|
};
|
|
17
18
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
@@ -21,7 +22,9 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
21
22
|
"update:visible": (value: boolean) => any;
|
|
22
23
|
}, string, import('../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
23
24
|
"onUpdate:visible"?: ((value: boolean) => any) | undefined;
|
|
24
|
-
}>, {}, {}, {}, {}, string, import('../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, false, {
|
|
25
|
+
}>, {}, {}, {}, {}, string, import('../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, false, {
|
|
26
|
+
cookieNoticeRef: HTMLDivElement;
|
|
27
|
+
}, any>;
|
|
25
28
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
26
29
|
export default _default;
|
|
27
30
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export interface OHeaderT {
|
|
2
2
|
(e: 'go-home'): void;
|
|
3
|
+
(e: 'handle-click', val: any): void;
|
|
3
4
|
}
|
|
4
5
|
declare function __VLS_template(): {
|
|
5
6
|
attrs: Partial<{}>;
|
|
@@ -13,7 +14,7 @@ declare function __VLS_template(): {
|
|
|
13
14
|
rootEl: HTMLDivElement;
|
|
14
15
|
};
|
|
15
16
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
16
|
-
declare const __VLS_component: import('
|
|
17
|
+
declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, import('../../../vue/dist/vue.esm-bundler.js').PublicProps>;
|
|
17
18
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
18
19
|
export default _default;
|
|
19
20
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -11,7 +11,7 @@ declare function __VLS_template(): {
|
|
|
11
11
|
toolbar?(_: {}): any;
|
|
12
12
|
};
|
|
13
13
|
refs: {
|
|
14
|
-
mobileNav: import('
|
|
14
|
+
mobileNav: import('../../../vue/dist/vue.esm-bundler.js').CreateComponentPublicInstanceWithMixins<Record<string, any> & {}, {}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {}, import('../../../vue/dist/vue.esm-bundler.js').PublicProps, {}, false, {}, {}, {}, {}, string, {}, any, import('../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, {
|
|
15
15
|
P: {};
|
|
16
16
|
B: {};
|
|
17
17
|
D: {};
|
|
@@ -23,7 +23,7 @@ declare function __VLS_template(): {
|
|
|
23
23
|
rootEl: HTMLDivElement;
|
|
24
24
|
};
|
|
25
25
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
26
|
-
declare const __VLS_component: import('
|
|
26
|
+
declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, import('../../../vue/dist/vue.esm-bundler.js').PublicProps>;
|
|
27
27
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
28
28
|
export default _default;
|
|
29
29
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export interface OHeaderEmitsT {
|
|
2
|
+
(e: 'handle-mouseenter-sub', val: any): void;
|
|
3
|
+
(e: 'handle-mouseleave-sub', val: any): void;
|
|
4
|
+
}
|
|
5
|
+
declare const _default: import('../../../../vue/dist/vue.esm-bundler.js').DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, import('../../../../vue/dist/vue.esm-bundler.js').PublicProps>;
|
|
6
|
+
export default _default;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export interface OHeaderEmitsT {
|
|
2
|
+
(e: 'handle-mouseenter', val: any): void;
|
|
3
|
+
(e: 'handle-mouseleave', val: any): void;
|
|
4
|
+
(e: 'handle-click', val: any): void;
|
|
5
|
+
}
|
|
6
|
+
declare const _default: import('../../../../vue/dist/vue.esm-bundler.js').DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, import('../../../../vue/dist/vue.esm-bundler.js').PublicProps>;
|
|
7
|
+
export default _default;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
declare function __VLS_template(): {
|
|
2
|
+
attrs: Partial<{}>;
|
|
3
|
+
slots: {
|
|
4
|
+
tool?(_: {}): any;
|
|
5
|
+
};
|
|
6
|
+
refs: {};
|
|
7
|
+
rootEl: HTMLDivElement;
|
|
8
|
+
};
|
|
9
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
10
|
+
declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js').DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, import('../../../../vue/dist/vue.esm-bundler.js').PublicProps>;
|
|
11
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
12
|
+
export default _default;
|
|
13
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
14
|
+
new (): {
|
|
15
|
+
$slots: S;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { App } from '../../../vue/dist/vue.esm-bundler.js';
|
|
2
|
+
declare const OHeader: import('../../../vue/dist/vue.esm-bundler.js').DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, import('../../../vue/dist/vue.esm-bundler.js').PublicProps> & (new () => {
|
|
3
|
+
$slots: {
|
|
4
|
+
logo?(_: {}): any;
|
|
5
|
+
nav?(_: {}): any;
|
|
6
|
+
nav?(_: {}): any;
|
|
7
|
+
toolbar?(_: {}): any;
|
|
8
|
+
};
|
|
9
|
+
}) & {
|
|
10
|
+
install(app: App): void;
|
|
11
|
+
};
|
|
12
|
+
declare const OHeaderMoblie: import('../../../vue/dist/vue.esm-bundler.js').DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, import('../../../vue/dist/vue.esm-bundler.js').PublicProps> & (new () => {
|
|
13
|
+
$slots: {
|
|
14
|
+
rightConfig?(_: {}): any;
|
|
15
|
+
tool?(_: {}): any;
|
|
16
|
+
logo?(_: {}): any;
|
|
17
|
+
toolbar?(_: {}): any;
|
|
18
|
+
};
|
|
19
|
+
}) & {
|
|
20
|
+
install(app: App): void;
|
|
21
|
+
};
|
|
22
|
+
export { OHeader, OHeaderMoblie };
|
|
@@ -7,7 +7,6 @@ type __VLS_Props = {
|
|
|
7
7
|
getEventsListRequest: any;
|
|
8
8
|
hiddenEvents?: boolean;
|
|
9
9
|
hiddenSummit?: boolean;
|
|
10
|
-
createDesc?: string;
|
|
11
10
|
};
|
|
12
11
|
declare function __VLS_template(): {
|
|
13
12
|
attrs: Partial<{}>;
|
|
@@ -154,11 +153,7 @@ declare function __VLS_template(): {
|
|
|
154
153
|
rootEl: HTMLDivElement;
|
|
155
154
|
};
|
|
156
155
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
157
|
-
declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
158
|
-
create: (...args: any[]) => void;
|
|
159
|
-
}, string, import('../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
160
|
-
onCreate?: ((...args: any[]) => any) | undefined;
|
|
161
|
-
}>, {
|
|
156
|
+
declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {}, string, import('../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
162
157
|
getSummitListRequest: any;
|
|
163
158
|
getEventsListRequest: any;
|
|
164
159
|
hiddenEvents: boolean;
|
|
@@ -1,22 +1,10 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
data?: MeetingItemT;
|
|
4
|
-
isSub?: boolean;
|
|
5
|
-
isEdit?: boolean;
|
|
6
|
-
subId?: string;
|
|
7
|
-
createMeetingRequest: any;
|
|
8
|
-
editMeetingRequest: any;
|
|
9
|
-
editSubMeetingRequest: any;
|
|
10
|
-
getPlatformsRequest: any;
|
|
11
|
-
getGroupsRequest: any;
|
|
12
|
-
showBtns?: boolean;
|
|
13
|
-
};
|
|
14
|
-
declare const _default: import('../../../vue/dist/vue.esm-bundler.js').DefineComponent<__VLS_Props, {
|
|
1
|
+
import { MeetingFormPropsT } from './types';
|
|
2
|
+
declare const _default: import('../../../vue/dist/vue.esm-bundler.js').DefineComponent<MeetingFormPropsT, {
|
|
15
3
|
confirm: () => Promise<void>;
|
|
16
4
|
}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
17
5
|
cancel: (...args: any[]) => void;
|
|
18
6
|
confirm: (...args: any[]) => void;
|
|
19
|
-
}, string, import('../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<
|
|
7
|
+
}, string, import('../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<MeetingFormPropsT> & Readonly<{
|
|
20
8
|
onCancel?: ((...args: any[]) => any) | undefined;
|
|
21
9
|
onConfirm?: ((...args: any[]) => any) | undefined;
|
|
22
10
|
}>, {
|
|
@@ -158,14 +158,14 @@ declare function __VLS_template(): {
|
|
|
158
158
|
autoUpdateOnScrollSize: boolean;
|
|
159
159
|
}> & Omit<{
|
|
160
160
|
readonly size: "small" | "medium";
|
|
161
|
+
readonly duration: number;
|
|
161
162
|
readonly disabledX: boolean;
|
|
162
163
|
readonly disabledY: boolean;
|
|
163
|
-
readonly duration: number;
|
|
164
164
|
readonly showType: "never" | "always" | "hover" | "auto";
|
|
165
165
|
readonly autoUpdateOnScrollSize: boolean;
|
|
166
166
|
readonly wrapClass?: string | object | any[] | undefined;
|
|
167
167
|
readonly barClass?: string | undefined;
|
|
168
|
-
} & 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" | "
|
|
168
|
+
} & 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">;
|
|
169
169
|
$attrs: {
|
|
170
170
|
[x: string]: unknown;
|
|
171
171
|
};
|
|
@@ -277,7 +277,7 @@ declare function __VLS_template(): {
|
|
|
277
277
|
barClass: {
|
|
278
278
|
type: StringConstructor;
|
|
279
279
|
};
|
|
280
|
-
}>> & Readonly<{}>, "size" | "
|
|
280
|
+
}>> & Readonly<{}>, "size" | "duration" | "disabledX" | "disabledY" | "showType" | "autoUpdateOnScrollSize" | "scrollTo" | "getContainerEl"> & import('../../../vue/dist/vue.esm-bundler.js').ShallowUnwrapRef<{
|
|
281
281
|
scrollTo: (options?: ScrollToOptions | undefined) => void;
|
|
282
282
|
getContainerEl(): HTMLElement | null;
|
|
283
283
|
}> & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
@@ -443,14 +443,14 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
443
443
|
autoUpdateOnScrollSize: boolean;
|
|
444
444
|
}> & Omit<{
|
|
445
445
|
readonly size: "small" | "medium";
|
|
446
|
+
readonly duration: number;
|
|
446
447
|
readonly disabledX: boolean;
|
|
447
448
|
readonly disabledY: boolean;
|
|
448
|
-
readonly duration: number;
|
|
449
449
|
readonly showType: "never" | "always" | "hover" | "auto";
|
|
450
450
|
readonly autoUpdateOnScrollSize: boolean;
|
|
451
451
|
readonly wrapClass?: string | object | any[] | undefined;
|
|
452
452
|
readonly barClass?: string | undefined;
|
|
453
|
-
} & 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" | "
|
|
453
|
+
} & 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">;
|
|
454
454
|
$attrs: {
|
|
455
455
|
[x: string]: unknown;
|
|
456
456
|
};
|
|
@@ -562,7 +562,7 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
562
562
|
barClass: {
|
|
563
563
|
type: StringConstructor;
|
|
564
564
|
};
|
|
565
|
-
}>> & Readonly<{}>, "size" | "
|
|
565
|
+
}>> & Readonly<{}>, "size" | "duration" | "disabledX" | "disabledY" | "showType" | "autoUpdateOnScrollSize" | "scrollTo" | "getContainerEl"> & import('../../../vue/dist/vue.esm-bundler.js').ShallowUnwrapRef<{
|
|
566
566
|
scrollTo: (options?: ScrollToOptions | undefined) => void;
|
|
567
567
|
getContainerEl(): HTMLElement | null;
|
|
568
568
|
}> & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
@@ -8,7 +8,9 @@ export declare enum CalendarDataType {
|
|
|
8
8
|
ALL = "all",
|
|
9
9
|
MEETING = "meeting",
|
|
10
10
|
EVENTS = "events",
|
|
11
|
-
SUMMIT = "summit"
|
|
11
|
+
SUMMIT = "summit",
|
|
12
|
+
ACTIVITY = "activity",
|
|
13
|
+
APPROVAL = "approval"
|
|
12
14
|
}
|
|
13
15
|
export interface CalendarOtherDataT {
|
|
14
16
|
id: string;
|
|
@@ -52,10 +54,17 @@ export interface MeetingPostT {
|
|
|
52
54
|
cycle_point: number[];
|
|
53
55
|
is_notify?: boolean;
|
|
54
56
|
}
|
|
55
|
-
export interface
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
57
|
+
export interface MeetingFormPropsT {
|
|
58
|
+
data?: MeetingItemT;
|
|
59
|
+
isSub?: boolean;
|
|
60
|
+
isEdit?: boolean;
|
|
61
|
+
subId?: string;
|
|
62
|
+
createMeetingRequest: any;
|
|
63
|
+
editMeetingRequest: any;
|
|
64
|
+
editSubMeetingRequest: any;
|
|
65
|
+
getPlatformsRequest: any;
|
|
66
|
+
getGroupsRequest: any;
|
|
67
|
+
showBtns?: boolean;
|
|
59
68
|
}
|
|
60
69
|
export interface MeetingItemT extends MeetingPostT {
|
|
61
70
|
id: number;
|
|
@@ -19,3 +19,4 @@ export declare const formatDateNumber: (num: number) => string;
|
|
|
19
19
|
export declare const transformTime: (time: string) => number;
|
|
20
20
|
export declare const transformSeconds: (seconds: number) => string;
|
|
21
21
|
export declare const getConfig: (val: CalendarDataType, key: keyof meetingTabT) => string;
|
|
22
|
+
export declare const getPlatformLabel: (platform: string) => string;
|