@opendesign-plus-test/components 0.0.1-rc.51 → 0.0.1-rc.52
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 +49 -69
- package/dist/components/OHeaderSearch.vue.d.ts +534 -814
- package/dist/components/OThemeSwitcher.vue.d.ts +2 -5
- package/dist/components/activity/index.d.ts +2 -2
- package/dist/components/meeting/OMeetingCalendar.vue.d.ts +3 -1
- package/dist/components/meeting/OMeetingPlayback.vue.d.ts +50 -1
- package/dist/components/meeting/components/OMeetingPlaybackSubtitles.vue.d.ts +16 -1
- package/dist/components/meeting/composables/useMeetingConfig.d.ts +1 -1
- package/dist/components/meeting/index.d.ts +17 -7
- package/dist/components/meeting/types.d.ts +1 -1
- package/dist/components.cjs.js +43 -43
- package/dist/components.css +1 -1
- package/dist/components.es.js +10946 -11901
- package/dist/index.d.ts +0 -1
- package/package.json +2 -4
- package/src/assets/styles/element-plus.scss +211 -0
- package/src/assets/svg-icons/icon-delete.svg +1 -5
- package/src/components/OHeaderSearch.vue +415 -437
- package/src/components/OThemeSwitcher.vue +51 -27
- package/src/components/activity/OActivityApproval.vue +10 -6
- package/src/components/activity/OActivityForm.vue +12 -6
- package/src/components/activity/{OMyActivityCalendar.vue → OActivityMyCalendar.vue} +59 -28
- package/src/components/activity/index.ts +4 -4
- package/src/components/events/OEventsApply.vue +2 -1
- package/src/components/events/OEventsCalendar.vue +7 -5
- package/src/components/events/OEventsList.vue +6 -4
- package/src/components/meeting/OMeetingCalendar.vue +26 -18
- package/src/components/meeting/OMeetingForm.vue +65 -17
- package/src/components/meeting/{OMyMeetingCalendar.vue → OMeetingMyCalendar.vue} +87 -46
- package/src/components/meeting/OMeetingPlayback.vue +42 -12
- package/src/components/meeting/{OSigMeetingCalendar.vue → OMeetingSigCalendar.vue} +7 -4
- package/src/components/meeting/components/OMeetingCalendarList.vue +56 -24
- package/src/components/meeting/components/OMeetingCalendarSelector.vue +12 -9
- package/src/components/meeting/components/OMeetingDetail.vue +1 -1
- package/src/components/meeting/components/OMeetingPlaybackSubtitles.vue +17 -13
- package/src/components/meeting/components/OMeetingPlaybackVideo.vue +6 -6
- package/src/components/meeting/components/{OSigMeetingAside.vue → OMeetingSigAside.vue} +1 -1
- package/src/components/meeting/composables/useMeetingConfig.ts +5 -5
- package/src/components/meeting/config.ts +1 -1
- package/src/components/meeting/index.ts +8 -8
- package/src/components/meeting/types.ts +1 -1
- package/src/i18n/en.ts +2 -12
- package/src/i18n/zh.ts +1 -11
- package/src/index.ts +0 -1
- package/vite.config.ts +1 -5
- package/dist/components/search/OSearchInput.vue.d.ts +0 -1003
- package/dist/components/search/composables/useImageSearch.d.ts +0 -48
- package/dist/components/search/composables/useKeywordHighlight.d.ts +0 -2
- package/dist/components/search/composables/useSearchHistory.d.ts +0 -14
- package/dist/components/search/index.d.ts +0 -590
- package/dist/components/search/internal/HighlightText.vue.d.ts +0 -9
- package/dist/components/search/internal/SearchImageInput.vue.d.ts +0 -716
- package/dist/components/search/internal/SearchPanel.vue.d.ts +0 -100
- package/dist/components/search/types.d.ts +0 -20
- package/src/assets/svg-icons/icon-delete-hover.svg +0 -4
- package/src/assets/svg-icons/icon-image-close.svg +0 -4
- package/src/assets/svg-icons/icon-image-upload.svg +0 -3
- package/src/assets/svg-icons/icon-image-zoomin.svg +0 -3
- package/src/assets/svg-icons/icon-refresh.svg +0 -3
- package/src/components/search/OSearchInput.vue +0 -463
- package/src/components/search/composables/useImageSearch.ts +0 -157
- package/src/components/search/composables/useKeywordHighlight.ts +0 -30
- package/src/components/search/composables/useSearchHistory.ts +0 -75
- package/src/components/search/index.ts +0 -23
- package/src/components/search/internal/HighlightText.vue +0 -37
- package/src/components/search/internal/SearchImageInput.vue +0 -488
- package/src/components/search/internal/SearchPanel.vue +0 -430
- package/src/components/search/types.ts +0 -25
- /package/dist/components/activity/{OMyActivityCalendar.vue.d.ts → OActivityMyCalendar.vue.d.ts} +0 -0
- /package/dist/components/meeting/{OMyMeetingCalendar.vue.d.ts → OMeetingMyCalendar.vue.d.ts} +0 -0
- /package/dist/components/meeting/{OSigMeetingCalendar.vue.d.ts → OMeetingSigCalendar.vue.d.ts} +0 -0
- /package/dist/components/meeting/components/{OSigMeetingAside.vue.d.ts → OMeetingSigAside.vue.d.ts} +0 -0
|
@@ -1,11 +1,9 @@
|
|
|
1
|
-
import { Component } from '../../vue/dist/vue.esm-bundler.js';
|
|
2
1
|
export interface OThemeSwitcherPropsT {
|
|
3
2
|
theme?: string;
|
|
4
3
|
type?: 'auto' | 'common' | 'mobile';
|
|
5
4
|
lightValue?: string;
|
|
6
5
|
darkValue?: string;
|
|
7
|
-
|
|
8
|
-
darkIcon?: Component;
|
|
6
|
+
disabled?: boolean;
|
|
9
7
|
}
|
|
10
8
|
export interface OThemeSwitcherEmitsT {
|
|
11
9
|
(e: 'update:theme', value: string): void;
|
|
@@ -19,10 +17,9 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
19
17
|
"onUpdate:theme"?: ((value: string) => any) | undefined;
|
|
20
18
|
}>, {
|
|
21
19
|
type: "auto" | "common" | "mobile";
|
|
20
|
+
disabled: boolean;
|
|
22
21
|
theme: string;
|
|
23
22
|
lightValue: string;
|
|
24
23
|
darkValue: string;
|
|
25
|
-
lightIcon: Component;
|
|
26
|
-
darkIcon: Component;
|
|
27
24
|
}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
28
25
|
export default _default;
|
|
@@ -309,7 +309,7 @@ declare const OActivityApproval: {
|
|
|
309
309
|
}) & {
|
|
310
310
|
install(app: App): void;
|
|
311
311
|
};
|
|
312
|
-
declare const
|
|
312
|
+
declare const OActivityMyCalendar: {
|
|
313
313
|
new (...args: any[]): import('../../../vue/dist/vue.esm-bundler.js').CreateComponentPublicInstanceWithMixins<Readonly<import('./types').MyActivityCalendarPropsT> & Readonly<{
|
|
314
314
|
onEdit?: ((...args: any[]) => any) | undefined;
|
|
315
315
|
}>, {}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
@@ -642,5 +642,5 @@ declare const OMyActivityCalendar: {
|
|
|
642
642
|
}) & {
|
|
643
643
|
install(app: App): void;
|
|
644
644
|
};
|
|
645
|
-
export { OActivityForm, OActivityApproval,
|
|
645
|
+
export { OActivityForm, OActivityApproval, OActivityMyCalendar };
|
|
646
646
|
export * from './types';
|
|
@@ -144,7 +144,9 @@ declare function __VLS_template(): {
|
|
|
144
144
|
rootEl: HTMLDivElement;
|
|
145
145
|
};
|
|
146
146
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
147
|
-
declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').DefineComponent<MeetingCalendarPropsT, {
|
|
147
|
+
declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').DefineComponent<MeetingCalendarPropsT, {
|
|
148
|
+
refresh: (day?: string) => Promise<void>;
|
|
149
|
+
}, {}, {}, {}, 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<MeetingCalendarPropsT> & Readonly<{}>, {
|
|
148
150
|
groupType: MeetingGroupType;
|
|
149
151
|
getSummitListRequest: any;
|
|
150
152
|
getEventsListRequest: any;
|
|
@@ -1,5 +1,48 @@
|
|
|
1
1
|
import { CaptionItemT, MeetingPlaybackPropsT } from './types';
|
|
2
|
-
declare
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
attrs: Partial<{}>;
|
|
4
|
+
slots: {
|
|
5
|
+
empty?(_: {}): any;
|
|
6
|
+
};
|
|
7
|
+
refs: {
|
|
8
|
+
leftRef: HTMLDivElement;
|
|
9
|
+
playerRef: import('../../../vue/dist/vue.esm-bundler.js').CreateComponentPublicInstanceWithMixins<Readonly<import('./types').MeetingPlaybackVideoPropsT> & Readonly<{
|
|
10
|
+
onGetDuration?: ((...args: any[]) => any) | undefined;
|
|
11
|
+
onGetInstance?: ((...args: any[]) => any) | undefined;
|
|
12
|
+
onSetTrackIdx?: ((...args: any[]) => any) | undefined;
|
|
13
|
+
}>, {
|
|
14
|
+
changeTime: (time: number) => void;
|
|
15
|
+
}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
16
|
+
getDuration: (...args: any[]) => void;
|
|
17
|
+
getInstance: (...args: any[]) => void;
|
|
18
|
+
setTrackIdx: (...args: any[]) => void;
|
|
19
|
+
}, import('../../../vue/dist/vue.esm-bundler.js').PublicProps, {
|
|
20
|
+
src: string;
|
|
21
|
+
captions: CaptionItemT[];
|
|
22
|
+
vtt: string;
|
|
23
|
+
}, false, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').GlobalComponents, import('../../../vue/dist/vue.esm-bundler.js').GlobalDirectives, string, {}, HTMLDivElement, import('../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, {
|
|
24
|
+
P: {};
|
|
25
|
+
B: {};
|
|
26
|
+
D: {};
|
|
27
|
+
C: {};
|
|
28
|
+
M: {};
|
|
29
|
+
Defaults: {};
|
|
30
|
+
}, Readonly<import('./types').MeetingPlaybackVideoPropsT> & Readonly<{
|
|
31
|
+
onGetDuration?: ((...args: any[]) => any) | undefined;
|
|
32
|
+
onGetInstance?: ((...args: any[]) => any) | undefined;
|
|
33
|
+
onSetTrackIdx?: ((...args: any[]) => any) | undefined;
|
|
34
|
+
}>, {
|
|
35
|
+
changeTime: (time: number) => void;
|
|
36
|
+
}, {}, {}, {}, {
|
|
37
|
+
src: string;
|
|
38
|
+
captions: CaptionItemT[];
|
|
39
|
+
vtt: string;
|
|
40
|
+
}> | null;
|
|
41
|
+
};
|
|
42
|
+
rootEl: HTMLDivElement;
|
|
43
|
+
};
|
|
44
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
45
|
+
declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').DefineComponent<MeetingPlaybackPropsT, {}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
3
46
|
"change-date": (...args: any[]) => void;
|
|
4
47
|
}, string, import('../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<MeetingPlaybackPropsT> & Readonly<{
|
|
5
48
|
"onChange-date"?: ((...args: any[]) => any) | undefined;
|
|
@@ -42,4 +85,10 @@ declare const _default: import('../../../vue/dist/vue.esm-bundler.js').DefineCom
|
|
|
42
85
|
vtt: string;
|
|
43
86
|
}> | null;
|
|
44
87
|
}, HTMLDivElement>;
|
|
88
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
45
89
|
export default _default;
|
|
90
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
91
|
+
new (): {
|
|
92
|
+
$slots: S;
|
|
93
|
+
};
|
|
94
|
+
};
|
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
import { CaptionItemT, MeetingPlaybackSubtitlesPropsT } from '..';
|
|
2
|
-
declare
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
attrs: Partial<{}>;
|
|
4
|
+
slots: {
|
|
5
|
+
empty?(_: {}): any;
|
|
6
|
+
};
|
|
7
|
+
refs: {};
|
|
8
|
+
rootEl: HTMLDivElement;
|
|
9
|
+
};
|
|
10
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
11
|
+
declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js').DefineComponent<MeetingPlaybackSubtitlesPropsT, {}, {}, {}, {}, 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<MeetingPlaybackSubtitlesPropsT> & Readonly<{}>, {
|
|
3
12
|
captions: CaptionItemT[];
|
|
4
13
|
}, {}, {}, {}, string, import('../../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
14
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
5
15
|
export default _default;
|
|
16
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
17
|
+
new (): {
|
|
18
|
+
$slots: S;
|
|
19
|
+
};
|
|
20
|
+
};
|
|
@@ -7,7 +7,7 @@ export declare const useMeetingConfig: () => {
|
|
|
7
7
|
cycleTypeOptions: import('../../../../vue/dist/vue.esm-bundler.js').ComputedRef<OptionItemT[]>;
|
|
8
8
|
weekDay: import('../../../../vue/dist/vue.esm-bundler.js').ComputedRef<string[]>;
|
|
9
9
|
intervalWeekOptions: import('../../../../vue/dist/vue.esm-bundler.js').ComputedRef<OptionItemT[]>;
|
|
10
|
-
getPointStr: (cycleType: number, points: number[]) => string;
|
|
10
|
+
getPointStr: (cycleType: number, points: (number | string)[]) => string;
|
|
11
11
|
getConfig: (val: CalendarDataType, key: keyof meetingTabT) => string;
|
|
12
12
|
getPlatformLabel: (platform: string) => string;
|
|
13
13
|
getWeekFromDate: (date: string | Date) => string;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { App } from '../../../vue/dist/vue.esm-bundler.js';
|
|
2
2
|
declare const OMeetingCalendar: {
|
|
3
|
-
new (...args: any[]): import('../../../vue/dist/vue.esm-bundler.js').CreateComponentPublicInstanceWithMixins<Readonly<import('./types').MeetingCalendarPropsT> & Readonly<{}>, {
|
|
3
|
+
new (...args: any[]): import('../../../vue/dist/vue.esm-bundler.js').CreateComponentPublicInstanceWithMixins<Readonly<import('./types').MeetingCalendarPropsT> & Readonly<{}>, {
|
|
4
|
+
refresh: (day?: string) => Promise<void>;
|
|
5
|
+
}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {}, import('../../../vue/dist/vue.esm-bundler.js').PublicProps, {
|
|
4
6
|
groupType: import('./types').MeetingGroupType;
|
|
5
7
|
getSummitListRequest: any;
|
|
6
8
|
getEventsListRequest: any;
|
|
@@ -148,7 +150,9 @@ declare const OMeetingCalendar: {
|
|
|
148
150
|
C: {};
|
|
149
151
|
M: {};
|
|
150
152
|
Defaults: {};
|
|
151
|
-
}, Readonly<import('./types').MeetingCalendarPropsT> & Readonly<{}>, {
|
|
153
|
+
}, Readonly<import('./types').MeetingCalendarPropsT> & Readonly<{}>, {
|
|
154
|
+
refresh: (day?: string) => Promise<void>;
|
|
155
|
+
}, {}, {}, {}, {
|
|
152
156
|
groupType: import('./types').MeetingGroupType;
|
|
153
157
|
getSummitListRequest: any;
|
|
154
158
|
getEventsListRequest: any;
|
|
@@ -159,7 +163,9 @@ declare const OMeetingCalendar: {
|
|
|
159
163
|
__isFragment?: never;
|
|
160
164
|
__isTeleport?: never;
|
|
161
165
|
__isSuspense?: never;
|
|
162
|
-
} & import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('./types').MeetingCalendarPropsT> & Readonly<{}>, {
|
|
166
|
+
} & import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('./types').MeetingCalendarPropsT> & Readonly<{}>, {
|
|
167
|
+
refresh: (day?: string) => Promise<void>;
|
|
168
|
+
}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {}, string, {
|
|
163
169
|
groupType: import('./types').MeetingGroupType;
|
|
164
170
|
getSummitListRequest: any;
|
|
165
171
|
getEventsListRequest: any;
|
|
@@ -419,10 +425,14 @@ declare const OMeetingPlayback: {
|
|
|
419
425
|
data: import('./types').MeetingPlaybackPropsDataT;
|
|
420
426
|
dates: string[];
|
|
421
427
|
detail: import('./types').MeetingPlaybackPropsDetailT;
|
|
422
|
-
}, {}, 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 & {
|
|
428
|
+
}, {}, 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 () => {
|
|
429
|
+
$slots: {
|
|
430
|
+
empty?(_: {}): any;
|
|
431
|
+
};
|
|
432
|
+
}) & {
|
|
423
433
|
install(app: App): void;
|
|
424
434
|
};
|
|
425
|
-
declare const
|
|
435
|
+
declare const OMeetingSigCalendar: {
|
|
426
436
|
new (...args: any[]): import('../../../vue/dist/vue.esm-bundler.js').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
427
437
|
sigName: String;
|
|
428
438
|
getMeetingListRequest: any;
|
|
@@ -459,7 +469,7 @@ declare const OSigMeetingCalendar: {
|
|
|
459
469
|
}) & {
|
|
460
470
|
install(app: App): void;
|
|
461
471
|
};
|
|
462
|
-
declare const
|
|
472
|
+
declare const OMeetingMyCalendar: {
|
|
463
473
|
new (...args: any[]): import('../../../vue/dist/vue.esm-bundler.js').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
464
474
|
cancelSubMeetingRequest: any;
|
|
465
475
|
deleteMeetingRequest: any;
|
|
@@ -813,5 +823,5 @@ declare const OMyMeetingCalendar: {
|
|
|
813
823
|
}) & {
|
|
814
824
|
install(app: App): void;
|
|
815
825
|
};
|
|
816
|
-
export { OMeetingCalendar, OMeetingForm, OMeetingPlayback,
|
|
826
|
+
export { OMeetingCalendar, OMeetingForm, OMeetingPlayback, OMeetingSigCalendar, OMeetingMyCalendar, };
|
|
817
827
|
export * from './types';
|