@opendesign-plus-test/components 0.0.1-rc.102 → 0.0.1-rc.103
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/components/HeaderNav.vue.d.ts +3 -3
- package/dist/components/header/index.d.ts +5 -5
- package/dist/components/header/types.d.ts +2 -2
- package/dist/components/header-search/OHeaderSearch.vue.d.ts +8 -8
- package/dist/components/header-search/index.d.ts +3 -3
- package/dist/components/search/OSearchInput.vue.d.ts +6 -6
- package/dist/components/search/index.d.ts +3 -3
- package/dist/components/search/internal/SearchImageInput.vue.d.ts +1 -1
- package/dist/components.cjs.js +36 -36
- package/dist/components.css +1 -1
- package/dist/components.es.js +4731 -4730
- 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 +2 -2
- package/dist/treeshaking/components/header/components/HeaderContent.css +169 -169
- package/dist/treeshaking/components/header/components/HeaderContent.vue.mjs +1 -1
- package/dist/treeshaking/components/header/components/HeaderContent.vue2.mjs +10 -3
- package/dist/treeshaking/components/header/components/HeaderNav.css +51 -39
- 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 +6 -5
- package/dist/treeshaking/components/header/components/HeaderNavMobile.css +73 -73
- package/dist/treeshaking/components/header/components/HeaderNavMobile.vue.mjs +1 -1
- package/dist/treeshaking/components/header/components/HeaderNavMobile.vue2.mjs +10 -10
- package/dist/treeshaking/components/header/index.d.ts +5 -5
- package/dist/treeshaking/components/header/types.d.ts +2 -2
- package/dist/treeshaking/components/header-language-switcher/OHeaderLanguageSwitcher.css +32 -33
- package/dist/treeshaking/components/header-language-switcher/OHeaderLanguageSwitcher.vue.mjs +1 -1
- package/package.json +1 -1
|
@@ -1,35 +1,35 @@
|
|
|
1
|
-
.hover-icon-rotate .o-icon[data-v-
|
|
1
|
+
.hover-icon-rotate .o-icon[data-v-8c4ebd22] {
|
|
2
2
|
transition: all var(--o-duration-m1) var(--o-easing-standard-in);
|
|
3
3
|
}
|
|
4
4
|
@media (hover: hover) {
|
|
5
|
-
.hover-icon-rotate:hover .o-icon[data-v-
|
|
5
|
+
.hover-icon-rotate:hover .o-icon[data-v-8c4ebd22] {
|
|
6
6
|
transform: rotate(-180deg);
|
|
7
7
|
}
|
|
8
8
|
}
|
|
9
|
-
.header[data-v-
|
|
9
|
+
.header[data-v-8c4ebd22] {
|
|
10
10
|
--o-header-height: 72px;
|
|
11
11
|
--o-header-content-max-width: 1488px;
|
|
12
12
|
--o-header-content-padding: 0;
|
|
13
13
|
}
|
|
14
14
|
@media (max-width: 1680px) {
|
|
15
|
-
.header[data-v-
|
|
15
|
+
.header[data-v-8c4ebd22] {
|
|
16
16
|
--o-header-content-max-width: 100%;
|
|
17
17
|
--o-header-content-padding: 64px;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
20
|
@media (max-width: 1440px) {
|
|
21
|
-
.header[data-v-
|
|
21
|
+
.header[data-v-8c4ebd22] {
|
|
22
22
|
--o-header-height: 64px;
|
|
23
23
|
--o-header-content-padding: 40px;
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
26
|
@media (max-width: 1200px) {
|
|
27
|
-
.header[data-v-
|
|
27
|
+
.header[data-v-8c4ebd22] {
|
|
28
28
|
--o-header-height: 56px;
|
|
29
29
|
--o-header-content-padding: 32px;
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
|
-
.header-wrap[data-v-
|
|
32
|
+
.header-wrap[data-v-8c4ebd22] {
|
|
33
33
|
background-color: var(--o-color-fill2);
|
|
34
34
|
position: fixed;
|
|
35
35
|
left: 0;
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
backdrop-filter: blur(5px);
|
|
41
41
|
height: var(--o-header-height);
|
|
42
42
|
}
|
|
43
|
-
.header-content[data-v-
|
|
43
|
+
.header-content[data-v-8c4ebd22] {
|
|
44
44
|
display: flex;
|
|
45
45
|
align-items: center;
|
|
46
46
|
height: 100%;
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
margin: 0 auto;
|
|
49
49
|
padding: 0 var(--o-header-content-padding);
|
|
50
50
|
}
|
|
51
|
-
.header-logo[data-v-
|
|
51
|
+
.header-logo[data-v-8c4ebd22] {
|
|
52
52
|
height: 100%;
|
|
53
53
|
display: flex;
|
|
54
54
|
align-items: center;
|
|
@@ -56,27 +56,27 @@
|
|
|
56
56
|
margin-right: 24px;
|
|
57
57
|
flex-shrink: 0;
|
|
58
58
|
}
|
|
59
|
-
.logo[data-v-
|
|
59
|
+
.logo[data-v-8c4ebd22] {
|
|
60
60
|
height: 32px;
|
|
61
61
|
}
|
|
62
|
-
.header-nav-top[data-v-
|
|
62
|
+
.header-nav-top[data-v-8c4ebd22] {
|
|
63
63
|
flex: 1;
|
|
64
64
|
height: 100%;
|
|
65
65
|
min-width: 0;
|
|
66
66
|
overflow: hidden;
|
|
67
67
|
position: relative;
|
|
68
68
|
}
|
|
69
|
-
.header-nav-flatten[data-v-
|
|
69
|
+
.header-nav-flatten[data-v-8c4ebd22] {
|
|
70
70
|
flex: 1;
|
|
71
71
|
height: 100%;
|
|
72
72
|
min-width: 0;
|
|
73
73
|
position: relative;
|
|
74
74
|
}
|
|
75
|
-
.header-toolbar[data-v-
|
|
75
|
+
.header-toolbar[data-v-8c4ebd22] {
|
|
76
76
|
height: 100%;
|
|
77
77
|
position: relative;
|
|
78
78
|
}
|
|
79
|
-
.header-nav-content[data-v-
|
|
79
|
+
.header-nav-content[data-v-8c4ebd22] {
|
|
80
80
|
position: fixed;
|
|
81
81
|
top: var(--o-header-height);
|
|
82
82
|
left: 0;
|
|
@@ -86,6 +86,6 @@
|
|
|
86
86
|
box-shadow: var(--o-shadow-1);
|
|
87
87
|
overflow: hidden;
|
|
88
88
|
}
|
|
89
|
-
[data-o-theme*=dark] .header-wrap[data-v-
|
|
89
|
+
[data-o-theme*=dark] .header-wrap[data-v-8c4ebd22] {
|
|
90
90
|
border-bottom: 1px solid var(--o-color-control4);
|
|
91
91
|
}
|
|
@@ -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): void;
|
|
5
|
+
(e: 'nav-layout', val: any, leng: number): 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').DefineComponent<NavT, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
22
22
|
"handle-click": (val: any) => any;
|
|
23
|
-
"nav-layout": (val: any) => any;
|
|
23
|
+
"nav-layout": (val: any, leng: number) => any;
|
|
24
24
|
"go-home": () => any;
|
|
25
25
|
}, string, import('vue').PublicProps, Readonly<NavT> & Readonly<{
|
|
26
26
|
"onHandle-click"?: ((val: any) => any) | undefined;
|
|
27
|
-
"onNav-layout"?: ((val: any) => any) | undefined;
|
|
27
|
+
"onNav-layout"?: ((val: any, leng: number) => any) | undefined;
|
|
28
28
|
"onGo-home"?: (() => any) | undefined;
|
|
29
29
|
}>, {
|
|
30
30
|
isFlatten: boolean;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import _sfc_main from "./OHeader.vue2.mjs";
|
|
2
2
|
import './OHeader.css';
|
|
3
3
|
import _export_sfc from "../../_virtual/_plugin-vue_export-helper.mjs";
|
|
4
|
-
const _OHeader = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
4
|
+
const _OHeader = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-8c4ebd22"]]);
|
|
5
5
|
export {
|
|
6
6
|
_OHeader as default
|
|
7
7
|
};
|
|
@@ -102,8 +102,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
102
102
|
const onMousemoveHeader = (e) => {
|
|
103
103
|
lastMousePos.value = { x: e.clientX, y: e.clientY };
|
|
104
104
|
};
|
|
105
|
-
const navLayout = (val) => {
|
|
106
|
-
emit("nav-layout", val);
|
|
105
|
+
const navLayout = (val, leng) => {
|
|
106
|
+
emit("nav-layout", val, leng);
|
|
107
107
|
};
|
|
108
108
|
const goHome = () => {
|
|
109
109
|
emit("go-home");
|