@opendesign-plus/components 0.0.1-rc.24 → 0.0.1-rc.26

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 (80) hide show
  1. package/dist/chunk-OElCookieNotice.cjs.js +1 -1
  2. package/dist/chunk-OElCookieNotice.es.js +111 -88
  3. package/dist/components/OHeaderSearch.vue.d.ts +814 -534
  4. package/dist/components/OHeaderUser.vue.d.ts +1 -1
  5. package/dist/components/OLanguageSwitcher.vue.d.ts +49 -0
  6. package/dist/components/OThemeSwitcher.vue.d.ts +2 -5
  7. package/dist/components/activity/OActivityMyCalendar.vue.d.ts +4 -4
  8. package/dist/components/activity/index.d.ts +2 -2
  9. package/dist/components/banner/OBanner.vue.d.ts +13 -0
  10. package/dist/components/banner/OBannerContent.vue.d.ts +7 -0
  11. package/dist/components/banner/index.d.ts +68 -0
  12. package/dist/components/banner/types.d.ts +31 -0
  13. package/dist/components/meeting/OMeetingCalendar.vue.d.ts +5 -3
  14. package/dist/components/meeting/OMeetingMyCalendar.vue.d.ts +4 -4
  15. package/dist/components/meeting/OMeetingPlayback.vue.d.ts +50 -1
  16. package/dist/components/meeting/components/OMeetingCalendarSelector.vue.d.ts +1 -1
  17. package/dist/components/meeting/components/OMeetingPlaybackSubtitles.vue.d.ts +16 -1
  18. package/dist/components/meeting/composables/useMeetingConfig.d.ts +1 -1
  19. package/dist/components/meeting/index.d.ts +347 -20
  20. package/dist/components/meeting/types.d.ts +1 -1
  21. package/dist/components/search/OSearchInput.vue.d.ts +1005 -0
  22. package/dist/components/search/composables/useImageSearch.d.ts +48 -0
  23. package/dist/components/search/composables/useKeywordHighlight.d.ts +2 -0
  24. package/dist/components/search/composables/useSearchHistory.d.ts +14 -0
  25. package/dist/components/search/index.d.ts +590 -0
  26. package/dist/components/search/internal/HighlightText.vue.d.ts +9 -0
  27. package/dist/components/search/internal/SearchImageInput.vue.d.ts +716 -0
  28. package/dist/components/search/internal/SearchPanel.vue.d.ts +100 -0
  29. package/dist/components/search/types.d.ts +20 -0
  30. package/dist/components.cjs.js +40 -40
  31. package/dist/components.css +1 -1
  32. package/dist/components.es.js +11352 -10056
  33. package/dist/index.d.ts +4 -2
  34. package/package.json +4 -4
  35. package/scripts/generate-components-index.js +1 -1
  36. package/src/assets/styles/element-plus.scss +16 -9
  37. package/src/assets/svg-icons/icon-delete-hover.svg +4 -0
  38. package/src/assets/svg-icons/icon-delete.svg +5 -1
  39. package/src/assets/svg-icons/icon-image-close.svg +4 -0
  40. package/src/assets/svg-icons/icon-image-upload.svg +3 -0
  41. package/src/assets/svg-icons/icon-image-zoomin.svg +3 -0
  42. package/src/assets/svg-icons/icon-refresh.svg +3 -0
  43. package/src/components/OHeaderSearch.vue +445 -418
  44. package/src/components/OLanguageSwitcher.vue +211 -0
  45. package/src/components/OPlusConfigProvider.vue +2 -2
  46. package/src/components/OThemeSwitcher.vue +51 -27
  47. package/src/components/activity/OActivityForm.vue +7 -3
  48. package/src/components/activity/OActivityMyCalendar.vue +16 -7
  49. package/src/components/banner/OBanner.vue +288 -0
  50. package/src/components/banner/OBannerContent.vue +175 -0
  51. package/src/components/banner/index.ts +18 -0
  52. package/src/components/banner/types.ts +39 -0
  53. package/src/components/header/OHeader.vue +1 -1
  54. package/src/components/meeting/OMeetingCalendar.vue +11 -6
  55. package/src/components/meeting/OMeetingForm.vue +55 -9
  56. package/src/components/meeting/OMeetingMyCalendar.vue +17 -14
  57. package/src/components/meeting/OMeetingPlayback.vue +10 -4
  58. package/src/components/meeting/OMeetingSigCalendar.vue +1 -1
  59. package/src/components/meeting/components/OMeetingCalendarList.vue +57 -21
  60. package/src/components/meeting/components/OMeetingCalendarSelector.vue +11 -8
  61. package/src/components/meeting/components/OMeetingDetail.vue +1 -1
  62. package/src/components/meeting/components/OMeetingPlaybackSubtitles.vue +7 -4
  63. package/src/components/meeting/composables/useMeetingConfig.ts +5 -5
  64. package/src/components/meeting/index.ts +2 -2
  65. package/src/components/meeting/types.ts +1 -1
  66. package/src/components/search/OSearchInput.vue +526 -0
  67. package/src/components/search/composables/useImageSearch.ts +157 -0
  68. package/src/components/search/composables/useKeywordHighlight.ts +30 -0
  69. package/src/components/search/composables/useSearchHistory.ts +75 -0
  70. package/src/components/search/index.ts +23 -0
  71. package/src/components/search/internal/HighlightText.vue +37 -0
  72. package/src/components/search/internal/SearchImageInput.vue +498 -0
  73. package/src/components/search/internal/SearchPanel.vue +431 -0
  74. package/src/components/search/types.ts +25 -0
  75. package/src/i18n/en.ts +13 -1
  76. package/src/i18n/zh.ts +14 -3
  77. package/src/index.ts +5 -3
  78. package/vite.config.ts +4 -0
  79. package/dist/components/OBanner.vue.d.ts +0 -11
  80. package/src/components/OBanner.vue +0 -398
@@ -1,29 +1,34 @@
1
- import { defineComponent as $, resolveComponent as J, h as Q, ref as b, onMounted as Y, getCurrentInstance as X, inject as ee, computed as _, watch as te, openBlock as u, createBlock as z, unref as e, withCtx as s, Teleport as ie, createElementBlock as f, createElementVNode as t, normalizeClass as F, Fragment as B, createVNode as g, createTextVNode as y, toDisplayString as o, renderSlot as ne, createCommentVNode as L, nextTick as oe } from "vue";
2
- import { useScreen as ae } from "@opendesign-plus/composables";
1
+ import { defineComponent as $, resolveComponent as Z, h as Q, ref as b, onMounted as Y, getCurrentInstance as X, inject as ee, computed as I, 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 a, renderSlot as ne, createCommentVNode as P, nextTick as ae } from "vue";
2
+ import { useScreen as oe } from "@opendesign-plus/composables";
3
3
  import { isUndefined as me, isString as se } from "@opensig/opendesign";
4
4
  import { ElIcon as W, ElButton as T, ElDialog as ce, ElSwitch as ge, ElDivider as le } from "element-plus";
5
5
  import { useVModel as re } from "@vueuse/core";
6
- const de = (a, m) => {
7
- const l = a.__vccOpts || a;
8
- for (const [h, k] of m)
9
- l[h] = k;
10
- return l;
11
- }, ve = (a) => {
6
+ const de = (o) => {
12
7
  const m = b(!1);
13
8
  return Y(() => {
14
9
  m.value = !0;
15
- }), () => m.value && a.default ? a.default() : null;
10
+ }), () => m.value && o.default ? o.default() : null;
16
11
  }, ue = $({
17
- setup(a, { slots: m }) {
18
- const l = J("ClientOnly");
19
- return l && typeof l != "string" ? () => Q(l, null, { default: () => m.default ? m.default() : null }) : ve(m);
12
+ setup(o, { slots: m }) {
13
+ const l = Z("ClientOnly");
14
+ return l && typeof l != "string" ? () => Q(l, null, { default: () => m.default ? m.default() : null }) : de(m);
20
15
  }
21
- }), ye = {
16
+ }), ve = {
22
17
  search: "搜索",
23
18
  "search.hot": "热门搜索",
24
19
  "search.placeholder": "搜索",
25
20
  "search.expandedPlaceholder": "请输入搜索内容",
26
21
  "search.history": "历史搜索",
22
+ "search.imagePlaceholder": "输入文字搜索,支持粘贴或上传报错截图",
23
+ "search.extendedPlaceholder": "按下回车立即搜索,或补充更多信息进行搜索",
24
+ "search.imageUploadTooltip": "报错截图搜索,支持jpg、png、jpeg等,最大10M",
25
+ "search.imageUploadFailed": "图片上传失败,请检查网络后重试",
26
+ "search.imageSizeExceeded": "图片大小超出限制",
27
+ "search.imageInvalidType": "请上传图片文件",
28
+ "search.onestep": "导航搜索直达",
29
+ "search.suggest": "搜索建议",
30
+ "search.noData": "暂无数据",
31
+ "search.suggestListLabel": "您是不是在寻找:",
27
32
  "meeting.audioToText": "语音转文字",
28
33
  "meeting.item1": "发起人:",
29
34
  "meeting.item2": "SIG组:",
@@ -52,7 +57,7 @@ const de = (a, m) => {
52
57
  "meeting.cycleMeetingText": "{startDate} 至 {endDate} {cycleType} {startTime} 到 {endTime}的周期会议",
53
58
  "meeting.cycleMeetingText2": "{cycleType} {startTime} 到 {endTime} (UTC+08:00)Beijing 有效期从{startDate} 至 {endDate}",
54
59
  "meeting.cycleDay": "每天",
55
- "meeting.cycleWeek.one": "{1}周{0}",
60
+ "meeting.cycleWeek.one": "每周{0}",
56
61
  "meeting.cycleWeek.other": "每{1}周{0}",
57
62
  "meeting.cycleSplit": "、",
58
63
  "meeting.cycleMonth": "每月{0}号",
@@ -125,8 +130,9 @@ const de = (a, m) => {
125
130
  "meeting.meetingDate": "会议日期",
126
131
  "meeting.startTime": "开始时间",
127
132
  "meeting.endTime": "结束时间",
128
- "meeting.meetingRecord": "会议录制",
129
- "meeting.meetingRecordDesc": "开启后将自动录屏,本服务由{0}会议提供。并将在1个工作日内自动上传会议AI版本的链接回放。",
133
+ "meeting.meetingRecord": "会议AI录制",
134
+ "meeting.meetingRecordDesc1": "1、会议AI录制已开启,开启会议AI听即开启云录制,会后可回放会议录制并生成语音文字和AI纪要。",
135
+ "meeting.meetingRecordDesc2": "2、AI生成的会议回放链接将在 1 个工作日内自动生成并上传。",
130
136
  "meeting.day0": "天",
131
137
  "meeting.week0": "周",
132
138
  "meeting.month0": "月",
@@ -270,12 +276,22 @@ const de = (a, m) => {
270
276
  "events.searchPlaceholder": "搜索活动名称、地点",
271
277
  "common.collapse": "收起",
272
278
  "common.expand": "展开"
273
- }, pe = {
279
+ }, ye = {
274
280
  search: "Search",
275
281
  "search.hot": "Top search",
276
282
  "search.placeholder": "Please enter the content",
277
283
  "search.expandedPlaceholder": "Please enter the content",
278
284
  "search.history": "History",
285
+ "search.imagePlaceholder": "Search by text or upload image of any error",
286
+ "search.extendedPlaceholder": "Press Enter to start, or refine your search with more info",
287
+ "search.imageUploadTooltip": "JPG, PNG, JPEG supported (max 10 MB)",
288
+ "search.imageUploadFailed": "Upload failed. Check connection and try again.",
289
+ "search.imageSizeExceeded": "Image size exceeds the limit",
290
+ "search.imageInvalidType": "Please upload an image file",
291
+ "search.onestep": "Quick Navigation",
292
+ "search.suggest": "Suggestions",
293
+ "search.noData": "No data",
294
+ "search.suggestListLabel": "Did you mean: ",
279
295
  "meeting.audioToText": "Speech to Text",
280
296
  "meeting.item1": "Convener: ",
281
297
  "meeting.item2": "SIG: ",
@@ -377,8 +393,10 @@ const de = (a, m) => {
377
393
  "meeting.meetingDate": "Date",
378
394
  "meeting.startTime": "Start time",
379
395
  "meeting.endTime": "End time",
380
- "meeting.meetingRecord": "Recording",
396
+ "meeting.meetingRecord": "AI Recording",
381
397
  "meeting.meetingRecordDesc": "Enables auto screen recording. This service is provided by {0} Meeting. AI-powered playback will be automatically uploaded within one working day.",
398
+ "meeting.meetingRecordDesc1": "1. Meeting AI recording is now enabled. Turning on Meeting AI Listen automatically activates cloud recording as well. After the meeting, you can replay the recording, and voice-to-text transcripts along with AI meeting minutes will be automatically generated.",
399
+ "meeting.meetingRecordDesc2": "2. The AI-generated meeting replay link will be automatically generated and uploaded within 1 business day.",
382
400
  "meeting.day0": "day(s)",
383
401
  "meeting.week0": "week(s)",
384
402
  "meeting.month0": "month(s)",
@@ -533,13 +551,13 @@ const de = (a, m) => {
533
551
  "events.searchPlaceholder": "Enter search...",
534
552
  "common.collapse": "Collapse",
535
553
  "common.expand": "Expand"
536
- }, fe = Symbol("provide-config-provider"), he = b({
537
- zh: ye,
538
- en: pe
554
+ }, pe = Symbol("provide-config-provider"), he = b({
555
+ zh: ve,
556
+ en: ye
539
557
  });
540
- var ke = /* @__PURE__ */ ((a) => (a.ZH = "zh", a.EN = "en", a))(ke || {});
541
- function Ae() {
542
- const m = X() ? ee(fe) : null, l = _(() => (m == null ? void 0 : m.locale) || "zh");
558
+ var fe = /* @__PURE__ */ ((o) => (o.ZH = "zh", o.EN = "en", o))(fe || {});
559
+ function ke() {
560
+ const m = X() ? ee(pe) : null, l = I(() => (m == null ? void 0 : m.locale) || "zh");
543
561
  return {
544
562
  locale: l,
545
563
  t: (k, ...r) => {
@@ -557,7 +575,12 @@ function Ae() {
557
575
  }
558
576
  };
559
577
  }
560
- const we = { class: "cookie-notice-content" }, Te = ["type"], Se = { class: "cookie-title" }, De = {
578
+ const Ae = (o, m) => {
579
+ const l = o.__vccOpts || o;
580
+ for (const [f, k] of m)
581
+ l[f] = k;
582
+ return l;
583
+ }, we = { class: "cookie-notice-content" }, Te = ["type"], Se = { class: "cookie-title" }, De = {
561
584
  style: { width: "1em", height: "1em" },
562
585
  xmlns: "http://www.w3.org/2000/svg",
563
586
  version: "1.1",
@@ -573,7 +596,7 @@ const we = { class: "cookie-notice-content" }, Te = ["type"], Se = { class: "coo
573
596
  }, be = {
574
597
  key: 0,
575
598
  class: "cookie-en-content"
576
- }, 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" }, Be = { class: "item-header" }, Le = { class: "item-title" }, Ge = { class: "item-extra" }, Pe = { 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__ */ $({
599
+ }, Re = { class: "cookie-en-desc" }, xe = ["href"], Ie = { class: "cookie-notice-right" }, _e = { class: "dlg-title" }, Ne = { 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
600
  __name: "OElCookieNotice",
578
601
  props: {
579
602
  visible: { type: Boolean },
@@ -583,46 +606,46 @@ const we = { class: "cookie-notice-content" }, Te = ["type"], Se = { class: "coo
583
606
  cookieDomain: {}
584
607
  },
585
608
  emits: ["update:visible"],
586
- setup(a, { expose: m, emit: l }) {
587
- const h = 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(h, "visible", k, { defaultValue: !1 }), M = (c) => {
588
- const n = document.cookie.split(";").find((v) => v.split("=")[0].trim() === encodeURIComponent(c));
609
+ setup(o, { expose: m, emit: l }) {
610
+ const f = o, k = l, { lePadV: r } = oe(), { locale: R, t: i } = ke(), d = I(() => R.value === "zh"), A = b(), E = I(() => A.value ? !!getComputedStyle(A.value).getPropertyValue("--grid-content-width") : !1), p = I(() => d.value ? $e : Ye), w = b(!1), S = re(f, "visible", k, { defaultValue: !1 }), M = (c) => {
611
+ const n = document.cookie.split(";").find((u) => u.split("=")[0].trim() === encodeURIComponent(c));
589
612
  return n ? decodeURIComponent(n.split("=")[1]) : null;
590
- }, N = (c, n, v, q) => {
591
- const Z = `; max-age=${v * 24 * 60 * 60}`;
592
- document.cookie = `${encodeURIComponent(c)}=${encodeURIComponent(n)}${Z}; path=/; domain=${q}`;
613
+ }, _ = (c, n, u, q) => {
614
+ const J = `; max-age=${u * 24 * 60 * 60}`;
615
+ document.cookie = `${encodeURIComponent(c)}=${encodeURIComponent(n)}${J}; path=/; domain=${q}`;
593
616
  }, D = (c) => {
594
- typeof c == "boolean" ? S.value = c : S.value = !S.value, oe(() => {
595
- !S.value && d.value && M(p.value) !== x && N(p.value, x, 180, h.cookieDomain ?? location.hostname);
617
+ typeof c == "boolean" ? S.value = c : S.value = !S.value, ae(() => {
618
+ !S.value && d.value && M(p.value) !== x && _(p.value, x, 180, f.cookieDomain ?? location.hostname);
596
619
  });
597
- }, C = b(!1), I = (c) => {
620
+ }, C = b(!1), N = (c) => {
598
621
  typeof c == "boolean" ? C.value = c : C.value = !C.value;
599
- }, G = () => d.value ? M(p.value) !== x : (M(p.value) ?? "0") === We, P = () => d.value ? M(p.value) === x : M(p.value) === H;
622
+ }, B = () => d.value ? M(p.value) !== x : (M(p.value) ?? "0") === We, G = () => d.value ? M(p.value) === x : M(p.value) === H;
600
623
  Y(() => {
601
- G() && D(!0);
624
+ B() && D(!0);
602
625
  }), te(R, () => {
603
- D(G());
626
+ D(B());
604
627
  });
605
628
  const U = () => {
606
- w.value = !0, N(p.value, H, 180, h.cookieDomain ?? location.hostname), D(!1);
629
+ w.value = !0, _(p.value, H, 180, f.cookieDomain ?? location.hostname), D(!1);
607
630
  }, O = () => {
608
- w.value = !1, N(p.value, He, 180, h.cookieDomain ?? location.hostname), D(!1);
631
+ w.value = !1, _(p.value, He, 180, f.cookieDomain ?? location.hostname), D(!1);
609
632
  }, j = () => {
610
- w.value ? U() : O(), I(!1);
633
+ w.value ? U() : O(), N(!1);
611
634
  }, V = () => {
612
- w.value = !0, U(), I(!1);
635
+ w.value = !0, U(), N(!1);
613
636
  }, K = () => {
614
- w.value = P();
637
+ w.value = G();
615
638
  };
616
639
  return m({
617
640
  check() {
618
- P() === S.value && D();
641
+ G() === S.value && D();
619
642
  }
620
- }), (c, n) => (u(), z(e(ue), null, {
643
+ }), (c, n) => (v(), z(e(ue), null, {
621
644
  default: s(() => [
622
- (u(), z(ie, {
623
- to: a.wrapper || "#app"
645
+ (v(), z(ie, {
646
+ to: o.wrapper || "#app"
624
647
  }, [
625
- e(S) ? (u(), f("div", {
648
+ e(S) ? (v(), h("div", {
626
649
  key: 0,
627
650
  ref_key: "cookieNoticeRef",
628
651
  ref: A,
@@ -634,10 +657,10 @@ const we = { class: "cookie-notice-content" }, Te = ["type"], Se = { class: "coo
634
657
  class: F({ "cookie-notice-wrap-grid": E.value, "cookie-notice-wrap": !E.value })
635
658
  }, [
636
659
  t("div", Se, [
637
- d.value ? (u(), f(B, { key: 0 }, [
660
+ d.value ? (v(), h(L, { key: 0 }, [
638
661
  g(e(W), { style: { transform: "rotate(180deg)", "font-size": "24px", "margin-right": "4px" } }, {
639
662
  default: s(() => [
640
- (u(), f("svg", De, [...n[5] || (n[5] = [
663
+ (v(), h("svg", De, [...n[5] || (n[5] = [
641
664
  t("path", {
642
665
  fill: "#002fa7",
643
666
  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"
@@ -651,17 +674,17 @@ const we = { class: "cookie-notice-content" }, Te = ["type"], Se = { class: "coo
651
674
  _: 1
652
675
  }),
653
676
  t("p", Ce, [
654
- y(o(e(i)("cookie.desc")) + " ", 1),
677
+ y(a(e(i)("cookie.desc")) + " ", 1),
655
678
  t("a", {
656
- href: a.detailUrl,
679
+ href: o.detailUrl,
657
680
  target: "_blank",
658
681
  rel: "noopener noreferrer"
659
- }, o(e(i)("cookie.about")), 9, Ee)
682
+ }, a(e(i)("cookie.about")), 9, Ee)
660
683
  ])
661
- ], 64)) : (u(), f("p", Me, o(e(i)("cookie.title", [a.community])), 1)),
684
+ ], 64)) : (v(), h("p", Me, a(e(i)("cookie.title", [o.community])), 1)),
662
685
  g(e(W), {
663
686
  class: "cookie-notice-close",
664
- onClick: n[0] || (n[0] = (v) => D(!1))
687
+ onClick: n[0] || (n[0] = (u) => D(!1))
665
688
  }, {
666
689
  default: s(() => [
667
690
  ne(c.$slots, "close-icon", {}, () => [
@@ -679,24 +702,24 @@ const we = { class: "cookie-notice-content" }, Te = ["type"], Se = { class: "coo
679
702
  _: 3
680
703
  })
681
704
  ]),
682
- d.value ? L("", !0) : (u(), f("div", be, [
705
+ d.value ? P("", !0) : (v(), h("div", be, [
683
706
  t("p", Re, [
684
- y(o(e(i)("cookie.desc")) + " ", 1),
707
+ y(a(e(i)("cookie.desc")) + " ", 1),
685
708
  t("a", {
686
- href: a.detailUrl,
709
+ href: o.detailUrl,
687
710
  target: "_blank",
688
711
  rel: "noopener noreferrer"
689
- }, o(e(i)("cookie.about")), 9, xe),
712
+ }, a(e(i)("cookie.about")), 9, xe),
690
713
  n[7] || (n[7] = y(". ", -1))
691
714
  ]),
692
- t("div", _e, [
715
+ t("div", Ie, [
693
716
  g(e(T), {
694
717
  round: "",
695
718
  type: "primary",
696
719
  onClick: U
697
720
  }, {
698
721
  default: s(() => [
699
- y(o(e(i)("cookie.acceptAll")), 1)
722
+ y(a(e(i)("cookie.acceptAll")), 1)
700
723
  ]),
701
724
  _: 1
702
725
  }),
@@ -706,17 +729,17 @@ const we = { class: "cookie-notice-content" }, Te = ["type"], Se = { class: "coo
706
729
  onClick: O
707
730
  }, {
708
731
  default: s(() => [
709
- y(o(e(i)("cookie.rejectAll")), 1)
732
+ y(a(e(i)("cookie.rejectAll")), 1)
710
733
  ]),
711
734
  _: 1
712
735
  }),
713
736
  g(e(T), {
714
737
  round: "",
715
738
  type: "primary",
716
- onClick: n[1] || (n[1] = (v) => I(!0))
739
+ onClick: n[1] || (n[1] = (u) => N(!0))
717
740
  }, {
718
741
  default: s(() => [
719
- y(o(e(i)("cookie.manage")), 1)
742
+ y(a(e(i)("cookie.manage")), 1)
720
743
  ]),
721
744
  _: 1
722
745
  })
@@ -728,15 +751,15 @@ const we = { class: "cookie-notice-content" }, Te = ["type"], Se = { class: "coo
728
751
  "show-close": !1,
729
752
  class: F({ "cookie-dlg-bottom": e(r), "grid-width-dlg": E.value }),
730
753
  modelValue: C.value,
731
- "onUpdate:modelValue": n[4] || (n[4] = (v) => C.value = v),
754
+ "onUpdate:modelValue": n[4] || (n[4] = (u) => C.value = u),
732
755
  "destroy-on-close": "",
733
756
  onOpen: K
734
757
  }, {
735
758
  header: s(() => [
736
- e(r) ? L("", !0) : (u(), f("div", {
759
+ e(r) ? P("", !0) : (v(), h("div", {
737
760
  key: 0,
738
761
  class: "dlg-close-icon",
739
- onClick: n[2] || (n[2] = (v) => C.value = !1)
762
+ onClick: n[2] || (n[2] = (u) => C.value = !1)
740
763
  }, [...n[8] || (n[8] = [
741
764
  t("svg", {
742
765
  viewBox: "0 0 24 24",
@@ -748,16 +771,16 @@ const we = { class: "cookie-notice-content" }, Te = ["type"], Se = { class: "coo
748
771
  })
749
772
  ], -1)
750
773
  ])])),
751
- t("span", Ne, o(e(i)("cookie.manage")), 1)
774
+ t("span", _e, a(e(i)("cookie.manage")), 1)
752
775
  ]),
753
776
  footer: s(() => [
754
- e(r) ? (u(), f(B, { key: 0 }, [
777
+ e(r) ? (v(), h(L, { key: 0 }, [
755
778
  g(e(T), {
756
779
  type: "text",
757
780
  onClick: j
758
781
  }, {
759
782
  default: s(() => [
760
- y(o(e(i)("cookie.saveSetting")), 1)
783
+ y(a(e(i)("cookie.saveSetting")), 1)
761
784
  ]),
762
785
  _: 1
763
786
  }),
@@ -770,18 +793,18 @@ const we = { class: "cookie-notice-content" }, Te = ["type"], Se = { class: "coo
770
793
  onClick: V
771
794
  }, {
772
795
  default: s(() => [
773
- y(o(e(i)("cookie.acceptAll")), 1)
796
+ y(a(e(i)("cookie.acceptAll")), 1)
774
797
  ]),
775
798
  _: 1
776
799
  })
777
- ], 64)) : (u(), f(B, { key: 1 }, [
800
+ ], 64)) : (v(), h(L, { key: 1 }, [
778
801
  g(e(T), {
779
802
  round: "",
780
803
  type: "primary",
781
804
  onClick: j
782
805
  }, {
783
806
  default: s(() => [
784
- y(o(e(i)("cookie.saveSetting")), 1)
807
+ y(a(e(i)("cookie.saveSetting")), 1)
785
808
  ]),
786
809
  _: 1
787
810
  }),
@@ -791,49 +814,49 @@ const we = { class: "cookie-notice-content" }, Te = ["type"], Se = { class: "coo
791
814
  onClick: V
792
815
  }, {
793
816
  default: s(() => [
794
- y(o(e(i)("cookie.acceptAll")), 1)
817
+ y(a(e(i)("cookie.acceptAll")), 1)
795
818
  ]),
796
819
  _: 1
797
820
  })
798
821
  ], 64))
799
822
  ]),
800
823
  default: s(() => [
801
- t("div", Ie, [
824
+ t("div", Ne, [
802
825
  t("div", Ue, [
803
- t("div", Be, [
804
- t("span", Le, o(e(i)("cookie.necessaryCookie")), 1),
805
- t("span", Ge, o(e(i)("cookie.alwaysOn")), 1)
826
+ t("div", Le, [
827
+ t("span", Pe, a(e(i)("cookie.necessaryCookie")), 1),
828
+ t("span", Be, a(e(i)("cookie.alwaysOn")), 1)
806
829
  ]),
807
- t("div", Pe, o(e(i)("cookie.necessaryCookieDetail")), 1)
830
+ t("div", Ge, a(e(i)("cookie.necessaryCookieDetail")), 1)
808
831
  ]),
809
832
  t("div", Oe, [
810
833
  t("div", je, [
811
- t("span", Ve, o(e(i)("cookie.analyticalCookie")), 1),
834
+ t("span", Ve, a(e(i)("cookie.analyticalCookie")), 1),
812
835
  t("span", ze, [
813
836
  g(e(ge), {
814
837
  modelValue: w.value,
815
- "onUpdate:modelValue": n[3] || (n[3] = (v) => w.value = v)
838
+ "onUpdate:modelValue": n[3] || (n[3] = (u) => w.value = u)
816
839
  }, null, 8, ["modelValue"])
817
840
  ])
818
841
  ]),
819
- t("div", Fe, o(e(i)("cookie.analyticalCookieDetail")), 1)
842
+ t("div", Fe, a(e(i)("cookie.analyticalCookieDetail")), 1)
820
843
  ])
821
844
  ])
822
845
  ]),
823
846
  _: 1
824
847
  }, 8, ["class", "modelValue"])
825
- ], 512)) : L("", !0)
848
+ ], 512)) : P("", !0)
826
849
  ], 8, ["to"]))
827
850
  ]),
828
851
  _: 3
829
852
  }));
830
853
  }
831
- }), et = /* @__PURE__ */ de(Ke, [["__scopeId", "data-v-21ffe21d"]]);
854
+ }), et = /* @__PURE__ */ Ae(Ke, [["__scopeId", "data-v-21ffe21d"]]);
832
855
  export {
833
856
  ue as C,
834
- ke as L,
857
+ fe as L,
835
858
  et as O,
836
- de as _,
837
- fe as c,
838
- Ae as u
859
+ Ae as _,
860
+ pe as c,
861
+ ke as u
839
862
  };