@opendesign-plus-test/components 0.0.1-rc.49 → 0.0.1-rc.50
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 +48 -68
- 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/index.d.ts +3 -3
- package/dist/components.cjs.js +42 -42
- package/dist/components.css +1 -1
- package/dist/components.es.js +10448 -11464
- package/dist/index.d.ts +0 -1
- package/package.json +4 -6
- package/src/assets/styles/element-plus.scss +204 -0
- package/src/assets/svg-icons/icon-delete.svg +1 -5
- package/src/components/OHeaderSearch.vue +415 -436
- package/src/components/OThemeSwitcher.vue +51 -27
- package/src/components/activity/OActivityApproval.vue +10 -6
- package/src/components/activity/OActivityForm.vue +5 -3
- package/src/components/activity/{OMyActivityCalendar.vue → OActivityMyCalendar.vue} +43 -21
- 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 +15 -12
- package/src/components/meeting/OMeetingForm.vue +16 -10
- package/src/components/meeting/{OMyMeetingCalendar.vue → OMeetingMyCalendar.vue} +73 -38
- package/src/components/meeting/OMeetingPlayback.vue +32 -8
- package/src/components/meeting/{OSigMeetingCalendar.vue → OMeetingSigCalendar.vue} +6 -3
- package/src/components/meeting/components/OMeetingCalendarList.vue +3 -3
- package/src/components/meeting/components/OMeetingCalendarSelector.vue +1 -1
- package/src/components/meeting/components/OMeetingPlaybackSubtitles.vue +10 -9
- package/src/components/meeting/components/OMeetingPlaybackVideo.vue +6 -6
- package/src/components/meeting/components/{OSigMeetingAside.vue → OMeetingSigAside.vue} +1 -1
- package/src/components/meeting/config.ts +1 -1
- package/src/components/meeting/index.ts +8 -8
- package/src/i18n/en.ts +2 -12
- package/src/i18n/zh.ts +0 -10
- 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';
|
|
@@ -422,7 +422,7 @@ declare const OMeetingPlayback: {
|
|
|
422
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 & {
|
|
423
423
|
install(app: App): void;
|
|
424
424
|
};
|
|
425
|
-
declare const
|
|
425
|
+
declare const OMeetingSigCalendar: {
|
|
426
426
|
new (...args: any[]): import('../../../vue/dist/vue.esm-bundler.js').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
427
427
|
sigName: String;
|
|
428
428
|
getMeetingListRequest: any;
|
|
@@ -459,7 +459,7 @@ declare const OSigMeetingCalendar: {
|
|
|
459
459
|
}) & {
|
|
460
460
|
install(app: App): void;
|
|
461
461
|
};
|
|
462
|
-
declare const
|
|
462
|
+
declare const OMeetingMyCalendar: {
|
|
463
463
|
new (...args: any[]): import('../../../vue/dist/vue.esm-bundler.js').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
464
464
|
cancelSubMeetingRequest: any;
|
|
465
465
|
deleteMeetingRequest: any;
|
|
@@ -813,5 +813,5 @@ declare const OMyMeetingCalendar: {
|
|
|
813
813
|
}) & {
|
|
814
814
|
install(app: App): void;
|
|
815
815
|
};
|
|
816
|
-
export { OMeetingCalendar, OMeetingForm, OMeetingPlayback,
|
|
816
|
+
export { OMeetingCalendar, OMeetingForm, OMeetingPlayback, OMeetingSigCalendar, OMeetingMyCalendar, };
|
|
817
817
|
export * from './types';
|