@opendesign-plus/components 0.0.1-rc.25 → 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.
- package/dist/chunk-OElCookieNotice.cjs.js +1 -1
- package/dist/chunk-OElCookieNotice.es.js +111 -88
- package/dist/components/OHeaderSearch.vue.d.ts +814 -534
- package/dist/components/OHeaderUser.vue.d.ts +1 -1
- package/dist/components/OLanguageSwitcher.vue.d.ts +49 -0
- package/dist/components/OThemeSwitcher.vue.d.ts +1 -1
- package/dist/components/activity/OActivityMyCalendar.vue.d.ts +4 -4
- package/dist/components/activity/index.d.ts +2 -2
- package/dist/components/banner/OBanner.vue.d.ts +13 -0
- package/dist/components/banner/OBannerContent.vue.d.ts +7 -0
- package/dist/components/banner/index.d.ts +68 -0
- package/dist/components/banner/types.d.ts +31 -0
- package/dist/components/meeting/OMeetingCalendar.vue.d.ts +5 -3
- package/dist/components/meeting/OMeetingMyCalendar.vue.d.ts +4 -4
- package/dist/components/meeting/OMeetingPlayback.vue.d.ts +50 -1
- package/dist/components/meeting/components/OMeetingCalendarSelector.vue.d.ts +1 -1
- package/dist/components/meeting/components/OMeetingPlaybackSubtitles.vue.d.ts +16 -1
- package/dist/components/meeting/composables/useMeetingConfig.d.ts +1 -1
- package/dist/components/meeting/index.d.ts +17 -7
- package/dist/components/meeting/types.d.ts +1 -1
- package/dist/components/search/OSearchInput.vue.d.ts +1005 -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 +41 -41
- package/dist/components.css +1 -1
- package/dist/components.es.js +11383 -10083
- package/dist/index.d.ts +4 -2
- package/package.json +2 -2
- package/scripts/generate-components-index.js +1 -1
- package/src/assets/styles/element-plus.scss +16 -9
- 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/OHeaderSearch.vue +445 -418
- package/src/components/OLanguageSwitcher.vue +211 -0
- package/src/components/OPlusConfigProvider.vue +2 -2
- package/src/components/activity/OActivityForm.vue +7 -3
- package/src/components/activity/OActivityMyCalendar.vue +16 -7
- package/src/components/banner/OBanner.vue +288 -0
- package/src/components/banner/OBannerContent.vue +175 -0
- package/src/components/banner/index.ts +18 -0
- package/src/components/banner/types.ts +39 -0
- package/src/components/header/OHeader.vue +1 -1
- package/src/components/meeting/OMeetingCalendar.vue +11 -6
- package/src/components/meeting/OMeetingForm.vue +55 -9
- package/src/components/meeting/OMeetingMyCalendar.vue +17 -14
- package/src/components/meeting/OMeetingPlayback.vue +10 -4
- package/src/components/meeting/OMeetingSigCalendar.vue +1 -1
- package/src/components/meeting/components/OMeetingCalendarList.vue +57 -21
- package/src/components/meeting/components/OMeetingCalendarSelector.vue +11 -8
- package/src/components/meeting/components/OMeetingDetail.vue +1 -1
- package/src/components/meeting/components/OMeetingPlaybackSubtitles.vue +7 -4
- package/src/components/meeting/composables/useMeetingConfig.ts +5 -5
- package/src/components/meeting/types.ts +1 -1
- package/src/components/search/OSearchInput.vue +526 -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 +498 -0
- package/src/components/search/internal/SearchPanel.vue +431 -0
- package/src/components/search/types.ts +25 -0
- package/src/i18n/en.ts +13 -1
- package/src/i18n/zh.ts +14 -3
- package/src/index.ts +5 -3
- package/vite.config.ts +4 -0
- package/dist/components/OBanner.vue.d.ts +0 -11
- package/src/components/OBanner.vue +0 -398
|
@@ -1,29 +1,34 @@
|
|
|
1
|
-
import { defineComponent as $, resolveComponent as
|
|
2
|
-
import { useScreen as
|
|
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 = (
|
|
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 &&
|
|
10
|
+
}), () => m.value && o.default ? o.default() : null;
|
|
16
11
|
}, ue = $({
|
|
17
|
-
setup(
|
|
18
|
-
const l =
|
|
19
|
-
return l && typeof l != "string" ? () => Q(l, null, { default: () => m.default ? m.default() : null }) :
|
|
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
|
-
}),
|
|
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": "
|
|
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.
|
|
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
|
-
},
|
|
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
|
-
},
|
|
537
|
-
zh:
|
|
538
|
-
en:
|
|
554
|
+
}, pe = Symbol("provide-config-provider"), he = b({
|
|
555
|
+
zh: ve,
|
|
556
|
+
en: ye
|
|
539
557
|
});
|
|
540
|
-
var
|
|
541
|
-
function
|
|
542
|
-
const m = X() ? ee(
|
|
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
|
|
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"],
|
|
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(
|
|
587
|
-
const
|
|
588
|
-
const n = document.cookie.split(";").find((
|
|
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
|
-
},
|
|
591
|
-
const
|
|
592
|
-
document.cookie = `${encodeURIComponent(c)}=${encodeURIComponent(n)}${
|
|
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,
|
|
595
|
-
!S.value && d.value && M(p.value) !== x &&
|
|
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),
|
|
620
|
+
}, C = b(!1), N = (c) => {
|
|
598
621
|
typeof c == "boolean" ? C.value = c : C.value = !C.value;
|
|
599
|
-
},
|
|
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
|
-
|
|
624
|
+
B() && D(!0);
|
|
602
625
|
}), te(R, () => {
|
|
603
|
-
D(
|
|
626
|
+
D(B());
|
|
604
627
|
});
|
|
605
628
|
const U = () => {
|
|
606
|
-
w.value = !0,
|
|
629
|
+
w.value = !0, _(p.value, H, 180, f.cookieDomain ?? location.hostname), D(!1);
|
|
607
630
|
}, O = () => {
|
|
608
|
-
w.value = !1,
|
|
631
|
+
w.value = !1, _(p.value, He, 180, f.cookieDomain ?? location.hostname), D(!1);
|
|
609
632
|
}, j = () => {
|
|
610
|
-
w.value ? U() : O(),
|
|
633
|
+
w.value ? U() : O(), N(!1);
|
|
611
634
|
}, V = () => {
|
|
612
|
-
w.value = !0, U(),
|
|
635
|
+
w.value = !0, U(), N(!1);
|
|
613
636
|
}, K = () => {
|
|
614
|
-
w.value =
|
|
637
|
+
w.value = G();
|
|
615
638
|
};
|
|
616
639
|
return m({
|
|
617
640
|
check() {
|
|
618
|
-
|
|
641
|
+
G() === S.value && D();
|
|
619
642
|
}
|
|
620
|
-
}), (c, n) => (
|
|
643
|
+
}), (c, n) => (v(), z(e(ue), null, {
|
|
621
644
|
default: s(() => [
|
|
622
|
-
(
|
|
623
|
-
to:
|
|
645
|
+
(v(), z(ie, {
|
|
646
|
+
to: o.wrapper || "#app"
|
|
624
647
|
}, [
|
|
625
|
-
e(S) ? (
|
|
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 ? (
|
|
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
|
-
(
|
|
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(
|
|
677
|
+
y(a(e(i)("cookie.desc")) + " ", 1),
|
|
655
678
|
t("a", {
|
|
656
|
-
href:
|
|
679
|
+
href: o.detailUrl,
|
|
657
680
|
target: "_blank",
|
|
658
681
|
rel: "noopener noreferrer"
|
|
659
|
-
},
|
|
682
|
+
}, a(e(i)("cookie.about")), 9, Ee)
|
|
660
683
|
])
|
|
661
|
-
], 64)) : (
|
|
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] = (
|
|
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 ?
|
|
705
|
+
d.value ? P("", !0) : (v(), h("div", be, [
|
|
683
706
|
t("p", Re, [
|
|
684
|
-
y(
|
|
707
|
+
y(a(e(i)("cookie.desc")) + " ", 1),
|
|
685
708
|
t("a", {
|
|
686
|
-
href:
|
|
709
|
+
href: o.detailUrl,
|
|
687
710
|
target: "_blank",
|
|
688
711
|
rel: "noopener noreferrer"
|
|
689
|
-
},
|
|
712
|
+
}, a(e(i)("cookie.about")), 9, xe),
|
|
690
713
|
n[7] || (n[7] = y(". ", -1))
|
|
691
714
|
]),
|
|
692
|
-
t("div",
|
|
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(
|
|
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(
|
|
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] = (
|
|
739
|
+
onClick: n[1] || (n[1] = (u) => N(!0))
|
|
717
740
|
}, {
|
|
718
741
|
default: s(() => [
|
|
719
|
-
y(
|
|
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] = (
|
|
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) ?
|
|
759
|
+
e(r) ? P("", !0) : (v(), h("div", {
|
|
737
760
|
key: 0,
|
|
738
761
|
class: "dlg-close-icon",
|
|
739
|
-
onClick: n[2] || (n[2] = (
|
|
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",
|
|
774
|
+
t("span", _e, a(e(i)("cookie.manage")), 1)
|
|
752
775
|
]),
|
|
753
776
|
footer: s(() => [
|
|
754
|
-
e(r) ? (
|
|
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(
|
|
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(
|
|
796
|
+
y(a(e(i)("cookie.acceptAll")), 1)
|
|
774
797
|
]),
|
|
775
798
|
_: 1
|
|
776
799
|
})
|
|
777
|
-
], 64)) : (
|
|
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(
|
|
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(
|
|
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",
|
|
824
|
+
t("div", Ne, [
|
|
802
825
|
t("div", Ue, [
|
|
803
|
-
t("div",
|
|
804
|
-
t("span",
|
|
805
|
-
t("span",
|
|
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",
|
|
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,
|
|
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] = (
|
|
838
|
+
"onUpdate:modelValue": n[3] || (n[3] = (u) => w.value = u)
|
|
816
839
|
}, null, 8, ["modelValue"])
|
|
817
840
|
])
|
|
818
841
|
]),
|
|
819
|
-
t("div", Fe,
|
|
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)) :
|
|
848
|
+
], 512)) : P("", !0)
|
|
826
849
|
], 8, ["to"]))
|
|
827
850
|
]),
|
|
828
851
|
_: 3
|
|
829
852
|
}));
|
|
830
853
|
}
|
|
831
|
-
}), et = /* @__PURE__ */
|
|
854
|
+
}), et = /* @__PURE__ */ Ae(Ke, [["__scopeId", "data-v-21ffe21d"]]);
|
|
832
855
|
export {
|
|
833
856
|
ue as C,
|
|
834
|
-
|
|
857
|
+
fe as L,
|
|
835
858
|
et as O,
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
859
|
+
Ae as _,
|
|
860
|
+
pe as c,
|
|
861
|
+
ke as u
|
|
839
862
|
};
|