@opendesign-plus-test/components 0.0.1-rc.42 → 0.0.1-rc.45
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 +132 -112
- package/dist/components/OHeaderSearch.vue.d.ts +824 -506
- 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 +100 -46
- package/dist/components/activity/index.d.ts +56 -33
- 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 +8 -12
- 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 +100 -46
- package/dist/components/meeting/components/OMeetingCalendarList.vue.d.ts +1 -1
- package/dist/components/meeting/index.d.ts +817 -0
- package/dist/components/meeting/types.d.ts +82 -17
- package/dist/components/meeting/utils.d.ts +1 -1
- package/dist/components/search/OSearchInput.vue.d.ts +1003 -0
- package/dist/components/search/composables/useImageSearch.d.ts +48 -0
- package/dist/components/search/composables/useKeywordHighlight.d.ts +2 -0
- package/dist/components/search/composables/useSearchHistory.d.ts +14 -0
- package/dist/components/search/index.d.ts +590 -0
- package/dist/components/search/internal/HighlightText.vue.d.ts +9 -0
- package/dist/components/search/internal/SearchImageInput.vue.d.ts +716 -0
- package/dist/components/search/internal/SearchPanel.vue.d.ts +100 -0
- package/dist/components/search/types.d.ts +20 -0
- package/dist/components.cjs.js +43 -43
- package/dist/components.css +1 -1
- package/dist/components.es.js +11681 -10636
- package/dist/index.d.ts +1 -0
- package/package.json +3 -3
- package/src/assets/svg-icons/icon-delete-hover.svg +4 -0
- package/src/assets/svg-icons/icon-delete.svg +5 -1
- package/src/assets/svg-icons/icon-image-close.svg +4 -0
- package/src/assets/svg-icons/icon-image-upload.svg +3 -0
- package/src/assets/svg-icons/icon-image-zoomin.svg +3 -0
- package/src/assets/svg-icons/icon-refresh.svg +3 -0
- package/src/components/OBanner.vue +18 -18
- package/src/components/OCookieNotice.vue +21 -21
- package/src/components/OFooter.vue +18 -17
- package/src/components/OHeaderSearch.vue +402 -420
- package/src/components/OHeaderUser.vue +3 -2
- package/src/components/OSection.vue +4 -4
- package/src/components/OSourceCode.vue +8 -10
- package/src/components/activity/OActivityApproval.vue +32 -32
- package/src/components/activity/OActivityForm.vue +5 -5
- package/src/components/activity/OMyActivityCalendar.vue +66 -50
- package/src/components/activity/config.ts +1 -1
- package/src/components/activity/types.ts +8 -1
- package/src/components/common/ContentWrapper.vue +3 -3
- package/src/components/common/MoreText.vue +1 -1
- package/src/components/common/ThFilter.vue +7 -7
- package/src/components/element-plus/OElCookieNotice.vue +27 -27
- package/src/components/events/OEventsApply.vue +44 -44
- package/src/components/events/OEventsCalendar.vue +14 -14
- package/src/components/events/OEventsList.vue +53 -26
- package/src/components/events/config.ts +1 -1
- package/src/components/events/types.ts +4 -1
- package/src/components/header/OHeader.vue +2 -2
- package/src/components/header/OHeaderMobile.vue +8 -1
- package/src/components/header/components/HeaderContent.vue +67 -63
- package/src/components/header/components/HeaderNav.vue +4 -4
- package/src/components/header/components/HeaderNavMobile.vue +8 -5
- package/src/components/header/types.ts +4 -0
- package/src/components/meeting/OMeetingCalendar.vue +66 -54
- package/src/components/meeting/OMeetingForm.vue +70 -51
- package/src/components/meeting/OMeetingPlayback.vue +8 -8
- package/src/components/meeting/OMyMeetingCalendar.vue +56 -45
- package/src/components/meeting/OSigMeetingCalendar.vue +31 -28
- package/src/components/meeting/components/OMeetingCalendarList.vue +31 -26
- package/src/components/meeting/components/OMeetingCalendarSelector.vue +10 -6
- package/src/components/meeting/components/OMeetingDetail.vue +32 -18
- package/src/components/meeting/components/OMeetingPlaybackSubtitles.vue +1 -1
- package/src/components/meeting/components/OMeetingPlaybackVideo.vue +12 -12
- package/src/components/meeting/components/OSigMeetingAside.vue +8 -9
- package/src/components/meeting/types.ts +88 -17
- package/src/components/search/OSearchInput.vue +463 -0
- package/src/components/search/composables/useImageSearch.ts +157 -0
- package/src/components/search/composables/useKeywordHighlight.ts +30 -0
- package/src/components/search/composables/useSearchHistory.ts +75 -0
- package/src/components/search/index.ts +23 -0
- package/src/components/search/internal/HighlightText.vue +37 -0
- package/src/components/search/internal/SearchImageInput.vue +488 -0
- package/src/components/search/internal/SearchPanel.vue +430 -0
- package/src/components/search/types.ts +25 -0
- package/src/draft/Banner.vue +6 -6
- package/src/draft/ButtonCards.vue +1 -1
- package/src/draft/Feature.vue +6 -6
- package/src/draft/Footer.vue +29 -22
- package/src/draft/HorizontalAnchor.vue +4 -4
- package/src/draft/ItemSwiper.vue +2 -2
- package/src/draft/Logo.vue +3 -3
- package/src/draft/LogoCard.vue +2 -2
- package/src/draft/MultiCard.vue +1 -1
- package/src/draft/MultiIconCard.vue +1 -1
- package/src/draft/OInfoCard.vue +4 -4
- package/src/draft/Section.vue +4 -4
- package/src/draft/SingleTabCard.vue +1 -1
- package/src/draft/SliderCard.vue +4 -3
- package/src/i18n/en.ts +10 -0
- package/src/i18n/zh.ts +10 -0
- package/src/index.ts +1 -0
- package/vite.config.ts +4 -3
|
@@ -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;
|
|
@@ -20,9 +20,7 @@ declare function __VLS_template(): {
|
|
|
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;
|
|
@@ -167,9 +165,7 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
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
|
};
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { CaptionItemT, MeetingPlaybackPropsT } from './types';
|
|
2
|
+
declare const _default: 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
|
+
"change-date": (...args: any[]) => void;
|
|
4
|
+
}, string, import('../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<MeetingPlaybackPropsT> & Readonly<{
|
|
5
|
+
"onChange-date"?: ((...args: any[]) => any) | undefined;
|
|
6
|
+
}>, {
|
|
7
|
+
data: import('./types').MeetingPlaybackPropsDataT;
|
|
8
|
+
dates: string[];
|
|
9
|
+
detail: import('./types').MeetingPlaybackPropsDetailT;
|
|
10
|
+
}, {}, {}, {}, string, import('../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, false, {
|
|
11
|
+
leftRef: HTMLDivElement;
|
|
12
|
+
playerRef: import('../../../vue/dist/vue.esm-bundler.js').CreateComponentPublicInstanceWithMixins<Readonly<import('./types').MeetingPlaybackVideoPropsT> & Readonly<{
|
|
13
|
+
onGetDuration?: ((...args: any[]) => any) | undefined;
|
|
14
|
+
onGetInstance?: ((...args: any[]) => any) | undefined;
|
|
15
|
+
onSetTrackIdx?: ((...args: any[]) => any) | undefined;
|
|
16
|
+
}>, {
|
|
17
|
+
changeTime: (time: number) => void;
|
|
18
|
+
}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
19
|
+
getDuration: (...args: any[]) => void;
|
|
20
|
+
getInstance: (...args: any[]) => void;
|
|
21
|
+
setTrackIdx: (...args: any[]) => void;
|
|
22
|
+
}, import('../../../vue/dist/vue.esm-bundler.js').PublicProps, {
|
|
23
|
+
src: string;
|
|
24
|
+
captions: CaptionItemT[];
|
|
25
|
+
vtt: string;
|
|
26
|
+
}, 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, {
|
|
27
|
+
P: {};
|
|
28
|
+
B: {};
|
|
29
|
+
D: {};
|
|
30
|
+
C: {};
|
|
31
|
+
M: {};
|
|
32
|
+
Defaults: {};
|
|
33
|
+
}, Readonly<import('./types').MeetingPlaybackVideoPropsT> & Readonly<{
|
|
34
|
+
onGetDuration?: ((...args: any[]) => any) | undefined;
|
|
35
|
+
onGetInstance?: ((...args: any[]) => any) | undefined;
|
|
36
|
+
onSetTrackIdx?: ((...args: any[]) => any) | undefined;
|
|
37
|
+
}>, {
|
|
38
|
+
changeTime: (time: number) => void;
|
|
39
|
+
}, {}, {}, {}, {
|
|
40
|
+
src: string;
|
|
41
|
+
captions: CaptionItemT[];
|
|
42
|
+
vtt: string;
|
|
43
|
+
}> | null;
|
|
44
|
+
}, HTMLDivElement>;
|
|
45
|
+
export default _default;
|