@opendesign-plus/components 0.0.1-rc.27 → 0.0.1-rc.29
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 +152 -152
- package/dist/components/activity/OActivityApproval.vue.d.ts +8 -8
- package/dist/components/activity/OActivityForm.vue.d.ts +6 -6
- package/dist/components/activity/OActivityMyCalendar.vue.d.ts +8 -4
- package/dist/components/activity/index.d.ts +17 -15
- package/dist/components/config-provider/OPlusConfigProvider.vue.d.ts +24 -0
- package/dist/components/config-provider/index.d.ts +30 -0
- package/dist/components/cookie-notice/OCookieNotice.vue.d.ts +17 -0
- package/dist/components/cookie-notice/index.d.ts +53 -0
- package/dist/components/events/types.d.ts +4 -0
- package/dist/components/{OFooter.vue.d.ts → footer/OFooter.vue.d.ts} +2 -2
- package/dist/components/footer/index.d.ts +89 -0
- package/dist/components/header/index.d.ts +1 -0
- package/dist/components/header/types.d.ts +1 -0
- package/dist/components/{OLanguageSwitcher.vue.d.ts → header-language-switcher/OHeaderLanguageSwitcher.vue.d.ts} +5 -5
- package/dist/components/header-language-switcher/index.d.ts +90 -0
- package/dist/components/{OHeaderSearch.vue.d.ts → header-search/OHeaderSearch.vue.d.ts} +165 -145
- package/dist/components/header-search/index.d.ts +607 -0
- package/dist/components/header-source-code/OHeaderSourceCode.vue.d.ts +18 -0
- package/dist/components/header-source-code/index.d.ts +23 -0
- package/dist/components/header-theme/OHeaderTheme.vue.d.ts +25 -0
- package/dist/components/header-theme/index.d.ts +50 -0
- package/dist/components/{OHeaderUser.vue.d.ts → header-user/OHeaderUser.vue.d.ts} +7 -7
- package/dist/components/header-user/index.d.ts +53 -0
- package/dist/components/meeting/OMeetingCalendar.vue.d.ts +2 -2
- package/dist/components/meeting/OMeetingForm.vue.d.ts +4 -6
- package/dist/components/meeting/OMeetingMyCalendar.vue.d.ts +8 -4
- package/dist/components/meeting/OMeetingPlayback.vue.d.ts +4 -4
- package/dist/components/meeting/components/OMeetingCalendarList.vue.d.ts +1 -0
- package/dist/components/meeting/components/OMeetingPlaybackVideo.vue.d.ts +1 -1
- package/dist/components/meeting/index.d.ts +11 -15
- package/dist/components/meeting/types.d.ts +6 -4
- package/dist/components/meeting/utils.d.ts +2 -1
- package/dist/components/search/OSearchInput.vue.d.ts +54 -34
- package/dist/components/search/index.d.ts +32 -22
- package/dist/components/search/internal/SearchImageInput.vue.d.ts +41 -21
- package/dist/components/search/internal/SearchPanel.vue.d.ts +1 -1
- package/dist/components/{OSection.vue.d.ts → section/OSection.vue.d.ts} +4 -4
- package/dist/components/section/index.d.ts +47 -0
- package/dist/components.cjs.js +40 -40
- package/dist/components.css +1 -1
- package/dist/components.es.js +16758 -16562
- package/dist/index.d.ts +9 -14
- package/docs/design.md +2 -2
- package/package.json +8 -8
- package/scripts/generate-components-index.js +2 -44
- package/src/assets/meeting/svg-icons/icon-all.svg +2 -1
- package/src/assets/meeting/svg-icons/icon-event.svg +2 -1
- package/src/assets/meeting/svg-icons/icon-meet.svg +2 -1
- package/src/assets/meeting/svg-icons/icon-summit.svg +2 -1
- package/src/assets/styles/element-plus.scss +24 -0
- package/src/components/activity/OActivityMyCalendar.vue +19 -12
- package/src/components/common/ClientOnly.vue +13 -0
- package/src/components/{OPlusConfigProvider.vue → config-provider/OPlusConfigProvider.vue} +5 -5
- package/src/components/config-provider/index.ts +10 -0
- package/src/components/{OCookieNotice.vue → cookie-notice/OCookieNotice.vue} +1 -1
- package/src/components/cookie-notice/index.ts +10 -0
- package/src/components/element-plus/OElCookieNotice.vue +1 -1
- package/src/components/events/OEventsApply.vue +85 -1
- package/src/components/events/OEventsList.vue +112 -40
- package/src/components/events/types.ts +1 -0
- package/src/components/{OFooter.vue → footer/OFooter.vue} +4 -4
- package/src/components/footer/index.ts +10 -0
- package/src/components/header/index.ts +2 -0
- package/src/components/header/types.ts +1 -0
- package/src/components/header-language-switcher/index.ts +10 -0
- package/src/components/{OHeaderSearch.vue → header-search/OHeaderSearch.vue} +4 -4
- package/src/components/header-search/index.ts +10 -0
- package/src/components/{OSourceCode.vue → header-source-code/OHeaderSourceCode.vue} +2 -2
- package/src/components/header-source-code/index.ts +10 -0
- package/src/components/{OThemeSwitcher.vue → header-theme/OHeaderTheme.vue} +4 -4
- package/src/components/header-theme/index.ts +10 -0
- package/src/components/{OHeaderUser.vue → header-user/OHeaderUser.vue} +4 -4
- package/src/components/header-user/index.ts +10 -0
- package/src/components/meeting/OMeetingCalendar.vue +32 -21
- package/src/components/meeting/OMeetingForm.vue +44 -37
- package/src/components/meeting/OMeetingMyCalendar.vue +28 -38
- package/src/components/meeting/OMeetingSigCalendar.vue +43 -20
- package/src/components/meeting/components/OMeetingCalendarList.vue +80 -29
- package/src/components/meeting/components/OMeetingDetail.vue +29 -10
- package/src/components/meeting/components/OMeetingPlaybackSubtitles.vue +1 -1
- package/src/components/meeting/components/OMeetingSigAside.vue +11 -6
- package/src/components/meeting/types.ts +7 -5
- package/src/components/meeting/utils.ts +4 -4
- package/src/components/{OSection.vue → section/OSection.vue} +1 -1
- package/src/components/section/index.ts +10 -0
- package/src/i18n/en.ts +2 -2
- package/src/i18n/zh.ts +4 -2
- package/src/index.ts +9 -38
- package/dist/components/OCookieNotice.vue.d.ts +0 -17
- package/dist/components/OPlusConfigProvider.vue.d.ts +0 -23
- package/dist/components/OSourceCode.vue.d.ts +0 -18
- package/dist/components/OThemeSwitcher.vue.d.ts +0 -25
- package/dist/components/meeting/components/OMeetingCalendarSelector.vue.d.ts +0 -664
- package/src/components/common/ClientOnlyWrapper.ts +0 -21
- /package/src/components/{OLanguageSwitcher.vue → header-language-switcher/OHeaderLanguageSwitcher.vue} +0 -0
|
@@ -13,7 +13,7 @@ declare function __VLS_template(): {
|
|
|
13
13
|
$props: Partial<{
|
|
14
14
|
readonly controllerType: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "button" | "select", unknown>;
|
|
15
15
|
}> & Omit<{
|
|
16
|
-
readonly controllerType: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "
|
|
16
|
+
readonly controllerType: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "button" | "select", unknown>;
|
|
17
17
|
readonly modelValue?: Date | undefined;
|
|
18
18
|
readonly range?: [Date, Date] | undefined;
|
|
19
19
|
readonly formatter?: ((value: number, type: "year" | "month") => string | number) | undefined;
|
|
@@ -224,6 +224,7 @@ declare function __VLS_template(): {
|
|
|
224
224
|
onScroll?: ((event: Event) => any) | undefined;
|
|
225
225
|
}>, {
|
|
226
226
|
scrollTo: (options?: ScrollToOptions | undefined) => void;
|
|
227
|
+
scrollBy: (options?: ScrollToOptions | undefined) => void;
|
|
227
228
|
getContainerEl(): HTMLElement | null;
|
|
228
229
|
}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
229
230
|
scroll: (event: Event) => any;
|
|
@@ -300,8 +301,9 @@ declare function __VLS_template(): {
|
|
|
300
301
|
};
|
|
301
302
|
}>> & Readonly<{
|
|
302
303
|
onScroll?: ((event: Event) => any) | undefined;
|
|
303
|
-
}>, "size" | "duration" | "disabledX" | "disabledY" | "showType" | "autoUpdateOnScrollSize" | "scrollTo" | "getContainerEl"> & {
|
|
304
|
+
}>, "size" | "duration" | "disabledX" | "disabledY" | "showType" | "autoUpdateOnScrollSize" | "scrollTo" | "scrollBy" | "getContainerEl"> & {
|
|
304
305
|
scrollTo: (options?: ScrollToOptions | undefined) => void;
|
|
306
|
+
scrollBy: (options?: ScrollToOptions | undefined) => void;
|
|
305
307
|
getContainerEl: () => HTMLElement | null;
|
|
306
308
|
} & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
307
309
|
$slots: {
|
|
@@ -325,7 +327,7 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
325
327
|
$props: Partial<{
|
|
326
328
|
readonly controllerType: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "button" | "select", unknown>;
|
|
327
329
|
}> & Omit<{
|
|
328
|
-
readonly controllerType: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "
|
|
330
|
+
readonly controllerType: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "button" | "select", unknown>;
|
|
329
331
|
readonly modelValue?: Date | undefined;
|
|
330
332
|
readonly range?: [Date, Date] | undefined;
|
|
331
333
|
readonly formatter?: ((value: number, type: "year" | "month") => string | number) | undefined;
|
|
@@ -536,6 +538,7 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
536
538
|
onScroll?: ((event: Event) => any) | undefined;
|
|
537
539
|
}>, {
|
|
538
540
|
scrollTo: (options?: ScrollToOptions | undefined) => void;
|
|
541
|
+
scrollBy: (options?: ScrollToOptions | undefined) => void;
|
|
539
542
|
getContainerEl(): HTMLElement | null;
|
|
540
543
|
}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
541
544
|
scroll: (event: Event) => any;
|
|
@@ -612,8 +615,9 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
612
615
|
};
|
|
613
616
|
}>> & Readonly<{
|
|
614
617
|
onScroll?: ((event: Event) => any) | undefined;
|
|
615
|
-
}>, "size" | "duration" | "disabledX" | "disabledY" | "showType" | "autoUpdateOnScrollSize" | "scrollTo" | "getContainerEl"> & {
|
|
618
|
+
}>, "size" | "duration" | "disabledX" | "disabledY" | "showType" | "autoUpdateOnScrollSize" | "scrollTo" | "scrollBy" | "getContainerEl"> & {
|
|
616
619
|
scrollTo: (options?: ScrollToOptions | undefined) => void;
|
|
620
|
+
scrollBy: (options?: ScrollToOptions | undefined) => void;
|
|
617
621
|
getContainerEl: () => HTMLElement | null;
|
|
618
622
|
} & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
619
623
|
$slots: {
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { App } from '../../../vue/dist/vue.esm-bundler.js';
|
|
2
2
|
declare const OActivityForm: {
|
|
3
3
|
new (...args: any[]): import('../../../vue/dist/vue.esm-bundler.js').CreateComponentPublicInstanceWithMixins<Readonly<import('./types').ActivityFormPropsT> & Readonly<{
|
|
4
|
-
onClose?: ((...args: any[]) => any) | undefined;
|
|
5
4
|
onConfirm?: ((...args: any[]) => any) | undefined;
|
|
5
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
6
6
|
}>, {
|
|
7
7
|
confirm: (val: boolean) => Promise<void>;
|
|
8
8
|
}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
9
|
-
close: (...args: any[]) => void;
|
|
10
9
|
confirm: (...args: any[]) => void;
|
|
10
|
+
close: (...args: any[]) => void;
|
|
11
11
|
}, 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, {
|
|
12
12
|
formRef: ({
|
|
13
13
|
$: import('../../../vue/dist/vue.esm-bundler.js').ComponentInternalInstance;
|
|
@@ -19,8 +19,8 @@ declare const OActivityForm: {
|
|
|
19
19
|
readonly hasRequired: boolean;
|
|
20
20
|
readonly layout: "v" | "h" | "inline";
|
|
21
21
|
readonly model?: Record<string, any> | undefined;
|
|
22
|
-
readonly labelAlign?: "
|
|
23
|
-
readonly labelJustify?: "
|
|
22
|
+
readonly labelAlign?: "top" | "center" | "bottom" | undefined;
|
|
23
|
+
readonly labelJustify?: "center" | "left" | "right" | undefined;
|
|
24
24
|
readonly labelWidth?: string | undefined;
|
|
25
25
|
readonly onClear?: ((filed?: string | string[] | undefined) => any) | undefined | undefined;
|
|
26
26
|
readonly onReset?: ((filed?: string | string[] | undefined) => any) | undefined | undefined;
|
|
@@ -37,7 +37,7 @@ declare const OActivityForm: {
|
|
|
37
37
|
$root: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
38
38
|
$parent: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
39
39
|
$host: Element | null;
|
|
40
|
-
$emit: ((event: "clear", filed?: string | string[] | undefined) => void) & ((event: "
|
|
40
|
+
$emit: ((event: "clear", filed?: string | string[] | undefined) => void) & ((event: "validate", results: import('@opensig/opendesign').FieldResultT[]) => void) & ((event: "reset", filed?: string | string[] | undefined) => void) & ((event: "submit", results: import('@opensig/opendesign').FieldResultT[]) => void);
|
|
41
41
|
$el: HTMLFormElement;
|
|
42
42
|
$options: import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
43
43
|
model: {
|
|
@@ -126,7 +126,7 @@ declare const OActivityForm: {
|
|
|
126
126
|
onReset?: ((filed?: string | string[] | undefined) => any) | undefined;
|
|
127
127
|
onSubmit?: ((results: import('@opensig/opendesign').FieldResultT[]) => any) | undefined;
|
|
128
128
|
onValidate?: ((results: import('@opensig/opendesign').FieldResultT[]) => any) | undefined;
|
|
129
|
-
}>, "
|
|
129
|
+
}>, "hasRequired" | "layout" | "validate" | "resetFields" | "clearValidate"> & {
|
|
130
130
|
validate: (filed?: string | string[]) => Promise<import('@opensig/opendesign').FieldResultT[]>;
|
|
131
131
|
resetFields: (filed?: string | string[]) => void;
|
|
132
132
|
clearValidate: (filed?: string | string[], onClear?: (filed: import('@opensig/opendesign').FiledInfoT) => void) => void;
|
|
@@ -143,8 +143,8 @@ declare const OActivityForm: {
|
|
|
143
143
|
M: {};
|
|
144
144
|
Defaults: {};
|
|
145
145
|
}, Readonly<import('./types').ActivityFormPropsT> & Readonly<{
|
|
146
|
-
onClose?: ((...args: any[]) => any) | undefined;
|
|
147
146
|
onConfirm?: ((...args: any[]) => any) | undefined;
|
|
147
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
148
148
|
}>, {
|
|
149
149
|
confirm: (val: boolean) => Promise<void>;
|
|
150
150
|
}, {}, {}, {}, {}>;
|
|
@@ -152,13 +152,13 @@ declare const OActivityForm: {
|
|
|
152
152
|
__isTeleport?: never;
|
|
153
153
|
__isSuspense?: never;
|
|
154
154
|
} & import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('./types').ActivityFormPropsT> & Readonly<{
|
|
155
|
-
onClose?: ((...args: any[]) => any) | undefined;
|
|
156
155
|
onConfirm?: ((...args: any[]) => any) | undefined;
|
|
156
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
157
157
|
}>, {
|
|
158
158
|
confirm: (val: boolean) => Promise<void>;
|
|
159
159
|
}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
160
|
-
close: (...args: any[]) => void;
|
|
161
160
|
confirm: (...args: any[]) => void;
|
|
161
|
+
close: (...args: any[]) => void;
|
|
162
162
|
}, 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 & {
|
|
163
163
|
install(app: App): void;
|
|
164
164
|
};
|
|
@@ -174,8 +174,8 @@ declare const OActivityApproval: {
|
|
|
174
174
|
readonly hasRequired: boolean;
|
|
175
175
|
readonly layout: "v" | "h" | "inline";
|
|
176
176
|
readonly model?: Record<string, any> | undefined;
|
|
177
|
-
readonly labelAlign?: "
|
|
178
|
-
readonly labelJustify?: "
|
|
177
|
+
readonly labelAlign?: "top" | "center" | "bottom" | undefined;
|
|
178
|
+
readonly labelJustify?: "center" | "left" | "right" | undefined;
|
|
179
179
|
readonly labelWidth?: string | undefined;
|
|
180
180
|
readonly onClear?: ((filed?: string | string[] | undefined) => any) | undefined | undefined;
|
|
181
181
|
readonly onReset?: ((filed?: string | string[] | undefined) => any) | undefined | undefined;
|
|
@@ -192,7 +192,7 @@ declare const OActivityApproval: {
|
|
|
192
192
|
$root: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
193
193
|
$parent: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
194
194
|
$host: Element | null;
|
|
195
|
-
$emit: ((event: "clear", filed?: string | string[] | undefined) => void) & ((event: "
|
|
195
|
+
$emit: ((event: "clear", filed?: string | string[] | undefined) => void) & ((event: "validate", results: import('@opensig/opendesign').FieldResultT[]) => void) & ((event: "reset", filed?: string | string[] | undefined) => void) & ((event: "submit", results: import('@opensig/opendesign').FieldResultT[]) => void);
|
|
196
196
|
$el: HTMLFormElement;
|
|
197
197
|
$options: import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
198
198
|
model: {
|
|
@@ -281,7 +281,7 @@ declare const OActivityApproval: {
|
|
|
281
281
|
onReset?: ((filed?: string | string[] | undefined) => any) | undefined;
|
|
282
282
|
onSubmit?: ((results: import('@opensig/opendesign').FieldResultT[]) => any) | undefined;
|
|
283
283
|
onValidate?: ((results: import('@opensig/opendesign').FieldResultT[]) => any) | undefined;
|
|
284
|
-
}>, "
|
|
284
|
+
}>, "hasRequired" | "layout" | "validate" | "resetFields" | "clearValidate"> & {
|
|
285
285
|
validate: (filed?: string | string[]) => Promise<import('@opensig/opendesign').FieldResultT[]>;
|
|
286
286
|
resetFields: (filed?: string | string[]) => void;
|
|
287
287
|
clearValidate: (filed?: string | string[], onClear?: (filed: import('@opensig/opendesign').FiledInfoT) => void) => void;
|
|
@@ -321,7 +321,7 @@ declare const OActivityMyCalendar: {
|
|
|
321
321
|
$props: Partial<{
|
|
322
322
|
readonly controllerType: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "button" | "select", unknown>;
|
|
323
323
|
}> & Omit<{
|
|
324
|
-
readonly controllerType: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "
|
|
324
|
+
readonly controllerType: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "button" | "select", unknown>;
|
|
325
325
|
readonly modelValue?: Date | undefined;
|
|
326
326
|
readonly range?: [Date, Date] | undefined;
|
|
327
327
|
readonly formatter?: ((value: number, type: "year" | "month") => string | number) | undefined;
|
|
@@ -532,6 +532,7 @@ declare const OActivityMyCalendar: {
|
|
|
532
532
|
onScroll?: ((event: Event) => any) | undefined;
|
|
533
533
|
}>, {
|
|
534
534
|
scrollTo: (options?: ScrollToOptions | undefined) => void;
|
|
535
|
+
scrollBy: (options?: ScrollToOptions | undefined) => void;
|
|
535
536
|
getContainerEl(): HTMLElement | null;
|
|
536
537
|
}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
537
538
|
scroll: (event: Event) => any;
|
|
@@ -608,8 +609,9 @@ declare const OActivityMyCalendar: {
|
|
|
608
609
|
};
|
|
609
610
|
}>> & Readonly<{
|
|
610
611
|
onScroll?: ((event: Event) => any) | undefined;
|
|
611
|
-
}>, "size" | "duration" | "disabledX" | "disabledY" | "showType" | "autoUpdateOnScrollSize" | "scrollTo" | "getContainerEl"> & {
|
|
612
|
+
}>, "size" | "duration" | "disabledX" | "disabledY" | "showType" | "autoUpdateOnScrollSize" | "scrollTo" | "scrollBy" | "getContainerEl"> & {
|
|
612
613
|
scrollTo: (options?: ScrollToOptions | undefined) => void;
|
|
614
|
+
scrollBy: (options?: ScrollToOptions | undefined) => void;
|
|
613
615
|
getContainerEl: () => HTMLElement | null;
|
|
614
616
|
} & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
615
617
|
$slots: {
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export interface OPlusConfigProviderPropsT {
|
|
2
|
+
locale?: 'zh' | 'en';
|
|
3
|
+
theme?: 'light' | 'dark';
|
|
4
|
+
}
|
|
5
|
+
declare function __VLS_template(): {
|
|
6
|
+
attrs: Partial<{}>;
|
|
7
|
+
slots: {
|
|
8
|
+
default?(_: {}): any;
|
|
9
|
+
};
|
|
10
|
+
refs: {};
|
|
11
|
+
rootEl: any;
|
|
12
|
+
};
|
|
13
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
14
|
+
declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').DefineComponent<OPlusConfigProviderPropsT, {}, {}, {}, {}, 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<OPlusConfigProviderPropsT> & Readonly<{}>, {
|
|
15
|
+
locale: "zh" | "en";
|
|
16
|
+
theme: "light" | "dark";
|
|
17
|
+
}, {}, {}, {}, string, import('../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, false, {}, any>;
|
|
18
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
19
|
+
export default _default;
|
|
20
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
21
|
+
new (): {
|
|
22
|
+
$slots: S;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { App } from '../../../vue/dist/vue.esm-bundler.js';
|
|
2
|
+
declare const OPlusConfigProvider: {
|
|
3
|
+
new (...args: any[]): import('../../../vue/dist/vue.esm-bundler.js').CreateComponentPublicInstanceWithMixins<Readonly<import('./OPlusConfigProvider.vue').OPlusConfigProviderPropsT> & Readonly<{}>, {}, {}, {}, {}, 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
|
+
locale: "zh" | "en";
|
|
5
|
+
theme: "light" | "dark";
|
|
6
|
+
}, false, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').GlobalComponents, import('../../../vue/dist/vue.esm-bundler.js').GlobalDirectives, string, {}, any, import('../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, {
|
|
7
|
+
P: {};
|
|
8
|
+
B: {};
|
|
9
|
+
D: {};
|
|
10
|
+
C: {};
|
|
11
|
+
M: {};
|
|
12
|
+
Defaults: {};
|
|
13
|
+
}, Readonly<import('./OPlusConfigProvider.vue').OPlusConfigProviderPropsT> & Readonly<{}>, {}, {}, {}, {}, {
|
|
14
|
+
locale: "zh" | "en";
|
|
15
|
+
theme: "light" | "dark";
|
|
16
|
+
}>;
|
|
17
|
+
__isFragment?: never;
|
|
18
|
+
__isTeleport?: never;
|
|
19
|
+
__isSuspense?: never;
|
|
20
|
+
} & import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('./OPlusConfigProvider.vue').OPlusConfigProviderPropsT> & Readonly<{}>, {}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {}, string, {
|
|
21
|
+
locale: "zh" | "en";
|
|
22
|
+
theme: "light" | "dark";
|
|
23
|
+
}, {}, 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 () => {
|
|
24
|
+
$slots: {
|
|
25
|
+
default?(_: {}): any;
|
|
26
|
+
};
|
|
27
|
+
}) & {
|
|
28
|
+
install(app: App): void;
|
|
29
|
+
};
|
|
30
|
+
export { OPlusConfigProvider };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
visible?: boolean;
|
|
3
|
+
community: string;
|
|
4
|
+
detailUrl: string;
|
|
5
|
+
wrapper?: string | HTMLElement;
|
|
6
|
+
cookieDomain: string;
|
|
7
|
+
};
|
|
8
|
+
declare const _default: import('../../../vue/dist/vue.esm-bundler.js').DefineComponent<__VLS_Props, {
|
|
9
|
+
check(): void;
|
|
10
|
+
}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {} & {
|
|
11
|
+
"update:visible": (value: boolean) => any;
|
|
12
|
+
}, string, import('../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
13
|
+
"onUpdate:visible"?: ((value: boolean) => any) | undefined;
|
|
14
|
+
}>, {}, {}, {}, {}, string, import('../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, false, {
|
|
15
|
+
cookieNoticeRef: HTMLDivElement;
|
|
16
|
+
}, any>;
|
|
17
|
+
export default _default;
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { App } from '../../../vue/dist/vue.esm-bundler.js';
|
|
2
|
+
declare const OCookieNotice: {
|
|
3
|
+
new (...args: any[]): import('../../../vue/dist/vue.esm-bundler.js').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
4
|
+
visible?: boolean;
|
|
5
|
+
community: string;
|
|
6
|
+
detailUrl: string;
|
|
7
|
+
wrapper?: string | HTMLElement;
|
|
8
|
+
cookieDomain: string;
|
|
9
|
+
}> & Readonly<{
|
|
10
|
+
"onUpdate:visible"?: ((value: boolean) => any) | undefined;
|
|
11
|
+
}>, {
|
|
12
|
+
check(): void;
|
|
13
|
+
}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {} & {
|
|
14
|
+
"update:visible": (value: boolean) => any;
|
|
15
|
+
}, 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, {
|
|
16
|
+
cookieNoticeRef: HTMLDivElement;
|
|
17
|
+
}, any, import('../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, {
|
|
18
|
+
P: {};
|
|
19
|
+
B: {};
|
|
20
|
+
D: {};
|
|
21
|
+
C: {};
|
|
22
|
+
M: {};
|
|
23
|
+
Defaults: {};
|
|
24
|
+
}, Readonly<{
|
|
25
|
+
visible?: boolean;
|
|
26
|
+
community: string;
|
|
27
|
+
detailUrl: string;
|
|
28
|
+
wrapper?: string | HTMLElement;
|
|
29
|
+
cookieDomain: string;
|
|
30
|
+
}> & Readonly<{
|
|
31
|
+
"onUpdate:visible"?: ((value: boolean) => any) | undefined;
|
|
32
|
+
}>, {
|
|
33
|
+
check(): void;
|
|
34
|
+
}, {}, {}, {}, {}>;
|
|
35
|
+
__isFragment?: never;
|
|
36
|
+
__isTeleport?: never;
|
|
37
|
+
__isSuspense?: never;
|
|
38
|
+
} & import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<{
|
|
39
|
+
visible?: boolean;
|
|
40
|
+
community: string;
|
|
41
|
+
detailUrl: string;
|
|
42
|
+
wrapper?: string | HTMLElement;
|
|
43
|
+
cookieDomain: string;
|
|
44
|
+
}> & Readonly<{
|
|
45
|
+
"onUpdate:visible"?: ((value: boolean) => any) | undefined;
|
|
46
|
+
}>, {
|
|
47
|
+
check(): void;
|
|
48
|
+
}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {} & {
|
|
49
|
+
"update:visible": (value: boolean) => any;
|
|
50
|
+
}, 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 & {
|
|
51
|
+
install(app: App): void;
|
|
52
|
+
};
|
|
53
|
+
export { OCookieNotice };
|
|
@@ -26,7 +26,7 @@ declare function __VLS_template(): {
|
|
|
26
26
|
rootEl: HTMLDivElement;
|
|
27
27
|
};
|
|
28
28
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
29
|
-
declare const __VLS_component: import('
|
|
29
|
+
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<{}>, {
|
|
30
30
|
simple: any;
|
|
31
31
|
atom: any;
|
|
32
32
|
lang: any;
|
|
@@ -36,7 +36,7 @@ declare const __VLS_component: import('../../vue/dist/vue.esm-bundler.js').Defin
|
|
|
36
36
|
footerOption: any;
|
|
37
37
|
qrcode: any;
|
|
38
38
|
footerBg: any;
|
|
39
|
-
}, {}, {}, {}, string, import('
|
|
39
|
+
}, {}, {}, {}, string, import('../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
40
40
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
41
41
|
export default _default;
|
|
42
42
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import { App } from '../../../vue/dist/vue.esm-bundler.js';
|
|
2
|
+
declare const OFooter: {
|
|
3
|
+
new (...args: any[]): import('../../../vue/dist/vue.esm-bundler.js').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
4
|
+
simple: any;
|
|
5
|
+
atom: any;
|
|
6
|
+
lang: any;
|
|
7
|
+
quickNav: any;
|
|
8
|
+
friendshipLink: any;
|
|
9
|
+
footerLogo: any;
|
|
10
|
+
footerOption: any;
|
|
11
|
+
qrcode: any;
|
|
12
|
+
footerBg: any;
|
|
13
|
+
}> & Readonly<{}>, {}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {}, import('../../../vue/dist/vue.esm-bundler.js').PublicProps, {
|
|
14
|
+
simple: any;
|
|
15
|
+
atom: any;
|
|
16
|
+
lang: any;
|
|
17
|
+
quickNav: any;
|
|
18
|
+
friendshipLink: any;
|
|
19
|
+
footerLogo: any;
|
|
20
|
+
footerOption: any;
|
|
21
|
+
qrcode: any;
|
|
22
|
+
footerBg: any;
|
|
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<{
|
|
31
|
+
simple: any;
|
|
32
|
+
atom: any;
|
|
33
|
+
lang: any;
|
|
34
|
+
quickNav: any;
|
|
35
|
+
friendshipLink: any;
|
|
36
|
+
footerLogo: any;
|
|
37
|
+
footerOption: any;
|
|
38
|
+
qrcode: any;
|
|
39
|
+
footerBg: any;
|
|
40
|
+
}> & Readonly<{}>, {}, {}, {}, {}, {
|
|
41
|
+
simple: any;
|
|
42
|
+
atom: any;
|
|
43
|
+
lang: any;
|
|
44
|
+
quickNav: any;
|
|
45
|
+
friendshipLink: any;
|
|
46
|
+
footerLogo: any;
|
|
47
|
+
footerOption: any;
|
|
48
|
+
qrcode: any;
|
|
49
|
+
footerBg: any;
|
|
50
|
+
}>;
|
|
51
|
+
__isFragment?: never;
|
|
52
|
+
__isTeleport?: never;
|
|
53
|
+
__isSuspense?: never;
|
|
54
|
+
} & import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<{
|
|
55
|
+
simple: any;
|
|
56
|
+
atom: any;
|
|
57
|
+
lang: any;
|
|
58
|
+
quickNav: any;
|
|
59
|
+
friendshipLink: any;
|
|
60
|
+
footerLogo: any;
|
|
61
|
+
footerOption: any;
|
|
62
|
+
qrcode: any;
|
|
63
|
+
footerBg: any;
|
|
64
|
+
}> & Readonly<{}>, {}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {}, string, {
|
|
65
|
+
simple: any;
|
|
66
|
+
atom: any;
|
|
67
|
+
lang: any;
|
|
68
|
+
quickNav: any;
|
|
69
|
+
friendshipLink: any;
|
|
70
|
+
footerLogo: any;
|
|
71
|
+
footerOption: any;
|
|
72
|
+
qrcode: any;
|
|
73
|
+
footerBg: any;
|
|
74
|
+
}, {}, 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 () => {
|
|
75
|
+
$slots: {
|
|
76
|
+
atom?(_: {}): any;
|
|
77
|
+
quickNav?(_: {}): any;
|
|
78
|
+
friendshipLink?(_: {}): any;
|
|
79
|
+
footer?(_: {}): any;
|
|
80
|
+
left?(_: {}): any;
|
|
81
|
+
left?(_: {}): any;
|
|
82
|
+
right?(_: {}): any;
|
|
83
|
+
right?(_: {}): any;
|
|
84
|
+
copyright?(_: {}): any;
|
|
85
|
+
};
|
|
86
|
+
}) & {
|
|
87
|
+
install(app: App): void;
|
|
88
|
+
};
|
|
89
|
+
export { OFooter };
|
|
@@ -3,7 +3,7 @@ export interface LanguageOptionT {
|
|
|
3
3
|
label: string;
|
|
4
4
|
simple: string;
|
|
5
5
|
}
|
|
6
|
-
declare const _default: import('
|
|
6
|
+
declare const _default: import('../../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
7
7
|
options: {
|
|
8
8
|
type: () => LanguageOptionT[];
|
|
9
9
|
default(): {
|
|
@@ -20,9 +20,9 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
20
20
|
type: BooleanConstructor;
|
|
21
21
|
default: boolean;
|
|
22
22
|
};
|
|
23
|
-
}>, {}, {}, {}, {}, import('
|
|
23
|
+
}>, {}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
24
24
|
change: (...args: any[]) => void;
|
|
25
|
-
}, string, import('
|
|
25
|
+
}, string, import('../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<import('../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
26
26
|
options: {
|
|
27
27
|
type: () => LanguageOptionT[];
|
|
28
28
|
default(): {
|
|
@@ -42,8 +42,8 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
42
42
|
}>> & Readonly<{
|
|
43
43
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
44
44
|
}>, {
|
|
45
|
-
type: "auto" | "
|
|
45
|
+
type: "auto" | "common" | "mobile";
|
|
46
46
|
auto: boolean;
|
|
47
47
|
options: LanguageOptionT[];
|
|
48
|
-
}, {}, {}, {}, string, import('
|
|
48
|
+
}, {}, {}, {}, string, import('../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
|
|
49
49
|
export default _default;
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
import { App } from '../../../vue/dist/vue.esm-bundler.js';
|
|
2
|
+
declare const OHeaderLanguageSwitcher: {
|
|
3
|
+
new (...args: any[]): import('../../../vue/dist/vue.esm-bundler.js').CreateComponentPublicInstanceWithMixins<Readonly<import('../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
4
|
+
options: {
|
|
5
|
+
type: () => import('./OHeaderLanguageSwitcher.vue').LanguageOptionT[];
|
|
6
|
+
default(): {
|
|
7
|
+
id: string;
|
|
8
|
+
label: string;
|
|
9
|
+
simple: string;
|
|
10
|
+
}[];
|
|
11
|
+
};
|
|
12
|
+
type: {
|
|
13
|
+
type: () => "auto" | "common" | "mobile";
|
|
14
|
+
default: string;
|
|
15
|
+
};
|
|
16
|
+
auto: {
|
|
17
|
+
type: BooleanConstructor;
|
|
18
|
+
default: boolean;
|
|
19
|
+
};
|
|
20
|
+
}>> & Readonly<{
|
|
21
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
22
|
+
}>, {}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
23
|
+
change: (...args: any[]) => void;
|
|
24
|
+
}, import('../../../vue/dist/vue.esm-bundler.js').PublicProps, {
|
|
25
|
+
type: "auto" | "common" | "mobile";
|
|
26
|
+
auto: boolean;
|
|
27
|
+
options: import('./OHeaderLanguageSwitcher.vue').LanguageOptionT[];
|
|
28
|
+
}, true, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').GlobalComponents, import('../../../vue/dist/vue.esm-bundler.js').GlobalDirectives, string, {}, any, import('../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, {
|
|
29
|
+
P: {};
|
|
30
|
+
B: {};
|
|
31
|
+
D: {};
|
|
32
|
+
C: {};
|
|
33
|
+
M: {};
|
|
34
|
+
Defaults: {};
|
|
35
|
+
}, Readonly<import('../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
36
|
+
options: {
|
|
37
|
+
type: () => import('./OHeaderLanguageSwitcher.vue').LanguageOptionT[];
|
|
38
|
+
default(): {
|
|
39
|
+
id: string;
|
|
40
|
+
label: string;
|
|
41
|
+
simple: string;
|
|
42
|
+
}[];
|
|
43
|
+
};
|
|
44
|
+
type: {
|
|
45
|
+
type: () => "auto" | "common" | "mobile";
|
|
46
|
+
default: string;
|
|
47
|
+
};
|
|
48
|
+
auto: {
|
|
49
|
+
type: BooleanConstructor;
|
|
50
|
+
default: boolean;
|
|
51
|
+
};
|
|
52
|
+
}>> & Readonly<{
|
|
53
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
54
|
+
}>, {}, {}, {}, {}, {
|
|
55
|
+
type: "auto" | "common" | "mobile";
|
|
56
|
+
auto: boolean;
|
|
57
|
+
options: import('./OHeaderLanguageSwitcher.vue').LanguageOptionT[];
|
|
58
|
+
}>;
|
|
59
|
+
__isFragment?: never;
|
|
60
|
+
__isTeleport?: never;
|
|
61
|
+
__isSuspense?: never;
|
|
62
|
+
} & import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
63
|
+
options: {
|
|
64
|
+
type: () => import('./OHeaderLanguageSwitcher.vue').LanguageOptionT[];
|
|
65
|
+
default(): {
|
|
66
|
+
id: string;
|
|
67
|
+
label: string;
|
|
68
|
+
simple: string;
|
|
69
|
+
}[];
|
|
70
|
+
};
|
|
71
|
+
type: {
|
|
72
|
+
type: () => "auto" | "common" | "mobile";
|
|
73
|
+
default: string;
|
|
74
|
+
};
|
|
75
|
+
auto: {
|
|
76
|
+
type: BooleanConstructor;
|
|
77
|
+
default: boolean;
|
|
78
|
+
};
|
|
79
|
+
}>> & Readonly<{
|
|
80
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
81
|
+
}>, {}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
82
|
+
change: (...args: any[]) => void;
|
|
83
|
+
}, string, {
|
|
84
|
+
type: "auto" | "common" | "mobile";
|
|
85
|
+
auto: boolean;
|
|
86
|
+
options: import('./OHeaderLanguageSwitcher.vue').LanguageOptionT[];
|
|
87
|
+
}, {}, 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 & {
|
|
88
|
+
install(app: App): void;
|
|
89
|
+
};
|
|
90
|
+
export { OHeaderLanguageSwitcher };
|