@opendesign-plus-test/components 0.0.1-rc.84 → 0.0.1-rc.86
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 +85 -73
- package/dist/components/activity/index.d.ts +9 -9
- package/dist/components/banner/index.d.ts +6 -6
- package/dist/components/events/index.d.ts +20 -20
- package/dist/components/header/OHeaderMobile.vue.d.ts +22 -22
- package/dist/components/header/components/HeaderNavMobile.vue.d.ts +3 -3
- package/dist/components/header/index.d.ts +27 -27
- package/dist/components/header-search/index.d.ts +13 -13
- package/dist/components/meeting/OMeetingForm.vue.d.ts +2 -0
- package/dist/components/meeting/OMeetingPlayback.vue.d.ts +6 -6
- package/dist/components/meeting/components/OMeetingPlaybackVideo.vue.d.ts +1 -1
- package/dist/components/meeting/index.d.ts +37 -31
- package/dist/components/meeting/types.d.ts +3 -0
- package/dist/components/search/index.d.ts +11 -11
- package/dist/components.cjs.js +38 -37
- package/dist/components.css +1 -1
- package/dist/components.es.js +7980 -7839
- package/dist/treeshaking/components/activity/index.d.ts +9 -9
- package/dist/treeshaking/components/banner/index.d.ts +6 -6
- package/dist/treeshaking/components/common/MoreText.css +12 -12
- package/dist/treeshaking/components/common/MoreText.vue.mjs +86 -5
- package/dist/treeshaking/components/common/MoreText.vue3.mjs +5 -0
- package/dist/treeshaking/components/common/ThFilter.css +10 -10
- package/dist/treeshaking/components/common/TooltipText.css +34 -0
- package/dist/treeshaking/components/common/TooltipText.vue.mjs +85 -0
- package/dist/treeshaking/components/common/TooltipText.vue3.mjs +5 -0
- package/dist/treeshaking/components/events/index.d.ts +20 -20
- package/dist/treeshaking/components/header/OHeaderMobile.vue.d.ts +22 -22
- package/dist/treeshaking/components/header/components/HeaderNavMobile.vue.d.ts +3 -3
- package/dist/treeshaking/components/header/index.d.ts +27 -27
- package/dist/treeshaking/components/header-search/index.d.ts +13 -13
- package/dist/treeshaking/components/meeting/OMeetingForm.vue.d.ts +2 -0
- package/dist/treeshaking/components/meeting/OMeetingForm.vue.mjs +104 -47
- package/dist/treeshaking/components/meeting/OMeetingMyCalendar.css +4 -0
- package/dist/treeshaking/components/meeting/OMeetingMyCalendar.vue.mjs +38 -13
- package/dist/treeshaking/components/meeting/OMeetingPlayback.vue.d.ts +6 -6
- package/dist/treeshaking/components/meeting/components/OMeetingCalendarList.vue.mjs +11 -2
- package/dist/treeshaking/components/meeting/components/OMeetingDetail.vue.mjs +3 -2
- package/dist/treeshaking/components/meeting/components/OMeetingPlaybackVideo.vue.d.ts +1 -1
- package/dist/treeshaking/components/meeting/index.d.ts +37 -31
- package/dist/treeshaking/components/meeting/types.d.ts +3 -0
- package/dist/treeshaking/components/search/index.d.ts +11 -11
- package/dist/treeshaking/i18n/en.mjs +6 -0
- package/dist/treeshaking/i18n/zh.mjs +8 -2
- package/package.json +1 -1
- package/dist/components/meeting/components/OMeetingCalendarSelector.vue.d.ts +0 -664
- package/dist/treeshaking/components/common/MoreText.vue2.mjs +0 -88
- package/dist/treeshaking/components/meeting/components/OMeetingCalendarSelector.vue.d.ts +0 -664
|
@@ -18,9 +18,9 @@ declare function __VLS_template(): {
|
|
|
18
18
|
$data: {};
|
|
19
19
|
$props: {
|
|
20
20
|
readonly menuShow: boolean;
|
|
21
|
-
readonly navData: import('
|
|
22
|
-
readonly codeData?: import('
|
|
23
|
-
readonly langData?: import('
|
|
21
|
+
readonly navData: import('./types.ts').NavItemT[];
|
|
22
|
+
readonly codeData?: import('./types.ts').CodeT[] | undefined;
|
|
23
|
+
readonly langData?: import('./types.ts').LangT[] | undefined;
|
|
24
24
|
readonly "onHandle-click"?: ((val: any) => any) | undefined;
|
|
25
25
|
readonly "onOn-click"?: (() => any) | undefined;
|
|
26
26
|
readonly "onLang-click"?: ((val: LangItemT) => any) | undefined;
|
|
@@ -37,7 +37,7 @@ declare function __VLS_template(): {
|
|
|
37
37
|
$host: Element | null;
|
|
38
38
|
$emit: ((event: "handle-click", val: any) => void) & ((event: "on-click") => void) & ((event: "lang-click", val: LangItemT) => void);
|
|
39
39
|
$el: HTMLDivElement;
|
|
40
|
-
$options: import('vue').ComponentOptionsBase<Readonly<import('
|
|
40
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('./types.ts').NavMobileItemT> & Readonly<{
|
|
41
41
|
"onHandle-click"?: ((val: any) => any) | undefined;
|
|
42
42
|
"onOn-click"?: (() => any) | undefined;
|
|
43
43
|
"onLang-click"?: ((val: LangItemT) => any) | undefined;
|
|
@@ -46,9 +46,9 @@ declare function __VLS_template(): {
|
|
|
46
46
|
"on-click": () => any;
|
|
47
47
|
"lang-click": (val: LangItemT) => any;
|
|
48
48
|
}, string, {
|
|
49
|
-
navData: import('
|
|
50
|
-
codeData: import('
|
|
51
|
-
langData: import('
|
|
49
|
+
navData: import('./types.ts').NavItemT[];
|
|
50
|
+
codeData: import('./types.ts').CodeT[];
|
|
51
|
+
langData: import('./types.ts').LangT[];
|
|
52
52
|
menuShow: boolean;
|
|
53
53
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
54
54
|
beforeCreate?: (() => void) | (() => void)[];
|
|
@@ -71,11 +71,11 @@ declare function __VLS_template(): {
|
|
|
71
71
|
$nextTick: typeof import('vue').nextTick;
|
|
72
72
|
$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').WatchOptions): import('vue').WatchStopHandle;
|
|
73
73
|
} & Readonly<{
|
|
74
|
-
navData: import('
|
|
75
|
-
codeData: import('
|
|
76
|
-
langData: import('
|
|
74
|
+
navData: import('./types.ts').NavItemT[];
|
|
75
|
+
codeData: import('./types.ts').CodeT[];
|
|
76
|
+
langData: import('./types.ts').LangT[];
|
|
77
77
|
menuShow: boolean;
|
|
78
|
-
}> & Omit<Readonly<import('
|
|
78
|
+
}> & Omit<Readonly<import('./types.ts').NavMobileItemT> & Readonly<{
|
|
79
79
|
"onHandle-click"?: ((val: any) => any) | undefined;
|
|
80
80
|
"onOn-click"?: (() => any) | undefined;
|
|
81
81
|
"onLang-click"?: ((val: LangItemT) => any) | undefined;
|
|
@@ -102,9 +102,9 @@ declare const __VLS_component: import('vue').DefineComponent<NavT, {}, {}, {}, {
|
|
|
102
102
|
$data: {};
|
|
103
103
|
$props: {
|
|
104
104
|
readonly menuShow: boolean;
|
|
105
|
-
readonly navData: import('
|
|
106
|
-
readonly codeData?: import('
|
|
107
|
-
readonly langData?: import('
|
|
105
|
+
readonly navData: import('./types.ts').NavItemT[];
|
|
106
|
+
readonly codeData?: import('./types.ts').CodeT[] | undefined;
|
|
107
|
+
readonly langData?: import('./types.ts').LangT[] | undefined;
|
|
108
108
|
readonly "onHandle-click"?: ((val: any) => any) | undefined;
|
|
109
109
|
readonly "onOn-click"?: (() => any) | undefined;
|
|
110
110
|
readonly "onLang-click"?: ((val: LangItemT) => any) | undefined;
|
|
@@ -121,7 +121,7 @@ declare const __VLS_component: import('vue').DefineComponent<NavT, {}, {}, {}, {
|
|
|
121
121
|
$host: Element | null;
|
|
122
122
|
$emit: ((event: "handle-click", val: any) => void) & ((event: "on-click") => void) & ((event: "lang-click", val: LangItemT) => void);
|
|
123
123
|
$el: HTMLDivElement;
|
|
124
|
-
$options: import('vue').ComponentOptionsBase<Readonly<import('
|
|
124
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('./types.ts').NavMobileItemT> & Readonly<{
|
|
125
125
|
"onHandle-click"?: ((val: any) => any) | undefined;
|
|
126
126
|
"onOn-click"?: (() => any) | undefined;
|
|
127
127
|
"onLang-click"?: ((val: LangItemT) => any) | undefined;
|
|
@@ -130,9 +130,9 @@ declare const __VLS_component: import('vue').DefineComponent<NavT, {}, {}, {}, {
|
|
|
130
130
|
"on-click": () => any;
|
|
131
131
|
"lang-click": (val: LangItemT) => any;
|
|
132
132
|
}, string, {
|
|
133
|
-
navData: import('
|
|
134
|
-
codeData: import('
|
|
135
|
-
langData: import('
|
|
133
|
+
navData: import('./types.ts').NavItemT[];
|
|
134
|
+
codeData: import('./types.ts').CodeT[];
|
|
135
|
+
langData: import('./types.ts').LangT[];
|
|
136
136
|
menuShow: boolean;
|
|
137
137
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
138
138
|
beforeCreate?: (() => void) | (() => void)[];
|
|
@@ -155,11 +155,11 @@ declare const __VLS_component: import('vue').DefineComponent<NavT, {}, {}, {}, {
|
|
|
155
155
|
$nextTick: typeof import('vue').nextTick;
|
|
156
156
|
$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').WatchOptions): import('vue').WatchStopHandle;
|
|
157
157
|
} & Readonly<{
|
|
158
|
-
navData: import('
|
|
159
|
-
codeData: import('
|
|
160
|
-
langData: import('
|
|
158
|
+
navData: import('./types.ts').NavItemT[];
|
|
159
|
+
codeData: import('./types.ts').CodeT[];
|
|
160
|
+
langData: import('./types.ts').LangT[];
|
|
161
161
|
menuShow: boolean;
|
|
162
|
-
}> & Omit<Readonly<import('
|
|
162
|
+
}> & Omit<Readonly<import('./types.ts').NavMobileItemT> & Readonly<{
|
|
163
163
|
"onHandle-click"?: ((val: any) => any) | undefined;
|
|
164
164
|
"onOn-click"?: (() => any) | undefined;
|
|
165
165
|
"onLang-click"?: ((val: LangItemT) => any) | undefined;
|
|
@@ -22,9 +22,9 @@ declare const __VLS_component: import('vue').DefineComponent<NavMobileItemT, {},
|
|
|
22
22
|
"onOn-click"?: (() => any) | undefined;
|
|
23
23
|
"onLang-click"?: ((val: LangItemT) => any) | undefined;
|
|
24
24
|
}>, {
|
|
25
|
-
navData: import('
|
|
26
|
-
codeData: import('
|
|
27
|
-
langData: import('
|
|
25
|
+
navData: import('../types.ts').NavItemT[];
|
|
26
|
+
codeData: import('../types.ts').CodeT[];
|
|
27
|
+
langData: import('../types.ts').LangT[];
|
|
28
28
|
menuShow: boolean;
|
|
29
29
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
30
30
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { App } from 'vue';
|
|
2
2
|
declare const OHeader: {
|
|
3
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('
|
|
3
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./types').NavT> & Readonly<{
|
|
4
4
|
"onHandle-click"?: ((val: any) => any) | undefined;
|
|
5
5
|
"onGo-home"?: (() => any) | undefined;
|
|
6
6
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
@@ -13,14 +13,14 @@ declare const OHeader: {
|
|
|
13
13
|
C: {};
|
|
14
14
|
M: {};
|
|
15
15
|
Defaults: {};
|
|
16
|
-
}, Readonly<import('
|
|
16
|
+
}, Readonly<import('./types').NavT> & Readonly<{
|
|
17
17
|
"onHandle-click"?: ((val: any) => any) | undefined;
|
|
18
18
|
"onGo-home"?: (() => any) | undefined;
|
|
19
19
|
}>, {}, {}, {}, {}, {}>;
|
|
20
20
|
__isFragment?: never;
|
|
21
21
|
__isTeleport?: never;
|
|
22
22
|
__isSuspense?: never;
|
|
23
|
-
} & import('vue').ComponentOptionsBase<Readonly<import('
|
|
23
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('./types').NavT> & Readonly<{
|
|
24
24
|
"onHandle-click"?: ((val: any) => any) | undefined;
|
|
25
25
|
"onGo-home"?: (() => any) | undefined;
|
|
26
26
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
@@ -36,13 +36,13 @@ declare const OHeader: {
|
|
|
36
36
|
install(app: App): void;
|
|
37
37
|
};
|
|
38
38
|
declare const OHeaderMobile: {
|
|
39
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('
|
|
39
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./types').NavT> & Readonly<{
|
|
40
40
|
"onGo-home"?: (() => any) | undefined;
|
|
41
|
-
"onLang-click"?: ((val: import('
|
|
41
|
+
"onLang-click"?: ((val: import('./types').LangItemT) => any) | undefined;
|
|
42
42
|
"onGo-back"?: (() => any) | undefined;
|
|
43
43
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
44
44
|
"go-home": () => any;
|
|
45
|
-
"lang-click": (val: import('
|
|
45
|
+
"lang-click": (val: import('./types').LangItemT) => any;
|
|
46
46
|
"go-back": () => any;
|
|
47
47
|
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
48
48
|
mobileNav: ({
|
|
@@ -50,12 +50,12 @@ declare const OHeaderMobile: {
|
|
|
50
50
|
$data: {};
|
|
51
51
|
$props: {
|
|
52
52
|
readonly menuShow: boolean;
|
|
53
|
-
readonly navData: import('
|
|
54
|
-
readonly codeData?: import('
|
|
55
|
-
readonly langData?: import('
|
|
53
|
+
readonly navData: import('./types').NavItemT[];
|
|
54
|
+
readonly codeData?: import('./types').CodeT[] | undefined;
|
|
55
|
+
readonly langData?: import('./types').LangT[] | undefined;
|
|
56
56
|
readonly "onHandle-click"?: ((val: any) => any) | undefined;
|
|
57
57
|
readonly "onOn-click"?: (() => any) | undefined;
|
|
58
|
-
readonly "onLang-click"?: ((val: import('
|
|
58
|
+
readonly "onLang-click"?: ((val: import('./types').LangItemT) => any) | undefined;
|
|
59
59
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
60
60
|
$attrs: import('vue').Attrs;
|
|
61
61
|
$refs: {
|
|
@@ -67,20 +67,20 @@ declare const OHeaderMobile: {
|
|
|
67
67
|
$root: import('vue').ComponentPublicInstance | null;
|
|
68
68
|
$parent: import('vue').ComponentPublicInstance | null;
|
|
69
69
|
$host: Element | null;
|
|
70
|
-
$emit: ((event: "handle-click", val: any) => void) & ((event: "on-click") => void) & ((event: "lang-click", val: import('
|
|
70
|
+
$emit: ((event: "handle-click", val: any) => void) & ((event: "on-click") => void) & ((event: "lang-click", val: import('./types').LangItemT) => void);
|
|
71
71
|
$el: HTMLDivElement;
|
|
72
|
-
$options: import('vue').ComponentOptionsBase<Readonly<import('
|
|
72
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('./types').NavMobileItemT> & Readonly<{
|
|
73
73
|
"onHandle-click"?: ((val: any) => any) | undefined;
|
|
74
74
|
"onOn-click"?: (() => any) | undefined;
|
|
75
|
-
"onLang-click"?: ((val: import('
|
|
75
|
+
"onLang-click"?: ((val: import('./types').LangItemT) => any) | undefined;
|
|
76
76
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
77
77
|
"handle-click": (val: any) => any;
|
|
78
78
|
"on-click": () => any;
|
|
79
|
-
"lang-click": (val: import('
|
|
79
|
+
"lang-click": (val: import('./types').LangItemT) => any;
|
|
80
80
|
}, string, {
|
|
81
|
-
navData: import('
|
|
82
|
-
codeData: import('
|
|
83
|
-
langData: import('
|
|
81
|
+
navData: import('./types').NavItemT[];
|
|
82
|
+
codeData: import('./types').CodeT[];
|
|
83
|
+
langData: import('./types').LangT[];
|
|
84
84
|
menuShow: boolean;
|
|
85
85
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
86
86
|
beforeCreate?: (() => void) | (() => void)[];
|
|
@@ -103,14 +103,14 @@ declare const OHeaderMobile: {
|
|
|
103
103
|
$nextTick: typeof import('vue').nextTick;
|
|
104
104
|
$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').WatchOptions): import('vue').WatchStopHandle;
|
|
105
105
|
} & Readonly<{
|
|
106
|
-
navData: import('
|
|
107
|
-
codeData: import('
|
|
108
|
-
langData: import('
|
|
106
|
+
navData: import('./types').NavItemT[];
|
|
107
|
+
codeData: import('./types').CodeT[];
|
|
108
|
+
langData: import('./types').LangT[];
|
|
109
109
|
menuShow: boolean;
|
|
110
|
-
}> & Omit<Readonly<import('
|
|
110
|
+
}> & Omit<Readonly<import('./types').NavMobileItemT> & Readonly<{
|
|
111
111
|
"onHandle-click"?: ((val: any) => any) | undefined;
|
|
112
112
|
"onOn-click"?: (() => any) | undefined;
|
|
113
|
-
"onLang-click"?: ((val: import('
|
|
113
|
+
"onLang-click"?: ((val: import('./types').LangItemT) => any) | undefined;
|
|
114
114
|
}>, "navData" | "codeData" | "langData" | "menuShow"> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
115
115
|
$slots: {
|
|
116
116
|
tool?(_: {}): any;
|
|
@@ -123,21 +123,21 @@ declare const OHeaderMobile: {
|
|
|
123
123
|
C: {};
|
|
124
124
|
M: {};
|
|
125
125
|
Defaults: {};
|
|
126
|
-
}, Readonly<import('
|
|
126
|
+
}, Readonly<import('./types').NavT> & Readonly<{
|
|
127
127
|
"onGo-home"?: (() => any) | undefined;
|
|
128
|
-
"onLang-click"?: ((val: import('
|
|
128
|
+
"onLang-click"?: ((val: import('./types').LangItemT) => any) | undefined;
|
|
129
129
|
"onGo-back"?: (() => any) | undefined;
|
|
130
130
|
}>, {}, {}, {}, {}, {}>;
|
|
131
131
|
__isFragment?: never;
|
|
132
132
|
__isTeleport?: never;
|
|
133
133
|
__isSuspense?: never;
|
|
134
|
-
} & import('vue').ComponentOptionsBase<Readonly<import('
|
|
134
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('./types').NavT> & Readonly<{
|
|
135
135
|
"onGo-home"?: (() => any) | undefined;
|
|
136
|
-
"onLang-click"?: ((val: import('
|
|
136
|
+
"onLang-click"?: ((val: import('./types').LangItemT) => any) | undefined;
|
|
137
137
|
"onGo-back"?: (() => any) | undefined;
|
|
138
138
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
139
139
|
"go-home": () => any;
|
|
140
|
-
"lang-click": (val: import('
|
|
140
|
+
"lang-click": (val: import('./types').LangItemT) => any;
|
|
141
141
|
"go-back": () => any;
|
|
142
142
|
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
143
143
|
$slots: {
|
|
@@ -19,8 +19,8 @@ declare const OHeaderSearch: {
|
|
|
19
19
|
imageUrl: string;
|
|
20
20
|
enableImageSearch: boolean;
|
|
21
21
|
maxImageSize: number;
|
|
22
|
-
onestepItems: import('
|
|
23
|
-
suggestItems: import('
|
|
22
|
+
onestepItems: import('../search').OSearchRecommendItem[];
|
|
23
|
+
suggestItems: import('../search').OSearchRecommendItem[];
|
|
24
24
|
recommendItems: string[];
|
|
25
25
|
historyItems: string[];
|
|
26
26
|
hotItems: string[];
|
|
@@ -45,7 +45,7 @@ declare const OHeaderSearch: {
|
|
|
45
45
|
readonly imagePlaceholder?: string | undefined;
|
|
46
46
|
readonly size?: "small" | "medium" | "large" | undefined;
|
|
47
47
|
readonly enableImageSearch?: boolean | undefined;
|
|
48
|
-
readonly uploadImage?: import('
|
|
48
|
+
readonly uploadImage?: import('../search').OSearchUploadImageFn | undefined;
|
|
49
49
|
readonly maxImageSize?: number | undefined;
|
|
50
50
|
readonly imageUploadTooltip?: string | undefined;
|
|
51
51
|
readonly expanded?: boolean | undefined;
|
|
@@ -501,8 +501,8 @@ declare const OHeaderSearch: {
|
|
|
501
501
|
imageUrl: string;
|
|
502
502
|
enableImageSearch: boolean;
|
|
503
503
|
maxImageSize: number;
|
|
504
|
-
onestepItems: import('
|
|
505
|
-
suggestItems: import('
|
|
504
|
+
onestepItems: import('../search').OSearchRecommendItem[];
|
|
505
|
+
suggestItems: import('../search').OSearchRecommendItem[];
|
|
506
506
|
recommendItems: string[];
|
|
507
507
|
historyItems: string[];
|
|
508
508
|
hotItems: string[];
|
|
@@ -537,8 +537,8 @@ declare const OHeaderSearch: {
|
|
|
537
537
|
imageUrl: string;
|
|
538
538
|
enableImageSearch: boolean;
|
|
539
539
|
maxImageSize: number;
|
|
540
|
-
onestepItems: import('
|
|
541
|
-
suggestItems: import('
|
|
540
|
+
onestepItems: import('../search').OSearchRecommendItem[];
|
|
541
|
+
suggestItems: import('../search').OSearchRecommendItem[];
|
|
542
542
|
recommendItems: string[];
|
|
543
543
|
historyItems: string[];
|
|
544
544
|
hotItems: string[];
|
|
@@ -564,8 +564,8 @@ declare const OHeaderSearch: {
|
|
|
564
564
|
recommendItems: string[];
|
|
565
565
|
historyItems: string[];
|
|
566
566
|
hotItems: string[];
|
|
567
|
-
suggestItems: import('
|
|
568
|
-
onestepItems: import('
|
|
567
|
+
suggestItems: import('../search').OSearchRecommendItem[];
|
|
568
|
+
onestepItems: import('../search').OSearchRecommendItem[];
|
|
569
569
|
keyword: string;
|
|
570
570
|
}): any;
|
|
571
571
|
'recommend-header'?(_: {
|
|
@@ -575,17 +575,17 @@ declare const OHeaderSearch: {
|
|
|
575
575
|
items: string[];
|
|
576
576
|
}): any;
|
|
577
577
|
'onestep-header'?(_: {
|
|
578
|
-
items: import('
|
|
578
|
+
items: import('../search').OSearchRecommendItem[];
|
|
579
579
|
}): any;
|
|
580
580
|
'onestep-content'?(_: {
|
|
581
|
-
items: import('
|
|
581
|
+
items: import('../search').OSearchRecommendItem[];
|
|
582
582
|
keyword: string;
|
|
583
583
|
}): any;
|
|
584
584
|
'suggest-header'?(_: {
|
|
585
|
-
items: import('
|
|
585
|
+
items: import('../search').OSearchRecommendItem[];
|
|
586
586
|
}): any;
|
|
587
587
|
'suggest-content'?(_: {
|
|
588
|
-
items: import('
|
|
588
|
+
items: import('../search').OSearchRecommendItem[];
|
|
589
589
|
keyword: string;
|
|
590
590
|
}): any;
|
|
591
591
|
'history-header'?(_: {
|
|
@@ -10,6 +10,8 @@ declare const _default: import('vue').DefineComponent<MeetingFormPropsT, {
|
|
|
10
10
|
}>, {
|
|
11
11
|
groupType: MeetingGroupType;
|
|
12
12
|
showBtns: boolean;
|
|
13
|
+
privateContactEmail: string;
|
|
14
|
+
enablePrivate: boolean;
|
|
13
15
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
14
16
|
formRef: ({
|
|
15
17
|
$: import('vue').ComponentInternalInstance;
|