@opendesign-plus-test/components 0.0.1-rc.42 → 0.0.1-rc.45
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/chunk-OElCookieNotice.cjs.js +1 -1
- package/dist/chunk-OElCookieNotice.es.js +132 -112
- package/dist/components/OHeaderSearch.vue.d.ts +824 -506
- package/dist/components/OSourceCode.vue.d.ts +4 -6
- package/dist/components/activity/OActivityApproval.vue.d.ts +6 -10
- package/dist/components/activity/OActivityForm.vue.d.ts +3 -5
- package/dist/components/activity/OMyActivityCalendar.vue.d.ts +100 -46
- package/dist/components/activity/index.d.ts +56 -33
- package/dist/components/activity/types.d.ts +8 -1
- package/dist/components/events/config.d.ts +5 -18
- package/dist/components/events/types.d.ts +4 -1
- package/dist/components/header/OHeaderMobile.vue.d.ts +18 -11
- package/dist/components/header/components/HeaderNavMobile.vue.d.ts +4 -1
- package/dist/components/header/index.d.ts +12 -5
- package/dist/components/header/types.d.ts +4 -0
- package/dist/components/meeting/OMeetingCalendar.vue.d.ts +8 -12
- package/dist/components/meeting/OMeetingForm.vue.d.ts +3 -5
- package/dist/components/meeting/OMeetingPlayback.vue.d.ts +45 -0
- package/dist/components/meeting/OMyMeetingCalendar.vue.d.ts +100 -46
- package/dist/components/meeting/components/OMeetingCalendarList.vue.d.ts +1 -1
- package/dist/components/meeting/index.d.ts +817 -0
- package/dist/components/meeting/types.d.ts +82 -17
- package/dist/components/meeting/utils.d.ts +1 -1
- package/dist/components/search/OSearchInput.vue.d.ts +1003 -0
- package/dist/components/search/composables/useImageSearch.d.ts +48 -0
- package/dist/components/search/composables/useKeywordHighlight.d.ts +2 -0
- package/dist/components/search/composables/useSearchHistory.d.ts +14 -0
- package/dist/components/search/index.d.ts +590 -0
- package/dist/components/search/internal/HighlightText.vue.d.ts +9 -0
- package/dist/components/search/internal/SearchImageInput.vue.d.ts +716 -0
- package/dist/components/search/internal/SearchPanel.vue.d.ts +100 -0
- package/dist/components/search/types.d.ts +20 -0
- package/dist/components.cjs.js +43 -43
- package/dist/components.css +1 -1
- package/dist/components.es.js +11681 -10636
- package/dist/index.d.ts +1 -0
- package/package.json +3 -3
- package/src/assets/svg-icons/icon-delete-hover.svg +4 -0
- package/src/assets/svg-icons/icon-delete.svg +5 -1
- package/src/assets/svg-icons/icon-image-close.svg +4 -0
- package/src/assets/svg-icons/icon-image-upload.svg +3 -0
- package/src/assets/svg-icons/icon-image-zoomin.svg +3 -0
- package/src/assets/svg-icons/icon-refresh.svg +3 -0
- package/src/components/OBanner.vue +18 -18
- package/src/components/OCookieNotice.vue +21 -21
- package/src/components/OFooter.vue +18 -17
- package/src/components/OHeaderSearch.vue +402 -420
- package/src/components/OHeaderUser.vue +3 -2
- package/src/components/OSection.vue +4 -4
- package/src/components/OSourceCode.vue +8 -10
- package/src/components/activity/OActivityApproval.vue +32 -32
- package/src/components/activity/OActivityForm.vue +5 -5
- package/src/components/activity/OMyActivityCalendar.vue +66 -50
- package/src/components/activity/config.ts +1 -1
- package/src/components/activity/types.ts +8 -1
- package/src/components/common/ContentWrapper.vue +3 -3
- package/src/components/common/MoreText.vue +1 -1
- package/src/components/common/ThFilter.vue +7 -7
- package/src/components/element-plus/OElCookieNotice.vue +27 -27
- package/src/components/events/OEventsApply.vue +44 -44
- package/src/components/events/OEventsCalendar.vue +14 -14
- package/src/components/events/OEventsList.vue +53 -26
- package/src/components/events/config.ts +1 -1
- package/src/components/events/types.ts +4 -1
- package/src/components/header/OHeader.vue +2 -2
- package/src/components/header/OHeaderMobile.vue +8 -1
- package/src/components/header/components/HeaderContent.vue +67 -63
- package/src/components/header/components/HeaderNav.vue +4 -4
- package/src/components/header/components/HeaderNavMobile.vue +8 -5
- package/src/components/header/types.ts +4 -0
- package/src/components/meeting/OMeetingCalendar.vue +66 -54
- package/src/components/meeting/OMeetingForm.vue +70 -51
- package/src/components/meeting/OMeetingPlayback.vue +8 -8
- package/src/components/meeting/OMyMeetingCalendar.vue +56 -45
- package/src/components/meeting/OSigMeetingCalendar.vue +31 -28
- package/src/components/meeting/components/OMeetingCalendarList.vue +31 -26
- package/src/components/meeting/components/OMeetingCalendarSelector.vue +10 -6
- package/src/components/meeting/components/OMeetingDetail.vue +32 -18
- package/src/components/meeting/components/OMeetingPlaybackSubtitles.vue +1 -1
- package/src/components/meeting/components/OMeetingPlaybackVideo.vue +12 -12
- package/src/components/meeting/components/OSigMeetingAside.vue +8 -9
- package/src/components/meeting/types.ts +88 -17
- package/src/components/search/OSearchInput.vue +463 -0
- package/src/components/search/composables/useImageSearch.ts +157 -0
- package/src/components/search/composables/useKeywordHighlight.ts +30 -0
- package/src/components/search/composables/useSearchHistory.ts +75 -0
- package/src/components/search/index.ts +23 -0
- package/src/components/search/internal/HighlightText.vue +37 -0
- package/src/components/search/internal/SearchImageInput.vue +488 -0
- package/src/components/search/internal/SearchPanel.vue +430 -0
- package/src/components/search/types.ts +25 -0
- package/src/draft/Banner.vue +6 -6
- package/src/draft/ButtonCards.vue +1 -1
- package/src/draft/Feature.vue +6 -6
- package/src/draft/Footer.vue +29 -22
- package/src/draft/HorizontalAnchor.vue +4 -4
- package/src/draft/ItemSwiper.vue +2 -2
- package/src/draft/Logo.vue +3 -3
- package/src/draft/LogoCard.vue +2 -2
- package/src/draft/MultiCard.vue +1 -1
- package/src/draft/MultiIconCard.vue +1 -1
- package/src/draft/OInfoCard.vue +4 -4
- package/src/draft/Section.vue +4 -4
- package/src/draft/SingleTabCard.vue +1 -1
- package/src/draft/SliderCard.vue +4 -3
- package/src/i18n/en.ts +10 -0
- package/src/i18n/zh.ts +10 -0
- package/src/index.ts +1 -0
- package/vite.config.ts +4 -3
package/src/draft/Footer.vue
CHANGED
|
@@ -176,7 +176,7 @@ $color: #fff;
|
|
|
176
176
|
.atom-logo {
|
|
177
177
|
height: 32px;
|
|
178
178
|
margin-top: 12px;
|
|
179
|
-
@include respond
|
|
179
|
+
@include respond('<=pad_v') {
|
|
180
180
|
margin-top: 16px;
|
|
181
181
|
height: 30px;
|
|
182
182
|
}
|
|
@@ -186,7 +186,7 @@ $color: #fff;
|
|
|
186
186
|
.footer-content {
|
|
187
187
|
@include tip1;
|
|
188
188
|
background: url('@/assets/category/footer/footer-bg.png') no-repeat bottom center;
|
|
189
|
-
@include respond
|
|
189
|
+
@include respond('<=pad_v') {
|
|
190
190
|
background: url('@/assets/category/footer/footer-bg-mo.png') no-repeat bottom center;
|
|
191
191
|
}
|
|
192
192
|
.quick-nav {
|
|
@@ -194,7 +194,7 @@ $color: #fff;
|
|
|
194
194
|
display: flex;
|
|
195
195
|
justify-content: space-between;
|
|
196
196
|
max-width: 1140px;
|
|
197
|
-
@include respond
|
|
197
|
+
@include respond('<=pad_v') {
|
|
198
198
|
display: none;
|
|
199
199
|
}
|
|
200
200
|
.category {
|
|
@@ -229,7 +229,7 @@ $color: #fff;
|
|
|
229
229
|
@include tip2;
|
|
230
230
|
//TODO: 颜色变量
|
|
231
231
|
border-bottom: 1px solid rgba(229, 229, 229, 0.12);
|
|
232
|
-
@include respond
|
|
232
|
+
@include respond('<=pad_v') {
|
|
233
233
|
flex-direction: column;
|
|
234
234
|
padding-bottom: 16px;
|
|
235
235
|
.friendship-link-box {
|
|
@@ -239,7 +239,7 @@ $color: #fff;
|
|
|
239
239
|
.friendship-link-title {
|
|
240
240
|
color: var(--o-color-white);
|
|
241
241
|
margin-right: 38px;
|
|
242
|
-
@include respond
|
|
242
|
+
@include respond('<=pad') {
|
|
243
243
|
margin-right: 24px;
|
|
244
244
|
min-width: 48px;
|
|
245
245
|
}
|
|
@@ -248,7 +248,7 @@ $color: #fff;
|
|
|
248
248
|
white-space: nowrap;
|
|
249
249
|
&:not(:last-of-type) {
|
|
250
250
|
margin-right: 24px;
|
|
251
|
-
@include respond
|
|
251
|
+
@include respond('<=pad') {
|
|
252
252
|
margin-right: 12px;
|
|
253
253
|
}
|
|
254
254
|
}
|
|
@@ -264,7 +264,7 @@ $color: #fff;
|
|
|
264
264
|
justify-content: space-between;
|
|
265
265
|
padding: 8px 0 32px;
|
|
266
266
|
position: relative;
|
|
267
|
-
@include respond
|
|
267
|
+
@include respond('<=pad_v') {
|
|
268
268
|
margin: 0 auto;
|
|
269
269
|
padding: 12px 0 24px;
|
|
270
270
|
flex-direction: column;
|
|
@@ -284,7 +284,8 @@ $color: #fff;
|
|
|
284
284
|
.show-mo {
|
|
285
285
|
display: none;
|
|
286
286
|
}
|
|
287
|
-
|
|
287
|
+
|
|
288
|
+
@include respond('<=pad_v') {
|
|
288
289
|
text-align: center;
|
|
289
290
|
margin: 16px 0;
|
|
290
291
|
.show-pc {
|
|
@@ -306,11 +307,11 @@ $color: #fff;
|
|
|
306
307
|
display: flex;
|
|
307
308
|
gap: var(--o-gap-2);
|
|
308
309
|
|
|
309
|
-
@include respond
|
|
310
|
+
@include respond('<=pad') {
|
|
310
311
|
flex-direction: column;
|
|
311
312
|
gap: 6px;
|
|
312
313
|
}
|
|
313
|
-
@include respond
|
|
314
|
+
@include respond('<=pad_v') {
|
|
314
315
|
margin-top: 4px;
|
|
315
316
|
gap: 4px;
|
|
316
317
|
}
|
|
@@ -338,7 +339,8 @@ $color: #fff;
|
|
|
338
339
|
span {
|
|
339
340
|
color: rgba(255, 255, 255, 0.6);
|
|
340
341
|
}
|
|
341
|
-
|
|
342
|
+
|
|
343
|
+
@include respond('<=pad_v') {
|
|
342
344
|
margin-top: 4px;
|
|
343
345
|
}
|
|
344
346
|
}
|
|
@@ -353,7 +355,8 @@ $color: #fff;
|
|
|
353
355
|
.footer-option-item {
|
|
354
356
|
align-items: center;
|
|
355
357
|
}
|
|
356
|
-
|
|
358
|
+
|
|
359
|
+
@include respond('<=pad_v') {
|
|
357
360
|
order: -1;
|
|
358
361
|
}
|
|
359
362
|
}
|
|
@@ -400,7 +403,8 @@ $color: #fff;
|
|
|
400
403
|
transform: translateX(-50%);
|
|
401
404
|
display: block;
|
|
402
405
|
}
|
|
403
|
-
|
|
406
|
+
|
|
407
|
+
@include respond('<=pad_v') {
|
|
404
408
|
display: block;
|
|
405
409
|
position: initial;
|
|
406
410
|
background: none;
|
|
@@ -419,17 +423,18 @@ $color: #fff;
|
|
|
419
423
|
display: block;
|
|
420
424
|
}
|
|
421
425
|
}
|
|
422
|
-
@include respond
|
|
426
|
+
@include respond('pad_h') {
|
|
423
427
|
height: 18px;
|
|
424
428
|
}
|
|
425
|
-
@include respond
|
|
429
|
+
@include respond('<=pad_v') {
|
|
426
430
|
height: auto;
|
|
427
431
|
> img {
|
|
428
432
|
display: none;
|
|
429
433
|
}
|
|
430
434
|
}
|
|
431
435
|
}
|
|
432
|
-
|
|
436
|
+
|
|
437
|
+
@include respond('<=pad_v') {
|
|
433
438
|
justify-content: space-between;
|
|
434
439
|
}
|
|
435
440
|
}
|
|
@@ -446,11 +451,11 @@ $color: #fff;
|
|
|
446
451
|
padding: 0 14px;
|
|
447
452
|
background-color: #2b2b2f;
|
|
448
453
|
border-radius: var(--o-radius-xs);
|
|
449
|
-
@include respond
|
|
454
|
+
@include respond('pad_h') {
|
|
450
455
|
height: 26px;
|
|
451
456
|
padding: 0 8px;
|
|
452
457
|
}
|
|
453
|
-
@include respond
|
|
458
|
+
@include respond('<=pad_v') {
|
|
454
459
|
height: 26px;
|
|
455
460
|
padding: 0 8px;
|
|
456
461
|
}
|
|
@@ -458,10 +463,11 @@ $color: #fff;
|
|
|
458
463
|
object-fit: cover;
|
|
459
464
|
}
|
|
460
465
|
}
|
|
461
|
-
|
|
466
|
+
|
|
467
|
+
@include respond('pad_h') {
|
|
462
468
|
margin-left: 32px;
|
|
463
469
|
}
|
|
464
|
-
@include respond
|
|
470
|
+
@include respond('<=pad_v') {
|
|
465
471
|
justify-content: center;
|
|
466
472
|
display: flex;
|
|
467
473
|
text-align: center;
|
|
@@ -474,7 +480,8 @@ $color: #fff;
|
|
|
474
480
|
padding: 0 9px;
|
|
475
481
|
height: 20px;
|
|
476
482
|
}
|
|
477
|
-
|
|
483
|
+
|
|
484
|
+
@include respond('<=pad') {
|
|
478
485
|
display: flex;
|
|
479
486
|
flex-wrap: wrap;
|
|
480
487
|
text-align: center;
|
|
@@ -497,7 +504,7 @@ $color: #fff;
|
|
|
497
504
|
.footer {
|
|
498
505
|
.footer-content {
|
|
499
506
|
.inner {
|
|
500
|
-
@include respond
|
|
507
|
+
@include respond('<=pad_v') {
|
|
501
508
|
margin: 0 auto;
|
|
502
509
|
max-width: fit-content;
|
|
503
510
|
padding: 14px 0 24px;
|
|
@@ -54,7 +54,7 @@ useIntersectionObserver(target, ([entry]) => {
|
|
|
54
54
|
background-color: var(--o-color-control2-light);
|
|
55
55
|
@include text1;
|
|
56
56
|
|
|
57
|
-
@include respond
|
|
57
|
+
@include respond('<=pad_v') {
|
|
58
58
|
top: 48px;
|
|
59
59
|
height: 54px;
|
|
60
60
|
}
|
|
@@ -67,7 +67,7 @@ useIntersectionObserver(target, ([entry]) => {
|
|
|
67
67
|
margin: 0 auto;
|
|
68
68
|
height: 68px;
|
|
69
69
|
|
|
70
|
-
@include respond
|
|
70
|
+
@include respond('<=pad_v') {
|
|
71
71
|
height: 54px;
|
|
72
72
|
}
|
|
73
73
|
|
|
@@ -119,10 +119,10 @@ useIntersectionObserver(target, ([entry]) => {
|
|
|
119
119
|
height: 48px;
|
|
120
120
|
backdrop-filter: blur(10px);
|
|
121
121
|
z-index: 10;
|
|
122
|
-
background-color: rgba($color: var(--o-
|
|
122
|
+
background-color: rgba($color: var(--o-grey-1), $alpha: 0.25);
|
|
123
123
|
@include text1;
|
|
124
124
|
|
|
125
|
-
@include respond
|
|
125
|
+
@include respond('<=pad_v') {
|
|
126
126
|
display: none;
|
|
127
127
|
}
|
|
128
128
|
|
package/src/draft/ItemSwiper.vue
CHANGED
|
@@ -68,7 +68,7 @@ defineProps({
|
|
|
68
68
|
.swiper-list {
|
|
69
69
|
display: flex;
|
|
70
70
|
animation: marque 100s linear infinite;
|
|
71
|
-
@include respond
|
|
71
|
+
@include respond('>phone') {
|
|
72
72
|
@include hover {
|
|
73
73
|
animation-play-state: paused;
|
|
74
74
|
}
|
|
@@ -124,7 +124,7 @@ defineProps({
|
|
|
124
124
|
}
|
|
125
125
|
}
|
|
126
126
|
|
|
127
|
-
@include respond
|
|
127
|
+
@include respond('phone') {
|
|
128
128
|
.swiper-card {
|
|
129
129
|
width: 160px;
|
|
130
130
|
margin-right: 12px;
|
package/src/draft/Logo.vue
CHANGED
|
@@ -110,15 +110,15 @@ const col = computed(() => {
|
|
|
110
110
|
&+.partner-swiper {
|
|
111
111
|
margin-top: 24px;
|
|
112
112
|
|
|
113
|
-
@include respond
|
|
113
|
+
@include respond('laptop') {
|
|
114
114
|
margin-top: 20px;
|
|
115
115
|
}
|
|
116
116
|
|
|
117
|
-
@include respond
|
|
117
|
+
@include respond('pad_h') {
|
|
118
118
|
margin-top: 16px;
|
|
119
119
|
}
|
|
120
120
|
|
|
121
|
-
@include respond
|
|
121
|
+
@include respond('<=pad_v') {
|
|
122
122
|
margin-top: 12px;
|
|
123
123
|
}
|
|
124
124
|
}
|
package/src/draft/LogoCard.vue
CHANGED
package/src/draft/MultiCard.vue
CHANGED
|
@@ -64,7 +64,7 @@ const gridTemplateColumns = computed(() => {
|
|
|
64
64
|
}
|
|
65
65
|
.o-card {
|
|
66
66
|
--card-content-color: var(--o-color-info3);
|
|
67
|
-
@include respond
|
|
67
|
+
@include respond("phone") {
|
|
68
68
|
--card-header-text-size: 16px;
|
|
69
69
|
--card-header-text-height: 24px;
|
|
70
70
|
--card-content-text-size: 14px;
|
package/src/draft/OInfoCard.vue
CHANGED
|
@@ -78,7 +78,7 @@ watch(
|
|
|
78
78
|
background-size: 100% auto;
|
|
79
79
|
background-repeat: no-repeat;
|
|
80
80
|
position: relative;
|
|
81
|
-
@include respond
|
|
81
|
+
@include respond('<=pad_v') {
|
|
82
82
|
background-size: auto var(--bg-height);
|
|
83
83
|
height: auto;
|
|
84
84
|
&.has-bg-img {
|
|
@@ -92,7 +92,7 @@ watch(
|
|
|
92
92
|
display: flex;
|
|
93
93
|
flex-direction: column;
|
|
94
94
|
justify-content: space-between;
|
|
95
|
-
@include respond
|
|
95
|
+
@include respond('<=pad_v') {
|
|
96
96
|
padding-bottom: var(--padding-bottom);
|
|
97
97
|
}
|
|
98
98
|
}
|
|
@@ -137,7 +137,7 @@ watch(
|
|
|
137
137
|
}
|
|
138
138
|
}
|
|
139
139
|
|
|
140
|
-
@include respond
|
|
140
|
+
@include respond('>pad_v') {
|
|
141
141
|
:deep(.o-link-main) {
|
|
142
142
|
overflow: hidden;
|
|
143
143
|
text-overflow: ellipsis;
|
|
@@ -163,7 +163,7 @@ watch(
|
|
|
163
163
|
}
|
|
164
164
|
}
|
|
165
165
|
|
|
166
|
-
@include respond
|
|
166
|
+
@include respond('<=pad_v') {
|
|
167
167
|
border-top: 1px solid #edeff2;
|
|
168
168
|
margin: 8px -12 px 0 -12px;
|
|
169
169
|
padding: 0 12px;
|
package/src/draft/Section.vue
CHANGED
|
@@ -122,11 +122,11 @@ const props = withDefaults(defineProps<SectionPropsT>(), {
|
|
|
122
122
|
color: var(--o-color-info2);
|
|
123
123
|
@include text1;
|
|
124
124
|
|
|
125
|
-
@include respond
|
|
125
|
+
@include respond('pad-laptop') {
|
|
126
126
|
margin-top: 8px;
|
|
127
127
|
}
|
|
128
128
|
|
|
129
|
-
@include respond
|
|
129
|
+
@include respond('phone') {
|
|
130
130
|
margin-top: 12px;
|
|
131
131
|
text-align: center;
|
|
132
132
|
}
|
|
@@ -151,11 +151,11 @@ const props = withDefaults(defineProps<SectionPropsT>(), {
|
|
|
151
151
|
|
|
152
152
|
margin-top: 32px;
|
|
153
153
|
|
|
154
|
-
@include respond
|
|
154
|
+
@include respond('<=laptop') {
|
|
155
155
|
margin-top: 16px;
|
|
156
156
|
}
|
|
157
157
|
|
|
158
|
-
@include respond
|
|
158
|
+
@include respond('phone') {
|
|
159
159
|
margin-top: 12px;
|
|
160
160
|
}
|
|
161
161
|
}
|
package/src/draft/SliderCard.vue
CHANGED
|
@@ -67,13 +67,14 @@ const props = defineProps({
|
|
|
67
67
|
border-radius: 6px;
|
|
68
68
|
}
|
|
69
69
|
}
|
|
70
|
-
|
|
70
|
+
|
|
71
|
+
@include respond('pc_s') {
|
|
71
72
|
height: 300px;
|
|
72
73
|
}
|
|
73
|
-
@include respond
|
|
74
|
+
@include respond('<=laptop') {
|
|
74
75
|
height: 280px;
|
|
75
76
|
}
|
|
76
|
-
@include respond
|
|
77
|
+
@include respond('<=pad_v') {
|
|
77
78
|
--slide-width: calc(100vw - 64px);
|
|
78
79
|
width: calc(var(--slide-gap) + var(--slide-width));
|
|
79
80
|
height: 184px;
|
package/src/i18n/en.ts
CHANGED
|
@@ -4,6 +4,16 @@ export default {
|
|
|
4
4
|
'search.placeholder': 'Please enter the content',
|
|
5
5
|
'search.expandedPlaceholder': 'Please enter the content',
|
|
6
6
|
'search.history': 'History',
|
|
7
|
+
'search.imagePlaceholder': 'Search by text or upload image of any error',
|
|
8
|
+
'search.extendedPlaceholder': 'Press Enter to start, or refine your search with more info',
|
|
9
|
+
'search.imageUploadTooltip': 'JPG, PNG, JPEG supported (max 10 MB)',
|
|
10
|
+
'search.imageUploadFailed': 'Upload failed. Check connection and try again.',
|
|
11
|
+
'search.imageSizeExceeded': 'Image size exceeds the limit',
|
|
12
|
+
'search.imageInvalidType': 'Please upload an image file',
|
|
13
|
+
'search.onestep': 'Quick Navigation',
|
|
14
|
+
'search.suggest': 'Suggestions',
|
|
15
|
+
'search.noData': 'No data',
|
|
16
|
+
'search.suggestListLabel': 'Did you mean: ',
|
|
7
17
|
'meeting.audioToText': 'Speech to Text',
|
|
8
18
|
'meeting.item1': 'Convener: ',
|
|
9
19
|
'meeting.item2': 'SIG: ',
|
package/src/i18n/zh.ts
CHANGED
|
@@ -4,6 +4,16 @@ export default {
|
|
|
4
4
|
'search.placeholder': '搜索',
|
|
5
5
|
'search.expandedPlaceholder': '请输入搜索内容',
|
|
6
6
|
'search.history': '历史搜索',
|
|
7
|
+
'search.imagePlaceholder': '输入文字搜索,支持粘贴或上传报错截图',
|
|
8
|
+
'search.extendedPlaceholder': '按下回车立即搜索,或补充更多信息进行搜索',
|
|
9
|
+
'search.imageUploadTooltip': '报错截图搜索,支持jpg、png、jpeg等,最大10M',
|
|
10
|
+
'search.imageUploadFailed': '图片上传失败,请检查网络后重试',
|
|
11
|
+
'search.imageSizeExceeded': '图片大小超出限制',
|
|
12
|
+
'search.imageInvalidType': '请上传图片文件',
|
|
13
|
+
'search.onestep': '导航搜索直达',
|
|
14
|
+
'search.suggest': '搜索建议',
|
|
15
|
+
'search.noData': '暂无数据',
|
|
16
|
+
'search.suggestListLabel': '您是不是在寻找:',
|
|
7
17
|
'meeting.audioToText': '语音转文字',
|
|
8
18
|
'meeting.item1': '发起人:',
|
|
9
19
|
'meeting.item2': 'SIG组:',
|
package/src/index.ts
CHANGED
package/vite.config.ts
CHANGED
|
@@ -67,6 +67,7 @@ export default defineConfig(({ mode }) => {
|
|
|
67
67
|
alias: {
|
|
68
68
|
vue: 'vue/dist/vue.esm-bundler.js',
|
|
69
69
|
'@': path.resolve(__dirname, 'src'),
|
|
70
|
+
'@opendesign-plus/styles': path.resolve(__dirname, '../styles/src'),
|
|
70
71
|
},
|
|
71
72
|
},
|
|
72
73
|
css: {
|
|
@@ -74,11 +75,11 @@ export default defineConfig(({ mode }) => {
|
|
|
74
75
|
scss: {
|
|
75
76
|
charset: false,
|
|
76
77
|
additionalData: `
|
|
77
|
-
@use
|
|
78
|
+
@use '@opensig/opendesign/es/_styles/mixin.scss' as *;
|
|
78
79
|
@use "@opendesign-plus/styles/mixin/font.scss" as *;
|
|
79
80
|
@use "@opendesign-plus/styles/mixin/common.scss" as *;
|
|
80
81
|
@use "@opendesign-plus/styles/mixin/gap.scss" as *;
|
|
81
|
-
@use "@opendesign-plus/styles/element-plus.
|
|
82
|
+
@use "@opendesign-plus/styles/element-plus.scss" as *;
|
|
82
83
|
`,
|
|
83
84
|
},
|
|
84
85
|
},
|
|
@@ -94,7 +95,7 @@ export default defineConfig(({ mode }) => {
|
|
|
94
95
|
},
|
|
95
96
|
}) as any,
|
|
96
97
|
dts({
|
|
97
|
-
include: ['./src/components/**/*', './src/index.ts'],
|
|
98
|
+
include: ['./src/components/**/*', './src/index.ts', './src/*.d.ts'],
|
|
98
99
|
exclude: ['./src/components/common/**/*']
|
|
99
100
|
}),
|
|
100
101
|
Icons({
|