@opendesign-plus-test/components 0.0.1-rc.100 → 0.0.1-rc.101
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 -0
- package/dist/components/header/components/HeaderNav.vue.d.ts +3 -0
- package/dist/components/header/index.d.ts +5 -0
- package/dist/components/header-user/OHeaderUser.vue.d.ts +2 -6
- package/dist/components/header-user/index.d.ts +3 -18
- package/dist/components.cjs.js +32 -32
- package/dist/components.css +1 -1
- package/dist/components.es.js +2435 -2431
- package/dist/treeshaking/_virtual/icon-locale.mjs +0 -1
- package/dist/treeshaking/components/header/OHeader.css +15 -15
- package/dist/treeshaking/components/header/OHeader.vue.d.ts +3 -0
- package/dist/treeshaking/components/header/OHeader.vue.mjs +1 -1
- package/dist/treeshaking/components/header/OHeader.vue2.mjs +8 -3
- package/dist/treeshaking/components/header/components/HeaderNav.css +53 -39
- package/dist/treeshaking/components/header/components/HeaderNav.vue.d.ts +3 -0
- package/dist/treeshaking/components/header/components/HeaderNav.vue.mjs +1 -1
- package/dist/treeshaking/components/header/components/HeaderNav.vue2.mjs +8 -2
- package/dist/treeshaking/components/header/index.d.ts +5 -0
- package/dist/treeshaking/components/header-user/OHeaderUser.css +43 -34
- package/dist/treeshaking/components/header-user/OHeaderUser.vue.d.ts +2 -6
- package/dist/treeshaking/components/header-user/OHeaderUser.vue.mjs +1 -1
- package/dist/treeshaking/components/header-user/OHeaderUser.vue2.mjs +20 -13
- package/dist/treeshaking/components/header-user/index.d.ts +3 -18
- package/dist/treeshaking/components/search/internal/SearchPanel.css +222 -104
- package/dist/treeshaking/components/search/internal/SearchPanel.vue.mjs +1 -1
- package/dist/treeshaking/components/search/internal/SearchPanel.vue2.mjs +3 -9
- package/package.json +3 -3
|
@@ -2,6 +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): void;
|
|
5
6
|
}
|
|
6
7
|
declare function __VLS_template(): {
|
|
7
8
|
attrs: Partial<{}>;
|
|
@@ -19,9 +20,11 @@ declare function __VLS_template(): {
|
|
|
19
20
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
20
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, {} & {
|
|
21
22
|
"handle-click": (val: any) => any;
|
|
23
|
+
"nav-layout": (val: any) => any;
|
|
22
24
|
"go-home": () => any;
|
|
23
25
|
}, string, import('../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<NavT> & Readonly<{
|
|
24
26
|
"onHandle-click"?: ((val: any) => any) | undefined;
|
|
27
|
+
"onNav-layout"?: ((val: any) => any) | undefined;
|
|
25
28
|
"onGo-home"?: (() => any) | undefined;
|
|
26
29
|
}>, {
|
|
27
30
|
isFlatten: boolean;
|
|
@@ -3,15 +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): void;
|
|
6
7
|
}
|
|
7
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, {} & {
|
|
8
9
|
"handle-mouseenter": (val: any) => any;
|
|
9
10
|
"handle-mouseleave": (val: any) => any;
|
|
10
11
|
"handle-click": (val: any) => any;
|
|
12
|
+
"nav-layout": (val: any) => any;
|
|
11
13
|
}, string, import('../../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<NavLiT> & Readonly<{
|
|
12
14
|
"onHandle-mouseenter"?: ((val: any) => any) | undefined;
|
|
13
15
|
"onHandle-mouseleave"?: ((val: any) => any) | undefined;
|
|
14
16
|
"onHandle-click"?: ((val: any) => any) | undefined;
|
|
17
|
+
"onNav-layout"?: ((val: any) => any) | undefined;
|
|
15
18
|
}>, {}, {}, {}, {}, string, import('../../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, false, {
|
|
16
19
|
navRef: HTMLDivElement;
|
|
17
20
|
navListRef: HTMLUListElement;
|
|
@@ -2,9 +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) => any) | undefined;
|
|
5
6
|
"onGo-home"?: (() => any) | undefined;
|
|
6
7
|
}>, {}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {} & {
|
|
7
8
|
"handle-click": (val: any) => any;
|
|
9
|
+
"nav-layout": (val: any) => any;
|
|
8
10
|
"go-home": () => any;
|
|
9
11
|
}, import('../../../vue/dist/vue.esm-bundler.js').PublicProps, {
|
|
10
12
|
isFlatten: boolean;
|
|
@@ -19,6 +21,7 @@ declare const OHeader: {
|
|
|
19
21
|
Defaults: {};
|
|
20
22
|
}, Readonly<import('./types').NavT> & Readonly<{
|
|
21
23
|
"onHandle-click"?: ((val: any) => any) | undefined;
|
|
24
|
+
"onNav-layout"?: ((val: any) => any) | undefined;
|
|
22
25
|
"onGo-home"?: (() => any) | undefined;
|
|
23
26
|
}>, {}, {}, {}, {}, {
|
|
24
27
|
isFlatten: boolean;
|
|
@@ -28,9 +31,11 @@ declare const OHeader: {
|
|
|
28
31
|
__isSuspense?: never;
|
|
29
32
|
} & import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('./types').NavT> & Readonly<{
|
|
30
33
|
"onHandle-click"?: ((val: any) => any) | undefined;
|
|
34
|
+
"onNav-layout"?: ((val: any) => any) | undefined;
|
|
31
35
|
"onGo-home"?: (() => any) | undefined;
|
|
32
36
|
}>, {}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {} & {
|
|
33
37
|
"handle-click": (val: any) => any;
|
|
38
|
+
"nav-layout": (val: any) => any;
|
|
34
39
|
"go-home": () => any;
|
|
35
40
|
}, string, {
|
|
36
41
|
isFlatten: boolean;
|
|
@@ -18,6 +18,7 @@ export interface UserPropsT {
|
|
|
18
18
|
userInfo?: UserInfoT;
|
|
19
19
|
options?: OptionsItemT[];
|
|
20
20
|
customSize?: number;
|
|
21
|
+
simple?: boolean;
|
|
21
22
|
}
|
|
22
23
|
export interface OHeaderUserEmitsT {
|
|
23
24
|
(e: 'login'): void;
|
|
@@ -30,11 +31,6 @@ declare const _default: import('../../../vue/dist/vue.esm-bundler.js').DefineCom
|
|
|
30
31
|
onLogin?: (() => any) | undefined;
|
|
31
32
|
onLogout?: (() => any) | undefined;
|
|
32
33
|
}>, {
|
|
33
|
-
|
|
34
|
-
lang: string;
|
|
35
|
-
customSize: number;
|
|
36
|
-
token: string;
|
|
37
|
-
noticeTotal: number;
|
|
38
|
-
userInfo: UserInfoT;
|
|
34
|
+
simple: boolean;
|
|
39
35
|
}, {}, {}, {}, string, import('../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
40
36
|
export default _default;
|
|
@@ -7,12 +7,7 @@ declare const OHeaderUser: {
|
|
|
7
7
|
login: () => any;
|
|
8
8
|
logout: () => any;
|
|
9
9
|
}, import('../../../vue/dist/vue.esm-bundler.js').PublicProps, {
|
|
10
|
-
|
|
11
|
-
lang: string;
|
|
12
|
-
customSize: number;
|
|
13
|
-
token: string;
|
|
14
|
-
noticeTotal: number;
|
|
15
|
-
userInfo: import('./OHeaderUser.vue').UserInfoT;
|
|
10
|
+
simple: boolean;
|
|
16
11
|
}, 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, {
|
|
17
12
|
P: {};
|
|
18
13
|
B: {};
|
|
@@ -24,12 +19,7 @@ declare const OHeaderUser: {
|
|
|
24
19
|
onLogin?: (() => any) | undefined;
|
|
25
20
|
onLogout?: (() => any) | undefined;
|
|
26
21
|
}>, {}, {}, {}, {}, {
|
|
27
|
-
|
|
28
|
-
lang: string;
|
|
29
|
-
customSize: number;
|
|
30
|
-
token: string;
|
|
31
|
-
noticeTotal: number;
|
|
32
|
-
userInfo: import('./OHeaderUser.vue').UserInfoT;
|
|
22
|
+
simple: boolean;
|
|
33
23
|
}>;
|
|
34
24
|
__isFragment?: never;
|
|
35
25
|
__isTeleport?: never;
|
|
@@ -41,12 +31,7 @@ declare const OHeaderUser: {
|
|
|
41
31
|
login: () => any;
|
|
42
32
|
logout: () => any;
|
|
43
33
|
}, string, {
|
|
44
|
-
|
|
45
|
-
lang: string;
|
|
46
|
-
customSize: number;
|
|
47
|
-
token: string;
|
|
48
|
-
noticeTotal: number;
|
|
49
|
-
userInfo: import('./OHeaderUser.vue').UserInfoT;
|
|
34
|
+
simple: boolean;
|
|
50
35
|
}, {}, 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
36
|
install(app: App): void;
|
|
52
37
|
};
|