@opendesign-plus-test/components 0.0.1-rc.45 → 0.0.1-rc.46

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.
Files changed (78) hide show
  1. package/dist/chunk-OElCookieNotice.cjs.js +1 -1
  2. package/dist/chunk-OElCookieNotice.es.js +47 -67
  3. package/dist/components/OHeaderSearch.vue.d.ts +534 -812
  4. package/dist/components.cjs.js +41 -41
  5. package/dist/components.css +1 -1
  6. package/dist/components.es.js +10253 -11228
  7. package/dist/index.d.ts +0 -1
  8. package/package.json +2 -2
  9. package/src/assets/svg-icons/icon-delete.svg +1 -5
  10. package/src/components/OBanner.vue +18 -18
  11. package/src/components/OCookieNotice.vue +21 -21
  12. package/src/components/OFooter.vue +17 -18
  13. package/src/components/OHeaderSearch.vue +420 -402
  14. package/src/components/OHeaderUser.vue +2 -3
  15. package/src/components/OSection.vue +4 -4
  16. package/src/components/activity/OActivityApproval.vue +4 -4
  17. package/src/components/activity/OActivityForm.vue +2 -2
  18. package/src/components/activity/OMyActivityCalendar.vue +26 -26
  19. package/src/components/common/ContentWrapper.vue +3 -3
  20. package/src/components/element-plus/OElCookieNotice.vue +26 -26
  21. package/src/components/events/OEventsApply.vue +44 -44
  22. package/src/components/events/OEventsCalendar.vue +14 -14
  23. package/src/components/events/OEventsList.vue +16 -16
  24. package/src/components/header/OHeader.vue +2 -2
  25. package/src/components/header/components/HeaderContent.vue +60 -60
  26. package/src/components/header/components/HeaderNav.vue +4 -4
  27. package/src/components/header/components/HeaderNavMobile.vue +3 -3
  28. package/src/components/meeting/OMeetingCalendar.vue +27 -27
  29. package/src/components/meeting/OMeetingForm.vue +16 -16
  30. package/src/components/meeting/OMeetingPlayback.vue +4 -4
  31. package/src/components/meeting/OMyMeetingCalendar.vue +25 -25
  32. package/src/components/meeting/OSigMeetingCalendar.vue +3 -3
  33. package/src/components/meeting/components/OMeetingCalendarList.vue +9 -9
  34. package/src/components/meeting/components/OMeetingDetail.vue +2 -2
  35. package/src/components/meeting/components/OMeetingPlaybackSubtitles.vue +1 -1
  36. package/src/components/meeting/components/OMeetingPlaybackVideo.vue +5 -5
  37. package/src/components/meeting/components/OSigMeetingAside.vue +6 -6
  38. package/src/draft/Banner.vue +6 -6
  39. package/src/draft/ButtonCards.vue +1 -1
  40. package/src/draft/Feature.vue +6 -6
  41. package/src/draft/Footer.vue +22 -29
  42. package/src/draft/HorizontalAnchor.vue +4 -4
  43. package/src/draft/ItemSwiper.vue +2 -2
  44. package/src/draft/Logo.vue +3 -3
  45. package/src/draft/LogoCard.vue +2 -2
  46. package/src/draft/MultiCard.vue +1 -1
  47. package/src/draft/MultiIconCard.vue +1 -1
  48. package/src/draft/OInfoCard.vue +4 -4
  49. package/src/draft/Section.vue +4 -4
  50. package/src/draft/SingleTabCard.vue +1 -1
  51. package/src/draft/SliderCard.vue +3 -4
  52. package/src/i18n/en.ts +0 -10
  53. package/src/i18n/zh.ts +0 -10
  54. package/src/index.ts +0 -1
  55. package/vite.config.ts +1 -1
  56. package/dist/components/search/OSearchInput.vue.d.ts +0 -1003
  57. package/dist/components/search/composables/useImageSearch.d.ts +0 -48
  58. package/dist/components/search/composables/useKeywordHighlight.d.ts +0 -2
  59. package/dist/components/search/composables/useSearchHistory.d.ts +0 -14
  60. package/dist/components/search/index.d.ts +0 -590
  61. package/dist/components/search/internal/HighlightText.vue.d.ts +0 -9
  62. package/dist/components/search/internal/SearchImageInput.vue.d.ts +0 -716
  63. package/dist/components/search/internal/SearchPanel.vue.d.ts +0 -100
  64. package/dist/components/search/types.d.ts +0 -20
  65. package/src/assets/svg-icons/icon-delete-hover.svg +0 -4
  66. package/src/assets/svg-icons/icon-image-close.svg +0 -4
  67. package/src/assets/svg-icons/icon-image-upload.svg +0 -3
  68. package/src/assets/svg-icons/icon-image-zoomin.svg +0 -3
  69. package/src/assets/svg-icons/icon-refresh.svg +0 -3
  70. package/src/components/search/OSearchInput.vue +0 -463
  71. package/src/components/search/composables/useImageSearch.ts +0 -157
  72. package/src/components/search/composables/useKeywordHighlight.ts +0 -30
  73. package/src/components/search/composables/useSearchHistory.ts +0 -75
  74. package/src/components/search/index.ts +0 -23
  75. package/src/components/search/internal/HighlightText.vue +0 -37
  76. package/src/components/search/internal/SearchImageInput.vue +0 -488
  77. package/src/components/search/internal/SearchPanel.vue +0 -430
  78. package/src/components/search/types.ts +0 -25
package/dist/index.d.ts CHANGED
@@ -13,7 +13,6 @@ export * from './components/element-plus';
13
13
  export * from './components/events';
14
14
  export * from './components/header';
15
15
  export * from './components/meeting';
16
- export * from './components/search';
17
16
  declare const _default: {
18
17
  install: (app: any) => void;
19
18
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opendesign-plus-test/components",
3
- "version": "0.0.1-rc.45",
3
+ "version": "0.0.1-rc.46",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public",
@@ -26,7 +26,7 @@
26
26
  }
27
27
  },
28
28
  "dependencies": {
29
- "@opensig/opendesign": "1.2.3",
29
+ "@opensig/opendesign": "1.0.2",
30
30
  "@vueuse/core": "10.11.1",
31
31
  "aos": "^2.3.4",
32
32
  "dayjs": "^1.11.13",
@@ -1,7 +1,3 @@
1
1
  <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
2
- <path opacity="0.8" fill="currentColor" d="M5.616 4.34c0.368 0 0.674 0.265 0.738 0.615l0.012 0.135v14.968c0 0.213 0.148 0.391 0.347 0.438l0.103 0.012h10.719c0.213 0 0.391-0.148 0.438-0.347l0.012-0.103v-11.712c0-0.414 0.336-0.75 0.75-0.75 0.368 0 0.674 0.265 0.738 0.615l0.012 0.135v11.712c0 1.010-0.767 1.84-1.751 1.94l-0.199 0.010h-10.719c-1.010 0-1.84-0.767-1.94-1.751l-0.010-0.199v-14.968c0-0.414 0.336-0.75 0.75-0.75z"></path>
3
- <path opacity="0.8" fill="currentColor" d="M20.19 4.34c0.414 0 0.75 0.336 0.75 0.75 0 0.368-0.265 0.674-0.615 0.738l-0.135 0.012h-16.333c-0.414 0-0.75-0.336-0.75-0.75 0-0.368 0.265-0.674 0.615-0.738l0.135-0.012h16.333z"></path>
4
- <path opacity="0.8" fill="currentColor" d="M14.256 1.936c0.414 0 0.75 0.336 0.75 0.75 0 0.368-0.265 0.674-0.615 0.738l-0.135 0.012h-4.535c-0.414 0-0.75-0.336-0.75-0.75 0-0.368 0.265-0.674 0.615-0.738l0.135-0.012h4.535z"></path>
5
- <path opacity="0.8" fill="currentColor" d="M10.096 9.419c0.368 0 0.674 0.265 0.738 0.615l0.012 0.135v6.484c0 0.414-0.336 0.75-0.75 0.75-0.368 0-0.674-0.265-0.738-0.615l-0.012-0.135v-6.484c0-0.414 0.336-0.75 0.75-0.75z"></path>
6
- <path opacity="0.8" fill="currentColor" d="M14.596 9.419c0.368 0 0.674 0.265 0.738 0.615l0.012 0.135v6.484c0 0.414-0.336 0.75-0.75 0.75-0.368 0-0.674-0.265-0.738-0.615l-0.012-0.135v-6.484c0-0.414 0.336-0.75 0.75-0.75z"></path>
2
+ <path fill="currentColor" d="M19.154 5.295c0.387 0 0.7 0.313 0.7 0.7 0 0.354-0.263 0.647-0.605 0.694l-0.095 0.006-12.201-0.001 0.001 12.413c0 0.17 0.12 0.311 0.28 0.344l0.071 0.007h9.39c0.17 0 0.311-0.12 0.344-0.28l0.007-0.071v-10.47c0-0.387 0.313-0.7 0.7-0.7 0.354 0 0.647 0.263 0.694 0.605l0.006 0.095v10.47c0 0.919-0.708 1.672-1.608 1.745l-0.144 0.006h-9.39c-0.919 0-1.672-0.708-1.745-1.608l-0.006-0.144-0.001-12.413-0.707 0.001c-0.387 0-0.7-0.313-0.7-0.7 0-0.354 0.263-0.647 0.605-0.694l0.095-0.006h14.308zM10.011 9.744c0.354 0 0.647 0.263 0.694 0.605l0.006 0.095v5.68c0 0.387-0.313 0.7-0.7 0.7-0.354 0-0.647-0.263-0.694-0.605l-0.006-0.095v-5.68c0-0.387 0.313-0.7 0.7-0.7zM13.953 9.744c0.354 0 0.647 0.263 0.694 0.605l0.006 0.095v5.68c0 0.387-0.313 0.7-0.7 0.7-0.354 0-0.647-0.263-0.694-0.605l-0.006-0.095v-5.68c0-0.387 0.313-0.7 0.7-0.7zM13.652 3.189c0.387 0 0.7 0.313 0.7 0.7 0 0.354-0.263 0.647-0.605 0.694l-0.095 0.006h-3.972c-0.387 0-0.7-0.313-0.7-0.7 0-0.354 0.263-0.647 0.605-0.694l0.095-0.006h3.972z"></path>
7
3
  </svg>
@@ -151,7 +151,7 @@ const onClick = (href: string, hasBtn: boolean | undefined) => {
151
151
  background-size: contain;
152
152
  background-repeat: no-repeat;
153
153
 
154
- @include respond('pad') {
154
+ @include respond-to('pad') {
155
155
  height: var(--pad-height);
156
156
  width: var(--pad-width);
157
157
  }
@@ -169,15 +169,15 @@ const onClick = (href: string, hasBtn: boolean | undefined) => {
169
169
  @include h4;
170
170
  }
171
171
 
172
- @include respond('laptop-pc_s') {
172
+ @include respond-to('laptop-pc_s') {
173
173
  --banner-height: 400px;
174
174
  }
175
175
 
176
- @include respond('pad_h') {
176
+ @include respond-to('pad_h') {
177
177
  --banner-height: 360px;
178
178
  }
179
179
 
180
- @include respond('<=pad_v') {
180
+ @include respond-to('<=pad_v') {
181
181
  --banner-height: 184px;
182
182
  }
183
183
  }
@@ -194,15 +194,15 @@ const onClick = (href: string, hasBtn: boolean | undefined) => {
194
194
  @include text2;
195
195
  }
196
196
 
197
- @include respond('laptop-pc_s') {
197
+ @include respond-to('laptop-pc_s') {
198
198
  --banner-height: 280px;
199
199
  }
200
200
 
201
- @include respond('pad_h') {
201
+ @include respond-to('pad_h') {
202
202
  --banner-height: 220px;
203
203
  }
204
204
 
205
- @include respond('<=pad_v') {
205
+ @include respond-to('<=pad_v') {
206
206
  --banner-height: 120px;
207
207
  }
208
208
 
@@ -210,7 +210,7 @@ const onClick = (href: string, hasBtn: boolean | undefined) => {
210
210
  --pc-height: 100px !important;
211
211
  --pc-width: 500px !important;
212
212
 
213
- @include respond('pad') {
213
+ @include respond-to('pad') {
214
214
  --pc-height: 60px !important;
215
215
  --pc-width: 300px !important;
216
216
  }
@@ -229,15 +229,15 @@ const onClick = (href: string, hasBtn: boolean | undefined) => {
229
229
  @include text2;
230
230
  }
231
231
 
232
- @include respond('laptop-pc_s') {
232
+ @include respond-to('laptop-pc_s') {
233
233
  --banner-height: 220px;
234
234
  }
235
235
 
236
- @include respond('pad_h') {
236
+ @include respond-to('pad_h') {
237
237
  --banner-height: 180px;
238
238
  }
239
239
 
240
- @include respond('<=pad_v') {
240
+ @include respond-to('<=pad_v') {
241
241
  display: none;
242
242
  }
243
243
 
@@ -245,7 +245,7 @@ const onClick = (href: string, hasBtn: boolean | undefined) => {
245
245
  --pc-height: 80px !important;
246
246
  --pc-width: 400px !important;
247
247
 
248
- @include respond('pad') {
248
+ @include respond-to('pad') {
249
249
  --pc-height: 50px !important;
250
250
  --pc-width: 250px !important;
251
251
  }
@@ -260,11 +260,11 @@ const onClick = (href: string, hasBtn: boolean | undefined) => {
260
260
  .banner-carousel {
261
261
  width: 100%;
262
262
  height: 100%;
263
- @include respond('>pad_v') {
263
+ @include respond-to('>pad_v') {
264
264
  --carousel-indicator-offset: 53px;
265
265
  }
266
266
 
267
- @include respond('<=pad_v') {
267
+ @include respond-to('<=pad_v') {
268
268
  --carousel-indicator-offset: 1px;
269
269
  }
270
270
 
@@ -287,14 +287,14 @@ const onClick = (href: string, hasBtn: boolean | undefined) => {
287
287
  height: 100%;
288
288
  }
289
289
 
290
- @include respond('pad') {
290
+ @include respond-to('pad') {
291
291
  :deep(.o-figure-img) {
292
292
  transition: object-position 0.3s ease;
293
293
  object-position: var(--pad-offset);
294
294
  }
295
295
  }
296
296
 
297
- @include respond('phone') {
297
+ @include respond-to('phone') {
298
298
  --figure-radius: 4px;
299
299
  }
300
300
  }
@@ -367,7 +367,7 @@ const onClick = (href: string, hasBtn: boolean | undefined) => {
367
367
  .banner-attach {
368
368
  height: 120px;
369
369
 
370
- @include respond('pad') {
370
+ @include respond-to('pad') {
371
371
  height: 80px;
372
372
  }
373
373
  }
@@ -377,7 +377,7 @@ const onClick = (href: string, hasBtn: boolean | undefined) => {
377
377
  .banner-attach {
378
378
  height: 156px;
379
379
 
380
- @include respond('pad') {
380
+ @include respond-to('pad') {
381
381
  height: 120px;
382
382
  }
383
383
  }
@@ -294,19 +294,19 @@ defineExpose({
294
294
  <style lang="scss">
295
295
  .o-cookie-notice-dlg-main {
296
296
  --dlg-edge-gap: 32px;
297
- @include respond('laptop') {
297
+ @include respond-to('laptop') {
298
298
  --dlg-edge-gap: 24px;
299
299
  }
300
- @include respond('phone') {
300
+ @include respond-to('phone') {
301
301
  --dlg-edge-gap: 16px 24px;
302
302
  }
303
303
 
304
304
  --dlg-width: var(--grid-14);
305
- @include respond('pad_h') {
305
+ @include respond-to('pad_h') {
306
306
  --dlg-edge-gap: 16px;
307
307
  --dlg-width: var(--grid-8);
308
308
  }
309
- @include respond('<=pad_v') {
309
+ @include respond-to('<=pad_v') {
310
310
  --dlg-width: 100vw;
311
311
  }
312
312
  }
@@ -341,7 +341,7 @@ defineExpose({
341
341
  }
342
342
 
343
343
  .cookie-notice-content {
344
- background-color: rgba(var(--o-grey-1), 0.9);
344
+ background-color: rgba(var(--o-mixedgray-1), 0.9);
345
345
  backdrop-filter: blur(5px);
346
346
  box-shadow: var(--o-shadow-1);
347
347
  }
@@ -354,13 +354,13 @@ defineExpose({
354
354
  @media (1680px >= width >= 1201px) {
355
355
  padding: 12px var(--layout-content-padding);
356
356
  }
357
- @include respond('pad_h') {
357
+ @include respond-to('pad_h') {
358
358
  padding: 8px var(--layout-content-padding);
359
359
  }
360
360
  @media (max-width: 840px) {
361
361
  padding: 16px var(--layout-content-padding);
362
362
  }
363
- @include respond('phone') {
363
+ @include respond-to('phone') {
364
364
  padding: 16px var(--layout-content-padding);
365
365
  }
366
366
  &:not([type='zh']) {
@@ -377,13 +377,13 @@ defineExpose({
377
377
  @media (1680px >= width >= 1201px) {
378
378
  padding: 12px 0;
379
379
  }
380
- @include respond('pad_h') {
380
+ @include respond-to('pad_h') {
381
381
  padding: 8px 0;
382
382
  }
383
383
  @media (max-width: 840px) {
384
384
  padding: 16px 0;
385
385
  }
386
- @include respond('phone') {
386
+ @include respond-to('phone') {
387
387
  padding: 16px 0;
388
388
  }
389
389
  &:not([type='zh']) {
@@ -403,13 +403,13 @@ defineExpose({
403
403
  @media (max-width: 1680px) {
404
404
  font-size: 14px;
405
405
  }
406
- @include respond('<=pad_v') {
406
+ @include respond-to('<=pad_v') {
407
407
  text-align: center;
408
408
  }
409
409
  }
410
410
 
411
411
  .cookie-en-title {
412
- @include respond('<=pad_v') {
412
+ @include respond-to('<=pad_v') {
413
413
  margin-left: auto;
414
414
  }
415
415
  }
@@ -419,7 +419,7 @@ defineExpose({
419
419
  line-height: 22px;
420
420
  margin-right: 8px;
421
421
  text-align: start;
422
- @include respond('<=pad_v') {
422
+ @include respond-to('<=pad_v') {
423
423
  font-size: 12px;
424
424
  line-height: 18px;
425
425
  }
@@ -429,7 +429,7 @@ defineExpose({
429
429
  display: flex;
430
430
  width: 100%;
431
431
  margin-top: 8px;
432
- @include respond('<=pad_v') {
432
+ @include respond-to('<=pad_v') {
433
433
  flex-direction: column;
434
434
  }
435
435
  }
@@ -444,10 +444,10 @@ defineExpose({
444
444
  @media (1680px >= width >= 1201px) {
445
445
  margin-right: 40px;
446
446
  }
447
- @include respond('pad') {
447
+ @include respond-to('pad') {
448
448
  margin-right: 24px;
449
449
  }
450
- @include respond('<=pad_v') {
450
+ @include respond-to('<=pad_v') {
451
451
  margin: 0;
452
452
  }
453
453
  }
@@ -461,7 +461,7 @@ defineExpose({
461
461
  @media (1680px >= width >= 1201px) {
462
462
  margin-left: 12px;
463
463
  }
464
- @include respond('pad_h') {
464
+ @include respond-to('pad_h') {
465
465
  margin-left: 8px;
466
466
  }
467
467
  @media (min-width: 841px) {
@@ -469,7 +469,7 @@ defineExpose({
469
469
  }
470
470
  }
471
471
 
472
- @include respond('<=pad_v') {
472
+ @include respond-to('<=pad_v') {
473
473
  margin-top: 16px;
474
474
  width: 100%;
475
475
  display: grid;
@@ -514,7 +514,7 @@ defineExpose({
514
514
  @media (1680px >= width >= 1201px) {
515
515
  margin-top: 16px;
516
516
  }
517
- @include respond('<=pad') {
517
+ @include respond-to('<=pad') {
518
518
  margin-top: 12px;
519
519
  }
520
520
  }
@@ -532,7 +532,7 @@ defineExpose({
532
532
  @media (1680px >= width >= 1201px) {
533
533
  font-size: 18px;
534
534
  }
535
- @include respond('<=pad') {
535
+ @include respond-to('<=pad') {
536
536
  font-size: 16px;
537
537
  }
538
538
  }
@@ -541,7 +541,7 @@ defineExpose({
541
541
  font-size: 14px;
542
542
  color: var(--o-color-info3);
543
543
  margin-left: 24px;
544
- @include respond('<=pad') {
544
+ @include respond-to('<=pad') {
545
545
  font-size: 12px;
546
546
  }
547
547
  }
@@ -556,7 +556,7 @@ defineExpose({
556
556
  margin-top: 12px;
557
557
  font-size: 14px;
558
558
  }
559
- @include respond('<=pad') {
559
+ @include respond-to('<=pad') {
560
560
  margin-top: 8px;
561
561
  }
562
562
  @media (max-width: 840px) {
@@ -201,11 +201,11 @@ const props = withDefaults(defineProps<{
201
201
  height: 32px;
202
202
  margin-top: 12px;
203
203
 
204
- @include respond('<=laptop') {
204
+ @include respond-to('<=laptop') {
205
205
  margin-top: 8px;
206
206
  }
207
207
 
208
- @include respond('<=pad_v') {
208
+ @include respond-to('<=pad_v') {
209
209
  height: 30px;
210
210
  margin-top: 12px;
211
211
  }
@@ -214,10 +214,10 @@ const props = withDefaults(defineProps<{
214
214
  .atom-divider {
215
215
  --o-divider-bd-color: rgba(229, 229, 229, 0.12);
216
216
  --o-divider-gap: 16px;
217
- @include respond('laptop') {
217
+ @include respond-to('laptop') {
218
218
  --o-divider-gap: 12px;
219
219
  }
220
- @include respond('pad_h') {
220
+ @include respond-to('pad_h') {
221
221
  --o-divider-gap: 8px;
222
222
  }
223
223
  }
@@ -241,7 +241,7 @@ const props = withDefaults(defineProps<{
241
241
  display: flex;
242
242
  justify-content: space-between;
243
243
  max-width: 1140px;
244
- @include respond('<=pad_v') {
244
+ @include respond-to('<=pad_v') {
245
245
  display: none;
246
246
  }
247
247
  .category {
@@ -280,7 +280,7 @@ const props = withDefaults(defineProps<{
280
280
  margin-right: 24px;
281
281
  }
282
282
 
283
- @include respond('<=pad') {
283
+ @include respond-to('<=pad') {
284
284
  .friendship-link-title {
285
285
  margin-right: 24px;
286
286
  min-width: 48px;
@@ -290,7 +290,7 @@ const props = withDefaults(defineProps<{
290
290
  }
291
291
  }
292
292
 
293
- @include respond('<=pad_v') {
293
+ @include respond-to('<=pad_v') {
294
294
  display: none;
295
295
  }
296
296
  }
@@ -301,14 +301,14 @@ const props = withDefaults(defineProps<{
301
301
  padding: 8px 0 32px;
302
302
  position: relative;
303
303
 
304
- @include respond('<=pad_v') {
304
+ @include respond-to('<=pad_v') {
305
305
  margin: 0 auto;
306
306
  padding: 0 0 24px;
307
307
  flex-direction: column;
308
308
  }
309
309
  }
310
310
  .inner-en {
311
- @include respond('<=pad_v') {
311
+ @include respond-to('<=pad_v') {
312
312
  max-width: fit-content;
313
313
  }
314
314
  }
@@ -327,7 +327,7 @@ const props = withDefaults(defineProps<{
327
327
  color: var(--o-color-white);
328
328
  }
329
329
 
330
- @include respond('<=pad_v') {
330
+ @include respond-to('<=pad_v') {
331
331
  text-align: center;
332
332
  margin: 16px 0;
333
333
  .show-pc {
@@ -355,7 +355,7 @@ const props = withDefaults(defineProps<{
355
355
  }
356
356
  }
357
357
 
358
- @include respond('<=pad_v') {
358
+ @include respond-to('<=pad_v') {
359
359
  order: -1;
360
360
  }
361
361
  }
@@ -395,14 +395,14 @@ const props = withDefaults(defineProps<{
395
395
  }
396
396
  }
397
397
 
398
- @include respond('<=pad') {
398
+ @include respond-to('<=pad') {
399
399
  flex-direction: column;
400
400
  .filing {
401
401
  margin-left: 6px;
402
402
  }
403
403
  }
404
404
 
405
- @include respond('<=pad_v') {
405
+ @include respond-to('<=pad_v') {
406
406
  margin-top: 4px;
407
407
  .filing {
408
408
  margin-left: 4px;
@@ -457,19 +457,19 @@ const props = withDefaults(defineProps<{
457
457
  }
458
458
  }
459
459
 
460
- @include respond('pad_h') {
460
+ @include respond-to('pad_h') {
461
461
  height: 18px;
462
462
  }
463
463
  }
464
464
  .code-pop + .code-pop {
465
465
  margin-left: 80px;
466
- @include respond('<=pad_v') {
466
+ @include respond-to('<=pad_v') {
467
467
  margin-left: 64px;
468
468
  }
469
469
  }
470
470
  }
471
471
 
472
- @include respond('<=pad_v') {
472
+ @include respond-to('<=pad_v') {
473
473
  .code-box {
474
474
  justify-content: space-between;
475
475
  .code-pop {
@@ -564,8 +564,7 @@ const props = withDefaults(defineProps<{
564
564
  }
565
565
  }
566
566
  }
567
-
568
- @include respond('<=pad') {
567
+ @include respond-to('<=pad') {
569
568
  .app-footer-pc {
570
569
  display: none;
571
570
  }