@opendesign-plus/components 0.0.1-rc.23 → 0.0.1-rc.24
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/components/OThemeSwitcher.vue.d.ts +5 -2
- package/dist/components/meeting/index.d.ts +3 -3
- package/dist/components.cjs.js +33 -33
- package/dist/components.css +1 -1
- package/dist/components.es.js +1740 -1736
- package/package.json +1 -1
- package/src/components/OThemeSwitcher.vue +27 -51
- package/src/components/meeting/index.ts +6 -6
|
@@ -1,9 +1,11 @@
|
|
|
1
|
+
import { Component } from '../../vue/dist/vue.esm-bundler.js';
|
|
1
2
|
export interface OThemeSwitcherPropsT {
|
|
2
3
|
theme?: string;
|
|
3
4
|
type?: 'auto' | 'common' | 'mobile';
|
|
4
5
|
lightValue?: string;
|
|
5
6
|
darkValue?: string;
|
|
6
|
-
|
|
7
|
+
lightIcon?: Component;
|
|
8
|
+
darkIcon?: Component;
|
|
7
9
|
}
|
|
8
10
|
export interface OThemeSwitcherEmitsT {
|
|
9
11
|
(e: 'update:theme', value: string): void;
|
|
@@ -17,9 +19,10 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
17
19
|
"onUpdate:theme"?: ((value: string) => any) | undefined;
|
|
18
20
|
}>, {
|
|
19
21
|
type: "auto" | "common" | "mobile";
|
|
20
|
-
disabled: boolean;
|
|
21
22
|
theme: string;
|
|
22
23
|
lightValue: string;
|
|
23
24
|
darkValue: string;
|
|
25
|
+
lightIcon: Component;
|
|
26
|
+
darkIcon: Component;
|
|
24
27
|
}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
25
28
|
export default _default;
|
|
@@ -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
|
sigName: String;
|
|
465
465
|
getMeetingListRequest: any;
|
|
@@ -496,5 +496,5 @@ declare const OMyMeetingCalendar: {
|
|
|
496
496
|
}) & {
|
|
497
497
|
install(app: App): void;
|
|
498
498
|
};
|
|
499
|
-
export { OMeetingCalendar, OMeetingForm, OMeetingPlayback,
|
|
499
|
+
export { OMeetingCalendar, OMeetingForm, OMeetingPlayback, OMeetingSigCalendar, OMeetingMyCalendar, };
|
|
500
500
|
export * from './types';
|