veylan-component-library 1.0.0

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.
@@ -0,0 +1,1188 @@
1
+ import { defineComponent as C, createElementBlock as n, createCommentVNode as l, openBlock as s, withModifiers as z, createElementVNode as o, renderSlot as j, toDisplayString as c, normalizeStyle as P, normalizeClass as _, createBlock as b, createTextVNode as S, Fragment as p, renderList as y, ref as k, computed as F, withDirectives as N, vModelText as E, createStaticVNode as M, createVNode as q } from "vue";
2
+ import { ChevronDown as U, Share2 as Z, ArrowRight as O, ArrowLeft as R, ToyBrick as G, MessageSquare as Q, Home as K } from "lucide-vue-next";
3
+ const W = /* @__PURE__ */ C({
4
+ __name: "BaseModal",
5
+ props: {
6
+ isOpen: { type: Boolean, required: !1, default: !1 },
7
+ title: { type: String, required: !1, default: "Modal" },
8
+ primaryButtonText: { type: String, required: !1, default: "Confirm" },
9
+ secondaryButtonText: { type: String, required: !1, default: "Cancel" }
10
+ },
11
+ emits: ["close", "primary", "secondary"],
12
+ setup(a, { expose: t, emit: e }) {
13
+ t();
14
+ const i = a, u = e, f = { props: i, emit: u, handleClose: () => {
15
+ u("close");
16
+ }, handlePrimary: () => {
17
+ u("primary");
18
+ }, handleSecondary: () => {
19
+ u("secondary");
20
+ } };
21
+ return Object.defineProperty(f, "__isScriptSetup", { enumerable: !1, value: !0 }), f;
22
+ }
23
+ }), g = (a, t) => {
24
+ const e = a.__vccOpts || a;
25
+ for (const [i, u] of t)
26
+ e[i] = u;
27
+ return e;
28
+ }, Y = { class: "bg-white rounded-2xl w-full max-w-[630px] p-8 shadow-xl" }, J = {
29
+ class: "text-2xl font-bold text-black mb-8",
30
+ style: { "letter-spacing": "0" }
31
+ }, X = { class: "flex gap-4 pt-6" };
32
+ function $(a, t, e, i, u, v) {
33
+ return e.isOpen ? (s(), n("div", {
34
+ key: 0,
35
+ class: "fixed inset-0 bg-black/50 flex items-center justify-center z-50 p-4",
36
+ onClick: z(i.handleClose, ["self"])
37
+ }, [
38
+ o("div", Y, [
39
+ l(" Header "),
40
+ o(
41
+ "h2",
42
+ J,
43
+ c(e.title),
44
+ 1
45
+ /* TEXT */
46
+ ),
47
+ l(" Content Slot "),
48
+ j(a.$slots, "default"),
49
+ l(" Action Buttons "),
50
+ o("div", X, [
51
+ o(
52
+ "button",
53
+ {
54
+ onClick: i.handleSecondary,
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
+ style: { "font-size": "12px" }
57
+ },
58
+ c(e.secondaryButtonText),
59
+ 1
60
+ /* TEXT */
61
+ ),
62
+ o(
63
+ "button",
64
+ {
65
+ onClick: i.handlePrimary,
66
+ class: "flex-1 h-8 px-4 bg-black text-white rounded-xl hover:bg-gray-800 transition-colors font-medium",
67
+ style: { "font-size": "12px" }
68
+ },
69
+ c(e.primaryButtonText),
70
+ 1
71
+ /* TEXT */
72
+ )
73
+ ])
74
+ ])
75
+ ])) : l("v-if", !0);
76
+ }
77
+ const Ht = /* @__PURE__ */ g(W, [["render", $], ["__file", "/root/app/code/src/components/BaseModal.vue"]]), ee = /* @__PURE__ */ C({
78
+ __name: "ButtonComponent",
79
+ props: {
80
+ variant: { type: String, required: !1, default: "primary" },
81
+ leftIcon: { type: String, required: !1, default: "none" },
82
+ rightIcon: { type: String, required: !1, default: "none" },
83
+ disabled: { type: Boolean, required: !1, default: !1 }
84
+ },
85
+ emits: ["click"],
86
+ setup(a, { expose: t, emit: e }) {
87
+ t();
88
+ const i = e, v = { emit: i, handleClick: () => {
89
+ i("click");
90
+ }, get ArrowLeft() {
91
+ return R;
92
+ }, get ArrowRight() {
93
+ return O;
94
+ }, get Share2() {
95
+ return Z;
96
+ }, get ChevronDown() {
97
+ return U;
98
+ } };
99
+ return Object.defineProperty(v, "__isScriptSetup", { enumerable: !1, value: !0 }), v;
100
+ }
101
+ }), te = ["disabled"];
102
+ function le(a, t, e, i, u, v) {
103
+ return s(), n("button", {
104
+ onClick: i.handleClick,
105
+ disabled: e.disabled || e.variant === "disabled",
106
+ class: _([
107
+ "flex items-center justify-center gap-3 h-8 rounded-lg font-medium text-sm transition-all duration-200",
108
+ {
109
+ "bg-black text-white hover:bg-gray-800": e.variant === "primary" && !e.disabled,
110
+ "bg-white text-black hover:bg-gray-50": e.variant === "outlined" && !e.disabled,
111
+ "bg-transparent text-black": e.variant === "text" && !e.disabled,
112
+ "cursor-not-allowed": e.variant === "disabled" || e.disabled
113
+ }
114
+ ]),
115
+ style: P({
116
+ paddingLeft: e.rightIcon === "dropdown" ? "16px" : "24px",
117
+ paddingRight: e.rightIcon === "dropdown" ? "8px" : "24px",
118
+ ...e.variant === "outlined" && !e.disabled && e.rightIcon === "dropdown" ? { borderWidth: "1px", borderColor: "#C8C8C8" } : e.variant === "outlined" && !e.disabled ? { borderWidth: "1px", borderColor: "black" } : {},
119
+ ...e.variant === "disabled" || e.disabled ? { backgroundColor: "#E8E8E8", color: "#8F8F8F" } : {}
120
+ })
121
+ }, [
122
+ l(" Left Icon "),
123
+ e.leftIcon === "arrow" ? (s(), b(i.ArrowLeft, {
124
+ key: 0,
125
+ size: 20,
126
+ "stroke-width": 1.5
127
+ })) : e.leftIcon === "share" ? (s(), b(i.Share2, {
128
+ key: 1,
129
+ size: 20,
130
+ "stroke-width": 1.5
131
+ })) : l("v-if", !0),
132
+ l(" Text Slot "),
133
+ j(a.$slots, "default", {}, () => [
134
+ t[0] || (t[0] = S(
135
+ "Button",
136
+ -1
137
+ /* CACHED */
138
+ ))
139
+ ]),
140
+ l(" Right Icon "),
141
+ e.rightIcon === "arrow" ? (s(), b(i.ArrowRight, {
142
+ key: 2,
143
+ size: 20,
144
+ "stroke-width": 1.5
145
+ })) : e.rightIcon === "share" ? (s(), b(i.Share2, {
146
+ key: 3,
147
+ size: 20,
148
+ "stroke-width": 1.5
149
+ })) : e.rightIcon === "dropdown" ? (s(), b(i.ChevronDown, {
150
+ key: 4,
151
+ size: 20,
152
+ "stroke-width": 1.5
153
+ })) : l("v-if", !0)
154
+ ], 14, te);
155
+ }
156
+ const At = /* @__PURE__ */ g(ee, [["render", le], ["__file", "/root/app/code/src/components/ButtonComponent.vue"]]), oe = /* @__PURE__ */ C({
157
+ __name: "CampaignCard",
158
+ props: {
159
+ showImage: { type: Boolean, required: !1, default: !0 },
160
+ imageSrc: { type: String, required: !1, default: "https://api.builder.io/api/v1/image/assets/TEMP/ca9e712d88300796152f9f5b46b62d9c5fbed457?width=630" },
161
+ imageAlt: { type: String, required: !1, default: "Product image" },
162
+ imageClasses: { type: String, required: !1, default: "" },
163
+ showLabels: { type: Boolean, required: !1, default: !0 },
164
+ label1: { type: String, required: !1, default: "CREATIVE BRIEF" },
165
+ label2: { type: String, required: !1, default: "NIKE RUNNING" },
166
+ showMenu: { type: Boolean, required: !1, default: !0 },
167
+ showContent: { type: Boolean, required: !1, default: !0 },
168
+ title: { type: String, required: !1, default: "Interactive Ad Formats: Performance Trends" },
169
+ description: { type: String, required: !1, default: "Interactive Ad Formats: Performance Trends Interactive Ad Formats: Performance Trends" },
170
+ showFooter: { type: Boolean, required: !1, default: !0 },
171
+ showMembers: { type: Boolean, required: !1, default: !0 },
172
+ members: { type: Array, required: !1, default: () => ["DS", "DS", "DS", "DS", "10"] },
173
+ showAddButton: { type: Boolean, required: !1, default: !0 },
174
+ cardClasses: { type: String, required: !1, default: "" }
175
+ },
176
+ emits: ["menu-click", "add-click"],
177
+ setup(a, { expose: t }) {
178
+ t();
179
+ const i = { props: a };
180
+ return Object.defineProperty(i, "__isScriptSetup", { enumerable: !1, value: !0 }), i;
181
+ }
182
+ }), se = { class: "absolute inset-0" }, ie = ["src", "alt"], ne = { class: "relative flex justify-between items-start w-full" }, re = {
183
+ key: 0,
184
+ class: "flex items-center gap-2"
185
+ }, ae = {
186
+ key: 0,
187
+ class: "flex h-6 px-2.5 justify-center items-center rounded-lg bg-white text-black font-medium",
188
+ style: { gap: "10px", "line-height": "24px", "font-size": "10px" }
189
+ }, de = {
190
+ key: 1,
191
+ class: "flex h-6 px-2.5 justify-center items-center rounded-lg bg-black text-white font-medium",
192
+ style: { gap: "10px", "line-height": "24px", "font-size": "10px" }
193
+ }, ce = {
194
+ style: { width: "18px", height: "18px" },
195
+ viewBox: "0 0 18 18",
196
+ fill: "none",
197
+ xmlns: "http://www.w3.org/2000/svg"
198
+ }, ue = {
199
+ key: 1,
200
+ class: "flex flex-col",
201
+ style: { padding: "0 16px", gap: "8px", margin: "0" }
202
+ }, fe = {
203
+ key: 0,
204
+ class: "text-black",
205
+ style: { "font-size": "16px", "font-weight": "600", "line-height": "20px" }
206
+ }, he = {
207
+ key: 1,
208
+ class: "text-black",
209
+ style: { "font-size": "12px", "font-weight": "400", "line-height": "18px" }
210
+ }, me = {
211
+ key: 2,
212
+ class: "flex items-end",
213
+ style: { padding: "0 16px", gap: "4px" }
214
+ }, ve = {
215
+ class: "flex justify-between items-end flex-1",
216
+ style: { height: "24px" }
217
+ }, ge = {
218
+ key: 0,
219
+ class: "flex items-center",
220
+ style: { gap: "4px" }
221
+ }, pe = {
222
+ class: "absolute left-0 top-0 flex items-center justify-center text-white",
223
+ style: { width: "24px", height: "24px", "font-size": "8px", "font-weight": "500", "line-height": "24px", "letter-spacing": "-0.08px" }
224
+ }, xe = {
225
+ style: { width: "12px", height: "12px" },
226
+ viewBox: "0 0 12 12",
227
+ fill: "none",
228
+ xmlns: "http://www.w3.org/2000/svg"
229
+ };
230
+ function we(a, t, e, i, u, v) {
231
+ return s(), n(
232
+ "div",
233
+ {
234
+ class: _(["flex flex-col bg-white rounded-2xl shadow-card w-full", e.cardClasses]),
235
+ style: { gap: "16px", padding: "16px 0 24px 0" }
236
+ },
237
+ [
238
+ l(" Card Image Section "),
239
+ e.showImage ? (s(), n(
240
+ "div",
241
+ {
242
+ key: 0,
243
+ class: _(["relative flex-shrink-0 overflow-hidden rounded-t-2xl", e.imageClasses]),
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
+ },
246
+ [
247
+ l(" Background Image "),
248
+ o("div", se, [
249
+ o("img", {
250
+ src: e.imageSrc,
251
+ alt: e.imageAlt,
252
+ class: "w-full h-full object-cover"
253
+ }, null, 8, ie)
254
+ ]),
255
+ l(" Card Header Overlay "),
256
+ o("div", ne, [
257
+ l(" Labels/Pills "),
258
+ e.showLabels ? (s(), n("div", re, [
259
+ e.label1 ? (s(), n(
260
+ "div",
261
+ ae,
262
+ c(e.label1),
263
+ 1
264
+ /* TEXT */
265
+ )) : l("v-if", !0),
266
+ e.label2 ? (s(), n(
267
+ "div",
268
+ de,
269
+ c(e.label2),
270
+ 1
271
+ /* TEXT */
272
+ )) : l("v-if", !0)
273
+ ])) : l("v-if", !0),
274
+ l(" Menu Button "),
275
+ e.showMenu ? (s(), n("button", {
276
+ key: 1,
277
+ onClick: t[0] || (t[0] = (r) => a.$emit("menu-click")),
278
+ class: "flex justify-center items-center flex-shrink-0 rounded-full bg-white hover:bg-gray-100 transition-colors",
279
+ style: { width: "32px", height: "32px" }
280
+ }, [
281
+ (s(), n("svg", ce, t[2] || (t[2] = [
282
+ o(
283
+ "path",
284
+ {
285
+ d: "M9 9.75C9.41421 9.75 9.75 9.41421 9.75 9C9.75 8.58579 9.41421 8.25 9 8.25C8.58579 8.25 8.25 8.58579 8.25 9C8.25 9.41421 8.58579 9.75 9 9.75Z",
286
+ stroke: "black",
287
+ "stroke-width": "1.5",
288
+ "stroke-linecap": "round",
289
+ "stroke-linejoin": "round"
290
+ },
291
+ null,
292
+ -1
293
+ /* CACHED */
294
+ ),
295
+ o(
296
+ "path",
297
+ {
298
+ 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",
299
+ stroke: "black",
300
+ "stroke-width": "1.5",
301
+ "stroke-linecap": "round",
302
+ "stroke-linejoin": "round"
303
+ },
304
+ null,
305
+ -1
306
+ /* CACHED */
307
+ ),
308
+ o(
309
+ "path",
310
+ {
311
+ 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",
312
+ stroke: "black",
313
+ "stroke-width": "1.5",
314
+ "stroke-linecap": "round",
315
+ "stroke-linejoin": "round"
316
+ },
317
+ null,
318
+ -1
319
+ /* CACHED */
320
+ )
321
+ ])))
322
+ ])) : l("v-if", !0)
323
+ ])
324
+ ],
325
+ 2
326
+ /* CLASS */
327
+ )) : l("v-if", !0),
328
+ l(" Content Section "),
329
+ e.showContent ? (s(), n("div", ue, [
330
+ e.title ? (s(), n(
331
+ "h3",
332
+ fe,
333
+ c(e.title),
334
+ 1
335
+ /* TEXT */
336
+ )) : l("v-if", !0),
337
+ e.description ? (s(), n(
338
+ "p",
339
+ he,
340
+ c(e.description),
341
+ 1
342
+ /* TEXT */
343
+ )) : l("v-if", !0)
344
+ ])) : l("v-if", !0),
345
+ l(" Footer Section "),
346
+ e.showFooter ? (s(), n("div", me, [
347
+ o("div", ve, [
348
+ l(" Member Avatars "),
349
+ e.showMembers ? (s(), n("div", ge, [
350
+ (s(!0), n(
351
+ p,
352
+ null,
353
+ y(e.members, (r, d) => (s(), n("div", {
354
+ key: d,
355
+ class: "relative",
356
+ style: { width: "24px", height: "24px" }
357
+ }, [
358
+ t[3] || (t[3] = o(
359
+ "svg",
360
+ {
361
+ class: "absolute left-0 top-0",
362
+ width: "24",
363
+ height: "24",
364
+ viewBox: "0 0 24 24",
365
+ fill: "none",
366
+ xmlns: "http://www.w3.org/2000/svg"
367
+ },
368
+ [
369
+ o("circle", {
370
+ cx: "12",
371
+ cy: "12",
372
+ r: "12",
373
+ fill: "#5D5D5D"
374
+ })
375
+ ],
376
+ -1
377
+ /* CACHED */
378
+ )),
379
+ o(
380
+ "div",
381
+ pe,
382
+ c(r),
383
+ 1
384
+ /* TEXT */
385
+ )
386
+ ]))),
387
+ 128
388
+ /* KEYED_FRAGMENT */
389
+ ))
390
+ ])) : l("v-if", !0),
391
+ l(" Add Button "),
392
+ e.showAddButton ? (s(), n("button", {
393
+ key: 1,
394
+ onClick: t[1] || (t[1] = (r) => a.$emit("add-click")),
395
+ class: "flex justify-center items-center flex-shrink-0 rounded-full bg-black hover:bg-gray-800 transition-colors",
396
+ style: { width: "32px", height: "32px" }
397
+ }, [
398
+ (s(), n("svg", xe, t[4] || (t[4] = [
399
+ o(
400
+ "path",
401
+ {
402
+ d: "M5.99961 10.5V1.5",
403
+ stroke: "white",
404
+ "stroke-width": "1.5",
405
+ "stroke-linecap": "round",
406
+ "stroke-linejoin": "round"
407
+ },
408
+ null,
409
+ -1
410
+ /* CACHED */
411
+ ),
412
+ o(
413
+ "path",
414
+ {
415
+ d: "M1.5 5.99961H10.5",
416
+ stroke: "white",
417
+ "stroke-width": "1.5",
418
+ "stroke-linecap": "round",
419
+ "stroke-linejoin": "round"
420
+ },
421
+ null,
422
+ -1
423
+ /* CACHED */
424
+ )
425
+ ])))
426
+ ])) : l("v-if", !0)
427
+ ])
428
+ ])) : l("v-if", !0)
429
+ ],
430
+ 2
431
+ /* CLASS */
432
+ );
433
+ }
434
+ const Lt = /* @__PURE__ */ g(oe, [["render", we], ["__file", "/root/app/code/src/components/CampaignCard.vue"]]), be = /* @__PURE__ */ C({
435
+ __name: "CardComponents",
436
+ props: {
437
+ showImage: { type: Boolean, required: !1, default: !0 },
438
+ imageSrc: { type: String, required: !1, default: "https://api.builder.io/api/v1/image/assets/TEMP/ca9e712d88300796152f9f5b46b62d9c5fbed457?width=630" },
439
+ imageAlt: { type: String, required: !1, default: "Product image" },
440
+ imageClasses: { type: String, required: !1, default: "" },
441
+ showLabels: { type: Boolean, required: !1, default: !0 },
442
+ label1: { type: String, required: !1, default: "CREATIVE BRIEF" },
443
+ label2: { type: String, required: !1, default: "NIKE RUNNING" },
444
+ showMenu: { type: Boolean, required: !1, default: !0 },
445
+ showContent: { type: Boolean, required: !1, default: !0 },
446
+ title: { type: String, required: !1, default: "Interactive Ad Formats: Performance Trends" },
447
+ description: { type: String, required: !1, default: "Interactive Ad Formats: Performance Trends Interactive Ad Formats: Performance Trends" },
448
+ showFooter: { type: Boolean, required: !1, default: !0 },
449
+ showMembers: { type: Boolean, required: !1, default: !0 },
450
+ members: { type: Array, required: !1, default: () => ["DS", "DS", "DS", "DS", "10"] },
451
+ showAddButton: { type: Boolean, required: !1, default: !0 },
452
+ cardClasses: { type: String, required: !1, default: "" }
453
+ },
454
+ emits: ["menu-click", "add-click"],
455
+ setup(a, { expose: t }) {
456
+ t();
457
+ const i = { props: a };
458
+ return Object.defineProperty(i, "__isScriptSetup", { enumerable: !1, value: !0 }), i;
459
+ }
460
+ }), ye = { class: "absolute inset-0" }, _e = ["src", "alt"], Ce = { class: "relative flex justify-between items-start w-full" }, ke = {
461
+ key: 0,
462
+ class: "flex items-center gap-2"
463
+ }, ze = {
464
+ key: 0,
465
+ class: "flex h-6 px-2.5 justify-center items-center rounded-lg bg-white text-black font-medium",
466
+ style: { gap: "10px", "line-height": "24px", "font-size": "10px" }
467
+ }, Me = {
468
+ key: 1,
469
+ class: "flex h-6 px-2.5 justify-center items-center rounded-lg bg-black text-white font-medium",
470
+ 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
+ }, Ie = {
477
+ key: 1,
478
+ class: "flex flex-col",
479
+ style: { padding: "0 16px", gap: "8px", margin: "0" }
480
+ }, Be = {
481
+ key: 0,
482
+ class: "text-black",
483
+ style: { "font-size": "16px", "font-weight": "600", "line-height": "20px" }
484
+ }, qe = {
485
+ key: 1,
486
+ class: "text-black",
487
+ style: { "font-size": "12px", "font-weight": "400", "line-height": "18px" }
488
+ }, je = {
489
+ key: 2,
490
+ class: "flex items-end",
491
+ style: { padding: "0 16px", gap: "4px" }
492
+ }, He = {
493
+ class: "flex justify-between items-end flex-1",
494
+ style: { height: "24px" }
495
+ }, Ae = {
496
+ key: 0,
497
+ class: "flex items-center",
498
+ style: { gap: "4px" }
499
+ }, Le = {
500
+ class: "absolute left-0 top-0 flex items-center justify-center text-white",
501
+ style: { width: "24px", height: "24px", "font-size": "8px", "font-weight": "500", "line-height": "24px", "letter-spacing": "-0.08px" }
502
+ }, Ve = {
503
+ style: { width: "12px", height: "12px" },
504
+ viewBox: "0 0 12 12",
505
+ fill: "none",
506
+ xmlns: "http://www.w3.org/2000/svg"
507
+ };
508
+ function De(a, t, e, i, u, v) {
509
+ return s(), n(
510
+ "div",
511
+ {
512
+ class: _(["flex flex-col bg-white rounded-2xl shadow-card w-full", e.cardClasses]),
513
+ style: { gap: "16px", padding: "16px 0 24px 0" }
514
+ },
515
+ [
516
+ l(" Card Image Section "),
517
+ e.showImage ? (s(), n(
518
+ "div",
519
+ {
520
+ key: 0,
521
+ class: _(["relative flex-shrink-0 overflow-hidden rounded-t-2xl", e.imageClasses]),
522
+ 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
+ },
524
+ [
525
+ l(" Background Image "),
526
+ o("div", ye, [
527
+ o("img", {
528
+ src: e.imageSrc,
529
+ alt: e.imageAlt,
530
+ class: "w-full h-full object-cover"
531
+ }, null, 8, _e)
532
+ ]),
533
+ l(" Card Header Overlay "),
534
+ o("div", Ce, [
535
+ l(" Labels/Pills "),
536
+ e.showLabels ? (s(), n("div", ke, [
537
+ e.label1 ? (s(), n(
538
+ "div",
539
+ ze,
540
+ c(e.label1),
541
+ 1
542
+ /* TEXT */
543
+ )) : l("v-if", !0),
544
+ e.label2 ? (s(), n(
545
+ "div",
546
+ Me,
547
+ c(e.label2),
548
+ 1
549
+ /* TEXT */
550
+ )) : l("v-if", !0)
551
+ ])) : l("v-if", !0),
552
+ l(" Menu Button "),
553
+ e.showMenu ? (s(), n("button", {
554
+ key: 1,
555
+ onClick: t[0] || (t[0] = (r) => a.$emit("menu-click")),
556
+ class: "flex justify-center items-center flex-shrink-0 rounded-full bg-white hover:bg-gray-100 transition-colors",
557
+ style: { width: "32px", height: "32px" }
558
+ }, [
559
+ (s(), n("svg", Se, t[2] || (t[2] = [
560
+ o(
561
+ "path",
562
+ {
563
+ d: "M9 9.75C9.41421 9.75 9.75 9.41421 9.75 9C9.75 8.58579 9.41421 8.25 9 8.25C8.58579 8.25 8.25 8.58579 8.25 9C8.25 9.41421 8.58579 9.75 9 9.75Z",
564
+ stroke: "#C8C8C8",
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)
601
+ ])
602
+ ],
603
+ 2
604
+ /* CLASS */
605
+ )) : l("v-if", !0),
606
+ l(" Content Section "),
607
+ e.showContent ? (s(), n("div", Ie, [
608
+ e.title ? (s(), n(
609
+ "h3",
610
+ Be,
611
+ c(e.title),
612
+ 1
613
+ /* TEXT */
614
+ )) : l("v-if", !0),
615
+ e.description ? (s(), n(
616
+ "p",
617
+ qe,
618
+ c(e.description),
619
+ 1
620
+ /* TEXT */
621
+ )) : l("v-if", !0)
622
+ ])) : l("v-if", !0),
623
+ l(" Footer Section "),
624
+ e.showFooter ? (s(), n("div", je, [
625
+ o("div", He, [
626
+ l(" Member Avatars "),
627
+ e.showMembers ? (s(), n("div", Ae, [
628
+ (s(!0), n(
629
+ p,
630
+ null,
631
+ y(e.members, (r, d) => (s(), n("div", {
632
+ key: d,
633
+ class: "relative",
634
+ style: { width: "24px", height: "24px" }
635
+ }, [
636
+ t[3] || (t[3] = o(
637
+ "svg",
638
+ {
639
+ class: "absolute left-0 top-0",
640
+ width: "24",
641
+ height: "24",
642
+ viewBox: "0 0 24 24",
643
+ fill: "none",
644
+ xmlns: "http://www.w3.org/2000/svg"
645
+ },
646
+ [
647
+ o("circle", {
648
+ cx: "12",
649
+ cy: "12",
650
+ r: "12",
651
+ fill: "#5D5D5D"
652
+ })
653
+ ],
654
+ -1
655
+ /* CACHED */
656
+ )),
657
+ o(
658
+ "div",
659
+ Le,
660
+ c(r),
661
+ 1
662
+ /* TEXT */
663
+ )
664
+ ]))),
665
+ 128
666
+ /* KEYED_FRAGMENT */
667
+ ))
668
+ ])) : l("v-if", !0),
669
+ l(" Add Button "),
670
+ e.showAddButton ? (s(), n("button", {
671
+ key: 1,
672
+ onClick: t[1] || (t[1] = (r) => a.$emit("add-click")),
673
+ class: "flex justify-center items-center flex-shrink-0 rounded-full bg-black hover:bg-gray-800 transition-colors",
674
+ style: { width: "32px", height: "32px" }
675
+ }, [
676
+ (s(), n("svg", Ve, t[4] || (t[4] = [
677
+ o(
678
+ "path",
679
+ {
680
+ d: "M5.99961 10.5V1.5",
681
+ stroke: "white",
682
+ "stroke-width": "1.5",
683
+ "stroke-linecap": "round",
684
+ "stroke-linejoin": "round"
685
+ },
686
+ null,
687
+ -1
688
+ /* CACHED */
689
+ ),
690
+ o(
691
+ "path",
692
+ {
693
+ d: "M1.5 5.99961H10.5",
694
+ stroke: "white",
695
+ "stroke-width": "1.5",
696
+ "stroke-linecap": "round",
697
+ "stroke-linejoin": "round"
698
+ },
699
+ null,
700
+ -1
701
+ /* CACHED */
702
+ )
703
+ ])))
704
+ ])) : l("v-if", !0)
705
+ ])
706
+ ])) : l("v-if", !0)
707
+ ],
708
+ 2
709
+ /* CLASS */
710
+ );
711
+ }
712
+ const Vt = /* @__PURE__ */ g(be, [["render", De], ["__file", "/root/app/code/src/components/CardComponents.vue"]]), Te = /* @__PURE__ */ C({
713
+ __name: "InviteCollaboratorsModalV2",
714
+ props: {
715
+ isOpen: { type: Boolean, required: !1, default: !1 },
716
+ availableUsersList: { type: Array, required: !1, default: () => [] },
717
+ initialCollaborators: { type: Array, required: !1, default: () => [] }
718
+ },
719
+ emits: ["close", "add"],
720
+ setup(a, { expose: t, emit: e }) {
721
+ t();
722
+ const i = a, u = e, v = k(null), r = k(!1), d = k(""), f = k([]), w = k([...i.initialCollaborators]), H = F(() => i.availableUsersList.filter((h) => {
723
+ const m = !w.value.some((T) => T.email === h.email);
724
+ if (!d.value) return m;
725
+ const x = d.value.toLowerCase();
726
+ return m && (h.name.toLowerCase().includes(x) || h.email.toLowerCase().includes(x));
727
+ })), A = (h) => f.value.some((m) => m.email === h.email), L = (h) => {
728
+ const m = f.value.findIndex((x) => x.email === h.email);
729
+ m > -1 ? f.value.splice(m, 1) : f.value.push(h), d.value = "";
730
+ }, V = (h) => {
731
+ const m = f.value.findIndex((x) => x.email === h.email);
732
+ m > -1 && f.value.splice(m, 1);
733
+ }, D = (h) => {
734
+ const m = w.value.findIndex((x) => x.email === h.email);
735
+ m > -1 && w.value.splice(m, 1);
736
+ }, I = () => {
737
+ v.value?.focus();
738
+ }, B = { props: i, emit: u, hiddenInput: v, showDropdown: r, searchQuery: d, selectedUsers: f, collaborators: w, availableUsers: H, isUserSelected: A, toggleUser: L, removeUser: V, removeCollaborator: D, focusInput: I, toggleDropdown: () => {
739
+ r.value = !r.value, r.value && I();
740
+ }, handleBlur: () => {
741
+ setTimeout(() => {
742
+ r.value = !1;
743
+ }, 200);
744
+ }, closeModal: () => {
745
+ u("close"), f.value = [], d.value = "", r.value = !1;
746
+ }, addCollaborators: () => {
747
+ f.value.length > 0 && (f.value.forEach((h) => {
748
+ w.value.some((m) => m.email === h.email) || w.value.push(h);
749
+ }), u("add", f.value, w.value), f.value = [], d.value = "", r.value = !1), u("close");
750
+ } };
751
+ return Object.defineProperty(B, "__isScriptSetup", { enumerable: !1, value: !0 }), B;
752
+ }
753
+ }), 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
+ key: 0,
755
+ 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
+ }, Ze = ["onMousedown"], Oe = { class: "flex-1" }, Re = { class: "text-sm font-semibold text-black" }, Ge = { class: "text-sm text-gray-600" }, Qe = {
757
+ key: 0,
758
+ class: "w-5 h-5 flex items-center justify-center text-black"
759
+ }, Ke = { class: "collaborators-list mb-8 max-h-96 overflow-y-auto" }, We = {
760
+ class: "font-semibold text-black",
761
+ style: { "font-size": "14px" }
762
+ }, Ye = {
763
+ class: "text-black",
764
+ style: { "font-size": "14px" }
765
+ }, Je = ["onClick"];
766
+ function Xe(a, t, e, i, u, v) {
767
+ return e.isOpen ? (s(), n("div", {
768
+ key: 0,
769
+ class: "fixed inset-0 bg-black/50 flex items-center justify-center z-50 p-4",
770
+ onClick: z(i.closeModal, ["self"])
771
+ }, [
772
+ o("div", Pe, [
773
+ l(" Header "),
774
+ t[3] || (t[3] = o(
775
+ "h2",
776
+ { class: "text-2xl font-bold text-black mb-8" },
777
+ "Invite Collaborators",
778
+ -1
779
+ /* CACHED */
780
+ )),
781
+ l(" Users Label "),
782
+ t[4] || (t[4] = o(
783
+ "label",
784
+ {
785
+ class: "block font-normal text-gray-500 mb-3",
786
+ style: { "font-size": "12px" }
787
+ },
788
+ "Users",
789
+ -1
790
+ /* CACHED */
791
+ )),
792
+ l(" Multi-select Input "),
793
+ o("div", Fe, [
794
+ o("div", {
795
+ 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: i.focusInput
797
+ }, [
798
+ l(" Plus Icon "),
799
+ o("button", {
800
+ type: "button",
801
+ class: "flex-shrink-0 text-gray-800 text-xl font-light",
802
+ onClick: i.toggleDropdown
803
+ }, " + "),
804
+ l(" Selected User Pills "),
805
+ o("div", Ne, [
806
+ (s(!0), n(
807
+ p,
808
+ null,
809
+ y(i.selectedUsers, (r) => (s(), n("span", {
810
+ key: r.email,
811
+ class: "inline-flex items-center gap-2 px-3 py-1.5 bg-gray-100 rounded-lg text-sm font-normal text-black"
812
+ }, [
813
+ S(
814
+ c(r.display) + " ",
815
+ 1
816
+ /* TEXT */
817
+ ),
818
+ o("button", {
819
+ onClick: z((d) => i.removeUser(r), ["stop"]),
820
+ class: "text-gray-600 hover:text-black transition-colors"
821
+ }, " × ", 8, Ee)
822
+ ]))),
823
+ 128
824
+ /* KEYED_FRAGMENT */
825
+ )),
826
+ l(" Hidden Input for Focus "),
827
+ N(o(
828
+ "input",
829
+ {
830
+ ref: "hiddenInput",
831
+ type: "text",
832
+ class: "flex-1 min-w-[100px] outline-none bg-transparent text-black placeholder-gray-400",
833
+ placeholder: "",
834
+ onFocus: t[0] || (t[0] = (r) => i.showDropdown = !0),
835
+ onBlur: i.handleBlur,
836
+ "onUpdate:modelValue": t[1] || (t[1] = (r) => i.searchQuery = r)
837
+ },
838
+ null,
839
+ 544
840
+ /* NEED_HYDRATION, NEED_PATCH */
841
+ ), [
842
+ [E, i.searchQuery]
843
+ ])
844
+ ])
845
+ ]),
846
+ l(" Dropdown "),
847
+ i.showDropdown ? (s(), n("div", Ue, [
848
+ (s(!0), n(
849
+ p,
850
+ null,
851
+ y(i.availableUsers, (r) => (s(), n("button", {
852
+ key: r.email,
853
+ type: "button",
854
+ 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) => i.toggleUser(r), ["prevent"])
856
+ }, [
857
+ o("div", Oe, [
858
+ o(
859
+ "div",
860
+ Re,
861
+ c(r.name),
862
+ 1
863
+ /* TEXT */
864
+ ),
865
+ o(
866
+ "div",
867
+ Ge,
868
+ c(r.email),
869
+ 1
870
+ /* TEXT */
871
+ )
872
+ ]),
873
+ i.isUserSelected(r) ? (s(), n("div", Qe, " ✓ ")) : l("v-if", !0)
874
+ ], 40, Ze))),
875
+ 128
876
+ /* KEYED_FRAGMENT */
877
+ ))
878
+ ])) : l("v-if", !0)
879
+ ]),
880
+ l(" Collaborators List "),
881
+ o("div", Ke, [
882
+ (s(!0), n(
883
+ p,
884
+ null,
885
+ y(i.collaborators, (r) => (s(), n("div", {
886
+ key: r.email,
887
+ class: "grid grid-cols-[1fr_1.5fr_auto] gap-4 items-center py-4 border-b border-gray-200"
888
+ }, [
889
+ o(
890
+ "div",
891
+ We,
892
+ c(r.name),
893
+ 1
894
+ /* TEXT */
895
+ ),
896
+ o(
897
+ "div",
898
+ Ye,
899
+ c(r.email),
900
+ 1
901
+ /* TEXT */
902
+ ),
903
+ o("button", {
904
+ onClick: (d) => i.removeCollaborator(r),
905
+ class: "text-gray-800 hover:text-black transition-colors text-2xl leading-none"
906
+ }, " × ", 8, Je)
907
+ ]))),
908
+ 128
909
+ /* KEYED_FRAGMENT */
910
+ ))
911
+ ]),
912
+ l(" Action Buttons "),
913
+ o("div", { class: "flex gap-4 pt-6" }, [
914
+ o("button", {
915
+ onClick: i.closeModal,
916
+ 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
+ style: { "font-size": "12px" }
918
+ }, t[2] || (t[2] = [
919
+ o(
920
+ "svg",
921
+ {
922
+ width: "16",
923
+ height: "16",
924
+ viewBox: "0 0 16 16",
925
+ fill: "none",
926
+ xmlns: "http://www.w3.org/2000/svg"
927
+ },
928
+ [
929
+ o("path", {
930
+ d: "M12 4L4 12M4 4L12 12",
931
+ stroke: "currentColor",
932
+ "stroke-width": "2",
933
+ "stroke-linecap": "round"
934
+ })
935
+ ],
936
+ -1
937
+ /* CACHED */
938
+ ),
939
+ S(
940
+ " Cancel ",
941
+ -1
942
+ /* CACHED */
943
+ )
944
+ ])),
945
+ o("button", {
946
+ onClick: i.addCollaborators,
947
+ class: "flex-1 h-8 px-4 bg-black text-white rounded-xl hover:bg-gray-800 transition-colors font-medium",
948
+ style: { "font-size": "12px" }
949
+ }, " Add Collaborators ")
950
+ ])
951
+ ])
952
+ ])) : l("v-if", !0);
953
+ }
954
+ const Dt = /* @__PURE__ */ g(Te, [["render", Xe], ["__scopeId", "data-v-f6014a35"], ["__file", "/root/app/code/src/components/InviteCollaboratorsModalV2.vue"]]), $e = /* @__PURE__ */ C({
955
+ __name: "NavigationSidebar",
956
+ props: {
957
+ items: { type: Array, required: !1, default: () => [
958
+ { name: "Dashboard", icon: "dashboard" },
959
+ { name: "Conversations", icon: "conversations" },
960
+ { name: "Templates", icon: "templates" }
961
+ ] },
962
+ userName: { type: String, required: !1, default: "Geoffrey Thomas" },
963
+ userVersion: { type: String, required: !1, default: "1.0.0.0" },
964
+ activeItem: { type: Number, required: !1, default: 0 }
965
+ },
966
+ emits: ["item-click"],
967
+ setup(a, { expose: t, emit: e }) {
968
+ t();
969
+ const i = e, r = { emit: i, handleItemClick: (d) => {
970
+ i("item-click", d);
971
+ }, getIconColor: (d) => d ? "#C3FF00" : "white", get Home() {
972
+ return K;
973
+ }, get MessageSquare() {
974
+ return Q;
975
+ }, get ToyBrick() {
976
+ return G;
977
+ } };
978
+ return Object.defineProperty(r, "__isScriptSetup", { enumerable: !1, value: !0 }), r;
979
+ }
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" }, rt = { class: "profile-text flex-1 min-w-0" }, at = { class: "text-sm text-white font-medium whitespace-nowrap" }, dt = { class: "text-[10px] text-gray-400 whitespace-nowrap" };
981
+ function ct(a, t, e, i, u, v) {
982
+ return s(), n(
983
+ p,
984
+ null,
985
+ [
986
+ l(" Expandable Sidebar Navigation "),
987
+ o("aside", et, [
988
+ l(" Top Section "),
989
+ o("div", tt, [
990
+ l(" Logo "),
991
+ t[0] || (t[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)),
992
+ l(" Navigation Items "),
993
+ o("div", lt, [
994
+ (s(!0), n(
995
+ p,
996
+ null,
997
+ y(e.items, (r, d) => (s(), n("div", {
998
+ key: d,
999
+ onClick: (f) => i.handleItemClick(d),
1000
+ 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
+ }, [
1002
+ l(" Dashboard Icon "),
1003
+ r.icon === "dashboard" ? (s(), b(i.Home, {
1004
+ key: 0,
1005
+ class: "flex-shrink-0",
1006
+ size: 20,
1007
+ "stroke-width": 1.5,
1008
+ color: i.getIconColor(e.activeItem === d)
1009
+ }, null, 8, ["color"])) : r.icon === "conversations" ? (s(), n(
1010
+ p,
1011
+ { key: 1 },
1012
+ [
1013
+ l(" Conversations Icon "),
1014
+ q(i.MessageSquare, {
1015
+ class: "flex-shrink-0",
1016
+ size: 20,
1017
+ "stroke-width": 1.5,
1018
+ color: i.getIconColor(e.activeItem === d)
1019
+ }, null, 8, ["color"])
1020
+ ],
1021
+ 2112
1022
+ /* STABLE_FRAGMENT, DEV_ROOT_FRAGMENT */
1023
+ )) : r.icon === "templates" ? (s(), n(
1024
+ p,
1025
+ { key: 2 },
1026
+ [
1027
+ l(" Templates Icon "),
1028
+ q(i.ToyBrick, {
1029
+ class: "flex-shrink-0",
1030
+ size: 20,
1031
+ "stroke-width": 1.5,
1032
+ color: i.getIconColor(e.activeItem === d)
1033
+ }, null, 8, ["color"])
1034
+ ],
1035
+ 2112
1036
+ /* STABLE_FRAGMENT, DEV_ROOT_FRAGMENT */
1037
+ )) : l("v-if", !0),
1038
+ o(
1039
+ "span",
1040
+ st,
1041
+ c(r.name),
1042
+ 1
1043
+ /* TEXT */
1044
+ )
1045
+ ], 10, ot))),
1046
+ 128
1047
+ /* KEYED_FRAGMENT */
1048
+ ))
1049
+ ])
1050
+ ]),
1051
+ l(" Bottom Section - Profile "),
1052
+ o("div", it, [
1053
+ l(" User Profile "),
1054
+ o("div", nt, [
1055
+ t[1] || (t[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)),
1056
+ o("div", rt, [
1057
+ o(
1058
+ "div",
1059
+ at,
1060
+ c(e.userName),
1061
+ 1
1062
+ /* TEXT */
1063
+ ),
1064
+ o(
1065
+ "div",
1066
+ dt,
1067
+ c(e.userVersion),
1068
+ 1
1069
+ /* TEXT */
1070
+ )
1071
+ ]),
1072
+ t[2] || (t[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
+ ])
1074
+ ])
1075
+ ])
1076
+ ],
1077
+ 2112
1078
+ /* STABLE_FRAGMENT, DEV_ROOT_FRAGMENT */
1079
+ );
1080
+ }
1081
+ const Tt = /* @__PURE__ */ g($e, [["render", ct], ["__scopeId", "data-v-4c3eb68c"], ["__file", "/root/app/code/src/components/NavigationSidebar.vue"]]), ut = {}, ft = {
1082
+ xmlns: "http://www.w3.org/2000/svg",
1083
+ width: "20",
1084
+ height: "20",
1085
+ fill: "currentColor"
1086
+ };
1087
+ function ht(a, t) {
1088
+ return s(), n("svg", ft, t[0] || (t[0] = [
1089
+ o(
1090
+ "path",
1091
+ { 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" },
1092
+ null,
1093
+ -1
1094
+ /* CACHED */
1095
+ )
1096
+ ]));
1097
+ }
1098
+ const Pt = /* @__PURE__ */ g(ut, [["render", ht], ["__file", "/root/app/code/src/components/icons/IconCommunity.vue"]]), mt = {}, vt = {
1099
+ xmlns: "http://www.w3.org/2000/svg",
1100
+ width: "20",
1101
+ height: "17",
1102
+ fill: "currentColor"
1103
+ };
1104
+ function gt(a, t) {
1105
+ return s(), n("svg", vt, t[0] || (t[0] = [
1106
+ o(
1107
+ "path",
1108
+ { 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" },
1109
+ null,
1110
+ -1
1111
+ /* CACHED */
1112
+ )
1113
+ ]));
1114
+ }
1115
+ const Ft = /* @__PURE__ */ g(mt, [["render", gt], ["__file", "/root/app/code/src/components/icons/IconDocumentation.vue"]]), pt = {}, xt = {
1116
+ xmlns: "http://www.w3.org/2000/svg",
1117
+ width: "18",
1118
+ height: "20",
1119
+ fill: "currentColor"
1120
+ };
1121
+ function wt(a, t) {
1122
+ return s(), n("svg", xt, t[0] || (t[0] = [
1123
+ o(
1124
+ "path",
1125
+ { 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" },
1126
+ null,
1127
+ -1
1128
+ /* CACHED */
1129
+ )
1130
+ ]));
1131
+ }
1132
+ const Nt = /* @__PURE__ */ g(pt, [["render", wt], ["__file", "/root/app/code/src/components/icons/IconEcosystem.vue"]]), bt = {}, yt = {
1133
+ xmlns: "http://www.w3.org/2000/svg",
1134
+ width: "20",
1135
+ height: "20",
1136
+ fill: "currentColor"
1137
+ };
1138
+ function _t(a, t) {
1139
+ return s(), n("svg", yt, t[0] || (t[0] = [
1140
+ o(
1141
+ "path",
1142
+ { 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" },
1143
+ null,
1144
+ -1
1145
+ /* CACHED */
1146
+ )
1147
+ ]));
1148
+ }
1149
+ const Et = /* @__PURE__ */ g(bt, [["render", _t], ["__file", "/root/app/code/src/components/icons/IconSupport.vue"]]), Ct = {}, kt = {
1150
+ xmlns: "http://www.w3.org/2000/svg",
1151
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1152
+ "aria-hidden": "true",
1153
+ role: "img",
1154
+ class: "iconify iconify--mdi",
1155
+ width: "24",
1156
+ height: "24",
1157
+ preserveAspectRatio: "xMidYMid meet",
1158
+ viewBox: "0 0 24 24"
1159
+ };
1160
+ function zt(a, t) {
1161
+ return s(), n("svg", kt, t[0] || (t[0] = [
1162
+ o(
1163
+ "path",
1164
+ {
1165
+ d: "M20 18v-4h-3v1h-2v-1H9v1H7v-1H4v4h16M6.33 8l-1.74 4H7v-1h2v1h6v-1h2v1h2.41l-1.74-4H6.33M9 5v1h6V5H9m12.84 7.61c.1.22.16.48.16.8V18c0 .53-.21 1-.6 1.41c-.4.4-.85.59-1.4.59H4c-.55 0-1-.19-1.4-.59C2.21 19 2 18.53 2 18v-4.59c0-.32.06-.58.16-.8L4.5 7.22C4.84 6.41 5.45 6 6.33 6H7V5c0-.55.18-1 .57-1.41C7.96 3.2 8.44 3 9 3h6c.56 0 1.04.2 1.43.59c.39.41.57.86.57 1.41v1h.67c.88 0 1.49.41 1.83 1.22l2.34 5.39z",
1166
+ fill: "currentColor"
1167
+ },
1168
+ null,
1169
+ -1
1170
+ /* CACHED */
1171
+ )
1172
+ ]));
1173
+ }
1174
+ const Ut = /* @__PURE__ */ g(Ct, [["render", zt], ["__file", "/root/app/code/src/components/icons/IconTooling.vue"]]);
1175
+ export {
1176
+ Ht as BaseModal,
1177
+ At as ButtonComponent,
1178
+ Lt as CampaignCard,
1179
+ Vt as CardComponents,
1180
+ Pt as IconCommunity,
1181
+ Ft as IconDocumentation,
1182
+ Nt as IconEcosystem,
1183
+ Et as IconSupport,
1184
+ Ut as IconTooling,
1185
+ Dt as InviteCollaboratorsModalV2,
1186
+ Tt as NavigationSidebar
1187
+ };
1188
+ //# sourceMappingURL=fusion-component-library.es.js.map