veylan-component-library 1.0.0 → 1.0.1
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.
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import { ChevronDown as U, Share2 as
|
|
3
|
-
const
|
|
1
|
+
import { defineComponent as k, createElementBlock as n, createCommentVNode as t, openBlock as i, withModifiers as z, createElementVNode as o, renderSlot as H, toDisplayString as c, normalizeStyle as P, normalizeClass as _, createBlock as b, createTextVNode as S, Fragment as x, renderList as y, createVNode as I, ref as C, computed as F, withDirectives as N, vModelText as E, createStaticVNode as M } from "vue";
|
|
2
|
+
import { ChevronDown as U, Share2 as O, ArrowRight as R, ArrowLeft as Z, MoreHorizontal as G, ToyBrick as Q, MessageSquare as K, Home as W } from "lucide-vue-next";
|
|
3
|
+
const Y = /* @__PURE__ */ k({
|
|
4
4
|
__name: "BaseModal",
|
|
5
5
|
props: {
|
|
6
6
|
isOpen: { type: Boolean, required: !1, default: !1 },
|
|
@@ -9,9 +9,9 @@ const W = /* @__PURE__ */ C({
|
|
|
9
9
|
secondaryButtonText: { type: String, required: !1, default: "Cancel" }
|
|
10
10
|
},
|
|
11
11
|
emits: ["close", "primary", "secondary"],
|
|
12
|
-
setup(
|
|
13
|
-
|
|
14
|
-
const
|
|
12
|
+
setup(r, { expose: l, emit: e }) {
|
|
13
|
+
l();
|
|
14
|
+
const s = r, u = e, f = { props: s, emit: u, handleClose: () => {
|
|
15
15
|
u("close");
|
|
16
16
|
}, handlePrimary: () => {
|
|
17
17
|
u("primary");
|
|
@@ -20,38 +20,38 @@ const W = /* @__PURE__ */ C({
|
|
|
20
20
|
} };
|
|
21
21
|
return Object.defineProperty(f, "__isScriptSetup", { enumerable: !1, value: !0 }), f;
|
|
22
22
|
}
|
|
23
|
-
}), g = (
|
|
24
|
-
const e =
|
|
25
|
-
for (const [
|
|
26
|
-
e[
|
|
23
|
+
}), g = (r, l) => {
|
|
24
|
+
const e = r.__vccOpts || r;
|
|
25
|
+
for (const [s, u] of l)
|
|
26
|
+
e[s] = u;
|
|
27
27
|
return e;
|
|
28
|
-
},
|
|
28
|
+
}, J = { class: "bg-white rounded-2xl w-full max-w-[630px] p-8 shadow-xl" }, X = {
|
|
29
29
|
class: "text-2xl font-bold text-black mb-8",
|
|
30
30
|
style: { "letter-spacing": "0" }
|
|
31
|
-
},
|
|
32
|
-
function
|
|
33
|
-
return e.isOpen ? (
|
|
31
|
+
}, $ = { class: "flex gap-4 pt-6" };
|
|
32
|
+
function ee(r, l, e, s, u, v) {
|
|
33
|
+
return e.isOpen ? (i(), n("div", {
|
|
34
34
|
key: 0,
|
|
35
35
|
class: "fixed inset-0 bg-black/50 flex items-center justify-center z-50 p-4",
|
|
36
|
-
onClick: z(
|
|
36
|
+
onClick: z(s.handleClose, ["self"])
|
|
37
37
|
}, [
|
|
38
|
-
o("div",
|
|
39
|
-
|
|
38
|
+
o("div", J, [
|
|
39
|
+
t(" Header "),
|
|
40
40
|
o(
|
|
41
41
|
"h2",
|
|
42
|
-
|
|
42
|
+
X,
|
|
43
43
|
c(e.title),
|
|
44
44
|
1
|
|
45
45
|
/* TEXT */
|
|
46
46
|
),
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
o("div",
|
|
47
|
+
t(" Content Slot "),
|
|
48
|
+
H(r.$slots, "default"),
|
|
49
|
+
t(" Action Buttons "),
|
|
50
|
+
o("div", $, [
|
|
51
51
|
o(
|
|
52
52
|
"button",
|
|
53
53
|
{
|
|
54
|
-
onClick:
|
|
54
|
+
onClick: s.handleSecondary,
|
|
55
55
|
class: "flex-1 h-8 flex items-center justify-center px-4 text-gray-800 rounded-xl hover:bg-gray-50 transition-colors font-medium",
|
|
56
56
|
style: { "font-size": "12px" }
|
|
57
57
|
},
|
|
@@ -62,7 +62,7 @@ function $(a, t, e, i, u, v) {
|
|
|
62
62
|
o(
|
|
63
63
|
"button",
|
|
64
64
|
{
|
|
65
|
-
onClick:
|
|
65
|
+
onClick: s.handlePrimary,
|
|
66
66
|
class: "flex-1 h-8 px-4 bg-black text-white rounded-xl hover:bg-gray-800 transition-colors font-medium",
|
|
67
67
|
style: { "font-size": "12px" }
|
|
68
68
|
},
|
|
@@ -72,9 +72,9 @@ function $(a, t, e, i, u, v) {
|
|
|
72
72
|
)
|
|
73
73
|
])
|
|
74
74
|
])
|
|
75
|
-
])) :
|
|
75
|
+
])) : t("v-if", !0);
|
|
76
76
|
}
|
|
77
|
-
const
|
|
77
|
+
const jt = /* @__PURE__ */ g(Y, [["render", ee], ["__file", "/root/app/code/src/components/BaseModal.vue"]]), te = /* @__PURE__ */ k({
|
|
78
78
|
__name: "ButtonComponent",
|
|
79
79
|
props: {
|
|
80
80
|
variant: { type: String, required: !1, default: "primary" },
|
|
@@ -83,25 +83,25 @@ const Ht = /* @__PURE__ */ g(W, [["render", $], ["__file", "/root/app/code/src/c
|
|
|
83
83
|
disabled: { type: Boolean, required: !1, default: !1 }
|
|
84
84
|
},
|
|
85
85
|
emits: ["click"],
|
|
86
|
-
setup(
|
|
87
|
-
|
|
88
|
-
const
|
|
89
|
-
|
|
86
|
+
setup(r, { expose: l, emit: e }) {
|
|
87
|
+
l();
|
|
88
|
+
const s = e, v = { emit: s, handleClick: () => {
|
|
89
|
+
s("click");
|
|
90
90
|
}, get ArrowLeft() {
|
|
91
|
-
return
|
|
91
|
+
return Z;
|
|
92
92
|
}, get ArrowRight() {
|
|
93
|
-
return
|
|
93
|
+
return R;
|
|
94
94
|
}, get Share2() {
|
|
95
|
-
return
|
|
95
|
+
return O;
|
|
96
96
|
}, get ChevronDown() {
|
|
97
97
|
return U;
|
|
98
98
|
} };
|
|
99
99
|
return Object.defineProperty(v, "__isScriptSetup", { enumerable: !1, value: !0 }), v;
|
|
100
100
|
}
|
|
101
|
-
}),
|
|
102
|
-
function
|
|
103
|
-
return
|
|
104
|
-
onClick:
|
|
101
|
+
}), le = ["disabled"];
|
|
102
|
+
function oe(r, l, e, s, u, v) {
|
|
103
|
+
return i(), n("button", {
|
|
104
|
+
onClick: s.handleClick,
|
|
105
105
|
disabled: e.disabled || e.variant === "disabled",
|
|
106
106
|
class: _([
|
|
107
107
|
"flex items-center justify-center gap-3 h-8 rounded-lg font-medium text-sm transition-all duration-200",
|
|
@@ -119,41 +119,41 @@ function le(a, t, e, i, u, v) {
|
|
|
119
119
|
...e.variant === "disabled" || e.disabled ? { backgroundColor: "#E8E8E8", color: "#8F8F8F" } : {}
|
|
120
120
|
})
|
|
121
121
|
}, [
|
|
122
|
-
|
|
123
|
-
e.leftIcon === "arrow" ? (
|
|
122
|
+
t(" Left Icon "),
|
|
123
|
+
e.leftIcon === "arrow" ? (i(), b(s.ArrowLeft, {
|
|
124
124
|
key: 0,
|
|
125
125
|
size: 20,
|
|
126
126
|
"stroke-width": 1.5
|
|
127
|
-
})) : e.leftIcon === "share" ? (
|
|
127
|
+
})) : e.leftIcon === "share" ? (i(), b(s.Share2, {
|
|
128
128
|
key: 1,
|
|
129
129
|
size: 20,
|
|
130
130
|
"stroke-width": 1.5
|
|
131
|
-
})) :
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
131
|
+
})) : t("v-if", !0),
|
|
132
|
+
t(" Text Slot "),
|
|
133
|
+
H(r.$slots, "default", {}, () => [
|
|
134
|
+
l[0] || (l[0] = S(
|
|
135
135
|
"Button",
|
|
136
136
|
-1
|
|
137
137
|
/* CACHED */
|
|
138
138
|
))
|
|
139
139
|
]),
|
|
140
|
-
|
|
141
|
-
e.rightIcon === "arrow" ? (
|
|
140
|
+
t(" Right Icon "),
|
|
141
|
+
e.rightIcon === "arrow" ? (i(), b(s.ArrowRight, {
|
|
142
142
|
key: 2,
|
|
143
143
|
size: 20,
|
|
144
144
|
"stroke-width": 1.5
|
|
145
|
-
})) : e.rightIcon === "share" ? (
|
|
145
|
+
})) : e.rightIcon === "share" ? (i(), b(s.Share2, {
|
|
146
146
|
key: 3,
|
|
147
147
|
size: 20,
|
|
148
148
|
"stroke-width": 1.5
|
|
149
|
-
})) : e.rightIcon === "dropdown" ? (
|
|
149
|
+
})) : e.rightIcon === "dropdown" ? (i(), b(s.ChevronDown, {
|
|
150
150
|
key: 4,
|
|
151
151
|
size: 20,
|
|
152
152
|
"stroke-width": 1.5
|
|
153
|
-
})) :
|
|
154
|
-
], 14,
|
|
153
|
+
})) : t("v-if", !0)
|
|
154
|
+
], 14, le);
|
|
155
155
|
}
|
|
156
|
-
const At = /* @__PURE__ */ g(
|
|
156
|
+
const At = /* @__PURE__ */ g(te, [["render", oe], ["__file", "/root/app/code/src/components/ButtonComponent.vue"]]), se = /* @__PURE__ */ k({
|
|
157
157
|
__name: "CampaignCard",
|
|
158
158
|
props: {
|
|
159
159
|
showImage: { type: Boolean, required: !1, default: !0 },
|
|
@@ -174,69 +174,69 @@ const At = /* @__PURE__ */ g(ee, [["render", le], ["__file", "/root/app/code/src
|
|
|
174
174
|
cardClasses: { type: String, required: !1, default: "" }
|
|
175
175
|
},
|
|
176
176
|
emits: ["menu-click", "add-click"],
|
|
177
|
-
setup(
|
|
178
|
-
|
|
179
|
-
const
|
|
180
|
-
return Object.defineProperty(
|
|
177
|
+
setup(r, { expose: l }) {
|
|
178
|
+
l();
|
|
179
|
+
const s = { props: r };
|
|
180
|
+
return Object.defineProperty(s, "__isScriptSetup", { enumerable: !1, value: !0 }), s;
|
|
181
181
|
}
|
|
182
|
-
}),
|
|
182
|
+
}), ie = { class: "absolute inset-0" }, ne = ["src", "alt"], ae = { class: "relative flex justify-between items-start w-full" }, re = {
|
|
183
183
|
key: 0,
|
|
184
184
|
class: "flex items-center gap-2"
|
|
185
|
-
},
|
|
185
|
+
}, de = {
|
|
186
186
|
key: 0,
|
|
187
187
|
class: "flex h-6 px-2.5 justify-center items-center rounded-lg bg-white text-black font-medium",
|
|
188
188
|
style: { gap: "10px", "line-height": "24px", "font-size": "10px" }
|
|
189
|
-
},
|
|
189
|
+
}, ce = {
|
|
190
190
|
key: 1,
|
|
191
191
|
class: "flex h-6 px-2.5 justify-center items-center rounded-lg bg-black text-white font-medium",
|
|
192
192
|
style: { gap: "10px", "line-height": "24px", "font-size": "10px" }
|
|
193
|
-
},
|
|
193
|
+
}, ue = {
|
|
194
194
|
style: { width: "18px", height: "18px" },
|
|
195
195
|
viewBox: "0 0 18 18",
|
|
196
196
|
fill: "none",
|
|
197
197
|
xmlns: "http://www.w3.org/2000/svg"
|
|
198
|
-
},
|
|
198
|
+
}, fe = {
|
|
199
199
|
key: 1,
|
|
200
200
|
class: "flex flex-col",
|
|
201
201
|
style: { padding: "0 16px", gap: "8px", margin: "0" }
|
|
202
|
-
},
|
|
202
|
+
}, he = {
|
|
203
203
|
key: 0,
|
|
204
204
|
class: "text-black",
|
|
205
205
|
style: { "font-size": "16px", "font-weight": "600", "line-height": "20px" }
|
|
206
|
-
},
|
|
206
|
+
}, me = {
|
|
207
207
|
key: 1,
|
|
208
208
|
class: "text-black",
|
|
209
209
|
style: { "font-size": "12px", "font-weight": "400", "line-height": "18px" }
|
|
210
|
-
},
|
|
210
|
+
}, ve = {
|
|
211
211
|
key: 2,
|
|
212
212
|
class: "flex items-end",
|
|
213
213
|
style: { padding: "0 16px", gap: "4px" }
|
|
214
|
-
},
|
|
214
|
+
}, ge = {
|
|
215
215
|
class: "flex justify-between items-end flex-1",
|
|
216
216
|
style: { height: "24px" }
|
|
217
|
-
},
|
|
217
|
+
}, xe = {
|
|
218
218
|
key: 0,
|
|
219
219
|
class: "flex items-center",
|
|
220
220
|
style: { gap: "4px" }
|
|
221
221
|
}, pe = {
|
|
222
222
|
class: "absolute left-0 top-0 flex items-center justify-center text-white",
|
|
223
223
|
style: { width: "24px", height: "24px", "font-size": "8px", "font-weight": "500", "line-height": "24px", "letter-spacing": "-0.08px" }
|
|
224
|
-
},
|
|
224
|
+
}, we = {
|
|
225
225
|
style: { width: "12px", height: "12px" },
|
|
226
226
|
viewBox: "0 0 12 12",
|
|
227
227
|
fill: "none",
|
|
228
228
|
xmlns: "http://www.w3.org/2000/svg"
|
|
229
229
|
};
|
|
230
|
-
function
|
|
231
|
-
return
|
|
230
|
+
function be(r, l, e, s, u, v) {
|
|
231
|
+
return i(), n(
|
|
232
232
|
"div",
|
|
233
233
|
{
|
|
234
234
|
class: _(["flex flex-col bg-white rounded-2xl shadow-card w-full", e.cardClasses]),
|
|
235
235
|
style: { gap: "16px", padding: "16px 0 24px 0" }
|
|
236
236
|
},
|
|
237
237
|
[
|
|
238
|
-
|
|
239
|
-
e.showImage ? (
|
|
238
|
+
t(" Card Image Section "),
|
|
239
|
+
e.showImage ? (i(), n(
|
|
240
240
|
"div",
|
|
241
241
|
{
|
|
242
242
|
key: 0,
|
|
@@ -244,41 +244,41 @@ function we(a, t, e, i, u, v) {
|
|
|
244
244
|
style: { height: "126px", margin: "-16px 0 0 0", padding: "16px 16px 0 16px", display: "flex", "justify-content": "space-between", "align-items": "flex-start", width: "100%" }
|
|
245
245
|
},
|
|
246
246
|
[
|
|
247
|
-
|
|
248
|
-
o("div",
|
|
247
|
+
t(" Background Image "),
|
|
248
|
+
o("div", ie, [
|
|
249
249
|
o("img", {
|
|
250
250
|
src: e.imageSrc,
|
|
251
251
|
alt: e.imageAlt,
|
|
252
252
|
class: "w-full h-full object-cover"
|
|
253
|
-
}, null, 8,
|
|
253
|
+
}, null, 8, ne)
|
|
254
254
|
]),
|
|
255
|
-
|
|
256
|
-
o("div",
|
|
257
|
-
|
|
258
|
-
e.showLabels ? (
|
|
259
|
-
e.label1 ? (
|
|
255
|
+
t(" Card Header Overlay "),
|
|
256
|
+
o("div", ae, [
|
|
257
|
+
t(" Labels/Pills "),
|
|
258
|
+
e.showLabels ? (i(), n("div", re, [
|
|
259
|
+
e.label1 ? (i(), n(
|
|
260
260
|
"div",
|
|
261
|
-
|
|
261
|
+
de,
|
|
262
262
|
c(e.label1),
|
|
263
263
|
1
|
|
264
264
|
/* TEXT */
|
|
265
|
-
)) :
|
|
266
|
-
e.label2 ? (
|
|
265
|
+
)) : t("v-if", !0),
|
|
266
|
+
e.label2 ? (i(), n(
|
|
267
267
|
"div",
|
|
268
|
-
|
|
268
|
+
ce,
|
|
269
269
|
c(e.label2),
|
|
270
270
|
1
|
|
271
271
|
/* TEXT */
|
|
272
|
-
)) :
|
|
273
|
-
])) :
|
|
274
|
-
|
|
275
|
-
e.showMenu ? (
|
|
272
|
+
)) : t("v-if", !0)
|
|
273
|
+
])) : t("v-if", !0),
|
|
274
|
+
t(" Menu Button "),
|
|
275
|
+
e.showMenu ? (i(), n("button", {
|
|
276
276
|
key: 1,
|
|
277
|
-
onClick:
|
|
277
|
+
onClick: l[0] || (l[0] = (a) => r.$emit("menu-click")),
|
|
278
278
|
class: "flex justify-center items-center flex-shrink-0 rounded-full bg-white hover:bg-gray-100 transition-colors",
|
|
279
279
|
style: { width: "32px", height: "32px" }
|
|
280
280
|
}, [
|
|
281
|
-
(
|
|
281
|
+
(i(), n("svg", ue, l[2] || (l[2] = [
|
|
282
282
|
o(
|
|
283
283
|
"path",
|
|
284
284
|
{
|
|
@@ -319,43 +319,43 @@ function we(a, t, e, i, u, v) {
|
|
|
319
319
|
/* CACHED */
|
|
320
320
|
)
|
|
321
321
|
])))
|
|
322
|
-
])) :
|
|
322
|
+
])) : t("v-if", !0)
|
|
323
323
|
])
|
|
324
324
|
],
|
|
325
325
|
2
|
|
326
326
|
/* CLASS */
|
|
327
|
-
)) :
|
|
328
|
-
|
|
329
|
-
e.showContent ? (
|
|
330
|
-
e.title ? (
|
|
327
|
+
)) : t("v-if", !0),
|
|
328
|
+
t(" Content Section "),
|
|
329
|
+
e.showContent ? (i(), n("div", fe, [
|
|
330
|
+
e.title ? (i(), n(
|
|
331
331
|
"h3",
|
|
332
|
-
|
|
332
|
+
he,
|
|
333
333
|
c(e.title),
|
|
334
334
|
1
|
|
335
335
|
/* TEXT */
|
|
336
|
-
)) :
|
|
337
|
-
e.description ? (
|
|
336
|
+
)) : t("v-if", !0),
|
|
337
|
+
e.description ? (i(), n(
|
|
338
338
|
"p",
|
|
339
|
-
|
|
339
|
+
me,
|
|
340
340
|
c(e.description),
|
|
341
341
|
1
|
|
342
342
|
/* TEXT */
|
|
343
|
-
)) :
|
|
344
|
-
])) :
|
|
345
|
-
|
|
346
|
-
e.showFooter ? (
|
|
347
|
-
o("div",
|
|
348
|
-
|
|
349
|
-
e.showMembers ? (
|
|
350
|
-
(
|
|
351
|
-
|
|
343
|
+
)) : t("v-if", !0)
|
|
344
|
+
])) : t("v-if", !0),
|
|
345
|
+
t(" Footer Section "),
|
|
346
|
+
e.showFooter ? (i(), n("div", ve, [
|
|
347
|
+
o("div", ge, [
|
|
348
|
+
t(" Member Avatars "),
|
|
349
|
+
e.showMembers ? (i(), n("div", xe, [
|
|
350
|
+
(i(!0), n(
|
|
351
|
+
x,
|
|
352
352
|
null,
|
|
353
|
-
y(e.members, (
|
|
353
|
+
y(e.members, (a, d) => (i(), n("div", {
|
|
354
354
|
key: d,
|
|
355
355
|
class: "relative",
|
|
356
356
|
style: { width: "24px", height: "24px" }
|
|
357
357
|
}, [
|
|
358
|
-
|
|
358
|
+
l[3] || (l[3] = o(
|
|
359
359
|
"svg",
|
|
360
360
|
{
|
|
361
361
|
class: "absolute left-0 top-0",
|
|
@@ -379,7 +379,7 @@ function we(a, t, e, i, u, v) {
|
|
|
379
379
|
o(
|
|
380
380
|
"div",
|
|
381
381
|
pe,
|
|
382
|
-
c(
|
|
382
|
+
c(a),
|
|
383
383
|
1
|
|
384
384
|
/* TEXT */
|
|
385
385
|
)
|
|
@@ -387,15 +387,15 @@ function we(a, t, e, i, u, v) {
|
|
|
387
387
|
128
|
|
388
388
|
/* KEYED_FRAGMENT */
|
|
389
389
|
))
|
|
390
|
-
])) :
|
|
391
|
-
|
|
392
|
-
e.showAddButton ? (
|
|
390
|
+
])) : t("v-if", !0),
|
|
391
|
+
t(" Add Button "),
|
|
392
|
+
e.showAddButton ? (i(), n("button", {
|
|
393
393
|
key: 1,
|
|
394
|
-
onClick:
|
|
394
|
+
onClick: l[1] || (l[1] = (a) => r.$emit("add-click")),
|
|
395
395
|
class: "flex justify-center items-center flex-shrink-0 rounded-full bg-black hover:bg-gray-800 transition-colors",
|
|
396
396
|
style: { width: "32px", height: "32px" }
|
|
397
397
|
}, [
|
|
398
|
-
(
|
|
398
|
+
(i(), n("svg", we, l[4] || (l[4] = [
|
|
399
399
|
o(
|
|
400
400
|
"path",
|
|
401
401
|
{
|
|
@@ -423,15 +423,15 @@ function we(a, t, e, i, u, v) {
|
|
|
423
423
|
/* CACHED */
|
|
424
424
|
)
|
|
425
425
|
])))
|
|
426
|
-
])) :
|
|
426
|
+
])) : t("v-if", !0)
|
|
427
427
|
])
|
|
428
|
-
])) :
|
|
428
|
+
])) : t("v-if", !0)
|
|
429
429
|
],
|
|
430
430
|
2
|
|
431
431
|
/* CLASS */
|
|
432
432
|
);
|
|
433
433
|
}
|
|
434
|
-
const Lt = /* @__PURE__ */ g(
|
|
434
|
+
const Lt = /* @__PURE__ */ g(se, [["render", be], ["__file", "/root/app/code/src/components/CampaignCard.vue"]]), ye = /* @__PURE__ */ k({
|
|
435
435
|
__name: "CardComponents",
|
|
436
436
|
props: {
|
|
437
437
|
showImage: { type: Boolean, required: !1, default: !0 },
|
|
@@ -452,27 +452,24 @@ const Lt = /* @__PURE__ */ g(oe, [["render", we], ["__file", "/root/app/code/src
|
|
|
452
452
|
cardClasses: { type: String, required: !1, default: "" }
|
|
453
453
|
},
|
|
454
454
|
emits: ["menu-click", "add-click"],
|
|
455
|
-
setup(
|
|
456
|
-
|
|
457
|
-
const
|
|
458
|
-
|
|
455
|
+
setup(r, { expose: l }) {
|
|
456
|
+
l();
|
|
457
|
+
const s = { props: r, get MoreHorizontal() {
|
|
458
|
+
return G;
|
|
459
|
+
} };
|
|
460
|
+
return Object.defineProperty(s, "__isScriptSetup", { enumerable: !1, value: !0 }), s;
|
|
459
461
|
}
|
|
460
|
-
}),
|
|
462
|
+
}), _e = { class: "absolute inset-0" }, ke = ["src", "alt"], Ce = { class: "relative flex justify-between items-start w-full" }, ze = {
|
|
461
463
|
key: 0,
|
|
462
464
|
class: "flex items-center gap-2"
|
|
463
|
-
},
|
|
465
|
+
}, Me = {
|
|
464
466
|
key: 0,
|
|
465
467
|
class: "flex h-6 px-2.5 justify-center items-center rounded-lg bg-white text-black font-medium",
|
|
466
468
|
style: { gap: "10px", "line-height": "24px", "font-size": "10px" }
|
|
467
|
-
},
|
|
469
|
+
}, Se = {
|
|
468
470
|
key: 1,
|
|
469
471
|
class: "flex h-6 px-2.5 justify-center items-center rounded-lg bg-black text-white font-medium",
|
|
470
472
|
style: { gap: "10px", "line-height": "24px", "font-size": "10px" }
|
|
471
|
-
}, Se = {
|
|
472
|
-
style: { width: "18px", height: "18px" },
|
|
473
|
-
viewBox: "0 0 18 18",
|
|
474
|
-
fill: "none",
|
|
475
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
476
473
|
}, Ie = {
|
|
477
474
|
key: 1,
|
|
478
475
|
class: "flex flex-col",
|
|
@@ -485,11 +482,11 @@ const Lt = /* @__PURE__ */ g(oe, [["render", we], ["__file", "/root/app/code/src
|
|
|
485
482
|
key: 1,
|
|
486
483
|
class: "text-black",
|
|
487
484
|
style: { "font-size": "12px", "font-weight": "400", "line-height": "18px" }
|
|
488
|
-
},
|
|
485
|
+
}, He = {
|
|
489
486
|
key: 2,
|
|
490
|
-
class: "flex items-end",
|
|
487
|
+
class: "flex items-end mt-auto",
|
|
491
488
|
style: { padding: "0 16px", gap: "4px" }
|
|
492
|
-
},
|
|
489
|
+
}, je = {
|
|
493
490
|
class: "flex justify-between items-end flex-1",
|
|
494
491
|
style: { height: "24px" }
|
|
495
492
|
}, Ae = {
|
|
@@ -505,16 +502,16 @@ const Lt = /* @__PURE__ */ g(oe, [["render", we], ["__file", "/root/app/code/src
|
|
|
505
502
|
fill: "none",
|
|
506
503
|
xmlns: "http://www.w3.org/2000/svg"
|
|
507
504
|
};
|
|
508
|
-
function De(
|
|
509
|
-
return
|
|
505
|
+
function De(r, l, e, s, u, v) {
|
|
506
|
+
return i(), n(
|
|
510
507
|
"div",
|
|
511
508
|
{
|
|
512
509
|
class: _(["flex flex-col bg-white rounded-2xl shadow-card w-full", e.cardClasses]),
|
|
513
510
|
style: { gap: "16px", padding: "16px 0 24px 0" }
|
|
514
511
|
},
|
|
515
512
|
[
|
|
516
|
-
|
|
517
|
-
e.showImage ? (
|
|
513
|
+
t(" Card Image Section "),
|
|
514
|
+
e.showImage ? (i(), n(
|
|
518
515
|
"div",
|
|
519
516
|
{
|
|
520
517
|
key: 0,
|
|
@@ -522,118 +519,82 @@ function De(a, t, e, i, u, v) {
|
|
|
522
519
|
style: { height: "126px", margin: "-16px 0 0 0", padding: "16px 16px 0 16px", display: "flex", "justify-content": "space-between", "align-items": "flex-start", width: "100%" }
|
|
523
520
|
},
|
|
524
521
|
[
|
|
525
|
-
|
|
526
|
-
o("div",
|
|
522
|
+
t(" Background Image "),
|
|
523
|
+
o("div", _e, [
|
|
527
524
|
o("img", {
|
|
528
525
|
src: e.imageSrc,
|
|
529
526
|
alt: e.imageAlt,
|
|
530
527
|
class: "w-full h-full object-cover"
|
|
531
|
-
}, null, 8,
|
|
528
|
+
}, null, 8, ke)
|
|
532
529
|
]),
|
|
533
|
-
|
|
530
|
+
t(" Card Header Overlay "),
|
|
534
531
|
o("div", Ce, [
|
|
535
|
-
|
|
536
|
-
e.showLabels ? (
|
|
537
|
-
e.label1 ? (
|
|
532
|
+
t(" Labels/Pills "),
|
|
533
|
+
e.showLabels ? (i(), n("div", ze, [
|
|
534
|
+
e.label1 ? (i(), n(
|
|
538
535
|
"div",
|
|
539
|
-
|
|
536
|
+
Me,
|
|
540
537
|
c(e.label1),
|
|
541
538
|
1
|
|
542
539
|
/* TEXT */
|
|
543
|
-
)) :
|
|
544
|
-
e.label2 ? (
|
|
540
|
+
)) : t("v-if", !0),
|
|
541
|
+
e.label2 ? (i(), n(
|
|
545
542
|
"div",
|
|
546
|
-
|
|
543
|
+
Se,
|
|
547
544
|
c(e.label2),
|
|
548
545
|
1
|
|
549
546
|
/* TEXT */
|
|
550
|
-
)) :
|
|
551
|
-
])) :
|
|
552
|
-
|
|
553
|
-
e.showMenu ? (
|
|
547
|
+
)) : t("v-if", !0)
|
|
548
|
+
])) : t("v-if", !0),
|
|
549
|
+
t(" Menu Button "),
|
|
550
|
+
e.showMenu ? (i(), n("button", {
|
|
554
551
|
key: 1,
|
|
555
|
-
onClick:
|
|
552
|
+
onClick: l[0] || (l[0] = (a) => r.$emit("menu-click")),
|
|
556
553
|
class: "flex justify-center items-center flex-shrink-0 rounded-full bg-white hover:bg-gray-100 transition-colors",
|
|
557
|
-
style: { width: "
|
|
554
|
+
style: { width: "24px", height: "24px" }
|
|
558
555
|
}, [
|
|
559
|
-
(s
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
"stroke-width": "1.5",
|
|
566
|
-
"stroke-linecap": "round",
|
|
567
|
-
"stroke-linejoin": "round"
|
|
568
|
-
},
|
|
569
|
-
null,
|
|
570
|
-
-1
|
|
571
|
-
/* CACHED */
|
|
572
|
-
),
|
|
573
|
-
o(
|
|
574
|
-
"path",
|
|
575
|
-
{
|
|
576
|
-
d: "M14.25 9.75C14.6642 9.75 15 9.41421 15 9C15 8.58579 14.6642 8.25 14.25 8.25C13.8358 8.25 13.5 8.58579 13.5 9C13.5 9.41421 13.8358 9.75 14.25 9.75Z",
|
|
577
|
-
stroke: "#C8C8C8",
|
|
578
|
-
"stroke-width": "1.5",
|
|
579
|
-
"stroke-linecap": "round",
|
|
580
|
-
"stroke-linejoin": "round"
|
|
581
|
-
},
|
|
582
|
-
null,
|
|
583
|
-
-1
|
|
584
|
-
/* CACHED */
|
|
585
|
-
),
|
|
586
|
-
o(
|
|
587
|
-
"path",
|
|
588
|
-
{
|
|
589
|
-
d: "M3.75 9.75C4.16421 9.75 4.5 9.41421 4.5 9C4.5 8.58579 4.16421 8.25 3.75 8.25C3.33579 8.25 3 8.58579 3 9C3 9.41421 3.33579 9.75 3.75 9.75Z",
|
|
590
|
-
stroke: "#C8C8C8",
|
|
591
|
-
"stroke-width": "1.5",
|
|
592
|
-
"stroke-linecap": "round",
|
|
593
|
-
"stroke-linejoin": "round"
|
|
594
|
-
},
|
|
595
|
-
null,
|
|
596
|
-
-1
|
|
597
|
-
/* CACHED */
|
|
598
|
-
)
|
|
599
|
-
])))
|
|
600
|
-
])) : l("v-if", !0)
|
|
556
|
+
I(s.MoreHorizontal, {
|
|
557
|
+
size: 16,
|
|
558
|
+
color: "black",
|
|
559
|
+
"stroke-width": 2
|
|
560
|
+
})
|
|
561
|
+
])) : t("v-if", !0)
|
|
601
562
|
])
|
|
602
563
|
],
|
|
603
564
|
2
|
|
604
565
|
/* CLASS */
|
|
605
|
-
)) :
|
|
606
|
-
|
|
607
|
-
e.showContent ? (
|
|
608
|
-
e.title ? (
|
|
566
|
+
)) : t("v-if", !0),
|
|
567
|
+
t(" Content Section "),
|
|
568
|
+
e.showContent ? (i(), n("div", Ie, [
|
|
569
|
+
e.title ? (i(), n(
|
|
609
570
|
"h3",
|
|
610
571
|
Be,
|
|
611
572
|
c(e.title),
|
|
612
573
|
1
|
|
613
574
|
/* TEXT */
|
|
614
|
-
)) :
|
|
615
|
-
e.description ? (
|
|
575
|
+
)) : t("v-if", !0),
|
|
576
|
+
e.description ? (i(), n(
|
|
616
577
|
"p",
|
|
617
578
|
qe,
|
|
618
579
|
c(e.description),
|
|
619
580
|
1
|
|
620
581
|
/* TEXT */
|
|
621
|
-
)) :
|
|
622
|
-
])) :
|
|
623
|
-
|
|
624
|
-
e.showFooter ? (
|
|
625
|
-
o("div",
|
|
626
|
-
|
|
627
|
-
e.showMembers ? (
|
|
628
|
-
(
|
|
629
|
-
|
|
582
|
+
)) : t("v-if", !0)
|
|
583
|
+
])) : t("v-if", !0),
|
|
584
|
+
t(" Footer Section "),
|
|
585
|
+
e.showFooter ? (i(), n("div", He, [
|
|
586
|
+
o("div", je, [
|
|
587
|
+
t(" Member Avatars "),
|
|
588
|
+
e.showMembers ? (i(), n("div", Ae, [
|
|
589
|
+
(i(!0), n(
|
|
590
|
+
x,
|
|
630
591
|
null,
|
|
631
|
-
y(e.members, (
|
|
592
|
+
y(e.members, (a, d) => (i(), n("div", {
|
|
632
593
|
key: d,
|
|
633
594
|
class: "relative",
|
|
634
595
|
style: { width: "24px", height: "24px" }
|
|
635
596
|
}, [
|
|
636
|
-
|
|
597
|
+
l[2] || (l[2] = o(
|
|
637
598
|
"svg",
|
|
638
599
|
{
|
|
639
600
|
class: "absolute left-0 top-0",
|
|
@@ -657,7 +618,7 @@ function De(a, t, e, i, u, v) {
|
|
|
657
618
|
o(
|
|
658
619
|
"div",
|
|
659
620
|
Le,
|
|
660
|
-
c(
|
|
621
|
+
c(a),
|
|
661
622
|
1
|
|
662
623
|
/* TEXT */
|
|
663
624
|
)
|
|
@@ -665,15 +626,15 @@ function De(a, t, e, i, u, v) {
|
|
|
665
626
|
128
|
|
666
627
|
/* KEYED_FRAGMENT */
|
|
667
628
|
))
|
|
668
|
-
])) :
|
|
669
|
-
|
|
670
|
-
e.showAddButton ? (
|
|
629
|
+
])) : t("v-if", !0),
|
|
630
|
+
t(" Add Button "),
|
|
631
|
+
e.showAddButton ? (i(), n("button", {
|
|
671
632
|
key: 1,
|
|
672
|
-
onClick:
|
|
633
|
+
onClick: l[1] || (l[1] = (a) => r.$emit("add-click")),
|
|
673
634
|
class: "flex justify-center items-center flex-shrink-0 rounded-full bg-black hover:bg-gray-800 transition-colors",
|
|
674
|
-
style: { width: "
|
|
635
|
+
style: { width: "24px", height: "24px" }
|
|
675
636
|
}, [
|
|
676
|
-
(
|
|
637
|
+
(i(), n("svg", Ve, l[3] || (l[3] = [
|
|
677
638
|
o(
|
|
678
639
|
"path",
|
|
679
640
|
{
|
|
@@ -701,15 +662,15 @@ function De(a, t, e, i, u, v) {
|
|
|
701
662
|
/* CACHED */
|
|
702
663
|
)
|
|
703
664
|
])))
|
|
704
|
-
])) :
|
|
665
|
+
])) : t("v-if", !0)
|
|
705
666
|
])
|
|
706
|
-
])) :
|
|
667
|
+
])) : t("v-if", !0)
|
|
707
668
|
],
|
|
708
669
|
2
|
|
709
670
|
/* CLASS */
|
|
710
671
|
);
|
|
711
672
|
}
|
|
712
|
-
const Vt = /* @__PURE__ */ g(
|
|
673
|
+
const Vt = /* @__PURE__ */ g(ye, [["render", De], ["__file", "/root/app/code/src/components/CardComponents.vue"]]), Te = /* @__PURE__ */ k({
|
|
713
674
|
__name: "InviteCollaboratorsModalV2",
|
|
714
675
|
props: {
|
|
715
676
|
isOpen: { type: Boolean, required: !1, default: !1 },
|
|
@@ -717,43 +678,43 @@ const Vt = /* @__PURE__ */ g(be, [["render", De], ["__file", "/root/app/code/src
|
|
|
717
678
|
initialCollaborators: { type: Array, required: !1, default: () => [] }
|
|
718
679
|
},
|
|
719
680
|
emits: ["close", "add"],
|
|
720
|
-
setup(
|
|
721
|
-
|
|
722
|
-
const
|
|
681
|
+
setup(r, { expose: l, emit: e }) {
|
|
682
|
+
l();
|
|
683
|
+
const s = r, u = e, v = C(null), a = C(!1), d = C(""), f = C([]), w = C([...s.initialCollaborators]), j = F(() => s.availableUsersList.filter((h) => {
|
|
723
684
|
const m = !w.value.some((T) => T.email === h.email);
|
|
724
685
|
if (!d.value) return m;
|
|
725
|
-
const
|
|
726
|
-
return m && (h.name.toLowerCase().includes(
|
|
686
|
+
const p = d.value.toLowerCase();
|
|
687
|
+
return m && (h.name.toLowerCase().includes(p) || h.email.toLowerCase().includes(p));
|
|
727
688
|
})), A = (h) => f.value.some((m) => m.email === h.email), L = (h) => {
|
|
728
|
-
const m = f.value.findIndex((
|
|
689
|
+
const m = f.value.findIndex((p) => p.email === h.email);
|
|
729
690
|
m > -1 ? f.value.splice(m, 1) : f.value.push(h), d.value = "";
|
|
730
691
|
}, V = (h) => {
|
|
731
|
-
const m = f.value.findIndex((
|
|
692
|
+
const m = f.value.findIndex((p) => p.email === h.email);
|
|
732
693
|
m > -1 && f.value.splice(m, 1);
|
|
733
694
|
}, D = (h) => {
|
|
734
|
-
const m = w.value.findIndex((
|
|
695
|
+
const m = w.value.findIndex((p) => p.email === h.email);
|
|
735
696
|
m > -1 && w.value.splice(m, 1);
|
|
736
|
-
},
|
|
697
|
+
}, B = () => {
|
|
737
698
|
v.value?.focus();
|
|
738
|
-
},
|
|
739
|
-
|
|
699
|
+
}, q = { props: s, emit: u, hiddenInput: v, showDropdown: a, searchQuery: d, selectedUsers: f, collaborators: w, availableUsers: j, isUserSelected: A, toggleUser: L, removeUser: V, removeCollaborator: D, focusInput: B, toggleDropdown: () => {
|
|
700
|
+
a.value = !a.value, a.value && B();
|
|
740
701
|
}, handleBlur: () => {
|
|
741
702
|
setTimeout(() => {
|
|
742
|
-
|
|
703
|
+
a.value = !1;
|
|
743
704
|
}, 200);
|
|
744
705
|
}, closeModal: () => {
|
|
745
|
-
u("close"), f.value = [], d.value = "",
|
|
706
|
+
u("close"), f.value = [], d.value = "", a.value = !1;
|
|
746
707
|
}, addCollaborators: () => {
|
|
747
708
|
f.value.length > 0 && (f.value.forEach((h) => {
|
|
748
709
|
w.value.some((m) => m.email === h.email) || w.value.push(h);
|
|
749
|
-
}), u("add", f.value, w.value), f.value = [], d.value = "",
|
|
710
|
+
}), u("add", f.value, w.value), f.value = [], d.value = "", a.value = !1), u("close");
|
|
750
711
|
} };
|
|
751
|
-
return Object.defineProperty(
|
|
712
|
+
return Object.defineProperty(q, "__isScriptSetup", { enumerable: !1, value: !0 }), q;
|
|
752
713
|
}
|
|
753
714
|
}), Pe = { class: "bg-white rounded-2xl w-full max-w-[630px] p-8 shadow-xl" }, Fe = { class: "relative mb-6" }, Ne = { class: "flex flex-wrap gap-2 flex-1" }, Ee = ["onClick"], Ue = {
|
|
754
715
|
key: 0,
|
|
755
716
|
class: "absolute top-full left-0 right-0 mt-2 bg-white border border-gray-200 rounded-xl shadow-lg max-h-64 overflow-y-auto z-10"
|
|
756
|
-
},
|
|
717
|
+
}, Oe = ["onMousedown"], Re = { class: "flex-1" }, Ze = { class: "text-sm font-semibold text-black" }, Ge = { class: "text-sm text-gray-600" }, Qe = {
|
|
757
718
|
key: 0,
|
|
758
719
|
class: "w-5 h-5 flex items-center justify-center text-black"
|
|
759
720
|
}, Ke = { class: "collaborators-list mb-8 max-h-96 overflow-y-auto" }, We = {
|
|
@@ -763,23 +724,23 @@ const Vt = /* @__PURE__ */ g(be, [["render", De], ["__file", "/root/app/code/src
|
|
|
763
724
|
class: "text-black",
|
|
764
725
|
style: { "font-size": "14px" }
|
|
765
726
|
}, Je = ["onClick"];
|
|
766
|
-
function Xe(
|
|
767
|
-
return e.isOpen ? (
|
|
727
|
+
function Xe(r, l, e, s, u, v) {
|
|
728
|
+
return e.isOpen ? (i(), n("div", {
|
|
768
729
|
key: 0,
|
|
769
730
|
class: "fixed inset-0 bg-black/50 flex items-center justify-center z-50 p-4",
|
|
770
|
-
onClick: z(
|
|
731
|
+
onClick: z(s.closeModal, ["self"])
|
|
771
732
|
}, [
|
|
772
733
|
o("div", Pe, [
|
|
773
|
-
|
|
774
|
-
|
|
734
|
+
t(" Header "),
|
|
735
|
+
l[3] || (l[3] = o(
|
|
775
736
|
"h2",
|
|
776
737
|
{ class: "text-2xl font-bold text-black mb-8" },
|
|
777
738
|
"Invite Collaborators",
|
|
778
739
|
-1
|
|
779
740
|
/* CACHED */
|
|
780
741
|
)),
|
|
781
|
-
|
|
782
|
-
|
|
742
|
+
t(" Users Label "),
|
|
743
|
+
l[4] || (l[4] = o(
|
|
783
744
|
"label",
|
|
784
745
|
{
|
|
785
746
|
class: "block font-normal text-gray-500 mb-3",
|
|
@@ -789,41 +750,41 @@ function Xe(a, t, e, i, u, v) {
|
|
|
789
750
|
-1
|
|
790
751
|
/* CACHED */
|
|
791
752
|
)),
|
|
792
|
-
|
|
753
|
+
t(" Multi-select Input "),
|
|
793
754
|
o("div", Fe, [
|
|
794
755
|
o("div", {
|
|
795
756
|
class: "flex items-center gap-2 w-full px-4 py-2 border border-gray-300 rounded-xl bg-white focus-within:border-gray-400 focus-within:outline-none transition-colors cursor-text min-h-[40px]",
|
|
796
|
-
onClick:
|
|
757
|
+
onClick: s.focusInput
|
|
797
758
|
}, [
|
|
798
|
-
|
|
759
|
+
t(" Plus Icon "),
|
|
799
760
|
o("button", {
|
|
800
761
|
type: "button",
|
|
801
762
|
class: "flex-shrink-0 text-gray-800 text-xl font-light",
|
|
802
|
-
onClick:
|
|
763
|
+
onClick: s.toggleDropdown
|
|
803
764
|
}, " + "),
|
|
804
|
-
|
|
765
|
+
t(" Selected User Pills "),
|
|
805
766
|
o("div", Ne, [
|
|
806
|
-
(
|
|
807
|
-
|
|
767
|
+
(i(!0), n(
|
|
768
|
+
x,
|
|
808
769
|
null,
|
|
809
|
-
y(
|
|
810
|
-
key:
|
|
770
|
+
y(s.selectedUsers, (a) => (i(), n("span", {
|
|
771
|
+
key: a.email,
|
|
811
772
|
class: "inline-flex items-center gap-2 px-3 py-1.5 bg-gray-100 rounded-lg text-sm font-normal text-black"
|
|
812
773
|
}, [
|
|
813
774
|
S(
|
|
814
|
-
c(
|
|
775
|
+
c(a.display) + " ",
|
|
815
776
|
1
|
|
816
777
|
/* TEXT */
|
|
817
778
|
),
|
|
818
779
|
o("button", {
|
|
819
|
-
onClick: z((d) =>
|
|
780
|
+
onClick: z((d) => s.removeUser(a), ["stop"]),
|
|
820
781
|
class: "text-gray-600 hover:text-black transition-colors"
|
|
821
782
|
}, " × ", 8, Ee)
|
|
822
783
|
]))),
|
|
823
784
|
128
|
|
824
785
|
/* KEYED_FRAGMENT */
|
|
825
786
|
)),
|
|
826
|
-
|
|
787
|
+
t(" Hidden Input for Focus "),
|
|
827
788
|
N(o(
|
|
828
789
|
"input",
|
|
829
790
|
{
|
|
@@ -831,77 +792,77 @@ function Xe(a, t, e, i, u, v) {
|
|
|
831
792
|
type: "text",
|
|
832
793
|
class: "flex-1 min-w-[100px] outline-none bg-transparent text-black placeholder-gray-400",
|
|
833
794
|
placeholder: "",
|
|
834
|
-
onFocus:
|
|
835
|
-
onBlur:
|
|
836
|
-
"onUpdate:modelValue":
|
|
795
|
+
onFocus: l[0] || (l[0] = (a) => s.showDropdown = !0),
|
|
796
|
+
onBlur: s.handleBlur,
|
|
797
|
+
"onUpdate:modelValue": l[1] || (l[1] = (a) => s.searchQuery = a)
|
|
837
798
|
},
|
|
838
799
|
null,
|
|
839
800
|
544
|
|
840
801
|
/* NEED_HYDRATION, NEED_PATCH */
|
|
841
802
|
), [
|
|
842
|
-
[E,
|
|
803
|
+
[E, s.searchQuery]
|
|
843
804
|
])
|
|
844
805
|
])
|
|
845
806
|
]),
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
(
|
|
849
|
-
|
|
807
|
+
t(" Dropdown "),
|
|
808
|
+
s.showDropdown ? (i(), n("div", Ue, [
|
|
809
|
+
(i(!0), n(
|
|
810
|
+
x,
|
|
850
811
|
null,
|
|
851
|
-
y(
|
|
852
|
-
key:
|
|
812
|
+
y(s.availableUsers, (a) => (i(), n("button", {
|
|
813
|
+
key: a.email,
|
|
853
814
|
type: "button",
|
|
854
815
|
class: "w-full px-4 py-3 text-left hover:bg-gray-50 transition-colors flex items-center justify-between group",
|
|
855
|
-
onMousedown: z((d) =>
|
|
816
|
+
onMousedown: z((d) => s.toggleUser(a), ["prevent"])
|
|
856
817
|
}, [
|
|
857
|
-
o("div",
|
|
818
|
+
o("div", Re, [
|
|
858
819
|
o(
|
|
859
820
|
"div",
|
|
860
|
-
|
|
861
|
-
c(
|
|
821
|
+
Ze,
|
|
822
|
+
c(a.name),
|
|
862
823
|
1
|
|
863
824
|
/* TEXT */
|
|
864
825
|
),
|
|
865
826
|
o(
|
|
866
827
|
"div",
|
|
867
828
|
Ge,
|
|
868
|
-
c(
|
|
829
|
+
c(a.email),
|
|
869
830
|
1
|
|
870
831
|
/* TEXT */
|
|
871
832
|
)
|
|
872
833
|
]),
|
|
873
|
-
|
|
874
|
-
], 40,
|
|
834
|
+
s.isUserSelected(a) ? (i(), n("div", Qe, " ✓ ")) : t("v-if", !0)
|
|
835
|
+
], 40, Oe))),
|
|
875
836
|
128
|
|
876
837
|
/* KEYED_FRAGMENT */
|
|
877
838
|
))
|
|
878
|
-
])) :
|
|
839
|
+
])) : t("v-if", !0)
|
|
879
840
|
]),
|
|
880
|
-
|
|
841
|
+
t(" Collaborators List "),
|
|
881
842
|
o("div", Ke, [
|
|
882
|
-
(
|
|
883
|
-
|
|
843
|
+
(i(!0), n(
|
|
844
|
+
x,
|
|
884
845
|
null,
|
|
885
|
-
y(
|
|
886
|
-
key:
|
|
846
|
+
y(s.collaborators, (a) => (i(), n("div", {
|
|
847
|
+
key: a.email,
|
|
887
848
|
class: "grid grid-cols-[1fr_1.5fr_auto] gap-4 items-center py-4 border-b border-gray-200"
|
|
888
849
|
}, [
|
|
889
850
|
o(
|
|
890
851
|
"div",
|
|
891
852
|
We,
|
|
892
|
-
c(
|
|
853
|
+
c(a.name),
|
|
893
854
|
1
|
|
894
855
|
/* TEXT */
|
|
895
856
|
),
|
|
896
857
|
o(
|
|
897
858
|
"div",
|
|
898
859
|
Ye,
|
|
899
|
-
c(
|
|
860
|
+
c(a.email),
|
|
900
861
|
1
|
|
901
862
|
/* TEXT */
|
|
902
863
|
),
|
|
903
864
|
o("button", {
|
|
904
|
-
onClick: (d) =>
|
|
865
|
+
onClick: (d) => s.removeCollaborator(a),
|
|
905
866
|
class: "text-gray-800 hover:text-black transition-colors text-2xl leading-none"
|
|
906
867
|
}, " × ", 8, Je)
|
|
907
868
|
]))),
|
|
@@ -909,13 +870,13 @@ function Xe(a, t, e, i, u, v) {
|
|
|
909
870
|
/* KEYED_FRAGMENT */
|
|
910
871
|
))
|
|
911
872
|
]),
|
|
912
|
-
|
|
873
|
+
t(" Action Buttons "),
|
|
913
874
|
o("div", { class: "flex gap-4 pt-6" }, [
|
|
914
875
|
o("button", {
|
|
915
|
-
onClick:
|
|
876
|
+
onClick: s.closeModal,
|
|
916
877
|
class: "flex-1 h-8 flex items-center justify-center gap-2 px-4 text-gray-800 rounded-xl hover:bg-gray-50 transition-colors font-medium",
|
|
917
878
|
style: { "font-size": "12px" }
|
|
918
|
-
},
|
|
879
|
+
}, l[2] || (l[2] = [
|
|
919
880
|
o(
|
|
920
881
|
"svg",
|
|
921
882
|
{
|
|
@@ -943,15 +904,15 @@ function Xe(a, t, e, i, u, v) {
|
|
|
943
904
|
)
|
|
944
905
|
])),
|
|
945
906
|
o("button", {
|
|
946
|
-
onClick:
|
|
907
|
+
onClick: s.addCollaborators,
|
|
947
908
|
class: "flex-1 h-8 px-4 bg-black text-white rounded-xl hover:bg-gray-800 transition-colors font-medium",
|
|
948
909
|
style: { "font-size": "12px" }
|
|
949
910
|
}, " Add Collaborators ")
|
|
950
911
|
])
|
|
951
912
|
])
|
|
952
|
-
])) :
|
|
913
|
+
])) : t("v-if", !0);
|
|
953
914
|
}
|
|
954
|
-
const Dt = /* @__PURE__ */ g(Te, [["render", Xe], ["__scopeId", "data-v-f6014a35"], ["__file", "/root/app/code/src/components/InviteCollaboratorsModalV2.vue"]]), $e = /* @__PURE__ */
|
|
915
|
+
const Dt = /* @__PURE__ */ g(Te, [["render", Xe], ["__scopeId", "data-v-f6014a35"], ["__file", "/root/app/code/src/components/InviteCollaboratorsModalV2.vue"]]), $e = /* @__PURE__ */ k({
|
|
955
916
|
__name: "NavigationSidebar",
|
|
956
917
|
props: {
|
|
957
918
|
items: { type: Array, required: !1, default: () => [
|
|
@@ -964,81 +925,81 @@ const Dt = /* @__PURE__ */ g(Te, [["render", Xe], ["__scopeId", "data-v-f6014a35
|
|
|
964
925
|
activeItem: { type: Number, required: !1, default: 0 }
|
|
965
926
|
},
|
|
966
927
|
emits: ["item-click"],
|
|
967
|
-
setup(
|
|
968
|
-
|
|
969
|
-
const
|
|
970
|
-
|
|
928
|
+
setup(r, { expose: l, emit: e }) {
|
|
929
|
+
l();
|
|
930
|
+
const s = e, a = { emit: s, handleItemClick: (d) => {
|
|
931
|
+
s("item-click", d);
|
|
971
932
|
}, getIconColor: (d) => d ? "#C3FF00" : "white", get Home() {
|
|
972
|
-
return
|
|
933
|
+
return W;
|
|
973
934
|
}, get MessageSquare() {
|
|
974
|
-
return
|
|
935
|
+
return K;
|
|
975
936
|
}, get ToyBrick() {
|
|
976
|
-
return
|
|
937
|
+
return Q;
|
|
977
938
|
} };
|
|
978
|
-
return Object.defineProperty(
|
|
939
|
+
return Object.defineProperty(a, "__isScriptSetup", { enumerable: !1, value: !0 }), a;
|
|
979
940
|
}
|
|
980
|
-
}), et = { class: "sidebar-nav group bg-black flex flex-col justify-between shadow-md" }, tt = { class: "pt-10 px-2 flex flex-col gap-8" }, lt = { class: "flex flex-col gap-4" }, ot = ["onClick"], st = { class: "nav-label text-sm text-gray-300 whitespace-nowrap" }, it = { class: "flex flex-col items-start px-4 pb-8 gap-4" }, nt = { class: "profile-section flex items-center gap-3 w-full" },
|
|
981
|
-
function ct(
|
|
982
|
-
return
|
|
983
|
-
|
|
941
|
+
}), et = { class: "sidebar-nav group bg-black flex flex-col justify-between shadow-md" }, tt = { class: "pt-10 px-2 flex flex-col gap-8" }, lt = { class: "flex flex-col gap-4" }, ot = ["onClick"], st = { class: "nav-label text-sm text-gray-300 whitespace-nowrap" }, it = { class: "flex flex-col items-start px-4 pb-8 gap-4" }, nt = { class: "profile-section flex items-center gap-3 w-full" }, at = { class: "profile-text flex-1 min-w-0" }, rt = { class: "text-sm text-white font-medium whitespace-nowrap" }, dt = { class: "text-[10px] text-gray-400 whitespace-nowrap" };
|
|
942
|
+
function ct(r, l, e, s, u, v) {
|
|
943
|
+
return i(), n(
|
|
944
|
+
x,
|
|
984
945
|
null,
|
|
985
946
|
[
|
|
986
|
-
|
|
947
|
+
t(" Expandable Sidebar Navigation "),
|
|
987
948
|
o("aside", et, [
|
|
988
|
-
|
|
949
|
+
t(" Top Section "),
|
|
989
950
|
o("div", tt, [
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
951
|
+
t(" Logo "),
|
|
952
|
+
l[0] || (l[0] = M('<div class="px-2" data-v-4c3eb68c><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-v-4c3eb68c><path d="M0 11.8333V0L11.8333 11.8333H0Z" fill="white" data-v-4c3eb68c></path><path d="M11.8333 12.166V23.9994L0 12.166H11.8333Z" fill="white" data-v-4c3eb68c></path><path d="M24 11.8333V0L12.1667 11.8333H24Z" fill="white" data-v-4c3eb68c></path><path d="M12.1665 12.166H23.9998L12.1665 23.9994V12.166Z" fill="white" data-v-4c3eb68c></path></svg></div>', 1)),
|
|
953
|
+
t(" Navigation Items "),
|
|
993
954
|
o("div", lt, [
|
|
994
|
-
(
|
|
995
|
-
|
|
955
|
+
(i(!0), n(
|
|
956
|
+
x,
|
|
996
957
|
null,
|
|
997
|
-
y(e.items, (
|
|
958
|
+
y(e.items, (a, d) => (i(), n("div", {
|
|
998
959
|
key: d,
|
|
999
|
-
onClick: (f) =>
|
|
960
|
+
onClick: (f) => s.handleItemClick(d),
|
|
1000
961
|
class: _(["nav-item flex items-center gap-[18px] px-2.5 py-2 rounded-lg cursor-pointer transition-colors duration-200", e.activeItem === d ? "bg-[#232323]" : "hover:bg-[#232323]"])
|
|
1001
962
|
}, [
|
|
1002
|
-
|
|
1003
|
-
|
|
963
|
+
t(" Dashboard Icon "),
|
|
964
|
+
a.icon === "dashboard" ? (i(), b(s.Home, {
|
|
1004
965
|
key: 0,
|
|
1005
966
|
class: "flex-shrink-0",
|
|
1006
967
|
size: 20,
|
|
1007
968
|
"stroke-width": 1.5,
|
|
1008
|
-
color:
|
|
1009
|
-
}, null, 8, ["color"])) :
|
|
1010
|
-
|
|
969
|
+
color: s.getIconColor(e.activeItem === d)
|
|
970
|
+
}, null, 8, ["color"])) : a.icon === "conversations" ? (i(), n(
|
|
971
|
+
x,
|
|
1011
972
|
{ key: 1 },
|
|
1012
973
|
[
|
|
1013
|
-
|
|
1014
|
-
|
|
974
|
+
t(" Conversations Icon "),
|
|
975
|
+
I(s.MessageSquare, {
|
|
1015
976
|
class: "flex-shrink-0",
|
|
1016
977
|
size: 20,
|
|
1017
978
|
"stroke-width": 1.5,
|
|
1018
|
-
color:
|
|
979
|
+
color: s.getIconColor(e.activeItem === d)
|
|
1019
980
|
}, null, 8, ["color"])
|
|
1020
981
|
],
|
|
1021
982
|
2112
|
|
1022
983
|
/* STABLE_FRAGMENT, DEV_ROOT_FRAGMENT */
|
|
1023
|
-
)) :
|
|
1024
|
-
|
|
984
|
+
)) : a.icon === "templates" ? (i(), n(
|
|
985
|
+
x,
|
|
1025
986
|
{ key: 2 },
|
|
1026
987
|
[
|
|
1027
|
-
|
|
1028
|
-
|
|
988
|
+
t(" Templates Icon "),
|
|
989
|
+
I(s.ToyBrick, {
|
|
1029
990
|
class: "flex-shrink-0",
|
|
1030
991
|
size: 20,
|
|
1031
992
|
"stroke-width": 1.5,
|
|
1032
|
-
color:
|
|
993
|
+
color: s.getIconColor(e.activeItem === d)
|
|
1033
994
|
}, null, 8, ["color"])
|
|
1034
995
|
],
|
|
1035
996
|
2112
|
|
1036
997
|
/* STABLE_FRAGMENT, DEV_ROOT_FRAGMENT */
|
|
1037
|
-
)) :
|
|
998
|
+
)) : t("v-if", !0),
|
|
1038
999
|
o(
|
|
1039
1000
|
"span",
|
|
1040
1001
|
st,
|
|
1041
|
-
c(
|
|
1002
|
+
c(a.name),
|
|
1042
1003
|
1
|
|
1043
1004
|
/* TEXT */
|
|
1044
1005
|
)
|
|
@@ -1048,15 +1009,15 @@ function ct(a, t, e, i, u, v) {
|
|
|
1048
1009
|
))
|
|
1049
1010
|
])
|
|
1050
1011
|
]),
|
|
1051
|
-
|
|
1012
|
+
t(" Bottom Section - Profile "),
|
|
1052
1013
|
o("div", it, [
|
|
1053
|
-
|
|
1014
|
+
t(" User Profile "),
|
|
1054
1015
|
o("div", nt, [
|
|
1055
|
-
|
|
1056
|
-
o("div",
|
|
1016
|
+
l[1] || (l[1] = M('<div class="relative flex-shrink-0" data-v-4c3eb68c><svg width="32" height="32" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg" data-v-4c3eb68c><circle cx="20" cy="20" r="20" fill="#5D5D5D" data-v-4c3eb68c></circle></svg><svg class="absolute top-2 left-2" width="16" height="16" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" data-v-4c3eb68c><path d="M15.8332 17.5V15.8333C15.8332 14.9493 15.482 14.1014 14.8569 13.4763C14.2317 12.8512 13.3839 12.5 12.4998 12.5H7.49984C6.61578 12.5 5.76794 12.8512 5.14281 13.4763C4.51769 14.1014 4.1665 14.9493 4.1665 15.8333V17.5M13.3332 5.83333C13.3332 7.67428 11.8408 9.16667 9.99984 9.16667C8.15889 9.16667 6.6665 7.67428 6.6665 5.83333C6.6665 3.99238 8.15889 2.5 9.99984 2.5C11.8408 2.5 13.3332 3.99238 13.3332 5.83333Z" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" data-v-4c3eb68c></path></svg></div>', 1)),
|
|
1017
|
+
o("div", at, [
|
|
1057
1018
|
o(
|
|
1058
1019
|
"div",
|
|
1059
|
-
|
|
1020
|
+
rt,
|
|
1060
1021
|
c(e.userName),
|
|
1061
1022
|
1
|
|
1062
1023
|
/* TEXT */
|
|
@@ -1069,7 +1030,7 @@ function ct(a, t, e, i, u, v) {
|
|
|
1069
1030
|
/* TEXT */
|
|
1070
1031
|
)
|
|
1071
1032
|
]),
|
|
1072
|
-
|
|
1033
|
+
l[2] || (l[2] = M('<button class="profile-menu flex-shrink-0" data-v-4c3eb68c><svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" data-v-4c3eb68c><path fill-rule="evenodd" clip-rule="evenodd" d="M10.0007 1.66797C10.4427 1.66797 10.8666 1.84356 11.1792 2.15612C11.4917 2.46868 11.6673 2.89261 11.6673 3.33464C11.6673 3.77666 11.4917 4.20059 11.1792 4.51315C10.8666 4.82571 10.4427 5.0013 10.0007 5.0013C9.55862 5.0013 9.1347 4.82571 8.82214 4.51315C8.50958 4.20059 8.33398 3.77666 8.33398 3.33464C8.33398 2.89261 8.50958 2.46868 8.82214 2.15612C9.1347 1.84356 9.55862 1.66797 10.0007 1.66797Z" fill="white" data-v-4c3eb68c></path><path fill-rule="evenodd" clip-rule="evenodd" d="M10.0007 8.33203C10.4427 8.33203 10.8666 8.50763 11.1792 8.82019C11.4917 9.13275 11.6673 9.55667 11.6673 9.9987C11.6673 10.4407 11.4917 10.8646 11.1792 11.1772C10.8666 11.4898 10.4427 11.6654 10.0007 11.6654C9.55862 11.6654 9.1347 11.4898 8.82214 11.1772C8.50958 10.8646 8.33398 10.4407 8.33398 9.9987C8.33398 9.55667 8.50958 9.13275 8.82214 8.82019C9.1347 8.50763 9.55862 8.33203 10.0007 8.33203Z" fill="white" data-v-4c3eb68c></path><path fill-rule="evenodd" clip-rule="evenodd" d="M9.99967 15C10.4417 15 10.8656 15.1756 11.1782 15.4882C11.4907 15.8007 11.6663 16.2246 11.6663 16.6667C11.6663 17.1087 11.4907 17.5326 11.1782 17.8452C10.8656 18.1577 10.4417 18.3333 9.99967 18.3333C9.55765 18.3333 9.13372 18.1577 8.82116 17.8452C8.5086 17.5326 8.33301 17.1087 8.33301 16.6667C8.33301 16.2246 8.5086 15.8007 8.82116 15.4882C9.13372 15.1756 9.55765 15 9.99967 15Z" fill="white" data-v-4c3eb68c></path></svg></button>', 1))
|
|
1073
1034
|
])
|
|
1074
1035
|
])
|
|
1075
1036
|
])
|
|
@@ -1084,8 +1045,8 @@ const Tt = /* @__PURE__ */ g($e, [["render", ct], ["__scopeId", "data-v-4c3eb68c
|
|
|
1084
1045
|
height: "20",
|
|
1085
1046
|
fill: "currentColor"
|
|
1086
1047
|
};
|
|
1087
|
-
function ht(
|
|
1088
|
-
return
|
|
1048
|
+
function ht(r, l) {
|
|
1049
|
+
return i(), n("svg", ft, l[0] || (l[0] = [
|
|
1089
1050
|
o(
|
|
1090
1051
|
"path",
|
|
1091
1052
|
{ d: "M15 4a1 1 0 1 0 0 2V4zm0 11v-1a1 1 0 0 0-1 1h1zm0 4l-.707.707A1 1 0 0 0 16 19h-1zm-4-4l.707-.707A1 1 0 0 0 11 14v1zm-4.707-1.293a1 1 0 0 0-1.414 1.414l1.414-1.414zm-.707.707l-.707-.707.707.707zM9 11v-1a1 1 0 0 0-.707.293L9 11zm-4 0h1a1 1 0 0 0-1-1v1zm0 4H4a1 1 0 0 0 1.707.707L5 15zm10-9h2V4h-2v2zm2 0a1 1 0 0 1 1 1h2a3 3 0 0 0-3-3v2zm1 1v6h2V7h-2zm0 6a1 1 0 0 1-1 1v2a3 3 0 0 0 3-3h-2zm-1 1h-2v2h2v-2zm-3 1v4h2v-4h-2zm1.707 3.293l-4-4-1.414 1.414 4 4 1.414-1.414zM11 14H7v2h4v-2zm-4 0c-.276 0-.525-.111-.707-.293l-1.414 1.414C5.42 15.663 6.172 16 7 16v-2zm-.707 1.121l3.414-3.414-1.414-1.414-3.414 3.414 1.414 1.414zM9 12h4v-2H9v2zm4 0a3 3 0 0 0 3-3h-2a1 1 0 0 1-1 1v2zm3-3V3h-2v6h2zm0-6a3 3 0 0 0-3-3v2a1 1 0 0 1 1 1h2zm-3-3H3v2h10V0zM3 0a3 3 0 0 0-3 3h2a1 1 0 0 1 1-1V0zM0 3v6h2V3H0zm0 6a3 3 0 0 0 3 3v-2a1 1 0 0 1-1-1H0zm3 3h2v-2H3v2zm1-1v4h2v-4H4zm1.707 4.707l.586-.586-1.414-1.414-.586.586 1.414 1.414z" },
|
|
@@ -1101,8 +1062,8 @@ const Pt = /* @__PURE__ */ g(ut, [["render", ht], ["__file", "/root/app/code/src
|
|
|
1101
1062
|
height: "17",
|
|
1102
1063
|
fill: "currentColor"
|
|
1103
1064
|
};
|
|
1104
|
-
function gt(
|
|
1105
|
-
return
|
|
1065
|
+
function gt(r, l) {
|
|
1066
|
+
return i(), n("svg", vt, l[0] || (l[0] = [
|
|
1106
1067
|
o(
|
|
1107
1068
|
"path",
|
|
1108
1069
|
{ d: "M11 2.253a1 1 0 1 0-2 0h2zm-2 13a1 1 0 1 0 2 0H9zm.447-12.167a1 1 0 1 0 1.107-1.666L9.447 3.086zM1 2.253L.447 1.42A1 1 0 0 0 0 2.253h1zm0 13H0a1 1 0 0 0 1.553.833L1 15.253zm8.447.833a1 1 0 1 0 1.107-1.666l-1.107 1.666zm0-14.666a1 1 0 1 0 1.107 1.666L9.447 1.42zM19 2.253h1a1 1 0 0 0-.447-.833L19 2.253zm0 13l-.553.833A1 1 0 0 0 20 15.253h-1zm-9.553-.833a1 1 0 1 0 1.107 1.666L9.447 14.42zM9 2.253v13h2v-13H9zm1.553-.833C9.203.523 7.42 0 5.5 0v2c1.572 0 2.961.431 3.947 1.086l1.107-1.666zM5.5 0C3.58 0 1.797.523.447 1.42l1.107 1.666C2.539 2.431 3.928 2 5.5 2V0zM0 2.253v13h2v-13H0zm1.553 13.833C2.539 15.431 3.928 15 5.5 15v-2c-1.92 0-3.703.523-5.053 1.42l1.107 1.666zM5.5 15c1.572 0 2.961.431 3.947 1.086l1.107-1.666C9.203 13.523 7.42 13 5.5 13v2zm5.053-11.914C11.539 2.431 12.928 2 14.5 2V0c-1.92 0-3.703.523-5.053 1.42l1.107 1.666zM14.5 2c1.573 0 2.961.431 3.947 1.086l1.107-1.666C18.203.523 16.421 0 14.5 0v2zm3.5.253v13h2v-13h-2zm1.553 12.167C18.203 13.523 16.421 13 14.5 13v2c1.573 0 2.961.431 3.947 1.086l1.107-1.666zM14.5 13c-1.92 0-3.703.523-5.053 1.42l1.107 1.666C11.539 15.431 12.928 15 14.5 15v-2z" },
|
|
@@ -1112,14 +1073,14 @@ function gt(a, t) {
|
|
|
1112
1073
|
)
|
|
1113
1074
|
]));
|
|
1114
1075
|
}
|
|
1115
|
-
const Ft = /* @__PURE__ */ g(mt, [["render", gt], ["__file", "/root/app/code/src/components/icons/IconDocumentation.vue"]]),
|
|
1076
|
+
const Ft = /* @__PURE__ */ g(mt, [["render", gt], ["__file", "/root/app/code/src/components/icons/IconDocumentation.vue"]]), xt = {}, pt = {
|
|
1116
1077
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1117
1078
|
width: "18",
|
|
1118
1079
|
height: "20",
|
|
1119
1080
|
fill: "currentColor"
|
|
1120
1081
|
};
|
|
1121
|
-
function wt(
|
|
1122
|
-
return
|
|
1082
|
+
function wt(r, l) {
|
|
1083
|
+
return i(), n("svg", pt, l[0] || (l[0] = [
|
|
1123
1084
|
o(
|
|
1124
1085
|
"path",
|
|
1125
1086
|
{ d: "M11.447 8.894a1 1 0 1 0-.894-1.789l.894 1.789zm-2.894-.789a1 1 0 1 0 .894 1.789l-.894-1.789zm0 1.789a1 1 0 1 0 .894-1.789l-.894 1.789zM7.447 7.106a1 1 0 1 0-.894 1.789l.894-1.789zM10 9a1 1 0 1 0-2 0h2zm-2 2.5a1 1 0 1 0 2 0H8zm9.447-5.606a1 1 0 1 0-.894-1.789l.894 1.789zm-2.894-.789a1 1 0 1 0 .894 1.789l-.894-1.789zm2 .789a1 1 0 1 0 .894-1.789l-.894 1.789zm-1.106-2.789a1 1 0 1 0-.894 1.789l.894-1.789zM18 5a1 1 0 1 0-2 0h2zm-2 2.5a1 1 0 1 0 2 0h-2zm-5.447-4.606a1 1 0 1 0 .894-1.789l-.894 1.789zM9 1l.447-.894a1 1 0 0 0-.894 0L9 1zm-2.447.106a1 1 0 1 0 .894 1.789l-.894-1.789zm-6 3a1 1 0 1 0 .894 1.789L.553 4.106zm2.894.789a1 1 0 1 0-.894-1.789l.894 1.789zm-2-.789a1 1 0 1 0-.894 1.789l.894-1.789zm1.106 2.789a1 1 0 1 0 .894-1.789l-.894 1.789zM2 5a1 1 0 1 0-2 0h2zM0 7.5a1 1 0 1 0 2 0H0zm8.553 12.394a1 1 0 1 0 .894-1.789l-.894 1.789zm-1.106-2.789a1 1 0 1 0-.894 1.789l.894-1.789zm1.106 1a1 1 0 1 0 .894 1.789l-.894-1.789zm2.894.789a1 1 0 1 0-.894-1.789l.894 1.789zM8 19a1 1 0 1 0 2 0H8zm2-2.5a1 1 0 1 0-2 0h2zm-7.447.394a1 1 0 1 0 .894-1.789l-.894 1.789zM1 15H0a1 1 0 0 0 .553.894L1 15zm1-2.5a1 1 0 1 0-2 0h2zm12.553 2.606a1 1 0 1 0 .894 1.789l-.894-1.789zM17 15l.447.894A1 1 0 0 0 18 15h-1zm1-2.5a1 1 0 1 0-2 0h2zm-7.447-5.394l-2 1 .894 1.789 2-1-.894-1.789zm-1.106 1l-2-1-.894 1.789 2 1 .894-1.789zM8 9v2.5h2V9H8zm8.553-4.894l-2 1 .894 1.789 2-1-.894-1.789zm.894 0l-2-1-.894 1.789 2 1 .894-1.789zM16 5v2.5h2V5h-2zm-4.553-3.894l-2-1-.894 1.789 2 1 .894-1.789zm-2.894-1l-2 1 .894 1.789 2-1L8.553.106zM1.447 5.894l2-1-.894-1.789-2 1 .894 1.789zm-.894 0l2 1 .894-1.789-2-1-.894 1.789zM0 5v2.5h2V5H0zm9.447 13.106l-2-1-.894 1.789 2 1 .894-1.789zm0 1.789l2-1-.894-1.789-2 1 .894 1.789zM10 19v-2.5H8V19h2zm-6.553-3.894l-2-1-.894 1.789 2 1 .894-1.789zM2 15v-2.5H0V15h2zm13.447 1.894l2-1-.894-1.789-2 1 .894 1.789zM18 15v-2.5h-2V15h2z" },
|
|
@@ -1129,14 +1090,14 @@ function wt(a, t) {
|
|
|
1129
1090
|
)
|
|
1130
1091
|
]));
|
|
1131
1092
|
}
|
|
1132
|
-
const Nt = /* @__PURE__ */ g(
|
|
1093
|
+
const Nt = /* @__PURE__ */ g(xt, [["render", wt], ["__file", "/root/app/code/src/components/icons/IconEcosystem.vue"]]), bt = {}, yt = {
|
|
1133
1094
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1134
1095
|
width: "20",
|
|
1135
1096
|
height: "20",
|
|
1136
1097
|
fill: "currentColor"
|
|
1137
1098
|
};
|
|
1138
|
-
function _t(
|
|
1139
|
-
return
|
|
1099
|
+
function _t(r, l) {
|
|
1100
|
+
return i(), n("svg", yt, l[0] || (l[0] = [
|
|
1140
1101
|
o(
|
|
1141
1102
|
"path",
|
|
1142
1103
|
{ d: "M10 3.22l-.61-.6a5.5 5.5 0 0 0-7.666.105 5.5 5.5 0 0 0-.114 7.665L10 18.78l8.39-8.4a5.5 5.5 0 0 0-.114-7.665 5.5 5.5 0 0 0-7.666-.105l-.61.61z" },
|
|
@@ -1146,7 +1107,7 @@ function _t(a, t) {
|
|
|
1146
1107
|
)
|
|
1147
1108
|
]));
|
|
1148
1109
|
}
|
|
1149
|
-
const Et = /* @__PURE__ */ g(bt, [["render", _t], ["__file", "/root/app/code/src/components/icons/IconSupport.vue"]]),
|
|
1110
|
+
const Et = /* @__PURE__ */ g(bt, [["render", _t], ["__file", "/root/app/code/src/components/icons/IconSupport.vue"]]), kt = {}, Ct = {
|
|
1150
1111
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1151
1112
|
"xmlns:xlink": "http://www.w3.org/1999/xlink",
|
|
1152
1113
|
"aria-hidden": "true",
|
|
@@ -1157,8 +1118,8 @@ const Et = /* @__PURE__ */ g(bt, [["render", _t], ["__file", "/root/app/code/src
|
|
|
1157
1118
|
preserveAspectRatio: "xMidYMid meet",
|
|
1158
1119
|
viewBox: "0 0 24 24"
|
|
1159
1120
|
};
|
|
1160
|
-
function zt(
|
|
1161
|
-
return
|
|
1121
|
+
function zt(r, l) {
|
|
1122
|
+
return i(), n("svg", Ct, l[0] || (l[0] = [
|
|
1162
1123
|
o(
|
|
1163
1124
|
"path",
|
|
1164
1125
|
{
|
|
@@ -1171,9 +1132,9 @@ function zt(a, t) {
|
|
|
1171
1132
|
)
|
|
1172
1133
|
]));
|
|
1173
1134
|
}
|
|
1174
|
-
const Ut = /* @__PURE__ */ g(
|
|
1135
|
+
const Ut = /* @__PURE__ */ g(kt, [["render", zt], ["__file", "/root/app/code/src/components/icons/IconTooling.vue"]]);
|
|
1175
1136
|
export {
|
|
1176
|
-
|
|
1137
|
+
jt as BaseModal,
|
|
1177
1138
|
At as ButtonComponent,
|
|
1178
1139
|
Lt as CampaignCard,
|
|
1179
1140
|
Vt as CardComponents,
|