@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.
Files changed (109) hide show
  1. package/dist/chunk-OElCookieNotice.cjs.js +1 -1
  2. package/dist/chunk-OElCookieNotice.es.js +132 -112
  3. package/dist/components/OHeaderSearch.vue.d.ts +824 -506
  4. package/dist/components/OSourceCode.vue.d.ts +4 -6
  5. package/dist/components/activity/OActivityApproval.vue.d.ts +6 -10
  6. package/dist/components/activity/OActivityForm.vue.d.ts +3 -5
  7. package/dist/components/activity/OMyActivityCalendar.vue.d.ts +100 -46
  8. package/dist/components/activity/index.d.ts +56 -33
  9. package/dist/components/activity/types.d.ts +8 -1
  10. package/dist/components/events/config.d.ts +5 -18
  11. package/dist/components/events/types.d.ts +4 -1
  12. package/dist/components/header/OHeaderMobile.vue.d.ts +18 -11
  13. package/dist/components/header/components/HeaderNavMobile.vue.d.ts +4 -1
  14. package/dist/components/header/index.d.ts +12 -5
  15. package/dist/components/header/types.d.ts +4 -0
  16. package/dist/components/meeting/OMeetingCalendar.vue.d.ts +8 -12
  17. package/dist/components/meeting/OMeetingForm.vue.d.ts +3 -5
  18. package/dist/components/meeting/OMeetingPlayback.vue.d.ts +45 -0
  19. package/dist/components/meeting/OMyMeetingCalendar.vue.d.ts +100 -46
  20. package/dist/components/meeting/components/OMeetingCalendarList.vue.d.ts +1 -1
  21. package/dist/components/meeting/index.d.ts +817 -0
  22. package/dist/components/meeting/types.d.ts +82 -17
  23. package/dist/components/meeting/utils.d.ts +1 -1
  24. package/dist/components/search/OSearchInput.vue.d.ts +1003 -0
  25. package/dist/components/search/composables/useImageSearch.d.ts +48 -0
  26. package/dist/components/search/composables/useKeywordHighlight.d.ts +2 -0
  27. package/dist/components/search/composables/useSearchHistory.d.ts +14 -0
  28. package/dist/components/search/index.d.ts +590 -0
  29. package/dist/components/search/internal/HighlightText.vue.d.ts +9 -0
  30. package/dist/components/search/internal/SearchImageInput.vue.d.ts +716 -0
  31. package/dist/components/search/internal/SearchPanel.vue.d.ts +100 -0
  32. package/dist/components/search/types.d.ts +20 -0
  33. package/dist/components.cjs.js +43 -43
  34. package/dist/components.css +1 -1
  35. package/dist/components.es.js +11681 -10636
  36. package/dist/index.d.ts +1 -0
  37. package/package.json +3 -3
  38. package/src/assets/svg-icons/icon-delete-hover.svg +4 -0
  39. package/src/assets/svg-icons/icon-delete.svg +5 -1
  40. package/src/assets/svg-icons/icon-image-close.svg +4 -0
  41. package/src/assets/svg-icons/icon-image-upload.svg +3 -0
  42. package/src/assets/svg-icons/icon-image-zoomin.svg +3 -0
  43. package/src/assets/svg-icons/icon-refresh.svg +3 -0
  44. package/src/components/OBanner.vue +18 -18
  45. package/src/components/OCookieNotice.vue +21 -21
  46. package/src/components/OFooter.vue +18 -17
  47. package/src/components/OHeaderSearch.vue +402 -420
  48. package/src/components/OHeaderUser.vue +3 -2
  49. package/src/components/OSection.vue +4 -4
  50. package/src/components/OSourceCode.vue +8 -10
  51. package/src/components/activity/OActivityApproval.vue +32 -32
  52. package/src/components/activity/OActivityForm.vue +5 -5
  53. package/src/components/activity/OMyActivityCalendar.vue +66 -50
  54. package/src/components/activity/config.ts +1 -1
  55. package/src/components/activity/types.ts +8 -1
  56. package/src/components/common/ContentWrapper.vue +3 -3
  57. package/src/components/common/MoreText.vue +1 -1
  58. package/src/components/common/ThFilter.vue +7 -7
  59. package/src/components/element-plus/OElCookieNotice.vue +27 -27
  60. package/src/components/events/OEventsApply.vue +44 -44
  61. package/src/components/events/OEventsCalendar.vue +14 -14
  62. package/src/components/events/OEventsList.vue +53 -26
  63. package/src/components/events/config.ts +1 -1
  64. package/src/components/events/types.ts +4 -1
  65. package/src/components/header/OHeader.vue +2 -2
  66. package/src/components/header/OHeaderMobile.vue +8 -1
  67. package/src/components/header/components/HeaderContent.vue +67 -63
  68. package/src/components/header/components/HeaderNav.vue +4 -4
  69. package/src/components/header/components/HeaderNavMobile.vue +8 -5
  70. package/src/components/header/types.ts +4 -0
  71. package/src/components/meeting/OMeetingCalendar.vue +66 -54
  72. package/src/components/meeting/OMeetingForm.vue +70 -51
  73. package/src/components/meeting/OMeetingPlayback.vue +8 -8
  74. package/src/components/meeting/OMyMeetingCalendar.vue +56 -45
  75. package/src/components/meeting/OSigMeetingCalendar.vue +31 -28
  76. package/src/components/meeting/components/OMeetingCalendarList.vue +31 -26
  77. package/src/components/meeting/components/OMeetingCalendarSelector.vue +10 -6
  78. package/src/components/meeting/components/OMeetingDetail.vue +32 -18
  79. package/src/components/meeting/components/OMeetingPlaybackSubtitles.vue +1 -1
  80. package/src/components/meeting/components/OMeetingPlaybackVideo.vue +12 -12
  81. package/src/components/meeting/components/OSigMeetingAside.vue +8 -9
  82. package/src/components/meeting/types.ts +88 -17
  83. package/src/components/search/OSearchInput.vue +463 -0
  84. package/src/components/search/composables/useImageSearch.ts +157 -0
  85. package/src/components/search/composables/useKeywordHighlight.ts +30 -0
  86. package/src/components/search/composables/useSearchHistory.ts +75 -0
  87. package/src/components/search/index.ts +23 -0
  88. package/src/components/search/internal/HighlightText.vue +37 -0
  89. package/src/components/search/internal/SearchImageInput.vue +488 -0
  90. package/src/components/search/internal/SearchPanel.vue +430 -0
  91. package/src/components/search/types.ts +25 -0
  92. package/src/draft/Banner.vue +6 -6
  93. package/src/draft/ButtonCards.vue +1 -1
  94. package/src/draft/Feature.vue +6 -6
  95. package/src/draft/Footer.vue +29 -22
  96. package/src/draft/HorizontalAnchor.vue +4 -4
  97. package/src/draft/ItemSwiper.vue +2 -2
  98. package/src/draft/Logo.vue +3 -3
  99. package/src/draft/LogoCard.vue +2 -2
  100. package/src/draft/MultiCard.vue +1 -1
  101. package/src/draft/MultiIconCard.vue +1 -1
  102. package/src/draft/OInfoCard.vue +4 -4
  103. package/src/draft/Section.vue +4 -4
  104. package/src/draft/SingleTabCard.vue +1 -1
  105. package/src/draft/SliderCard.vue +4 -3
  106. package/src/i18n/en.ts +10 -0
  107. package/src/i18n/zh.ts +10 -0
  108. package/src/index.ts +1 -0
  109. package/vite.config.ts +4 -3
@@ -1,29 +1,39 @@
1
- import { defineComponent as $, resolveComponent as Q, h as X, ref as b, onMounted as Y, getCurrentInstance as ee, inject as te, computed as x, watch as ie, createBlock as z, openBlock as u, unref as e, withCtx as s, Teleport as ne, createElementBlock as h, createCommentVNode as B, createElementVNode as t, createVNode as g, normalizeClass as F, Fragment as L, createTextVNode as y, toDisplayString as o, renderSlot as oe, nextTick as ae } from "vue";
2
- import { useScreen as me } from "@opendesign-plus/composables";
3
- import { isUndefined as se, isString as ce } from "@opensig/opendesign";
4
- import { ElIcon as W, ElButton as T, ElDialog as ge, ElSwitch as le, ElDivider as re } from "element-plus";
5
- import { useVModel as de } from "@vueuse/core";
6
- const ve = (a, m) => {
1
+ import { defineComponent as $, resolveComponent as Z, h as Q, ref as b, onMounted as Y, getCurrentInstance as X, inject as ee, computed as _, watch as te, openBlock as v, createBlock as z, unref as e, withCtx as s, Teleport as ie, createElementBlock as h, createElementVNode as t, normalizeClass as F, Fragment as L, createVNode as g, createTextVNode as y, toDisplayString as o, renderSlot as ne, createCommentVNode as P, nextTick as oe } from "vue";
2
+ import { useScreen as ae } from "@opendesign-plus/composables";
3
+ import { isUndefined as me, isString as se } from "@opensig/opendesign";
4
+ import { ElIcon as W, ElButton as T, ElDialog as ce, ElSwitch as ge, ElDivider as le } from "element-plus";
5
+ import { useVModel as re } from "@vueuse/core";
6
+ const de = (a, m) => {
7
7
  const l = a.__vccOpts || a;
8
- for (const [k, A] of m)
9
- l[k] = A;
8
+ for (const [f, k] of m)
9
+ l[f] = k;
10
10
  return l;
11
11
  }, ue = (a) => {
12
12
  const m = b(!1);
13
13
  return Y(() => {
14
14
  m.value = !0;
15
15
  }), () => m.value && a.default ? a.default() : null;
16
- }, ye = $({
16
+ }, ve = $({
17
17
  setup(a, { slots: m }) {
18
- const l = Q("ClientOnly");
19
- return l && typeof l != "string" ? () => X(l, null, { default: () => m.default ? m.default() : null }) : ue(m);
18
+ const l = Z("ClientOnly");
19
+ return l && typeof l != "string" ? () => Q(l, null, { default: () => m.default ? m.default() : null }) : ue(m);
20
20
  }
21
- }), pe = {
21
+ }), ye = {
22
22
  search: "搜索",
23
23
  "search.hot": "热门搜索",
24
24
  "search.placeholder": "搜索",
25
25
  "search.expandedPlaceholder": "请输入搜索内容",
26
26
  "search.history": "历史搜索",
27
+ "search.imagePlaceholder": "输入文字搜索,支持粘贴或上传报错截图",
28
+ "search.extendedPlaceholder": "按下回车立即搜索,或补充更多信息进行搜索",
29
+ "search.imageUploadTooltip": "报错截图搜索,支持jpg、png、jpeg等,最大10M",
30
+ "search.imageUploadFailed": "图片上传失败,请检查网络后重试",
31
+ "search.imageSizeExceeded": "图片大小超出限制",
32
+ "search.imageInvalidType": "请上传图片文件",
33
+ "search.onestep": "导航搜索直达",
34
+ "search.suggest": "搜索建议",
35
+ "search.noData": "暂无数据",
36
+ "search.suggestListLabel": "您是不是在寻找:",
27
37
  "meeting.audioToText": "语音转文字",
28
38
  "meeting.item1": "发起人:",
29
39
  "meeting.item2": "SIG组:",
@@ -270,12 +280,22 @@ const ve = (a, m) => {
270
280
  "events.searchPlaceholder": "搜索活动名称、地点",
271
281
  "common.collapse": "收起",
272
282
  "common.expand": "展开"
273
- }, fe = {
283
+ }, pe = {
274
284
  search: "Search",
275
285
  "search.hot": "Top search",
276
286
  "search.placeholder": "Please enter the content",
277
287
  "search.expandedPlaceholder": "Please enter the content",
278
288
  "search.history": "History",
289
+ "search.imagePlaceholder": "Search by text or upload image of any error",
290
+ "search.extendedPlaceholder": "Press Enter to start, or refine your search with more info",
291
+ "search.imageUploadTooltip": "JPG, PNG, JPEG supported (max 10 MB)",
292
+ "search.imageUploadFailed": "Upload failed. Check connection and try again.",
293
+ "search.imageSizeExceeded": "Image size exceeds the limit",
294
+ "search.imageInvalidType": "Please upload an image file",
295
+ "search.onestep": "Quick Navigation",
296
+ "search.suggest": "Suggestions",
297
+ "search.noData": "No data",
298
+ "search.suggestListLabel": "Did you mean: ",
279
299
  "meeting.audioToText": "Speech to Text",
280
300
  "meeting.item1": "Convener: ",
281
301
  "meeting.item2": "SIG: ",
@@ -533,47 +553,47 @@ const ve = (a, m) => {
533
553
  "events.searchPlaceholder": "Enter search...",
534
554
  "common.collapse": "Collapse",
535
555
  "common.expand": "Expand"
536
- }, he = Symbol("provide-config-provider"), ke = b({
537
- zh: pe,
538
- en: fe
556
+ }, he = Symbol("provide-config-provider"), fe = b({
557
+ zh: ye,
558
+ en: pe
539
559
  });
540
- var Ae = /* @__PURE__ */ ((a) => (a.ZH = "zh", a.EN = "en", a))(Ae || {});
541
- function we() {
542
- const m = ee() ? te(he) : null, l = x(() => (m == null ? void 0 : m.locale) || "zh");
560
+ var ke = /* @__PURE__ */ ((a) => (a.ZH = "zh", a.EN = "en", a))(ke || {});
561
+ function Ae() {
562
+ const m = X() ? ee(he) : null, l = _(() => (m == null ? void 0 : m.locale) || "zh");
543
563
  return {
544
564
  locale: l,
545
- t: (A, ...r) => {
546
- const p = ke.value[l.value][A];
547
- if (se(p))
548
- return console.warn(`Cannot translate the value of keypath '${A}'`), A;
549
- if (r.length > 0 && ce(p)) {
565
+ t: (k, ...r) => {
566
+ const i = fe.value[l.value][k];
567
+ if (me(i))
568
+ return console.warn(`Cannot translate the value of keypath '${k}'`), k;
569
+ if (r.length > 0 && se(i)) {
550
570
  if (r.length === 1 && typeof r[0] == "object" && r[0] !== null) {
551
- const n = r[0];
552
- return p.replace(/{(\w+)}/g, (d, E) => n[E] ?? d);
571
+ const d = r[0];
572
+ return i.replace(/{(\w+)}/g, (A, E) => d[E] ?? A);
553
573
  }
554
- return p.replace(/{(\d+)}/g, (n, d) => r[d] ?? n);
574
+ return i.replace(/{(\d+)}/g, (d, A) => r[A] ?? d);
555
575
  }
556
- return p;
576
+ return i;
557
577
  }
558
578
  };
559
579
  }
560
- const Te = { class: "cookie-notice-content" }, Se = ["type"], De = { class: "cookie-title" }, Ce = {
580
+ const we = { class: "cookie-notice-content" }, Te = ["type"], Se = { class: "cookie-title" }, De = {
561
581
  style: { width: "1em", height: "1em" },
562
582
  xmlns: "http://www.w3.org/2000/svg",
563
583
  version: "1.1",
564
584
  width: "24",
565
585
  height: "24",
566
586
  viewBox: "0 0 24 24"
567
- }, Ee = {
587
+ }, Ce = {
568
588
  class: "cookie-zh-title",
569
589
  style: { "margin-top": "0" }
570
- }, Me = ["href"], be = {
590
+ }, Ee = ["href"], Me = {
571
591
  key: 1,
572
592
  class: "cookie-en-title"
573
- }, Re = {
593
+ }, be = {
574
594
  key: 0,
575
595
  class: "cookie-en-content"
576
- }, xe = { class: "cookie-en-desc" }, _e = ["href"], Ne = { class: "cookie-notice-right" }, Ie = { class: "dlg-title" }, Ue = { class: "cookie-dlg-content" }, Be = { class: "content-item" }, Le = { class: "item-header" }, Ge = { class: "item-title" }, Pe = { class: "item-extra" }, Oe = { class: "item-detail" }, je = { class: "content-item" }, Ve = { class: "item-header" }, ze = { class: "item-title" }, Fe = { class: "item-extra" }, We = { class: "item-detail" }, He = "0", H = "1", $e = "2", R = "3", Ye = "agreed-cookiepolicy-zh", Ke = "agreed-cookiepolicy-en", qe = /* @__PURE__ */ $({
596
+ }, Re = { class: "cookie-en-desc" }, xe = ["href"], _e = { class: "cookie-notice-right" }, Ne = { class: "dlg-title" }, Ie = { class: "cookie-dlg-content" }, Ue = { class: "content-item" }, Le = { class: "item-header" }, Pe = { class: "item-title" }, Be = { class: "item-extra" }, Ge = { class: "item-detail" }, Oe = { class: "content-item" }, je = { class: "item-header" }, Ve = { class: "item-title" }, ze = { class: "item-extra" }, Fe = { class: "item-detail" }, We = "0", H = "1", He = "2", x = "3", $e = "agreed-cookiepolicy-zh", Ye = "agreed-cookiepolicy-en", Ke = /* @__PURE__ */ $({
577
597
  __name: "OElCookieNotice",
578
598
  props: {
579
599
  visible: { type: Boolean },
@@ -584,60 +604,60 @@ const Te = { class: "cookie-notice-content" }, Se = ["type"], De = { class: "coo
584
604
  },
585
605
  emits: ["update:visible"],
586
606
  setup(a, { expose: m, emit: l }) {
587
- const k = a, A = l, { lePadV: r, isPhone: K } = me(), { locale: p, t: n } = we(), d = x(() => p.value === "zh"), E = b(), _ = x(() => E.value ? !!getComputedStyle(E.value).getPropertyValue("--grid-content-width") : !1), f = x(() => d.value ? Ye : Ke), w = b(!1), S = de(k, "visible", A, { defaultValue: !1 }), M = (c) => {
588
- const i = document.cookie.split(";").find((v) => v.split("=")[0].trim() === encodeURIComponent(c));
589
- return i ? decodeURIComponent(i.split("=")[1]) : null;
590
- }, N = (c, i, v, Z) => {
591
- const J = `; max-age=${v * 24 * 60 * 60}`;
592
- document.cookie = `${encodeURIComponent(c)}=${encodeURIComponent(i)}${J}; path=/; domain=${Z}`;
607
+ const f = a, k = l, { lePadV: r } = ae(), { locale: R, t: i } = Ae(), d = _(() => R.value === "zh"), A = b(), E = _(() => A.value ? !!getComputedStyle(A.value).getPropertyValue("--grid-content-width") : !1), p = _(() => d.value ? $e : Ye), w = b(!1), S = re(f, "visible", k, { defaultValue: !1 }), M = (c) => {
608
+ const n = document.cookie.split(";").find((u) => u.split("=")[0].trim() === encodeURIComponent(c));
609
+ return n ? decodeURIComponent(n.split("=")[1]) : null;
610
+ }, N = (c, n, u, q) => {
611
+ const J = `; max-age=${u * 24 * 60 * 60}`;
612
+ document.cookie = `${encodeURIComponent(c)}=${encodeURIComponent(n)}${J}; path=/; domain=${q}`;
593
613
  }, D = (c) => {
594
- typeof c == "boolean" ? S.value = c : S.value = !S.value, ae(() => {
595
- !S.value && d.value && M(f.value) !== R && N(f.value, R, 180, k.cookieDomain ?? location.hostname);
614
+ typeof c == "boolean" ? S.value = c : S.value = !S.value, oe(() => {
615
+ !S.value && d.value && M(p.value) !== x && N(p.value, x, 180, f.cookieDomain ?? location.hostname);
596
616
  });
597
617
  }, C = b(!1), I = (c) => {
598
618
  typeof c == "boolean" ? C.value = c : C.value = !C.value;
599
- }, G = () => d.value ? M(f.value) !== R : (M(f.value) ?? "0") === He, P = () => d.value ? M(f.value) === R : M(f.value) === H;
619
+ }, B = () => d.value ? M(p.value) !== x : (M(p.value) ?? "0") === We, G = () => d.value ? M(p.value) === x : M(p.value) === H;
600
620
  Y(() => {
601
- G() && D(!0);
602
- }), ie(p, () => {
603
- D(G());
621
+ B() && D(!0);
622
+ }), te(R, () => {
623
+ D(B());
604
624
  });
605
625
  const U = () => {
606
- w.value = !0, N(f.value, H, 180, k.cookieDomain ?? location.hostname), D(!1);
626
+ w.value = !0, N(p.value, H, 180, f.cookieDomain ?? location.hostname), D(!1);
607
627
  }, O = () => {
608
- w.value = !1, N(f.value, $e, 180, k.cookieDomain ?? location.hostname), D(!1);
628
+ w.value = !1, N(p.value, He, 180, f.cookieDomain ?? location.hostname), D(!1);
609
629
  }, j = () => {
610
630
  w.value ? U() : O(), I(!1);
611
631
  }, V = () => {
612
632
  w.value = !0, U(), I(!1);
613
- }, q = () => {
614
- w.value = P();
633
+ }, K = () => {
634
+ w.value = G();
615
635
  };
616
636
  return m({
617
637
  check() {
618
- P() === S.value && D();
638
+ G() === S.value && D();
619
639
  }
620
- }), (c, i) => (u(), z(e(ye), null, {
640
+ }), (c, n) => (v(), z(e(ve), null, {
621
641
  default: s(() => [
622
- (u(), z(ne, {
642
+ (v(), z(ie, {
623
643
  to: a.wrapper || "#app"
624
644
  }, [
625
- e(S) ? (u(), h("div", {
645
+ e(S) ? (v(), h("div", {
626
646
  key: 0,
627
647
  ref_key: "cookieNoticeRef",
628
- ref: E,
648
+ ref: A,
629
649
  class: "cookie-notice"
630
650
  }, [
631
- t("div", Te, [
651
+ t("div", we, [
632
652
  t("div", {
633
- type: e(p),
634
- class: F({ "cookie-notice-wrap-grid": _.value, "cookie-notice-wrap": !_.value })
653
+ type: e(R),
654
+ class: F({ "cookie-notice-wrap-grid": E.value, "cookie-notice-wrap": !E.value })
635
655
  }, [
636
- t("div", De, [
637
- d.value ? (u(), h(L, { key: 0 }, [
656
+ t("div", Se, [
657
+ d.value ? (v(), h(L, { key: 0 }, [
638
658
  g(e(W), { style: { transform: "rotate(180deg)", "font-size": "24px", "margin-right": "4px" } }, {
639
659
  default: s(() => [
640
- (u(), h("svg", Ce, [...i[5] || (i[5] = [
660
+ (v(), h("svg", De, [...n[5] || (n[5] = [
641
661
  t("path", {
642
662
  fill: "#002fa7",
643
663
  d: "M21 12c0 4.971-4.029 9-9 9s-9-4.029-9-9c0-4.971 4.029-9 9-9s9 4.029 9 9z"
@@ -650,22 +670,22 @@ const Te = { class: "cookie-notice-content" }, Se = ["type"], De = { class: "coo
650
670
  ]),
651
671
  _: 1
652
672
  }),
653
- t("p", Ee, [
654
- y(o(e(n)("cookie.desc")) + " ", 1),
673
+ t("p", Ce, [
674
+ y(o(e(i)("cookie.desc")) + " ", 1),
655
675
  t("a", {
656
676
  href: a.detailUrl,
657
677
  target: "_blank",
658
678
  rel: "noopener noreferrer"
659
- }, o(e(n)("cookie.about")), 9, Me)
679
+ }, o(e(i)("cookie.about")), 9, Ee)
660
680
  ])
661
- ], 64)) : (u(), h("p", be, o(e(n)("cookie.title", [a.community])), 1)),
681
+ ], 64)) : (v(), h("p", Me, o(e(i)("cookie.title", [a.community])), 1)),
662
682
  g(e(W), {
663
683
  class: "cookie-notice-close",
664
- onClick: i[0] || (i[0] = (v) => D(!1))
684
+ onClick: n[0] || (n[0] = (u) => D(!1))
665
685
  }, {
666
686
  default: s(() => [
667
- oe(c.$slots, "close-icon", {}, () => [
668
- i[6] || (i[6] = t("svg", {
687
+ ne(c.$slots, "close-icon", {}, () => [
688
+ n[6] || (n[6] = t("svg", {
669
689
  xmlns: "http://www.w3.org/2000/svg",
670
690
  viewBox: "0 0 24 24"
671
691
  }, [
@@ -679,24 +699,24 @@ const Te = { class: "cookie-notice-content" }, Se = ["type"], De = { class: "coo
679
699
  _: 3
680
700
  })
681
701
  ]),
682
- d.value ? B("", !0) : (u(), h("div", Re, [
683
- t("p", xe, [
684
- y(o(e(n)("cookie.desc")) + " ", 1),
702
+ d.value ? P("", !0) : (v(), h("div", be, [
703
+ t("p", Re, [
704
+ y(o(e(i)("cookie.desc")) + " ", 1),
685
705
  t("a", {
686
706
  href: a.detailUrl,
687
707
  target: "_blank",
688
708
  rel: "noopener noreferrer"
689
- }, o(e(n)("cookie.about")), 9, _e),
690
- i[7] || (i[7] = y(". ", -1))
709
+ }, o(e(i)("cookie.about")), 9, xe),
710
+ n[7] || (n[7] = y(". ", -1))
691
711
  ]),
692
- t("div", Ne, [
712
+ t("div", _e, [
693
713
  g(e(T), {
694
714
  round: "",
695
715
  type: "primary",
696
716
  onClick: U
697
717
  }, {
698
718
  default: s(() => [
699
- y(o(e(n)("cookie.acceptAll")), 1)
719
+ y(o(e(i)("cookie.acceptAll")), 1)
700
720
  ]),
701
721
  _: 1
702
722
  }),
@@ -706,38 +726,38 @@ const Te = { class: "cookie-notice-content" }, Se = ["type"], De = { class: "coo
706
726
  onClick: O
707
727
  }, {
708
728
  default: s(() => [
709
- y(o(e(n)("cookie.rejectAll")), 1)
729
+ y(o(e(i)("cookie.rejectAll")), 1)
710
730
  ]),
711
731
  _: 1
712
732
  }),
713
733
  g(e(T), {
714
734
  round: "",
715
735
  type: "primary",
716
- onClick: i[1] || (i[1] = (v) => I(!0))
736
+ onClick: n[1] || (n[1] = (u) => I(!0))
717
737
  }, {
718
738
  default: s(() => [
719
- y(o(e(n)("cookie.manage")), 1)
739
+ y(o(e(i)("cookie.manage")), 1)
720
740
  ]),
721
741
  _: 1
722
742
  })
723
743
  ])
724
744
  ]))
725
- ], 10, Se)
745
+ ], 10, Te)
726
746
  ]),
727
- g(e(ge), {
747
+ g(e(ce), {
728
748
  "show-close": !1,
729
- class: F({ "cookie-dlg-bottom": e(r), "grid-width-dlg": _.value }),
749
+ class: F({ "cookie-dlg-bottom": e(r), "grid-width-dlg": E.value }),
730
750
  modelValue: C.value,
731
- "onUpdate:modelValue": i[4] || (i[4] = (v) => C.value = v),
751
+ "onUpdate:modelValue": n[4] || (n[4] = (u) => C.value = u),
732
752
  "destroy-on-close": "",
733
- onOpen: q
753
+ onOpen: K
734
754
  }, {
735
755
  header: s(() => [
736
- e(r) ? B("", !0) : (u(), h("div", {
756
+ e(r) ? P("", !0) : (v(), h("div", {
737
757
  key: 0,
738
758
  class: "dlg-close-icon",
739
- onClick: i[2] || (i[2] = (v) => C.value = !1)
740
- }, [...i[8] || (i[8] = [
759
+ onClick: n[2] || (n[2] = (u) => C.value = !1)
760
+ }, [...n[8] || (n[8] = [
741
761
  t("svg", {
742
762
  viewBox: "0 0 24 24",
743
763
  class: "o-icon-close"
@@ -748,20 +768,20 @@ const Te = { class: "cookie-notice-content" }, Se = ["type"], De = { class: "coo
748
768
  })
749
769
  ], -1)
750
770
  ])])),
751
- t("span", Ie, o(e(n)("cookie.manage")), 1)
771
+ t("span", Ne, o(e(i)("cookie.manage")), 1)
752
772
  ]),
753
773
  footer: s(() => [
754
- e(r) ? (u(), h(L, { key: 0 }, [
774
+ e(r) ? (v(), h(L, { key: 0 }, [
755
775
  g(e(T), {
756
776
  type: "text",
757
777
  onClick: j
758
778
  }, {
759
779
  default: s(() => [
760
- y(o(e(n)("cookie.saveSetting")), 1)
780
+ y(o(e(i)("cookie.saveSetting")), 1)
761
781
  ]),
762
782
  _: 1
763
783
  }),
764
- g(e(re), {
784
+ g(e(le), {
765
785
  direction: "vertical",
766
786
  style: { margin: "0 24px" }
767
787
  }),
@@ -770,18 +790,18 @@ const Te = { class: "cookie-notice-content" }, Se = ["type"], De = { class: "coo
770
790
  onClick: V
771
791
  }, {
772
792
  default: s(() => [
773
- y(o(e(n)("cookie.acceptAll")), 1)
793
+ y(o(e(i)("cookie.acceptAll")), 1)
774
794
  ]),
775
795
  _: 1
776
796
  })
777
- ], 64)) : (u(), h(L, { key: 1 }, [
797
+ ], 64)) : (v(), h(L, { key: 1 }, [
778
798
  g(e(T), {
779
799
  round: "",
780
800
  type: "primary",
781
801
  onClick: j
782
802
  }, {
783
803
  default: s(() => [
784
- y(o(e(n)("cookie.saveSetting")), 1)
804
+ y(o(e(i)("cookie.saveSetting")), 1)
785
805
  ]),
786
806
  _: 1
787
807
  }),
@@ -791,49 +811,49 @@ const Te = { class: "cookie-notice-content" }, Se = ["type"], De = { class: "coo
791
811
  onClick: V
792
812
  }, {
793
813
  default: s(() => [
794
- y(o(e(n)("cookie.acceptAll")), 1)
814
+ y(o(e(i)("cookie.acceptAll")), 1)
795
815
  ]),
796
816
  _: 1
797
817
  })
798
818
  ], 64))
799
819
  ]),
800
820
  default: s(() => [
801
- t("div", Ue, [
802
- t("div", Be, [
821
+ t("div", Ie, [
822
+ t("div", Ue, [
803
823
  t("div", Le, [
804
- t("span", Ge, o(e(n)("cookie.necessaryCookie")), 1),
805
- t("span", Pe, o(e(n)("cookie.alwaysOn")), 1)
824
+ t("span", Pe, o(e(i)("cookie.necessaryCookie")), 1),
825
+ t("span", Be, o(e(i)("cookie.alwaysOn")), 1)
806
826
  ]),
807
- t("div", Oe, o(e(n)("cookie.necessaryCookieDetail")), 1)
827
+ t("div", Ge, o(e(i)("cookie.necessaryCookieDetail")), 1)
808
828
  ]),
809
- t("div", je, [
810
- t("div", Ve, [
811
- t("span", ze, o(e(n)("cookie.analyticalCookie")), 1),
812
- t("span", Fe, [
813
- g(e(le), {
829
+ t("div", Oe, [
830
+ t("div", je, [
831
+ t("span", Ve, o(e(i)("cookie.analyticalCookie")), 1),
832
+ t("span", ze, [
833
+ g(e(ge), {
814
834
  modelValue: w.value,
815
- "onUpdate:modelValue": i[3] || (i[3] = (v) => w.value = v)
835
+ "onUpdate:modelValue": n[3] || (n[3] = (u) => w.value = u)
816
836
  }, null, 8, ["modelValue"])
817
837
  ])
818
838
  ]),
819
- t("div", We, o(e(n)("cookie.analyticalCookieDetail")), 1)
839
+ t("div", Fe, o(e(i)("cookie.analyticalCookieDetail")), 1)
820
840
  ])
821
841
  ])
822
842
  ]),
823
843
  _: 1
824
844
  }, 8, ["class", "modelValue"])
825
- ], 512)) : B("", !0)
845
+ ], 512)) : P("", !0)
826
846
  ], 8, ["to"]))
827
847
  ]),
828
848
  _: 3
829
849
  }));
830
850
  }
831
- }), tt = /* @__PURE__ */ ve(qe, [["__scopeId", "data-v-415d4b9a"]]);
851
+ }), et = /* @__PURE__ */ de(Ke, [["__scopeId", "data-v-21ffe21d"]]);
832
852
  export {
833
- ye as C,
834
- Ae as L,
835
- tt as O,
836
- ve as _,
853
+ ve as C,
854
+ ke as L,
855
+ et as O,
856
+ de as _,
837
857
  he as c,
838
- we as u
858
+ Ae as u
839
859
  };