@opendesign-plus-test/components 0.0.1-rc.122 → 0.0.1-rc.124
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.cjs.js +44 -36
- package/dist/components.css +1 -1
- package/dist/components.es.js +8799 -8766
- package/dist/treeshaking/_virtual/vue-router/dist/devtools-EWN81iOl.mjs.mjs +15 -0
- package/dist/treeshaking/_virtual/vue-router/dist/vue-router.mjs.mjs +14 -0
- package/dist/treeshaking/components/activity/OActivityApproval.css +1 -1
- package/dist/treeshaking/components/activity/OActivityMyCalendar.css +4 -4
- package/dist/treeshaking/components/common/TooltipText.vue.mjs +8 -0
- package/dist/treeshaking/components/events/OEventsApply.css +2 -2
- package/dist/treeshaking/components/events/OEventsCalendar.css +4 -4
- package/dist/treeshaking/components/events/OEventsList.css +7 -1
- package/dist/treeshaking/components/footer/OFooter.css +5 -5
- package/dist/treeshaking/components/header/OHeader.css +15 -15
- package/dist/treeshaking/components/header/OHeader.vue.mjs +1 -1
- package/dist/treeshaking/components/header/OHeader.vue2.mjs +26 -1
- package/dist/treeshaking/components/header/components/HeaderContent.css +186 -186
- package/dist/treeshaking/components/header/components/HeaderContent.vue.mjs +1 -1
- package/dist/treeshaking/components/header/components/HeaderContent.vue2.mjs +9 -3
- package/dist/treeshaking/components/header/components/HeaderNav.css +49 -49
- package/dist/treeshaking/components/header/components/HeaderNav.vue.mjs +1 -1
- package/dist/treeshaking/components/header/components/HeaderNav.vue2.mjs +11 -9
- package/dist/treeshaking/components/header/components/HeaderNavMobile.css +1 -1
- package/dist/treeshaking/components/header-language-switcher/OHeaderLanguageSwitcher.css +27 -51
- package/dist/treeshaking/components/header-language-switcher/OHeaderLanguageSwitcher.vue.mjs +1 -1
- package/dist/treeshaking/components/header-source-code/OHeaderSourceCode.css +1 -1
- package/dist/treeshaking/components/header-user/OHeaderUser.css +1 -1
- package/dist/treeshaking/components/meeting/OMeetingCalendar.css +30 -9
- package/dist/treeshaking/components/meeting/OMeetingCalendar.vue.mjs +4 -6
- package/dist/treeshaking/components/meeting/OMeetingForm.css +1 -1
- package/dist/treeshaking/components/meeting/OMeetingForm2.css +1 -1
- package/dist/treeshaking/components/meeting/OMeetingMyCalendar.css +3 -3
- package/dist/treeshaking/components/meeting/OMeetingPlayback.css +2 -2
- package/dist/treeshaking/components/meeting/OMeetingSigCalendar.css +1 -1
- package/dist/treeshaking/components/meeting/OMeetingSigCalendar.vue.mjs +7 -8
- package/dist/treeshaking/components/meeting/components/OMeetingCalendarList.css +33 -8
- package/dist/treeshaking/components/meeting/components/OMeetingDetail.css +38 -2
- package/dist/treeshaking/components/meeting/components/OMeetingPlaybackSubtitles.css +2 -2
- package/dist/treeshaking/components/meeting/components/OMeetingPlaybackVideo.css +1 -1
- package/dist/treeshaking/components/meeting/components/OMeetingSigAside.css +1 -1
- package/dist/treeshaking/components/search/OSearchInput.css +2 -2
- package/dist/treeshaking/components/search/internal/SearchPanel.css +5 -5
- package/package.json +3 -3
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import _sfc_main from "./HeaderContent.vue2.mjs";
|
|
2
2
|
import './HeaderContent.css';
|
|
3
3
|
import _export_sfc from "../../../_virtual/_plugin-vue_export-helper.mjs";
|
|
4
|
-
const HeaderContent = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
4
|
+
const HeaderContent = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-6983462d"]]);
|
|
5
5
|
export {
|
|
6
6
|
HeaderContent as default
|
|
7
7
|
};
|
|
@@ -73,6 +73,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
73
73
|
showTitle.value = target.clientHeight < target.scrollHeight;
|
|
74
74
|
};
|
|
75
75
|
const hoveringNavLiName = inject("hoveringNavLiName");
|
|
76
|
+
const navFirstHoverTime = inject("navFirstHoverTime");
|
|
77
|
+
const navStepCount = inject("navStepCount");
|
|
76
78
|
const onClickNavHref = (item, sub) => {
|
|
77
79
|
const res = {
|
|
78
80
|
properties: {
|
|
@@ -81,7 +83,9 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
81
83
|
level2: item.label,
|
|
82
84
|
level3: sub.label,
|
|
83
85
|
target: sub.label,
|
|
84
|
-
url: item.href
|
|
86
|
+
url: item.href,
|
|
87
|
+
...navStepCount && { steps: navStepCount.value },
|
|
88
|
+
...(navFirstHoverTime == null ? void 0 : navFirstHoverTime.value) && { duration: Date.now() - navFirstHoverTime.value }
|
|
85
89
|
}
|
|
86
90
|
};
|
|
87
91
|
return res;
|
|
@@ -91,10 +95,12 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
91
95
|
properties: {
|
|
92
96
|
module: "navigation",
|
|
93
97
|
level1: (hoveringNavLiName == null ? void 0 : hoveringNavLiName.value) ?? "",
|
|
94
|
-
level2:
|
|
98
|
+
level2: t("header.quickLink"),
|
|
95
99
|
level3: item.label,
|
|
96
100
|
target: item.label,
|
|
97
|
-
url: item.href
|
|
101
|
+
url: item.href,
|
|
102
|
+
...navStepCount && { steps: navStepCount.value },
|
|
103
|
+
...(navFirstHoverTime == null ? void 0 : navFirstHoverTime.value) && { duration: Date.now() - navFirstHoverTime.value }
|
|
98
104
|
}
|
|
99
105
|
};
|
|
100
106
|
return res;
|
|
@@ -1,47 +1,47 @@
|
|
|
1
|
-
.hover-icon-rotate .o-icon[data-v-
|
|
1
|
+
.hover-icon-rotate .o-icon[data-v-00cffd0d] {
|
|
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-00cffd0d] {
|
|
6
6
|
transform: rotate(-180deg);
|
|
7
7
|
}
|
|
8
8
|
}
|
|
9
|
-
.header-nav-wrap[data-v-
|
|
9
|
+
.header-nav-wrap[data-v-00cffd0d] {
|
|
10
10
|
height: 100%;
|
|
11
11
|
--nav-right: 64px;
|
|
12
12
|
}
|
|
13
13
|
@media (min-width: 1201px) and (max-width: 1680px) {
|
|
14
|
-
.header-nav-wrap[data-v-
|
|
14
|
+
.header-nav-wrap[data-v-00cffd0d] {
|
|
15
15
|
--nav-right: 48px;
|
|
16
16
|
}
|
|
17
17
|
}
|
|
18
18
|
@media (max-width: 1200px) {
|
|
19
|
-
.header-nav-wrap[data-v-
|
|
19
|
+
.header-nav-wrap[data-v-00cffd0d] {
|
|
20
20
|
--nav-right: 32px;
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
|
-
.header-nav-wrap .header-nav[data-v-
|
|
23
|
+
.header-nav-wrap .header-nav[data-v-00cffd0d] {
|
|
24
24
|
height: 100%;
|
|
25
25
|
display: flex;
|
|
26
26
|
justify-content: space-between;
|
|
27
27
|
width: calc(100% - var(--nav-right));
|
|
28
28
|
align-items: center;
|
|
29
29
|
}
|
|
30
|
-
.header-nav-wrap .header-nav-scroll[data-v-
|
|
30
|
+
.header-nav-wrap .header-nav-scroll[data-v-00cffd0d] {
|
|
31
31
|
width: calc(100% - var(--nav-right) - 24px);
|
|
32
32
|
}
|
|
33
|
-
.o-nav[data-v-
|
|
33
|
+
.o-nav[data-v-00cffd0d] {
|
|
34
34
|
height: 100%;
|
|
35
35
|
position: relative;
|
|
36
36
|
overflow-y: hidden;
|
|
37
37
|
overflow-x: auto;
|
|
38
38
|
z-index: 8;
|
|
39
39
|
}
|
|
40
|
-
.o-nav[data-v-
|
|
40
|
+
.o-nav[data-v-00cffd0d]::-webkit-scrollbar {
|
|
41
41
|
display: none;
|
|
42
42
|
}
|
|
43
|
-
.left-icon[data-v-
|
|
44
|
-
.right-icon[data-v-
|
|
43
|
+
.left-icon[data-v-00cffd0d],
|
|
44
|
+
.right-icon[data-v-00cffd0d] {
|
|
45
45
|
display: flex;
|
|
46
46
|
align-items: center;
|
|
47
47
|
cursor: pointer;
|
|
@@ -50,24 +50,24 @@
|
|
|
50
50
|
height: 16px;
|
|
51
51
|
border-radius: var(--o-radius-xs);
|
|
52
52
|
}
|
|
53
|
-
.left-icon .o-icon[data-v-
|
|
54
|
-
.right-icon .o-icon[data-v-
|
|
53
|
+
.left-icon .o-icon[data-v-00cffd0d],
|
|
54
|
+
.right-icon .o-icon[data-v-00cffd0d] {
|
|
55
55
|
--icon-size: 16px;
|
|
56
56
|
position: relative;
|
|
57
57
|
z-index: 11;
|
|
58
58
|
}
|
|
59
59
|
@media (hover: hover) {
|
|
60
|
-
.left-icon[data-v-
|
|
61
|
-
.right-icon[data-v-
|
|
60
|
+
.left-icon[data-v-00cffd0d]:hover,
|
|
61
|
+
.right-icon[data-v-00cffd0d]:hover {
|
|
62
62
|
background-color: var(--o-color-control2-light);
|
|
63
63
|
color: var(--o-color-link2);
|
|
64
64
|
}
|
|
65
65
|
}
|
|
66
|
-
.left-icon[data-v-
|
|
67
|
-
.right-icon[data-v-
|
|
66
|
+
.left-icon[data-v-00cffd0d]:active,
|
|
67
|
+
.right-icon[data-v-00cffd0d]:active {
|
|
68
68
|
color: var(--o-color-link3);
|
|
69
69
|
}
|
|
70
|
-
.left-icon[data-v-
|
|
70
|
+
.left-icon[data-v-00cffd0d]::before {
|
|
71
71
|
content: "";
|
|
72
72
|
position: absolute;
|
|
73
73
|
width: 50px;
|
|
@@ -79,16 +79,16 @@
|
|
|
79
79
|
cursor: default;
|
|
80
80
|
}
|
|
81
81
|
@media (min-width: 1201px) and (max-width: 1680px) {
|
|
82
|
-
.left-icon[data-v-
|
|
82
|
+
.left-icon[data-v-00cffd0d]::before {
|
|
83
83
|
top: -24px;
|
|
84
84
|
}
|
|
85
85
|
}
|
|
86
86
|
@media (max-width: 1200px) {
|
|
87
|
-
.left-icon[data-v-
|
|
87
|
+
.left-icon[data-v-00cffd0d]::before {
|
|
88
88
|
top: -20px;
|
|
89
89
|
}
|
|
90
90
|
}
|
|
91
|
-
.right-icon[data-v-
|
|
91
|
+
.right-icon[data-v-00cffd0d]::before {
|
|
92
92
|
content: "";
|
|
93
93
|
position: absolute;
|
|
94
94
|
width: 50px;
|
|
@@ -100,25 +100,25 @@
|
|
|
100
100
|
cursor: default;
|
|
101
101
|
}
|
|
102
102
|
@media (min-width: 1201px) and (max-width: 1680px) {
|
|
103
|
-
.right-icon[data-v-
|
|
103
|
+
.right-icon[data-v-00cffd0d]::before {
|
|
104
104
|
top: -24px;
|
|
105
105
|
}
|
|
106
106
|
}
|
|
107
107
|
@media (max-width: 1200px) {
|
|
108
|
-
.right-icon[data-v-
|
|
108
|
+
.right-icon[data-v-00cffd0d]::before {
|
|
109
109
|
top: -20px;
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
|
-
[data-o-theme*=dark] .left-icon[data-v-
|
|
112
|
+
[data-o-theme*=dark] .left-icon[data-v-00cffd0d]::before {
|
|
113
113
|
background-image: linear-gradient(90deg, rgba(var(--o-grey-4), 1) 0%, rgba(var(--o-grey-4), 0) 100%);
|
|
114
114
|
}
|
|
115
|
-
[data-o-theme*=dark] .right-icon[data-v-
|
|
115
|
+
[data-o-theme*=dark] .right-icon[data-v-00cffd0d]::before {
|
|
116
116
|
background-image: linear-gradient(90deg, rgba(var(--o-grey-4), 0) 0%, rgba(var(--o-grey-4), 1) 100%);
|
|
117
117
|
}
|
|
118
|
-
.o-nav-scroll[data-v-
|
|
118
|
+
.o-nav-scroll[data-v-00cffd0d]::after {
|
|
119
119
|
display: none;
|
|
120
120
|
}
|
|
121
|
-
.o-nav-list[data-v-
|
|
121
|
+
.o-nav-list[data-v-00cffd0d] {
|
|
122
122
|
display: flex;
|
|
123
123
|
height: 100%;
|
|
124
124
|
width: fit-content;
|
|
@@ -127,7 +127,7 @@
|
|
|
127
127
|
padding: 0;
|
|
128
128
|
margin: 0;
|
|
129
129
|
}
|
|
130
|
-
.o-nav-list li[data-v-
|
|
130
|
+
.o-nav-list li[data-v-00cffd0d] {
|
|
131
131
|
position: relative;
|
|
132
132
|
display: flex;
|
|
133
133
|
align-items: center;
|
|
@@ -135,10 +135,10 @@
|
|
|
135
135
|
color: var(--o-color-info1);
|
|
136
136
|
transition: all var(--o-duration-s) var(--o-easing-standard);
|
|
137
137
|
}
|
|
138
|
-
.o-nav-list li .nav-text[data-v-
|
|
138
|
+
.o-nav-list li .nav-text[data-v-00cffd0d] {
|
|
139
139
|
position: relative;
|
|
140
140
|
}
|
|
141
|
-
.o-nav-list li .nav-text[data-v-
|
|
141
|
+
.o-nav-list li .nav-text[data-v-00cffd0d]::after {
|
|
142
142
|
content: "";
|
|
143
143
|
position: absolute;
|
|
144
144
|
left: 0;
|
|
@@ -151,32 +151,32 @@
|
|
|
151
151
|
transition: all var(--o-duration-s) var(--o-easing-standard);
|
|
152
152
|
}
|
|
153
153
|
@media (max-width: 1440px) {
|
|
154
|
-
.o-nav-list li .nav-text[data-v-
|
|
154
|
+
.o-nav-list li .nav-text[data-v-00cffd0d]::after {
|
|
155
155
|
bottom: -21px;
|
|
156
156
|
}
|
|
157
157
|
}
|
|
158
158
|
@media (max-width: 1200px) {
|
|
159
|
-
.o-nav-list li .nav-text[data-v-
|
|
159
|
+
.o-nav-list li .nav-text[data-v-00cffd0d]::after {
|
|
160
160
|
bottom: -17px;
|
|
161
161
|
}
|
|
162
162
|
}
|
|
163
|
-
.o-nav-list li.is-selected .nav-text[data-v-
|
|
163
|
+
.o-nav-list li.is-selected .nav-text[data-v-00cffd0d] {
|
|
164
164
|
color: var(--o-color-primary2);
|
|
165
165
|
}
|
|
166
|
-
.o-nav-list li.is-active .nav-text[data-v-
|
|
166
|
+
.o-nav-list li.is-active .nav-text[data-v-00cffd0d] {
|
|
167
167
|
color: var(--o-color-primary1);
|
|
168
168
|
z-index: 99;
|
|
169
169
|
font-weight: 600;
|
|
170
170
|
}
|
|
171
|
-
.o-nav-list li.is-active .nav-text[data-v-
|
|
171
|
+
.o-nav-list li.is-active .nav-text[data-v-00cffd0d]::after {
|
|
172
172
|
content: "";
|
|
173
173
|
opacity: 1;
|
|
174
174
|
}
|
|
175
|
-
.o-nav-list li.is-disabled[data-v-
|
|
175
|
+
.o-nav-list li.is-disabled[data-v-00cffd0d] {
|
|
176
176
|
color: var(--o-color-info4);
|
|
177
177
|
pointer-events: none;
|
|
178
178
|
}
|
|
179
|
-
.o-nav-list .nav-item[data-v-
|
|
179
|
+
.o-nav-list .nav-item[data-v-00cffd0d] {
|
|
180
180
|
cursor: default;
|
|
181
181
|
display: flex;
|
|
182
182
|
align-items: center;
|
|
@@ -185,60 +185,60 @@
|
|
|
185
185
|
line-height: 24px;
|
|
186
186
|
}
|
|
187
187
|
@media (min-width: 1201px) and (max-width: 1680px) {
|
|
188
|
-
.o-nav-list .nav-item[data-v-
|
|
188
|
+
.o-nav-list .nav-item[data-v-00cffd0d] {
|
|
189
189
|
font-size: 14px;
|
|
190
190
|
line-height: 22px;
|
|
191
191
|
}
|
|
192
192
|
}
|
|
193
193
|
@media (min-width: 841px) and (max-width: 1200px) {
|
|
194
|
-
.o-nav-list .nav-item[data-v-
|
|
194
|
+
.o-nav-list .nav-item[data-v-00cffd0d] {
|
|
195
195
|
font-size: 14px;
|
|
196
196
|
line-height: 22px;
|
|
197
197
|
}
|
|
198
198
|
}
|
|
199
199
|
@media (min-width: 601px) and (max-width: 840px) {
|
|
200
|
-
.o-nav-list .nav-item[data-v-
|
|
200
|
+
.o-nav-list .nav-item[data-v-00cffd0d] {
|
|
201
201
|
font-size: 14px;
|
|
202
202
|
line-height: 22px;
|
|
203
203
|
}
|
|
204
204
|
}
|
|
205
205
|
@media (max-width: 600px) {
|
|
206
|
-
.o-nav-list .nav-item[data-v-
|
|
206
|
+
.o-nav-list .nav-item[data-v-00cffd0d] {
|
|
207
207
|
font-size: 12px;
|
|
208
208
|
line-height: 18px;
|
|
209
209
|
}
|
|
210
210
|
}
|
|
211
211
|
@media (max-width: 1440px) {
|
|
212
|
-
.o-nav-list .nav-item[data-v-
|
|
212
|
+
.o-nav-list .nav-item[data-v-00cffd0d] {
|
|
213
213
|
padding: 18px 12px;
|
|
214
214
|
}
|
|
215
215
|
}
|
|
216
216
|
@media (min-width: 841px) and (max-width: 1200px) {
|
|
217
|
-
.o-nav-list .nav-item[data-v-
|
|
217
|
+
.o-nav-list .nav-item[data-v-00cffd0d] {
|
|
218
218
|
padding: 14px 8px;
|
|
219
219
|
}
|
|
220
220
|
}
|
|
221
221
|
@media (min-width: 841px) and (max-width: 1000px) {
|
|
222
|
-
.o-nav-list .nav-item.en[data-v-
|
|
222
|
+
.o-nav-list .nav-item.en[data-v-00cffd0d] {
|
|
223
223
|
padding: var(--o-gap-2);
|
|
224
224
|
}
|
|
225
225
|
}
|
|
226
|
-
.o-nav-list .item-other[data-v-
|
|
226
|
+
.o-nav-list .item-other[data-v-00cffd0d] {
|
|
227
227
|
cursor: pointer;
|
|
228
228
|
}
|
|
229
|
-
.o-nav-list .item-other .content-tag[data-v-
|
|
229
|
+
.o-nav-list .item-other .content-tag[data-v-00cffd0d] {
|
|
230
230
|
margin-left: var(--o-gap-2);
|
|
231
231
|
--layout-pkg-radius: var(--o-radius-xs);
|
|
232
232
|
}
|
|
233
|
-
.o-nav-list .item-other:active .nav-text[data-v-
|
|
233
|
+
.o-nav-list .item-other:active .nav-text[data-v-00cffd0d] {
|
|
234
234
|
color: var(--o-color-primary1);
|
|
235
235
|
z-index: 99;
|
|
236
236
|
font-weight: 600;
|
|
237
237
|
}
|
|
238
|
-
.o-nav-list .item-other:active .nav-text[data-v-
|
|
238
|
+
.o-nav-list .item-other:active .nav-text[data-v-00cffd0d]::after {
|
|
239
239
|
content: "";
|
|
240
240
|
opacity: 1;
|
|
241
241
|
}
|
|
242
|
-
.mindspore .item-other .content-tag[data-v-
|
|
242
|
+
.mindspore .item-other .content-tag[data-v-00cffd0d] {
|
|
243
243
|
--layout-pkg-radius: 100vh;
|
|
244
244
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import _sfc_main from "./HeaderNav.vue2.mjs";
|
|
2
2
|
import './HeaderNav.css';
|
|
3
3
|
import _export_sfc from "../../../_virtual/_plugin-vue_export-helper.mjs";
|
|
4
|
-
const HeaderNav = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
4
|
+
const HeaderNav = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-00cffd0d"]]);
|
|
5
5
|
export {
|
|
6
6
|
HeaderNav as default
|
|
7
7
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent, ref, onMounted, nextTick, onUnmounted, resolveDirective, openBlock, createElementBlock, createElementVNode, normalizeClass, createVNode, unref, withCtx, createCommentVNode, Fragment, renderList, withDirectives, toDisplayString, createBlock, createTextVNode } from "vue";
|
|
1
|
+
import { defineComponent, ref, inject, onMounted, nextTick, onUnmounted, resolveDirective, openBlock, createElementBlock, createElementVNode, normalizeClass, createVNode, unref, withCtx, createCommentVNode, Fragment, renderList, withDirectives, toDisplayString, createBlock, createTextVNode } from "vue";
|
|
2
2
|
import { OIcon, OTag } from "@opensig/opendesign";
|
|
3
3
|
import IconCaretLeft from "../../../_virtual/icon-caret-left.mjs";
|
|
4
4
|
import IconCaretRight from "../../../_virtual/icon-caret-right.mjs";
|
|
@@ -82,13 +82,15 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
82
82
|
}, 200);
|
|
83
83
|
}
|
|
84
84
|
};
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
const
|
|
85
|
+
const navFirstHoverTime = inject("navFirstHoverTime");
|
|
86
|
+
const navStepCount = inject("navStepCount");
|
|
87
|
+
const increNavStepCount = inject("increNavStepCount");
|
|
88
|
+
const updateNavFirstHoverTime = inject("updateNavFirstHoverTime");
|
|
89
|
+
const clearNavHandleTrace = inject("clearNavHandleTrace");
|
|
90
|
+
const onHoverHeader = () => clearNavHandleTrace == null ? void 0 : clearNavHandleTrace();
|
|
88
91
|
const onHoverNav = (name) => {
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
hoverTime = Date.now();
|
|
92
|
+
updateNavFirstHoverTime == null ? void 0 : updateNavFirstHoverTime();
|
|
93
|
+
increNavStepCount == null ? void 0 : increNavStepCount();
|
|
92
94
|
return {
|
|
93
95
|
event: "hover",
|
|
94
96
|
properties: {
|
|
@@ -104,9 +106,9 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
104
106
|
module: "navigation",
|
|
105
107
|
level1: item.label,
|
|
106
108
|
target: item.label,
|
|
107
|
-
steps,
|
|
109
|
+
...navStepCount && { steps: navStepCount.value },
|
|
108
110
|
url: item.href,
|
|
109
|
-
duration: Date.now() -
|
|
111
|
+
...(navFirstHoverTime == null ? void 0 : navFirstHoverTime.value) && { duration: Date.now() - navFirstHoverTime.value }
|
|
110
112
|
}
|
|
111
113
|
};
|
|
112
114
|
return res;
|
|
@@ -1,43 +1,43 @@
|
|
|
1
|
-
.hover-icon-rotate .o-icon[data-v-
|
|
1
|
+
.hover-icon-rotate .o-icon[data-v-2620f484] {
|
|
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-2620f484] {
|
|
6
6
|
transform: rotate(-180deg);
|
|
7
7
|
}
|
|
8
8
|
}
|
|
9
|
-
.hide-lang[data-v-
|
|
9
|
+
.hide-lang[data-v-2620f484] {
|
|
10
10
|
display: none;
|
|
11
11
|
}
|
|
12
|
-
.header-lang[data-v-
|
|
12
|
+
.header-lang[data-v-2620f484] {
|
|
13
13
|
height: 100%;
|
|
14
14
|
display: flex;
|
|
15
15
|
align-items: center;
|
|
16
16
|
}
|
|
17
|
-
.header-lang .info-wrap[data-v-
|
|
17
|
+
.header-lang .info-wrap[data-v-2620f484] {
|
|
18
18
|
height: 100%;
|
|
19
19
|
display: flex;
|
|
20
20
|
align-items: center;
|
|
21
21
|
cursor: pointer;
|
|
22
22
|
}
|
|
23
|
-
.header-lang .info-wrap .icon[data-v-
|
|
23
|
+
.header-lang .info-wrap .icon[data-v-2620f484] {
|
|
24
24
|
font-size: var(--o-icon_size_control-m);
|
|
25
25
|
position: relative;
|
|
26
26
|
color: var(--o-color-info2);
|
|
27
27
|
}
|
|
28
28
|
@media (hover: hover) {
|
|
29
|
-
.header-lang .info-wrap .icon[data-v-
|
|
29
|
+
.header-lang .info-wrap .icon[data-v-2620f484]:hover {
|
|
30
30
|
color: var(--o-color-primary2);
|
|
31
31
|
background-color: var(--o-color-control2-light);
|
|
32
32
|
border-radius: var(--o-radius-xs);
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
35
|
@media (max-width: 1200px) {
|
|
36
|
-
.header-lang .info-wrap .icon[data-v-
|
|
36
|
+
.header-lang .info-wrap .icon[data-v-2620f484] {
|
|
37
37
|
font-size: var(--o-icon_size_control-s);
|
|
38
38
|
}
|
|
39
39
|
}
|
|
40
|
-
.header-lang .info-wrap .locale-tag[data-v-
|
|
40
|
+
.header-lang .info-wrap .locale-tag[data-v-2620f484] {
|
|
41
41
|
position: absolute;
|
|
42
42
|
font-size: 10px;
|
|
43
43
|
height: 12px;
|
|
@@ -49,28 +49,28 @@
|
|
|
49
49
|
left: 12px;
|
|
50
50
|
top: 11px;
|
|
51
51
|
}
|
|
52
|
-
.header-lang .info-wrap .locale-tag.is-en[data-v-
|
|
52
|
+
.header-lang .info-wrap .locale-tag.is-en[data-v-2620f484] {
|
|
53
53
|
width: 16px;
|
|
54
54
|
}
|
|
55
|
-
.header-lang.is-disabled .info-wrap[data-v-
|
|
55
|
+
.header-lang.is-disabled .info-wrap[data-v-2620f484] {
|
|
56
56
|
color: var(--o-color-info4);
|
|
57
57
|
cursor: not-allowed;
|
|
58
58
|
}
|
|
59
|
-
.header-lang.is-disabled .info-wrap[data-v-
|
|
59
|
+
.header-lang.is-disabled .info-wrap[data-v-2620f484]:hover {
|
|
60
60
|
color: var(--o-color-info4);
|
|
61
61
|
}
|
|
62
|
-
.header-lang.is-disabled .info-wrap .o-icon[data-v-
|
|
62
|
+
.header-lang.is-disabled .info-wrap .o-icon[data-v-2620f484] {
|
|
63
63
|
color: inherit;
|
|
64
64
|
}
|
|
65
65
|
@media (hover: hover) {
|
|
66
|
-
.header-lang.is-disabled .info-wrap .o-icon[data-v-
|
|
66
|
+
.header-lang.is-disabled .info-wrap .o-icon[data-v-2620f484]:hover {
|
|
67
67
|
background-color: transparent;
|
|
68
68
|
}
|
|
69
69
|
}
|
|
70
|
-
.o-dropdown[data-v-
|
|
70
|
+
.o-dropdown[data-v-2620f484] {
|
|
71
71
|
height: 100%;
|
|
72
72
|
}
|
|
73
|
-
.o-dropdown-item[data-v-
|
|
73
|
+
.o-dropdown-item[data-v-2620f484] {
|
|
74
74
|
background: var(--o-color-control5-light);
|
|
75
75
|
cursor: pointer;
|
|
76
76
|
--dropdown-item-color: var(--o-color-info2);
|
|
@@ -80,69 +80,45 @@
|
|
|
80
80
|
--dropdown-item-text-height: 22px;
|
|
81
81
|
}
|
|
82
82
|
@media (hover: hover) {
|
|
83
|
-
.o-dropdown-item[data-v-
|
|
83
|
+
.o-dropdown-item[data-v-2620f484]:hover {
|
|
84
84
|
background: var(--o-color-control2-light);
|
|
85
85
|
}
|
|
86
86
|
}
|
|
87
|
-
.o-dropdown-item[data-v-
|
|
87
|
+
.o-dropdown-item[data-v-2620f484]:active {
|
|
88
88
|
color: var(--o-color-primary1);
|
|
89
89
|
background: var(--o-color-control3-light);
|
|
90
90
|
font-weight: 600;
|
|
91
91
|
}
|
|
92
|
-
.o-dropdown-item.is-active[data-v-
|
|
92
|
+
.o-dropdown-item.is-active[data-v-2620f484] {
|
|
93
93
|
color: var(--o-color-primary1);
|
|
94
94
|
background: var(--o-color-control3-light);
|
|
95
95
|
}
|
|
96
|
-
.mobile-change-language[data-v-
|
|
96
|
+
.mobile-change-language[data-v-2620f484] {
|
|
97
97
|
display: flex;
|
|
98
98
|
align-items: center;
|
|
99
99
|
}
|
|
100
|
-
.mobile-change-language .o-divider[data-v-
|
|
100
|
+
.mobile-change-language .o-divider[data-v-2620f484] {
|
|
101
101
|
margin: 0 var(--o-gap-2);
|
|
102
102
|
height: 8px;
|
|
103
103
|
background-color: var(--o-color-control4);
|
|
104
104
|
}
|
|
105
|
-
.mobile-change-language span[data-v-
|
|
105
|
+
.mobile-change-language span[data-v-2620f484] {
|
|
106
106
|
color: var(--o-color-info1);
|
|
107
107
|
text-align: center;
|
|
108
108
|
cursor: pointer;
|
|
109
|
-
font-size:
|
|
110
|
-
line-height:
|
|
109
|
+
font-size: 14px;
|
|
110
|
+
line-height: 22px;
|
|
111
111
|
}
|
|
112
|
-
|
|
113
|
-
.mobile-change-language span[data-v-aa8e9f71] {
|
|
114
|
-
font-size: 14px;
|
|
115
|
-
line-height: 22px;
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
@media (min-width: 841px) and (max-width: 1200px) {
|
|
119
|
-
.mobile-change-language span[data-v-aa8e9f71] {
|
|
120
|
-
font-size: 14px;
|
|
121
|
-
line-height: 22px;
|
|
122
|
-
}
|
|
123
|
-
}
|
|
124
|
-
@media (min-width: 601px) and (max-width: 840px) {
|
|
125
|
-
.mobile-change-language span[data-v-aa8e9f71] {
|
|
126
|
-
font-size: 14px;
|
|
127
|
-
line-height: 22px;
|
|
128
|
-
}
|
|
129
|
-
}
|
|
130
|
-
@media (max-width: 600px) {
|
|
131
|
-
.mobile-change-language span[data-v-aa8e9f71] {
|
|
132
|
-
font-size: 12px;
|
|
133
|
-
line-height: 18px;
|
|
134
|
-
}
|
|
135
|
-
}
|
|
136
|
-
.mobile-change-language span.active[data-v-aa8e9f71] {
|
|
112
|
+
.mobile-change-language span.active[data-v-2620f484] {
|
|
137
113
|
color: var(--o-color-primary1);
|
|
138
114
|
font-weight: 500;
|
|
139
115
|
}
|
|
140
|
-
.mobile-change-language.is-disabled span[data-v-
|
|
116
|
+
.mobile-change-language.is-disabled span[data-v-2620f484] {
|
|
141
117
|
color: var(--o-color-info4);
|
|
142
118
|
cursor: not-allowed;
|
|
143
119
|
}
|
|
144
120
|
@media (hover: hover) {
|
|
145
|
-
.mobile-change-language.is-disabled span[data-v-
|
|
121
|
+
.mobile-change-language.is-disabled span[data-v-2620f484]:hover {
|
|
146
122
|
color: var(--o-color-info4);
|
|
147
123
|
}
|
|
148
124
|
}
|
package/dist/treeshaking/components/header-language-switcher/OHeaderLanguageSwitcher.vue.mjs
CHANGED
|
@@ -2,7 +2,7 @@ import _sfc_main from "./OHeaderLanguageSwitcher.vue2.mjs";
|
|
|
2
2
|
import './OHeaderLanguageSwitcher.css';
|
|
3
3
|
import './OHeaderLanguageSwitcher2.css';
|
|
4
4
|
import _export_sfc from "../../_virtual/_plugin-vue_export-helper.mjs";
|
|
5
|
-
const _OHeaderLanguageSwitcher = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
5
|
+
const _OHeaderLanguageSwitcher = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-2620f484"]]);
|
|
6
6
|
export {
|
|
7
7
|
_OHeaderLanguageSwitcher as default
|
|
8
8
|
};
|
|
@@ -660,7 +660,7 @@
|
|
|
660
660
|
}
|
|
661
661
|
@media (min-width: 1201px) and (max-width: 1680px) {
|
|
662
662
|
.o-meeting-calendar .calendar-body .calender .el-calendar-day .out-box {
|
|
663
|
-
font-size:
|
|
663
|
+
font-size: 14px;
|
|
664
664
|
line-height: 18px;
|
|
665
665
|
}
|
|
666
666
|
}
|
|
@@ -705,6 +705,13 @@
|
|
|
705
705
|
color: var(--o-color-white);
|
|
706
706
|
height: 16px;
|
|
707
707
|
}
|
|
708
|
+
@media (min-width: 841px) {
|
|
709
|
+
.o-meeting-calendar .calendar-body .calender .el-calendar-day .out-box .icon-box {
|
|
710
|
+
position: absolute;
|
|
711
|
+
left: 12px;
|
|
712
|
+
bottom: 8px;
|
|
713
|
+
}
|
|
714
|
+
}
|
|
708
715
|
.o-meeting-calendar .calendar-body .calender .el-calendar-day .out-box .icon-box .o-icon {
|
|
709
716
|
flex-shrink: 0;
|
|
710
717
|
position: relative;
|
|
@@ -994,29 +1001,43 @@
|
|
|
994
1001
|
}
|
|
995
1002
|
.o-meeting-calendar .calendar-body .detail-list .o-tab .o-tab-navs-container {
|
|
996
1003
|
margin: 0 var(--o-gap-5);
|
|
1004
|
+
}
|
|
1005
|
+
@media (min-width: 841px) and (max-width: 1200px) {
|
|
1006
|
+
.o-meeting-calendar .calendar-body .detail-list .o-tab .o-tab-navs-container {
|
|
1007
|
+
margin: 0 var(--o-gap-3);
|
|
1008
|
+
}
|
|
1009
|
+
}
|
|
1010
|
+
@media (min-width: 601px) and (max-width: 840px) {
|
|
1011
|
+
.o-meeting-calendar .calendar-body .detail-list .o-tab .o-tab-navs-container {
|
|
1012
|
+
margin: 0;
|
|
1013
|
+
}
|
|
1014
|
+
}
|
|
1015
|
+
@media (max-width: 600px) {
|
|
1016
|
+
.o-meeting-calendar .calendar-body .detail-list .o-tab .o-tab-navs-container {
|
|
1017
|
+
margin: 0;
|
|
1018
|
+
}
|
|
1019
|
+
}
|
|
1020
|
+
.o-meeting-calendar .calendar-body .detail-list .o-tab .o-tab-navs-container .o-tab-nav {
|
|
997
1021
|
--tab-nav-gap: var(--o-gap-6);
|
|
998
1022
|
}
|
|
999
1023
|
@media (min-width: 1201px) and (max-width: 1680px) {
|
|
1000
|
-
.o-meeting-calendar .calendar-body .detail-list .o-tab .o-tab-navs-container {
|
|
1024
|
+
.o-meeting-calendar .calendar-body .detail-list .o-tab .o-tab-navs-container .o-tab-nav {
|
|
1001
1025
|
--tab-nav-gap: var(--o-gap-5);
|
|
1002
1026
|
}
|
|
1003
1027
|
}
|
|
1004
1028
|
@media (min-width: 841px) and (max-width: 1200px) {
|
|
1005
|
-
.o-meeting-calendar .calendar-body .detail-list .o-tab .o-tab-navs-container {
|
|
1029
|
+
.o-meeting-calendar .calendar-body .detail-list .o-tab .o-tab-navs-container .o-tab-nav {
|
|
1006
1030
|
--tab-nav-gap: var(--o-gap-4);
|
|
1007
|
-
margin: 0 var(--o-gap-3);
|
|
1008
1031
|
}
|
|
1009
1032
|
}
|
|
1010
1033
|
@media (min-width: 601px) and (max-width: 840px) {
|
|
1011
|
-
.o-meeting-calendar .calendar-body .detail-list .o-tab .o-tab-navs-container {
|
|
1034
|
+
.o-meeting-calendar .calendar-body .detail-list .o-tab .o-tab-navs-container .o-tab-nav {
|
|
1012
1035
|
--tab-nav-gap: var(--o-gap-4);
|
|
1013
|
-
margin: 0;
|
|
1014
1036
|
}
|
|
1015
1037
|
}
|
|
1016
1038
|
@media (max-width: 600px) {
|
|
1017
|
-
.o-meeting-calendar .calendar-body .detail-list .o-tab .o-tab-navs-container {
|
|
1039
|
+
.o-meeting-calendar .calendar-body .detail-list .o-tab .o-tab-navs-container .o-tab-nav {
|
|
1018
1040
|
--tab-nav-gap: var(--o-gap-4);
|
|
1019
|
-
margin: 0;
|
|
1020
1041
|
}
|
|
1021
1042
|
}
|
|
1022
1043
|
.o-meeting-calendar .calendar-body .detail-list .o-tab.hide-icons .o-tab-nav-list .o-icon {
|
|
@@ -1058,7 +1079,7 @@
|
|
|
1058
1079
|
}
|
|
1059
1080
|
@media (min-width: 1201px) and (max-width: 1680px) {
|
|
1060
1081
|
.o-meeting-calendar .empty-result .o-result-description {
|
|
1061
|
-
font-size:
|
|
1082
|
+
font-size: 14px;
|
|
1062
1083
|
line-height: 18px;
|
|
1063
1084
|
}
|
|
1064
1085
|
}
|