@mobilon-dev/chotto 0.3.33 → 0.3.34
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/chotto.css +1 -1
- package/dist/components/1_atoms/ButtonContextMenu/ButtonContextMenu.vue.js +2 -2
- package/dist/components/1_atoms/ButtonContextMenu/ButtonContextMenu.vue2.js +28 -27
- package/dist/components/1_atoms/ContextMenu/ContextMenu.vue.js +36 -22
- package/dist/components/1_icons/SettingsIcon.vue.js +6 -6
- package/dist/components/2_blocks/CommunicationPanel/CommunicationPanel.vue.js +164 -156
- package/dist/components/2_chatinput_elements/ButtonEmojiPicker/ButtonEmojiPicker.vue.js +4 -103
- package/dist/components/2_chatinput_elements/ButtonEmojiPicker/ButtonEmojiPicker.vue2.js +135 -0
- package/dist/components/2_chatinput_elements/ButtonEmojiPicker/icons/SmilesIcon.vue.js +33 -11
- package/dist/components/2_chatinput_elements/ButtonEmojiPicker/icons/SmilesIcon.vue2.js +4 -0
- package/dist/components/2_chatinput_elements/ButtonTemplateSelector/ButtonTemplateSelector.vue.js +4 -102
- package/dist/components/2_chatinput_elements/ButtonTemplateSelector/ButtonTemplateSelector.vue2.js +135 -0
- package/dist/components/2_chatinput_elements/ButtonTemplateSelector/icons/ChatTemplatesIcon.vue.js +21 -18
- package/dist/components/2_chatinput_elements/ButtonTemplateSelector/icons/ChatTemplatesIcon.vue2.js +4 -0
- package/dist/components/2_chatinput_elements/FileUploader/FileUploader.vue.js +2 -2
- package/dist/components/2_chatinput_elements/FileUploader/FileUploader.vue2.js +89 -55
- package/dist/components/2_chatinput_elements/FileUploader/icons/FileUploaderIcon.vue.js +17 -14
- package/dist/components/2_chatinput_elements/FileUploader/icons/FileUploaderIcon.vue2.js +4 -0
- package/dist/components/2_chatinput_elements/StickerPicker/StickerPicker.vue.js +4 -337
- package/dist/components/2_chatinput_elements/StickerPicker/StickerPicker.vue2.js +360 -0
- package/dist/components/2_chatinput_elements/StickerPicker/icons/StickerIcon.vue.js +56 -11
- package/dist/components/2_chatinput_elements/StickerPicker/icons/StickerIcon.vue2.js +4 -0
- package/dist/components/2_chatlist_elements/ChatItem/ChatItem.vue.js +2 -2
- package/dist/components/2_chatlist_elements/ChatItem/ChatItem.vue2.js +164 -100
- package/dist/components/2_feed_elements/ImageMessage/ImageMessage.vue.js +1 -1
- package/dist/components/2_feed_elements/ImageMessage/ImageMessage.vue2.js +184 -134
- package/dist/components/2_feed_elements/VideoMessage/VideoMessage.vue.js +3 -3
- package/dist/components/2_feed_elements/VideoMessage/VideoMessage.vue2.js +1 -1
- package/dist/components/3_compounds/ChatList/ChatList.vue.js +101 -91
- package/dist/components/3_compounds/SideBar/SideBar.vue.js +68 -67
- package/dist/hooks/messages/useChannelAccentColor.js +35 -19
- package/dist/themes/dark.css +1 -1
- package/dist/themes/default.css +1 -1
- package/dist/themes/glass.css +1 -0
- package/dist/themes/green.css +1 -1
- package/dist/themes/mobilon1.css +1 -1
- package/dist/types/apps/data/messages.d.ts +117 -86
- package/dist/types/components/1_atoms/ContextMenu/ContextMenu.vue.d.ts +5 -1
- package/dist/types/components/2_blocks/CommunicationPanel/CommunicationPanel.vue.d.ts +2 -0
- package/dist/types/components/2_blocks/CommunicationPanel/stories/CommunicationPanel.stories.d.ts +2 -0
- package/dist/types/components/2_blocks/CommunicationPanel/styles/types.d.ts +4 -0
- package/dist/types/components/2_chatinput_elements/ButtonEmojiPicker/ButtonEmojiPicker.vue.d.ts +31 -7
- package/dist/types/components/2_chatinput_elements/ButtonEmojiPicker/icons/SmilesIcon.vue.d.ts +6 -1
- package/dist/types/components/2_chatinput_elements/ButtonEmojiPicker/styles/types.d.ts +6 -0
- package/dist/types/components/2_chatinput_elements/ButtonTemplateSelector/ButtonTemplateSelector.vue.d.ts +59 -11
- package/dist/types/components/2_chatinput_elements/ButtonTemplateSelector/icons/ChatTemplatesIcon.vue.d.ts +6 -1
- package/dist/types/components/2_chatinput_elements/FileUploader/icons/FileUploaderIcon.vue.d.ts +6 -1
- package/dist/types/components/2_chatinput_elements/StickerPicker/StickerPicker.vue.d.ts +22 -10
- package/dist/types/components/2_chatinput_elements/StickerPicker/icons/StickerIcon.vue.d.ts +6 -1
- package/dist/types/components/2_chatlist_elements/ChatItem/ChatItem.vue.d.ts +2 -0
- package/dist/types/components/2_chatlist_elements/ChatItem/styles/types.d.ts +2 -0
- package/dist/types/components/2_elements/ChatInfo/styles/types.d.ts +2 -0
- package/dist/types/components/2_feed_elements/AudioMessage/styles/types.d.ts +18 -0
- package/dist/types/components/2_feed_elements/CallMessage/styles/types.d.ts +24 -0
- package/dist/types/components/2_feed_elements/DateMessage/styles/types.d.ts +6 -0
- package/dist/types/components/2_feed_elements/DateMessageSticky/styles/types.d.ts +4 -0
- package/dist/types/components/2_feed_elements/FeedKeyboard/styles/types.d.ts +2 -0
- package/dist/types/components/2_feed_elements/FileMessage/styles/types.d.ts +12 -0
- package/dist/types/components/2_feed_elements/ImageMessage/styles/types.d.ts +126 -0
- package/dist/types/components/2_feed_elements/MessageReactions/styles/types.d.ts +8 -0
- package/dist/types/components/2_feed_elements/TextMessage/styles/types.d.ts +16 -0
- package/dist/types/components/3_compounds/ChatInput/styles/types.d.ts +2 -0
- package/dist/types/components/3_compounds/ChatList/ChatList.vue.d.ts +2 -0
- package/dist/types/components/3_compounds/ChatList/styles/types.d.ts +8 -0
- package/dist/types/components/3_compounds/SideBar/styles/types.d.ts +6 -16
- package/dist/types/components/4_layouts/ChatWrapper/styles/types.d.ts +4 -0
- package/dist/types/components/4_layouts/ExtendedLayout/styles/types.d.ts +8 -0
- package/package.json +2 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import t from "./ButtonContextMenu.vue2.js";
|
|
2
2
|
/* empty css */
|
|
3
3
|
import o from "../../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
-
const
|
|
4
|
+
const m = /* @__PURE__ */ o(t, [["__scopeId", "data-v-4c932a06"]]);
|
|
5
5
|
export {
|
|
6
|
-
|
|
6
|
+
m as default
|
|
7
7
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent as _, inject as I, useId as q, ref as f, onMounted as L, nextTick as
|
|
1
|
+
import { defineComponent as _, inject as I, useId as q, ref as f, onMounted as L, nextTick as y, onUnmounted as O, createElementBlock as T, openBlock as k, unref as c, createElementVNode as A, createBlock as N, renderSlot as R, Teleport as V, createVNode as j } from "vue";
|
|
2
2
|
import P from "../ContextMenu/ContextMenu.vue.js";
|
|
3
3
|
import "../../../hooks/useMessageDraft.js";
|
|
4
4
|
import "../../../hooks/useSearchModel.js";
|
|
@@ -32,45 +32,46 @@ const $ = ["id"], X = /* @__PURE__ */ _({
|
|
|
32
32
|
},
|
|
33
33
|
emits: ["click", "buttonClick", "menuMouseEnter", "menuMouseLeave"],
|
|
34
34
|
setup(m, { expose: M, emit: C }) {
|
|
35
|
-
const d = I("chatAppId"), { getTheme: h } = U(d),
|
|
36
|
-
l(),
|
|
37
|
-
},
|
|
38
|
-
|
|
39
|
-
}, B = () => {
|
|
40
|
-
n.disabled || n.mode == "hover" && u();
|
|
35
|
+
const d = I("chatAppId"), { getTheme: h } = U(d), i = m, p = q(), r = C, n = f(), s = f(), a = f(!1), b = (t) => {
|
|
36
|
+
l(), r("click", t);
|
|
37
|
+
}, x = () => {
|
|
38
|
+
i.disabled || (i.mode == "click" && !a.value ? u() : i.mode == "click" && a.value && l(), r("buttonClick"));
|
|
41
39
|
}, w = () => {
|
|
42
|
-
|
|
40
|
+
i.disabled || i.mode == "hover" && u();
|
|
41
|
+
}, B = () => {
|
|
42
|
+
i.disabled || i.mode == "hover" && l();
|
|
43
43
|
}, S = () => {
|
|
44
|
-
|
|
44
|
+
r("menuMouseEnter"), i.disabled || i.mode == "hover" && u();
|
|
45
45
|
}, E = () => {
|
|
46
|
-
|
|
46
|
+
r("menuMouseLeave"), i.disabled || i.mode == "hover" && l();
|
|
47
47
|
}, u = () => {
|
|
48
|
-
if (s.value &&
|
|
49
|
-
const t =
|
|
48
|
+
if (s.value && n.value) {
|
|
49
|
+
const t = n.value, e = s.value.getBoundingClientRect();
|
|
50
50
|
t.style.display = "inherit";
|
|
51
|
-
const o =
|
|
52
|
-
t.style.display = "none",
|
|
53
|
-
const
|
|
51
|
+
const o = n.value.getBoundingClientRect();
|
|
52
|
+
t.style.display = "none", y(() => {
|
|
53
|
+
const g = {
|
|
54
54
|
left: { top: e.top - (o.height - e.height) / 2 - o.top, left: e.left - o.width - o.left },
|
|
55
55
|
right: { top: e.top - (o.height - e.height) / 2 - o.top, left: e.left + e.width - o.left },
|
|
56
56
|
bottom: { top: (e == null ? void 0 : e.bottom) - o.top, left: (e == null ? void 0 : e.left) - (o.width - e.width) / 2 - o.left },
|
|
57
57
|
top: { top: e.top - o.height - o.top, left: (e == null ? void 0 : e.left) - (o.width - e.width) / 2 - o.left },
|
|
58
|
-
"top-right": { top: e.top - o.height, left: e.right - o.width / 2 }
|
|
58
|
+
"top-right": { top: e.top - o.height, left: e.right - o.width / 2 },
|
|
59
|
+
"bottom-right": { top: e.bottom, left: e.right - o.width }
|
|
59
60
|
};
|
|
60
|
-
t.style.top =
|
|
61
|
+
t.style.top = g[i.menuSide].top + "px", t.style.left = g[i.menuSide].left + "px", t.style.opacity = "1", t.style.display = "inherit", a.value = !0;
|
|
61
62
|
});
|
|
62
63
|
}
|
|
63
64
|
}, l = () => {
|
|
64
|
-
if (
|
|
65
|
-
const t =
|
|
66
|
-
t && (t.style.top = "0", t.style.left = "0", t.style.opacity = "0", t.style.display = "none",
|
|
65
|
+
if (n.value) {
|
|
66
|
+
const t = n.value;
|
|
67
|
+
t && (t.style.top = "0", t.style.left = "0", t.style.opacity = "0", t.style.display = "none", a.value = !1);
|
|
67
68
|
}
|
|
68
69
|
}, v = (t) => {
|
|
69
|
-
|
|
70
|
+
i.mode == "click" && s.value && !s.value.contains(t.target) && l();
|
|
70
71
|
};
|
|
71
72
|
return L(() => {
|
|
72
|
-
|
|
73
|
-
|
|
73
|
+
y(() => {
|
|
74
|
+
n.value = document.getElementById("context-menu-" + p + d), n.value && (l(), document.addEventListener("click", v));
|
|
74
75
|
});
|
|
75
76
|
}), O(() => {
|
|
76
77
|
document.removeEventListener("click", v);
|
|
@@ -82,10 +83,10 @@ const $ = ["id"], X = /* @__PURE__ */ _({
|
|
|
82
83
|
ref_key: "actionScope",
|
|
83
84
|
ref: s,
|
|
84
85
|
style: { position: "relative", width: "fit-content", border: "none", background: "transparent", height: "fit-content" },
|
|
85
|
-
onMouseenter:
|
|
86
|
-
onMouseleave:
|
|
86
|
+
onMouseenter: w,
|
|
87
|
+
onMouseleave: B
|
|
87
88
|
}, [
|
|
88
|
-
A("div", { onClick:
|
|
89
|
+
A("div", { onClick: x }, [
|
|
89
90
|
R(t.$slots, "default", {}, void 0, !0)
|
|
90
91
|
]),
|
|
91
92
|
(k(), N(V, { to: "body" }, [
|
|
@@ -95,7 +96,7 @@ const $ = ["id"], X = /* @__PURE__ */ _({
|
|
|
95
96
|
"data-theme": c(h)().theme ? c(h)().theme : "light",
|
|
96
97
|
onMouseenter: S,
|
|
97
98
|
onMouseleave: E,
|
|
98
|
-
onClick:
|
|
99
|
+
onClick: b
|
|
99
100
|
}, null, 8, ["id", "actions", "data-theme"])
|
|
100
101
|
]))
|
|
101
102
|
], 40, $));
|
|
@@ -1,29 +1,43 @@
|
|
|
1
|
-
import { createElementBlock as t, openBlock as s, createElementVNode as
|
|
1
|
+
import { createElementBlock as t, openBlock as s, createElementVNode as _, Fragment as h, renderList as k, normalizeClass as d, createCommentVNode as r, toDisplayString as a } from "vue";
|
|
2
2
|
/* empty css */
|
|
3
3
|
import y from "../../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
-
const
|
|
4
|
+
const v = ["id", "data-theme"], x = { class: "context-menu__list" }, f = ["onClick"], g = ["src"], C = {
|
|
5
5
|
key: 2,
|
|
6
6
|
style: { "white-space": "nowrap" }
|
|
7
|
-
},
|
|
7
|
+
}, b = { key: 3 }, M = {
|
|
8
8
|
__name: "ContextMenu",
|
|
9
9
|
props: {
|
|
10
10
|
actions: {
|
|
11
11
|
type: Array,
|
|
12
12
|
required: !0
|
|
13
|
+
},
|
|
14
|
+
id: {
|
|
15
|
+
type: String,
|
|
16
|
+
default: ""
|
|
17
|
+
},
|
|
18
|
+
dataTheme: {
|
|
19
|
+
type: String,
|
|
20
|
+
default: "light"
|
|
13
21
|
}
|
|
14
22
|
},
|
|
15
|
-
emits: ["click"],
|
|
16
|
-
setup(
|
|
17
|
-
const
|
|
18
|
-
const
|
|
19
|
-
|
|
23
|
+
emits: ["click", "mouseenter", "mouseleave"],
|
|
24
|
+
setup(o, { emit: u }) {
|
|
25
|
+
const l = o, i = u, p = (c) => {
|
|
26
|
+
const n = l.actions[c];
|
|
27
|
+
i("click", n);
|
|
20
28
|
};
|
|
21
|
-
return (c,
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
29
|
+
return (c, n) => (s(), t("div", {
|
|
30
|
+
id: o.id,
|
|
31
|
+
class: "context-menu__container",
|
|
32
|
+
"data-theme": o.dataTheme,
|
|
33
|
+
onMouseenter: n[0] || (n[0] = (e) => i("mouseenter")),
|
|
34
|
+
onMouseleave: n[1] || (n[1] = (e) => i("mouseleave"))
|
|
35
|
+
}, [
|
|
36
|
+
_("ul", x, [
|
|
37
|
+
(s(!0), t(h, null, k(l.actions, (e, m) => (s(), t("li", {
|
|
38
|
+
key: m,
|
|
39
|
+
class: d(["context-menu__item", { "context-menu__item--disabled": e.disabled }]),
|
|
40
|
+
onClick: (w) => !e.disabled && p(m)
|
|
27
41
|
}, [
|
|
28
42
|
e.icon ? (s(), t("img", {
|
|
29
43
|
key: 0,
|
|
@@ -32,15 +46,15 @@ const x = { class: "context-menu__container" }, f = { class: "context-menu__list
|
|
|
32
46
|
height: "18"
|
|
33
47
|
}, null, 8, g)) : e.prime ? (s(), t("i", {
|
|
34
48
|
key: 1,
|
|
35
|
-
class:
|
|
36
|
-
}, null, 2)) :
|
|
37
|
-
e.title ? (s(), t("span",
|
|
38
|
-
e.description ? (s(), t("span",
|
|
39
|
-
], 10,
|
|
49
|
+
class: d("pi pi-" + e.prime)
|
|
50
|
+
}, null, 2)) : r("", !0),
|
|
51
|
+
e.title ? (s(), t("span", C, a(e.title), 1)) : r("", !0),
|
|
52
|
+
e.description ? (s(), t("span", b, a(e.description), 1)) : r("", !0)
|
|
53
|
+
], 10, f))), 128))
|
|
40
54
|
])
|
|
41
|
-
]));
|
|
55
|
+
], 40, v));
|
|
42
56
|
}
|
|
43
|
-
},
|
|
57
|
+
}, E = /* @__PURE__ */ y(M, [["__scopeId", "data-v-10427b95"]]);
|
|
44
58
|
export {
|
|
45
|
-
|
|
59
|
+
E as default
|
|
46
60
|
};
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import { createElementBlock as t, openBlock as L, createStaticVNode as e } from "vue";
|
|
2
|
-
import
|
|
3
|
-
const
|
|
2
|
+
import r from "../../_virtual/_plugin-vue_export-helper.js";
|
|
3
|
+
const i = {}, o = {
|
|
4
4
|
width: "26",
|
|
5
5
|
height: "26",
|
|
6
6
|
viewBox: "0 0 26 26",
|
|
7
7
|
fill: "none",
|
|
8
8
|
xmlns: "http://www.w3.org/2000/svg"
|
|
9
9
|
};
|
|
10
|
-
function
|
|
11
|
-
return L(), t("svg",
|
|
12
|
-
e('<g clip-path="url(#clip0_3130_417)"><path d="M13.0003 7.72656C12.3076 7.72656 11.6217 7.863 10.9818 8.12808C10.3418 8.39316 9.76033 8.78169 9.27053 9.2715C8.78072 9.76131 8.39218 10.3428 8.1271 10.9828C7.86202 11.6227 7.72559 12.3086 7.72559 13.0013C7.72559 13.694 7.86202 14.3799 8.1271 15.0199C8.39218 15.6598 8.78072 16.2413 9.27053 16.7311C9.76033 17.2209 10.3418 17.6095 10.9818 17.8745C11.6217 18.1396 12.3076 18.2761 13.0003 18.2761C14.3993 18.2761 15.7409 17.7203 16.7301 16.7311C17.7194 15.7419 18.2751 14.4003 18.2751 13.0013C18.2751 11.6024 17.7194 10.2607 16.7301 9.2715C15.7409 8.28229 14.3993 7.72656 13.0003 7.72656ZM9.35059 13.0013C9.35059 12.0333 9.73511 11.105 10.4196 10.4205C11.104 9.73609 12.0324 9.35156 13.0003 9.35156C13.9683 9.35156 14.8966 9.73609 15.5811 10.4205C16.2656 11.105 16.6501 12.0333 16.6501 13.0013C16.6501 13.9693 16.2656 14.8976 15.5811 15.5821C14.8966 16.2665 13.9683 16.6511 13.0003 16.6511C12.0324 16.6511 11.104 16.2665 10.4196 15.5821C9.73511 14.8976 9.35059 13.9693 9.35059 13.0013Z" fill="
|
|
10
|
+
function c(l, C) {
|
|
11
|
+
return L(), t("svg", o, [...C[0] || (C[0] = [
|
|
12
|
+
e('<g clip-path="url(#clip0_3130_417)"><path d="M13.0003 7.72656C12.3076 7.72656 11.6217 7.863 10.9818 8.12808C10.3418 8.39316 9.76033 8.78169 9.27053 9.2715C8.78072 9.76131 8.39218 10.3428 8.1271 10.9828C7.86202 11.6227 7.72559 12.3086 7.72559 13.0013C7.72559 13.694 7.86202 14.3799 8.1271 15.0199C8.39218 15.6598 8.78072 16.2413 9.27053 16.7311C9.76033 17.2209 10.3418 17.6095 10.9818 17.8745C11.6217 18.1396 12.3076 18.2761 13.0003 18.2761C14.3993 18.2761 15.7409 17.7203 16.7301 16.7311C17.7194 15.7419 18.2751 14.4003 18.2751 13.0013C18.2751 11.6024 17.7194 10.2607 16.7301 9.2715C15.7409 8.28229 14.3993 7.72656 13.0003 7.72656ZM9.35059 13.0013C9.35059 12.0333 9.73511 11.105 10.4196 10.4205C11.104 9.73609 12.0324 9.35156 13.0003 9.35156C13.9683 9.35156 14.8966 9.73609 15.5811 10.4205C16.2656 11.105 16.6501 12.0333 16.6501 13.0013C16.6501 13.9693 16.2656 14.8976 15.5811 15.5821C14.8966 16.2665 13.9683 16.6511 13.0003 16.6511C12.0324 16.6511 11.104 16.2665 10.4196 15.5821C9.73511 14.8976 9.35059 13.9693 9.35059 13.0013Z" fill="currentColor"></path><path d="M15.9187 2.18156C15.0623 -0.727187 10.938 -0.727187 10.0817 2.18156L9.92891 2.69994C9.86911 2.90298 9.76462 3.09008 9.62312 3.24749C9.48161 3.40491 9.30667 3.52867 9.11112 3.6097C8.91557 3.69072 8.70436 3.72696 8.49299 3.71575C8.28161 3.70455 8.07543 3.64618 7.88954 3.54494L7.41504 3.28494C4.75004 1.83544 1.83641 4.75069 3.28754 7.41406L3.54591 7.88856C3.64716 8.07445 3.70552 8.28064 3.71673 8.49201C3.72794 8.70339 3.6917 8.91459 3.61067 9.11014C3.52965 9.30569 3.40589 9.48063 3.24847 9.62214C3.09105 9.76365 2.90396 9.86813 2.70091 9.92794L2.18254 10.0807C-0.726211 10.9371 -0.726211 15.0613 2.18254 15.9177L2.70091 16.0704C2.90396 16.1302 3.09105 16.2347 3.24847 16.3762C3.40589 16.5177 3.52965 16.6927 3.61067 16.8882C3.6917 17.0838 3.72794 17.295 3.71673 17.5064C3.70552 17.7177 3.64716 17.9239 3.54591 18.1098L3.28591 18.5843C1.83641 21.2493 4.75004 24.1646 7.41504 22.7118L7.88954 22.4534C8.07543 22.3522 8.28161 22.2938 8.49299 22.2826C8.70436 22.2714 8.91557 22.3077 9.11112 22.3887C9.30667 22.4697 9.48161 22.5935 9.62312 22.7509C9.76462 22.9083 9.86911 23.0954 9.92891 23.2984L10.0817 23.8168C10.938 26.7256 15.0623 26.7256 15.9187 23.8168L16.0714 23.2984C16.1312 23.0954 16.2357 22.9083 16.3772 22.7509C16.5187 22.5935 16.6937 22.4697 16.8892 22.3887C17.0848 22.3077 17.296 22.2714 17.5073 22.2826C17.7187 22.2938 17.9249 22.3522 18.1108 22.4534L18.5853 22.7134C21.2503 24.1646 24.1655 21.2477 22.7128 18.5843L22.4544 18.1098C22.3532 17.9239 22.2948 17.7177 22.2836 17.5064C22.2724 17.295 22.3086 17.0838 22.3897 16.8882C22.4707 16.6927 22.5944 16.5177 22.7519 16.3762C22.9093 16.2347 23.0964 16.1302 23.2994 16.0704L23.8178 15.9177C26.7265 15.0613 26.7265 10.9371 23.8178 10.0807L23.2994 9.92794C23.0964 9.86813 22.9093 9.76365 22.7519 9.62214C22.5944 9.48063 22.4707 9.30569 22.3897 9.11014C22.3086 8.91459 22.2724 8.70339 22.2836 8.49201C22.2948 8.28064 22.3532 8.07445 22.4544 7.88856L22.7144 7.41406C24.1655 4.74906 21.2487 1.83544 18.5853 3.28656L18.1108 3.54494C17.9249 3.64618 17.7187 3.70455 17.5073 3.71575C17.296 3.72696 17.0848 3.69072 16.8892 3.6097C16.6937 3.52867 16.5187 3.40491 16.3772 3.24749C16.2357 3.09008 16.1312 2.90298 16.0714 2.69994L15.9187 2.18156ZM11.64 2.64144C12.0398 1.28456 13.9605 1.28456 14.3603 2.64144L14.513 3.15981C14.6414 3.59545 14.8657 3.99683 15.1694 4.33452C15.4731 4.67222 15.8485 4.93766 16.2682 5.1114C16.6878 5.28514 17.141 5.36277 17.5945 5.3386C18.048 5.31442 18.4904 5.18905 18.8892 4.97169L19.362 4.71169C20.6035 4.03731 21.962 5.39419 21.286 6.63731L21.0277 7.11181C20.8106 7.51063 20.6856 7.95296 20.6617 8.40638C20.6377 8.8598 20.7156 9.31282 20.8895 9.73226C21.0633 10.1517 21.3289 10.5269 21.6666 10.8304C22.0043 11.1339 22.4056 11.358 22.8412 11.4863L23.3579 11.6391C24.7148 12.0388 24.7148 13.9596 23.3579 14.3593L22.8395 14.5121C22.4039 14.6405 22.0025 14.8647 21.6648 15.1684C21.3271 15.4721 21.0617 15.8476 20.8879 16.2672C20.7142 16.6868 20.6366 17.14 20.6608 17.5935C20.6849 18.047 20.8103 18.4894 21.0277 18.8882L21.2877 19.3611C21.962 20.6026 20.6052 21.9611 19.362 21.2851L18.8892 21.0267C18.4903 20.8093 18.0478 20.684 17.5942 20.66C17.1406 20.6359 16.6873 20.7137 16.2677 20.8876C15.848 21.0615 15.4726 21.3271 15.169 21.665C14.8654 22.0029 14.6413 22.4044 14.513 22.8402L14.3603 23.3569C13.9605 24.7138 12.0398 24.7138 11.64 23.3569L11.4873 22.8386C11.3588 22.4032 11.1346 22.002 10.831 21.6645C10.5274 21.3269 10.1522 21.0616 9.73276 20.8879C9.31334 20.7142 8.86038 20.6365 8.40705 20.6605C7.95372 20.6845 7.5115 20.8096 7.11279 21.0267L6.63829 21.2867C5.39679 21.9611 4.03829 20.6042 4.71429 19.3611L4.97266 18.8882C5.19033 18.4893 5.31595 18.0468 5.34028 17.5931C5.36462 17.1394 5.28706 16.686 5.1133 16.2662C4.93954 15.8463 4.67398 15.4707 4.33612 15.1669C3.99825 14.8631 3.59665 14.6388 3.16079 14.5104L2.64241 14.3577C1.28554 13.9579 1.28554 12.0372 2.64241 11.6374L3.16079 11.4847C3.59597 11.3562 3.99692 11.132 4.33427 10.8285C4.67162 10.525 4.93685 10.15 5.11055 9.73075C5.28425 9.31155 5.36201 8.85881 5.33815 8.40567C5.31429 7.95253 5.18942 7.51046 4.97266 7.11181L4.71266 6.63731C4.03829 5.39581 5.39516 4.03731 6.63829 4.71331L7.11279 4.97169C7.5115 5.18875 7.95372 5.31387 8.40705 5.33789C8.86038 5.3619 9.31334 5.28421 9.73276 5.11049C10.1522 4.93677 10.5274 4.67143 10.831 4.33391C11.1346 3.99638 11.3588 3.59522 11.4873 3.15981L11.64 2.64144Z" fill="currentColor"></path></g><defs><clipPath id="clip0_3130_417"><rect width="26" height="26" fill="white"></rect></clipPath></defs>', 2)
|
|
13
13
|
])]);
|
|
14
14
|
}
|
|
15
|
-
const h = /* @__PURE__ */ i
|
|
15
|
+
const h = /* @__PURE__ */ r(i, [["render", c]]);
|
|
16
16
|
export {
|
|
17
17
|
h as default
|
|
18
18
|
};
|