@opendesign-plus-test/components 0.0.1-rc.103 → 0.0.1-rc.105
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/header/OHeader.vue.d.ts +3 -3
- package/dist/components/header/OHeaderMobile.vue.d.ts +4 -0
- package/dist/components/header/components/HeaderNav.vue.d.ts +3 -3
- package/dist/components/header/index.d.ts +7 -5
- package/dist/components/header/types.d.ts +5 -2
- package/dist/components/header-search/OHeaderSearch.vue.d.ts +2 -2
- package/dist/components.cjs.js +38 -38
- package/dist/components.css +1 -1
- package/dist/components.es.js +7165 -7187
- package/dist/treeshaking/components/common/TooltipText.css +1 -0
- package/dist/treeshaking/components/common/TooltipText.vue.mjs +11 -0
- package/dist/treeshaking/components/header/OHeader.css +15 -15
- package/dist/treeshaking/components/header/OHeader.vue.d.ts +3 -3
- package/dist/treeshaking/components/header/OHeader.vue.mjs +1 -1
- package/dist/treeshaking/components/header/OHeader.vue2.mjs +4 -3
- package/dist/treeshaking/components/header/OHeaderMobile.css +19 -19
- package/dist/treeshaking/components/header/OHeaderMobile.vue.d.ts +4 -0
- package/dist/treeshaking/components/header/OHeaderMobile.vue.mjs +1 -1
- package/dist/treeshaking/components/header/OHeaderMobile.vue2.mjs +3 -1
- package/dist/treeshaking/components/header/components/HeaderContent.css +204 -169
- package/dist/treeshaking/components/header/components/HeaderContent.vue.mjs +1 -1
- package/dist/treeshaking/components/header/components/HeaderContent.vue2.mjs +13 -13
- package/dist/treeshaking/components/header/components/HeaderFlatten.css +49 -51
- package/dist/treeshaking/components/header/components/HeaderFlatten.vue.mjs +1 -1
- package/dist/treeshaking/components/header/components/HeaderFlatten.vue2.mjs +21 -20
- package/dist/treeshaking/components/header/components/HeaderNav.css +45 -42
- package/dist/treeshaking/components/header/components/HeaderNav.vue.d.ts +3 -3
- package/dist/treeshaking/components/header/components/HeaderNav.vue.mjs +1 -1
- package/dist/treeshaking/components/header/components/HeaderNav.vue2.mjs +16 -14
- package/dist/treeshaking/components/header/components/HeaderNavMobile.css +110 -73
- package/dist/treeshaking/components/header/components/HeaderNavMobile.vue.mjs +1 -1
- package/dist/treeshaking/components/header/components/HeaderNavMobile.vue2.mjs +58 -48
- package/dist/treeshaking/components/header/index.d.ts +7 -5
- package/dist/treeshaking/components/header/types.d.ts +5 -2
- package/dist/treeshaking/components/header-search/OHeaderSearch.vue.d.ts +6 -6
- package/dist/treeshaking/components/header-search/index.d.ts +3 -3
- package/dist/treeshaking/components/meeting/OMeetingCalendar.css +2 -2
- package/dist/treeshaking/components/meeting/OMeetingMyCalendar.css +6 -13
- package/dist/treeshaking/components/meeting/components/OMeetingCalendarList.css +5 -7
- package/dist/treeshaking/components/meeting/components/OMeetingCalendarList.vue.mjs +3 -6
- package/dist/treeshaking/components/meeting/components/OMeetingDetail.css +1 -1
- package/dist/treeshaking/components/meeting/components/OMeetingDetail.vue.mjs +10 -6
- package/dist/treeshaking/components/search/OSearchInput.vue.d.ts +6 -6
- package/dist/treeshaking/components/search/index.d.ts +3 -3
- package/dist/treeshaking/components/search/internal/SearchImageInput.vue.d.ts +1 -1
- package/package.json +1 -1
- package/dist/treeshaking/components/common/MoreText.css +0 -69
- package/dist/treeshaking/components/common/MoreText.vue.mjs +0 -88
- package/dist/treeshaking/components/common/MoreText.vue3.mjs +0 -5
|
@@ -2,7 +2,7 @@ import { NavT } from './types.ts';
|
|
|
2
2
|
export interface OHeaderT {
|
|
3
3
|
(e: 'go-home'): void;
|
|
4
4
|
(e: 'handle-click', val: any): void;
|
|
5
|
-
(e: 'nav-layout', val: any
|
|
5
|
+
(e: 'nav-layout', val: any): void;
|
|
6
6
|
}
|
|
7
7
|
declare function __VLS_template(): {
|
|
8
8
|
attrs: Partial<{}>;
|
|
@@ -20,11 +20,11 @@ declare function __VLS_template(): {
|
|
|
20
20
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
21
21
|
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, {} & {
|
|
22
22
|
"handle-click": (val: any) => any;
|
|
23
|
-
"nav-layout": (val: any
|
|
23
|
+
"nav-layout": (val: any) => any;
|
|
24
24
|
"go-home": () => any;
|
|
25
25
|
}, string, import('../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<NavT> & Readonly<{
|
|
26
26
|
"onHandle-click"?: ((val: any) => any) | undefined;
|
|
27
|
-
"onNav-layout"?: ((val: any
|
|
27
|
+
"onNav-layout"?: ((val: any) => any) | undefined;
|
|
28
28
|
"onGo-home"?: (() => any) | undefined;
|
|
29
29
|
}>, {
|
|
30
30
|
isFlatten: boolean;
|
|
@@ -21,6 +21,8 @@ declare function __VLS_template(): {
|
|
|
21
21
|
readonly navData: import('./types.ts').NavItemT[];
|
|
22
22
|
readonly codeData?: import('./types.ts').CodeT | undefined;
|
|
23
23
|
readonly langData?: import('./types.ts').LangT | undefined;
|
|
24
|
+
readonly activeIndex: string | number;
|
|
25
|
+
readonly community?: string | undefined;
|
|
24
26
|
readonly "onHandle-click"?: ((val: any) => any) | undefined;
|
|
25
27
|
readonly "onOn-click"?: (() => any) | undefined;
|
|
26
28
|
readonly "onLang-click"?: ((val: LangItemT) => any) | undefined;
|
|
@@ -101,6 +103,8 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
101
103
|
readonly navData: import('./types.ts').NavItemT[];
|
|
102
104
|
readonly codeData?: import('./types.ts').CodeT | undefined;
|
|
103
105
|
readonly langData?: import('./types.ts').LangT | undefined;
|
|
106
|
+
readonly activeIndex: string | number;
|
|
107
|
+
readonly community?: string | undefined;
|
|
104
108
|
readonly "onHandle-click"?: ((val: any) => any) | undefined;
|
|
105
109
|
readonly "onOn-click"?: (() => any) | undefined;
|
|
106
110
|
readonly "onLang-click"?: ((val: LangItemT) => any) | undefined;
|
|
@@ -3,18 +3,18 @@ export interface OHeaderEmitsT {
|
|
|
3
3
|
(e: 'handle-mouseenter', val: any): void;
|
|
4
4
|
(e: 'handle-mouseleave', val: any): void;
|
|
5
5
|
(e: 'handle-click', val: any): void;
|
|
6
|
-
(e: 'nav-layout', val: any
|
|
6
|
+
(e: 'nav-layout', val: any): void;
|
|
7
7
|
}
|
|
8
8
|
declare const _default: import('../../../../vue/dist/vue.esm-bundler.js').DefineComponent<NavLiT, {}, {}, {}, {}, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {} & {
|
|
9
9
|
"handle-mouseenter": (val: any) => any;
|
|
10
10
|
"handle-mouseleave": (val: any) => any;
|
|
11
11
|
"handle-click": (val: any) => any;
|
|
12
|
-
"nav-layout": (val: any
|
|
12
|
+
"nav-layout": (val: any) => any;
|
|
13
13
|
}, string, import('../../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<NavLiT> & Readonly<{
|
|
14
14
|
"onHandle-mouseenter"?: ((val: any) => any) | undefined;
|
|
15
15
|
"onHandle-mouseleave"?: ((val: any) => any) | undefined;
|
|
16
16
|
"onHandle-click"?: ((val: any) => any) | undefined;
|
|
17
|
-
"onNav-layout"?: ((val: any
|
|
17
|
+
"onNav-layout"?: ((val: any) => any) | undefined;
|
|
18
18
|
}>, {}, {}, {}, {}, string, import('../../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, false, {
|
|
19
19
|
navRef: HTMLDivElement;
|
|
20
20
|
navListRef: HTMLUListElement;
|
|
@@ -2,11 +2,11 @@ import { App } from '../../../vue/dist/vue.esm-bundler.js';
|
|
|
2
2
|
declare const OHeader: {
|
|
3
3
|
new (...args: any[]): import('../../../vue/dist/vue.esm-bundler.js').CreateComponentPublicInstanceWithMixins<Readonly<import('./types').NavT> & Readonly<{
|
|
4
4
|
"onHandle-click"?: ((val: any) => any) | undefined;
|
|
5
|
-
"onNav-layout"?: ((val: any
|
|
5
|
+
"onNav-layout"?: ((val: any) => any) | undefined;
|
|
6
6
|
"onGo-home"?: (() => any) | undefined;
|
|
7
7
|
}>, {}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {} & {
|
|
8
8
|
"handle-click": (val: any) => any;
|
|
9
|
-
"nav-layout": (val: any
|
|
9
|
+
"nav-layout": (val: any) => any;
|
|
10
10
|
"go-home": () => any;
|
|
11
11
|
}, import('../../../vue/dist/vue.esm-bundler.js').PublicProps, {
|
|
12
12
|
isFlatten: boolean;
|
|
@@ -21,7 +21,7 @@ declare const OHeader: {
|
|
|
21
21
|
Defaults: {};
|
|
22
22
|
}, Readonly<import('./types').NavT> & Readonly<{
|
|
23
23
|
"onHandle-click"?: ((val: any) => any) | undefined;
|
|
24
|
-
"onNav-layout"?: ((val: any
|
|
24
|
+
"onNav-layout"?: ((val: any) => any) | undefined;
|
|
25
25
|
"onGo-home"?: (() => any) | undefined;
|
|
26
26
|
}>, {}, {}, {}, {}, {
|
|
27
27
|
isFlatten: boolean;
|
|
@@ -31,11 +31,11 @@ declare const OHeader: {
|
|
|
31
31
|
__isSuspense?: never;
|
|
32
32
|
} & import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('./types').NavT> & Readonly<{
|
|
33
33
|
"onHandle-click"?: ((val: any) => any) | undefined;
|
|
34
|
-
"onNav-layout"?: ((val: any
|
|
34
|
+
"onNav-layout"?: ((val: any) => any) | undefined;
|
|
35
35
|
"onGo-home"?: (() => any) | undefined;
|
|
36
36
|
}>, {}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {} & {
|
|
37
37
|
"handle-click": (val: any) => any;
|
|
38
|
-
"nav-layout": (val: any
|
|
38
|
+
"nav-layout": (val: any) => any;
|
|
39
39
|
"go-home": () => any;
|
|
40
40
|
}, string, {
|
|
41
41
|
isFlatten: boolean;
|
|
@@ -67,6 +67,8 @@ declare const OHeaderMobile: {
|
|
|
67
67
|
readonly navData: import('./types').NavItemT[];
|
|
68
68
|
readonly codeData?: import('./types').CodeT | undefined;
|
|
69
69
|
readonly langData?: import('./types').LangT | undefined;
|
|
70
|
+
readonly activeIndex: string | number;
|
|
71
|
+
readonly community?: string | undefined;
|
|
70
72
|
readonly "onHandle-click"?: ((val: any) => any) | undefined;
|
|
71
73
|
readonly "onOn-click"?: (() => any) | undefined;
|
|
72
74
|
readonly "onLang-click"?: ((val: import('./types').LangItemT) => any) | undefined;
|
|
@@ -56,7 +56,7 @@ export interface LangT {
|
|
|
56
56
|
}
|
|
57
57
|
export interface NavT {
|
|
58
58
|
logo: string;
|
|
59
|
-
community
|
|
59
|
+
community?: string;
|
|
60
60
|
navData: NavItemT[];
|
|
61
61
|
bgLeft?: string;
|
|
62
62
|
bgRight?: string;
|
|
@@ -69,13 +69,14 @@ export interface NavT {
|
|
|
69
69
|
}
|
|
70
70
|
export interface NavLiT {
|
|
71
71
|
navData: NavItemT[];
|
|
72
|
+
community?: string;
|
|
72
73
|
activeIndex: string | number;
|
|
73
74
|
hoverId: string | number;
|
|
74
75
|
}
|
|
75
76
|
export interface NavLiItemT {
|
|
76
77
|
itemData: NavItemT;
|
|
77
78
|
itemVisible: boolean;
|
|
78
|
-
community
|
|
79
|
+
community?: string;
|
|
79
80
|
bgLeft?: string;
|
|
80
81
|
bgRight?: string;
|
|
81
82
|
hoverIndex: string | number;
|
|
@@ -85,5 +86,7 @@ export interface NavMobileItemT {
|
|
|
85
86
|
navData: NavItemT[];
|
|
86
87
|
codeData?: CodeT;
|
|
87
88
|
langData?: LangT;
|
|
89
|
+
activeIndex: string | number;
|
|
90
|
+
community?: string;
|
|
88
91
|
}
|
|
89
92
|
export {};
|
|
@@ -255,7 +255,7 @@ declare function __VLS_template(): {
|
|
|
255
255
|
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<boolean | ((inputValue: string, lastValidInputValue: string) => string)>;
|
|
256
256
|
};
|
|
257
257
|
showPasswordEvent: {
|
|
258
|
-
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<"click" | "pointerdown">;
|
|
258
|
+
type: import('../../../vue/dist/vue.esm-bundler.js' /** 强制指定移动端模式,不传时由内部 lePadV 断点自动判断 */).PropType<"click" | "pointerdown">;
|
|
259
259
|
default: string;
|
|
260
260
|
};
|
|
261
261
|
autoWidth: {
|
|
@@ -739,7 +739,7 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
739
739
|
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<boolean | ((inputValue: string, lastValidInputValue: string) => string)>;
|
|
740
740
|
};
|
|
741
741
|
showPasswordEvent: {
|
|
742
|
-
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<"click" | "pointerdown">;
|
|
742
|
+
type: import('../../../vue/dist/vue.esm-bundler.js' /** 强制指定移动端模式,不传时由内部 lePadV 断点自动判断 */).PropType<"click" | "pointerdown">;
|
|
743
743
|
default: string;
|
|
744
744
|
};
|
|
745
745
|
autoWidth: {
|