@opendesign-plus-test/components 0.0.1-rc.42 → 0.0.1-rc.45
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/chunk-OElCookieNotice.cjs.js +1 -1
- package/dist/chunk-OElCookieNotice.es.js +132 -112
- package/dist/components/OHeaderSearch.vue.d.ts +824 -506
- package/dist/components/OSourceCode.vue.d.ts +4 -6
- package/dist/components/activity/OActivityApproval.vue.d.ts +6 -10
- package/dist/components/activity/OActivityForm.vue.d.ts +3 -5
- package/dist/components/activity/OMyActivityCalendar.vue.d.ts +100 -46
- package/dist/components/activity/index.d.ts +56 -33
- package/dist/components/activity/types.d.ts +8 -1
- package/dist/components/events/config.d.ts +5 -18
- package/dist/components/events/types.d.ts +4 -1
- package/dist/components/header/OHeaderMobile.vue.d.ts +18 -11
- package/dist/components/header/components/HeaderNavMobile.vue.d.ts +4 -1
- package/dist/components/header/index.d.ts +12 -5
- package/dist/components/header/types.d.ts +4 -0
- package/dist/components/meeting/OMeetingCalendar.vue.d.ts +8 -12
- package/dist/components/meeting/OMeetingForm.vue.d.ts +3 -5
- package/dist/components/meeting/OMeetingPlayback.vue.d.ts +45 -0
- package/dist/components/meeting/OMyMeetingCalendar.vue.d.ts +100 -46
- package/dist/components/meeting/components/OMeetingCalendarList.vue.d.ts +1 -1
- package/dist/components/meeting/index.d.ts +817 -0
- package/dist/components/meeting/types.d.ts +82 -17
- package/dist/components/meeting/utils.d.ts +1 -1
- package/dist/components/search/OSearchInput.vue.d.ts +1003 -0
- package/dist/components/search/composables/useImageSearch.d.ts +48 -0
- package/dist/components/search/composables/useKeywordHighlight.d.ts +2 -0
- package/dist/components/search/composables/useSearchHistory.d.ts +14 -0
- package/dist/components/search/index.d.ts +590 -0
- package/dist/components/search/internal/HighlightText.vue.d.ts +9 -0
- package/dist/components/search/internal/SearchImageInput.vue.d.ts +716 -0
- package/dist/components/search/internal/SearchPanel.vue.d.ts +100 -0
- package/dist/components/search/types.d.ts +20 -0
- package/dist/components.cjs.js +43 -43
- package/dist/components.css +1 -1
- package/dist/components.es.js +11681 -10636
- package/dist/index.d.ts +1 -0
- package/package.json +3 -3
- package/src/assets/svg-icons/icon-delete-hover.svg +4 -0
- package/src/assets/svg-icons/icon-delete.svg +5 -1
- package/src/assets/svg-icons/icon-image-close.svg +4 -0
- package/src/assets/svg-icons/icon-image-upload.svg +3 -0
- package/src/assets/svg-icons/icon-image-zoomin.svg +3 -0
- package/src/assets/svg-icons/icon-refresh.svg +3 -0
- package/src/components/OBanner.vue +18 -18
- package/src/components/OCookieNotice.vue +21 -21
- package/src/components/OFooter.vue +18 -17
- package/src/components/OHeaderSearch.vue +402 -420
- package/src/components/OHeaderUser.vue +3 -2
- package/src/components/OSection.vue +4 -4
- package/src/components/OSourceCode.vue +8 -10
- package/src/components/activity/OActivityApproval.vue +32 -32
- package/src/components/activity/OActivityForm.vue +5 -5
- package/src/components/activity/OMyActivityCalendar.vue +66 -50
- package/src/components/activity/config.ts +1 -1
- package/src/components/activity/types.ts +8 -1
- package/src/components/common/ContentWrapper.vue +3 -3
- package/src/components/common/MoreText.vue +1 -1
- package/src/components/common/ThFilter.vue +7 -7
- package/src/components/element-plus/OElCookieNotice.vue +27 -27
- package/src/components/events/OEventsApply.vue +44 -44
- package/src/components/events/OEventsCalendar.vue +14 -14
- package/src/components/events/OEventsList.vue +53 -26
- package/src/components/events/config.ts +1 -1
- package/src/components/events/types.ts +4 -1
- package/src/components/header/OHeader.vue +2 -2
- package/src/components/header/OHeaderMobile.vue +8 -1
- package/src/components/header/components/HeaderContent.vue +67 -63
- package/src/components/header/components/HeaderNav.vue +4 -4
- package/src/components/header/components/HeaderNavMobile.vue +8 -5
- package/src/components/header/types.ts +4 -0
- package/src/components/meeting/OMeetingCalendar.vue +66 -54
- package/src/components/meeting/OMeetingForm.vue +70 -51
- package/src/components/meeting/OMeetingPlayback.vue +8 -8
- package/src/components/meeting/OMyMeetingCalendar.vue +56 -45
- package/src/components/meeting/OSigMeetingCalendar.vue +31 -28
- package/src/components/meeting/components/OMeetingCalendarList.vue +31 -26
- package/src/components/meeting/components/OMeetingCalendarSelector.vue +10 -6
- package/src/components/meeting/components/OMeetingDetail.vue +32 -18
- package/src/components/meeting/components/OMeetingPlaybackSubtitles.vue +1 -1
- package/src/components/meeting/components/OMeetingPlaybackVideo.vue +12 -12
- package/src/components/meeting/components/OSigMeetingAside.vue +8 -9
- package/src/components/meeting/types.ts +88 -17
- package/src/components/search/OSearchInput.vue +463 -0
- package/src/components/search/composables/useImageSearch.ts +157 -0
- package/src/components/search/composables/useKeywordHighlight.ts +30 -0
- package/src/components/search/composables/useSearchHistory.ts +75 -0
- package/src/components/search/index.ts +23 -0
- package/src/components/search/internal/HighlightText.vue +37 -0
- package/src/components/search/internal/SearchImageInput.vue +488 -0
- package/src/components/search/internal/SearchPanel.vue +430 -0
- package/src/components/search/types.ts +25 -0
- package/src/draft/Banner.vue +6 -6
- package/src/draft/ButtonCards.vue +1 -1
- package/src/draft/Feature.vue +6 -6
- package/src/draft/Footer.vue +29 -22
- package/src/draft/HorizontalAnchor.vue +4 -4
- package/src/draft/ItemSwiper.vue +2 -2
- package/src/draft/Logo.vue +3 -3
- package/src/draft/LogoCard.vue +2 -2
- package/src/draft/MultiCard.vue +1 -1
- package/src/draft/MultiIconCard.vue +1 -1
- package/src/draft/OInfoCard.vue +4 -4
- package/src/draft/Section.vue +4 -4
- package/src/draft/SingleTabCard.vue +1 -1
- package/src/draft/SliderCard.vue +4 -3
- package/src/i18n/en.ts +10 -0
- package/src/i18n/zh.ts +10 -0
- package/src/index.ts +1 -0
- package/vite.config.ts +4 -3
|
@@ -1,29 +1,39 @@
|
|
|
1
|
-
import { defineComponent as $, resolveComponent as
|
|
2
|
-
import { useScreen as
|
|
3
|
-
import { isUndefined as
|
|
4
|
-
import { ElIcon as W, ElButton as T, ElDialog as
|
|
5
|
-
import { useVModel as
|
|
6
|
-
const
|
|
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 [
|
|
9
|
-
l[
|
|
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
|
-
},
|
|
16
|
+
}, ve = $({
|
|
17
17
|
setup(a, { slots: m }) {
|
|
18
|
-
const l =
|
|
19
|
-
return l && typeof l != "string" ? () =>
|
|
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
|
-
}),
|
|
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
|
-
},
|
|
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"),
|
|
537
|
-
zh:
|
|
538
|
-
en:
|
|
556
|
+
}, he = Symbol("provide-config-provider"), fe = b({
|
|
557
|
+
zh: ye,
|
|
558
|
+
en: pe
|
|
539
559
|
});
|
|
540
|
-
var
|
|
541
|
-
function
|
|
542
|
-
const m =
|
|
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: (
|
|
546
|
-
const
|
|
547
|
-
if (
|
|
548
|
-
return console.warn(`Cannot translate the value of keypath '${
|
|
549
|
-
if (r.length > 0 &&
|
|
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
|
|
552
|
-
return
|
|
571
|
+
const d = r[0];
|
|
572
|
+
return i.replace(/{(\w+)}/g, (A, E) => d[E] ?? A);
|
|
553
573
|
}
|
|
554
|
-
return
|
|
574
|
+
return i.replace(/{(\d+)}/g, (d, A) => r[A] ?? d);
|
|
555
575
|
}
|
|
556
|
-
return
|
|
576
|
+
return i;
|
|
557
577
|
}
|
|
558
578
|
};
|
|
559
579
|
}
|
|
560
|
-
const
|
|
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
|
-
},
|
|
587
|
+
}, Ce = {
|
|
568
588
|
class: "cookie-zh-title",
|
|
569
589
|
style: { "margin-top": "0" }
|
|
570
|
-
},
|
|
590
|
+
}, Ee = ["href"], Me = {
|
|
571
591
|
key: 1,
|
|
572
592
|
class: "cookie-en-title"
|
|
573
|
-
},
|
|
593
|
+
}, be = {
|
|
574
594
|
key: 0,
|
|
575
595
|
class: "cookie-en-content"
|
|
576
|
-
},
|
|
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
|
|
588
|
-
const
|
|
589
|
-
return
|
|
590
|
-
}, N = (c,
|
|
591
|
-
const J = `; max-age=${
|
|
592
|
-
document.cookie = `${encodeURIComponent(c)}=${encodeURIComponent(
|
|
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,
|
|
595
|
-
!S.value && d.value && M(
|
|
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
|
-
},
|
|
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
|
-
|
|
602
|
-
}),
|
|
603
|
-
D(
|
|
621
|
+
B() && D(!0);
|
|
622
|
+
}), te(R, () => {
|
|
623
|
+
D(B());
|
|
604
624
|
});
|
|
605
625
|
const U = () => {
|
|
606
|
-
w.value = !0, N(
|
|
626
|
+
w.value = !0, N(p.value, H, 180, f.cookieDomain ?? location.hostname), D(!1);
|
|
607
627
|
}, O = () => {
|
|
608
|
-
w.value = !1, N(
|
|
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
|
-
},
|
|
614
|
-
w.value =
|
|
633
|
+
}, K = () => {
|
|
634
|
+
w.value = G();
|
|
615
635
|
};
|
|
616
636
|
return m({
|
|
617
637
|
check() {
|
|
618
|
-
|
|
638
|
+
G() === S.value && D();
|
|
619
639
|
}
|
|
620
|
-
}), (c,
|
|
640
|
+
}), (c, n) => (v(), z(e(ve), null, {
|
|
621
641
|
default: s(() => [
|
|
622
|
-
(
|
|
642
|
+
(v(), z(ie, {
|
|
623
643
|
to: a.wrapper || "#app"
|
|
624
644
|
}, [
|
|
625
|
-
e(S) ? (
|
|
645
|
+
e(S) ? (v(), h("div", {
|
|
626
646
|
key: 0,
|
|
627
647
|
ref_key: "cookieNoticeRef",
|
|
628
|
-
ref:
|
|
648
|
+
ref: A,
|
|
629
649
|
class: "cookie-notice"
|
|
630
650
|
}, [
|
|
631
|
-
t("div",
|
|
651
|
+
t("div", we, [
|
|
632
652
|
t("div", {
|
|
633
|
-
type: e(
|
|
634
|
-
class: F({ "cookie-notice-wrap-grid":
|
|
653
|
+
type: e(R),
|
|
654
|
+
class: F({ "cookie-notice-wrap-grid": E.value, "cookie-notice-wrap": !E.value })
|
|
635
655
|
}, [
|
|
636
|
-
t("div",
|
|
637
|
-
d.value ? (
|
|
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
|
-
(
|
|
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",
|
|
654
|
-
y(o(e(
|
|
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(
|
|
679
|
+
}, o(e(i)("cookie.about")), 9, Ee)
|
|
660
680
|
])
|
|
661
|
-
], 64)) : (
|
|
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:
|
|
684
|
+
onClick: n[0] || (n[0] = (u) => D(!1))
|
|
665
685
|
}, {
|
|
666
686
|
default: s(() => [
|
|
667
|
-
|
|
668
|
-
|
|
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 ?
|
|
683
|
-
t("p",
|
|
684
|
-
y(o(e(
|
|
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(
|
|
690
|
-
|
|
709
|
+
}, o(e(i)("cookie.about")), 9, xe),
|
|
710
|
+
n[7] || (n[7] = y(". ", -1))
|
|
691
711
|
]),
|
|
692
|
-
t("div",
|
|
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(
|
|
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(
|
|
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:
|
|
736
|
+
onClick: n[1] || (n[1] = (u) => I(!0))
|
|
717
737
|
}, {
|
|
718
738
|
default: s(() => [
|
|
719
|
-
y(o(e(
|
|
739
|
+
y(o(e(i)("cookie.manage")), 1)
|
|
720
740
|
]),
|
|
721
741
|
_: 1
|
|
722
742
|
})
|
|
723
743
|
])
|
|
724
744
|
]))
|
|
725
|
-
], 10,
|
|
745
|
+
], 10, Te)
|
|
726
746
|
]),
|
|
727
|
-
g(e(
|
|
747
|
+
g(e(ce), {
|
|
728
748
|
"show-close": !1,
|
|
729
|
-
class: F({ "cookie-dlg-bottom": e(r), "grid-width-dlg":
|
|
749
|
+
class: F({ "cookie-dlg-bottom": e(r), "grid-width-dlg": E.value }),
|
|
730
750
|
modelValue: C.value,
|
|
731
|
-
"onUpdate:modelValue":
|
|
751
|
+
"onUpdate:modelValue": n[4] || (n[4] = (u) => C.value = u),
|
|
732
752
|
"destroy-on-close": "",
|
|
733
|
-
onOpen:
|
|
753
|
+
onOpen: K
|
|
734
754
|
}, {
|
|
735
755
|
header: s(() => [
|
|
736
|
-
e(r) ?
|
|
756
|
+
e(r) ? P("", !0) : (v(), h("div", {
|
|
737
757
|
key: 0,
|
|
738
758
|
class: "dlg-close-icon",
|
|
739
|
-
onClick:
|
|
740
|
-
}, [...
|
|
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",
|
|
771
|
+
t("span", Ne, o(e(i)("cookie.manage")), 1)
|
|
752
772
|
]),
|
|
753
773
|
footer: s(() => [
|
|
754
|
-
e(r) ? (
|
|
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(
|
|
780
|
+
y(o(e(i)("cookie.saveSetting")), 1)
|
|
761
781
|
]),
|
|
762
782
|
_: 1
|
|
763
783
|
}),
|
|
764
|
-
g(e(
|
|
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(
|
|
793
|
+
y(o(e(i)("cookie.acceptAll")), 1)
|
|
774
794
|
]),
|
|
775
795
|
_: 1
|
|
776
796
|
})
|
|
777
|
-
], 64)) : (
|
|
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(
|
|
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(
|
|
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",
|
|
802
|
-
t("div",
|
|
821
|
+
t("div", Ie, [
|
|
822
|
+
t("div", Ue, [
|
|
803
823
|
t("div", Le, [
|
|
804
|
-
t("span",
|
|
805
|
-
t("span",
|
|
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",
|
|
827
|
+
t("div", Ge, o(e(i)("cookie.necessaryCookieDetail")), 1)
|
|
808
828
|
]),
|
|
809
|
-
t("div",
|
|
810
|
-
t("div",
|
|
811
|
-
t("span",
|
|
812
|
-
t("span",
|
|
813
|
-
g(e(
|
|
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":
|
|
835
|
+
"onUpdate:modelValue": n[3] || (n[3] = (u) => w.value = u)
|
|
816
836
|
}, null, 8, ["modelValue"])
|
|
817
837
|
])
|
|
818
838
|
]),
|
|
819
|
-
t("div",
|
|
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)) :
|
|
845
|
+
], 512)) : P("", !0)
|
|
826
846
|
], 8, ["to"]))
|
|
827
847
|
]),
|
|
828
848
|
_: 3
|
|
829
849
|
}));
|
|
830
850
|
}
|
|
831
|
-
}),
|
|
851
|
+
}), et = /* @__PURE__ */ de(Ke, [["__scopeId", "data-v-21ffe21d"]]);
|
|
832
852
|
export {
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
853
|
+
ve as C,
|
|
854
|
+
ke as L,
|
|
855
|
+
et as O,
|
|
856
|
+
de as _,
|
|
837
857
|
he as c,
|
|
838
|
-
|
|
858
|
+
Ae as u
|
|
839
859
|
};
|