veylan-component-library 1.0.2 → 1.1.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.
@@ -1,6 +1,6 @@
1
- import { defineComponent as b, createElementBlock as i, createCommentVNode as o, openBlock as a, withModifiers as z, createElementVNode as e, renderSlot as H, toDisplayString as c, normalizeStyle as P, normalizeClass as k, createBlock as w, createTextVNode as M, Fragment as g, renderList as _, createVNode as I, ref as C, computed as N, withDirectives as F, vModelText as E, createStaticVNode as S } from "vue";
2
- import { ChevronDown as U, Share2 as O, ArrowRight as R, ArrowLeft as Z, MoreHorizontal as G, ToyBrick as Q, MessageSquare as $, Home as K } from "lucide-vue-next";
3
- const W = /* @__PURE__ */ b({
1
+ import { defineComponent as w, createElementBlock as i, createCommentVNode as o, openBlock as n, withModifiers as S, createElementVNode as e, renderSlot as H, toDisplayString as u, normalizeStyle as D, normalizeClass as C, createBlock as _, createTextVNode as c, Fragment as v, renderList as k, createVNode as I, ref as z, computed as N, withDirectives as P, vModelText as E, createStaticVNode as M } from "vue";
2
+ import { ChevronDown as U, Share2 as O, ArrowRight as W, ArrowLeft as R, MoreHorizontal as Z, ToyBrick as G, MessageSquare as Q, Home as $ } from "lucide-vue-next";
3
+ const K = /* @__PURE__ */ w({
4
4
  __name: "BaseModal",
5
5
  props: {
6
6
  isOpen: { type: Boolean, required: !1, default: !1 },
@@ -11,36 +11,36 @@ const W = /* @__PURE__ */ b({
11
11
  emits: ["close", "primary", "secondary"],
12
12
  setup(r, { expose: l, emit: t }) {
13
13
  l();
14
- const s = r, u = t, f = { props: s, emit: u, handleClose: () => {
15
- u("close");
14
+ const s = r, f = t, x = { props: s, emit: f, handleClose: () => {
15
+ f("close");
16
16
  }, handlePrimary: () => {
17
- u("primary");
17
+ f("primary");
18
18
  }, handleSecondary: () => {
19
- u("secondary");
19
+ f("secondary");
20
20
  } };
21
- return Object.defineProperty(f, "__isScriptSetup", { enumerable: !1, value: !0 }), f;
21
+ return Object.defineProperty(x, "__isScriptSetup", { enumerable: !1, value: !0 }), x;
22
22
  }
23
- }), m = (r, l) => {
23
+ }), g = (r, l) => {
24
24
  const t = r.__vccOpts || r;
25
- for (const [s, u] of l)
26
- t[s] = u;
25
+ for (const [s, f] of l)
26
+ t[s] = f;
27
27
  return t;
28
28
  }, Y = { class: "bg-white rounded-2xl w-full max-w-[630px] p-8 shadow-xl" }, J = {
29
29
  class: "text-2xl font-bold text-black mb-8",
30
30
  style: { "letter-spacing": "0" }
31
31
  }, X = { class: "flex gap-4 pt-6" };
32
- function ee(r, l, t, s, u, p) {
33
- return t.isOpen ? (a(), i("div", {
32
+ function ee(r, l, t, s, f, m) {
33
+ return t.isOpen ? (n(), i("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(s.handleClose, ["self"])
36
+ onClick: S(s.handleClose, ["self"])
37
37
  }, [
38
38
  e("div", Y, [
39
39
  o(" Header "),
40
40
  e(
41
41
  "h2",
42
42
  J,
43
- c(t.title),
43
+ u(t.title),
44
44
  1
45
45
  /* TEXT */
46
46
  ),
@@ -55,7 +55,7 @@ function ee(r, l, t, s, u, p) {
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
  },
58
- c(t.secondaryButtonText),
58
+ u(t.secondaryButtonText),
59
59
  1
60
60
  /* TEXT */
61
61
  ),
@@ -66,7 +66,7 @@ function ee(r, l, t, s, u, p) {
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
  },
69
- c(t.primaryButtonText),
69
+ u(t.primaryButtonText),
70
70
  1
71
71
  /* TEXT */
72
72
  )
@@ -74,7 +74,7 @@ function ee(r, l, t, s, u, p) {
74
74
  ])
75
75
  ])) : o("v-if", !0);
76
76
  }
77
- const jt = /* @__PURE__ */ m(W, [["render", ee], ["__file", "/root/app/code/src/components/BaseModal.vue"]]), te = /* @__PURE__ */ b({
77
+ const Ft = /* @__PURE__ */ g(K, [["render", ee], ["__file", "/root/app/code/src/components/BaseModal.vue"]]), te = /* @__PURE__ */ w({
78
78
  __name: "ButtonComponent",
79
79
  props: {
80
80
  variant: { type: String, required: !1, default: "primary" },
@@ -85,25 +85,25 @@ const jt = /* @__PURE__ */ m(W, [["render", ee], ["__file", "/root/app/code/src/
85
85
  emits: ["click"],
86
86
  setup(r, { expose: l, emit: t }) {
87
87
  l();
88
- const s = t, p = { emit: s, handleClick: () => {
88
+ const s = t, m = { emit: s, handleClick: () => {
89
89
  s("click");
90
90
  }, get ArrowLeft() {
91
- return Z;
92
- }, get ArrowRight() {
93
91
  return R;
92
+ }, get ArrowRight() {
93
+ return W;
94
94
  }, get Share2() {
95
95
  return O;
96
96
  }, get ChevronDown() {
97
97
  return U;
98
98
  } };
99
- return Object.defineProperty(p, "__isScriptSetup", { enumerable: !1, value: !0 }), p;
99
+ return Object.defineProperty(m, "__isScriptSetup", { enumerable: !1, value: !0 }), m;
100
100
  }
101
101
  }), le = ["disabled"];
102
- function oe(r, l, t, s, u, p) {
103
- return a(), i("button", {
102
+ function oe(r, l, t, s, f, m) {
103
+ return n(), i("button", {
104
104
  onClick: s.handleClick,
105
105
  disabled: t.disabled || t.variant === "disabled",
106
- class: k([
106
+ class: C([
107
107
  "flex items-center justify-center gap-3 h-8 rounded-lg font-medium text-sm transition-all duration-200",
108
108
  {
109
109
  "bg-black text-white hover:bg-gray-800": t.variant === "primary" && !t.disabled,
@@ -112,7 +112,7 @@ function oe(r, l, t, s, u, p) {
112
112
  "cursor-not-allowed": t.variant === "disabled" || t.disabled
113
113
  }
114
114
  ]),
115
- style: P({
115
+ style: D({
116
116
  paddingLeft: t.rightIcon === "dropdown" ? "16px" : "24px",
117
117
  paddingRight: t.rightIcon === "dropdown" ? "8px" : "24px",
118
118
  ...t.variant === "outlined" && !t.disabled && t.rightIcon === "dropdown" ? { borderWidth: "1px", borderColor: "#C8C8C8" } : t.variant === "outlined" && !t.disabled ? { borderWidth: "1px", borderColor: "black" } : {},
@@ -120,40 +120,40 @@ function oe(r, l, t, s, u, p) {
120
120
  })
121
121
  }, [
122
122
  o(" Left Icon "),
123
- t.leftIcon === "arrow" ? (a(), w(s.ArrowLeft, {
123
+ t.leftIcon === "arrow" ? (n(), _(s.ArrowLeft, {
124
124
  key: 0,
125
125
  size: 20,
126
126
  "stroke-width": 1.5
127
- })) : t.leftIcon === "share" ? (a(), w(s.Share2, {
127
+ })) : t.leftIcon === "share" ? (n(), _(s.Share2, {
128
128
  key: 1,
129
129
  size: 20,
130
130
  "stroke-width": 1.5
131
131
  })) : o("v-if", !0),
132
132
  o(" Text Slot "),
133
133
  H(r.$slots, "default", {}, () => [
134
- l[0] || (l[0] = M(
134
+ l[0] || (l[0] = c(
135
135
  "Button",
136
136
  -1
137
137
  /* CACHED */
138
138
  ))
139
139
  ]),
140
140
  o(" Right Icon "),
141
- t.rightIcon === "arrow" ? (a(), w(s.ArrowRight, {
141
+ t.rightIcon === "arrow" ? (n(), _(s.ArrowRight, {
142
142
  key: 2,
143
143
  size: 20,
144
144
  "stroke-width": 1.5
145
- })) : t.rightIcon === "share" ? (a(), w(s.Share2, {
145
+ })) : t.rightIcon === "share" ? (n(), _(s.Share2, {
146
146
  key: 3,
147
147
  size: 20,
148
148
  "stroke-width": 1.5
149
- })) : t.rightIcon === "dropdown" ? (a(), w(s.ChevronDown, {
149
+ })) : t.rightIcon === "dropdown" ? (n(), _(s.ChevronDown, {
150
150
  key: 4,
151
151
  size: 20,
152
152
  "stroke-width": 1.5
153
153
  })) : o("v-if", !0)
154
154
  ], 14, le);
155
155
  }
156
- const Vt = /* @__PURE__ */ m(te, [["render", oe], ["__file", "/root/app/code/src/components/ButtonComponent.vue"]]), se = /* @__PURE__ */ b({
156
+ const jt = /* @__PURE__ */ g(te, [["render", oe], ["__file", "/root/app/code/src/components/ButtonComponent.vue"]]), se = /* @__PURE__ */ w({
157
157
  __name: "CampaignCard",
158
158
  props: {
159
159
  showImage: { type: Boolean, required: !1, default: !0 },
@@ -179,7 +179,7 @@ const Vt = /* @__PURE__ */ m(te, [["render", oe], ["__file", "/root/app/code/src
179
179
  const s = { props: r };
180
180
  return Object.defineProperty(s, "__isScriptSetup", { enumerable: !1, value: !0 }), s;
181
181
  }
182
- }), ae = { class: "absolute inset-0" }, ie = ["src", "alt"], ne = { class: "relative flex justify-between items-start w-full" }, re = {
182
+ }), ne = { class: "absolute inset-0" }, ie = ["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 = {
@@ -199,11 +199,11 @@ const Vt = /* @__PURE__ */ m(te, [["render", oe], ["__file", "/root/app/code/src
199
199
  key: 1,
200
200
  class: "flex flex-col",
201
201
  style: { padding: "0 16px", gap: "8px", margin: "0" }
202
- }, he = {
202
+ }, xe = {
203
203
  key: 0,
204
204
  class: "text-black",
205
205
  style: { "font-size": "16px", "font-weight": "600", "line-height": "20px" }
206
- }, xe = {
206
+ }, he = {
207
207
  key: 1,
208
208
  class: "text-black",
209
209
  style: { "font-size": "12px", "font-weight": "400", "line-height": "18px" }
@@ -227,25 +227,25 @@ const Vt = /* @__PURE__ */ m(te, [["render", oe], ["__file", "/root/app/code/src
227
227
  fill: "none",
228
228
  xmlns: "http://www.w3.org/2000/svg"
229
229
  };
230
- function be(r, l, t, s, u, p) {
231
- return a(), i(
230
+ function be(r, l, t, s, f, m) {
231
+ return n(), i(
232
232
  "div",
233
233
  {
234
- class: k(["flex flex-col bg-white rounded-2xl shadow-card w-full", t.cardClasses]),
234
+ class: C(["flex flex-col bg-white rounded-2xl shadow-card w-full", t.cardClasses]),
235
235
  style: { gap: "16px", padding: "16px 0 24px 0" }
236
236
  },
237
237
  [
238
238
  o(" Card Image Section "),
239
- t.showImage ? (a(), i(
239
+ t.showImage ? (n(), i(
240
240
  "div",
241
241
  {
242
242
  key: 0,
243
- class: k(["relative flex-shrink-0 overflow-hidden rounded-t-2xl", t.imageClasses]),
243
+ class: C(["relative flex-shrink-0 overflow-hidden rounded-t-2xl", t.imageClasses]),
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
247
  o(" Background Image "),
248
- e("div", ae, [
248
+ e("div", ne, [
249
249
  e("img", {
250
250
  src: t.imageSrc,
251
251
  alt: t.imageAlt,
@@ -253,32 +253,32 @@ function be(r, l, t, s, u, p) {
253
253
  }, null, 8, ie)
254
254
  ]),
255
255
  o(" Card Header Overlay "),
256
- e("div", ne, [
256
+ e("div", ae, [
257
257
  o(" Labels/Pills "),
258
- t.showLabels ? (a(), i("div", re, [
259
- t.label1 ? (a(), i(
258
+ t.showLabels ? (n(), i("div", re, [
259
+ t.label1 ? (n(), i(
260
260
  "div",
261
261
  de,
262
- c(t.label1),
262
+ u(t.label1),
263
263
  1
264
264
  /* TEXT */
265
265
  )) : o("v-if", !0),
266
- t.label2 ? (a(), i(
266
+ t.label2 ? (n(), i(
267
267
  "div",
268
268
  ce,
269
- c(t.label2),
269
+ u(t.label2),
270
270
  1
271
271
  /* TEXT */
272
272
  )) : o("v-if", !0)
273
273
  ])) : o("v-if", !0),
274
274
  o(" Menu Button "),
275
- t.showMenu ? (a(), i("button", {
275
+ t.showMenu ? (n(), i("button", {
276
276
  key: 1,
277
- onClick: l[0] || (l[0] = (n) => r.$emit("menu-click")),
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
- (a(), i("svg", ue, l[2] || (l[2] = [
281
+ (n(), i("svg", ue, l[2] || (l[2] = [
282
282
  e(
283
283
  "path",
284
284
  {
@@ -326,31 +326,31 @@ function be(r, l, t, s, u, p) {
326
326
  /* CLASS */
327
327
  )) : o("v-if", !0),
328
328
  o(" Content Section "),
329
- t.showContent ? (a(), i("div", fe, [
330
- t.title ? (a(), i(
329
+ t.showContent ? (n(), i("div", fe, [
330
+ t.title ? (n(), i(
331
331
  "h3",
332
- he,
333
- c(t.title),
332
+ xe,
333
+ u(t.title),
334
334
  1
335
335
  /* TEXT */
336
336
  )) : o("v-if", !0),
337
- t.description ? (a(), i(
337
+ t.description ? (n(), i(
338
338
  "p",
339
- xe,
340
- c(t.description),
339
+ he,
340
+ u(t.description),
341
341
  1
342
342
  /* TEXT */
343
343
  )) : o("v-if", !0)
344
344
  ])) : o("v-if", !0),
345
345
  o(" Footer Section "),
346
- t.showFooter ? (a(), i("div", pe, [
346
+ t.showFooter ? (n(), i("div", pe, [
347
347
  e("div", me, [
348
348
  o(" Member Avatars "),
349
- t.showMembers ? (a(), i("div", ge, [
350
- (a(!0), i(
351
- g,
349
+ t.showMembers ? (n(), i("div", ge, [
350
+ (n(!0), i(
351
+ v,
352
352
  null,
353
- _(t.members, (n, d) => (a(), i("div", {
353
+ k(t.members, (a, d) => (n(), i("div", {
354
354
  key: d,
355
355
  class: "relative",
356
356
  style: { width: "24px", height: "24px" }
@@ -379,7 +379,7 @@ function be(r, l, t, s, u, p) {
379
379
  e(
380
380
  "div",
381
381
  ve,
382
- c(n),
382
+ u(a),
383
383
  1
384
384
  /* TEXT */
385
385
  )
@@ -389,13 +389,13 @@ function be(r, l, t, s, u, p) {
389
389
  ))
390
390
  ])) : o("v-if", !0),
391
391
  o(" Add Button "),
392
- t.showAddButton ? (a(), i("button", {
392
+ t.showAddButton ? (n(), i("button", {
393
393
  key: 1,
394
- onClick: l[1] || (l[1] = (n) => r.$emit("add-click")),
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
- (a(), i("svg", ye, l[4] || (l[4] = [
398
+ (n(), i("svg", ye, l[4] || (l[4] = [
399
399
  e(
400
400
  "path",
401
401
  {
@@ -431,7 +431,7 @@ function be(r, l, t, s, u, p) {
431
431
  /* CLASS */
432
432
  );
433
433
  }
434
- const Dt = /* @__PURE__ */ m(se, [["render", be], ["__file", "/root/app/code/src/components/CampaignCard.vue"]]), we = /* @__PURE__ */ b({
434
+ const Vt = /* @__PURE__ */ g(se, [["render", be], ["__file", "/root/app/code/src/components/CampaignCard.vue"]]), we = /* @__PURE__ */ w({
435
435
  __name: "CardComponents",
436
436
  props: {
437
437
  showImage: { type: Boolean, required: !1, default: !0 },
@@ -455,7 +455,7 @@ const Dt = /* @__PURE__ */ m(se, [["render", be], ["__file", "/root/app/code/src
455
455
  setup(r, { expose: l }) {
456
456
  l();
457
457
  const s = { props: r, get MoreHorizontal() {
458
- return G;
458
+ return Z;
459
459
  } };
460
460
  return Object.defineProperty(s, "__isScriptSetup", { enumerable: !1, value: !0 }), s;
461
461
  }
@@ -489,33 +489,33 @@ const Dt = /* @__PURE__ */ m(se, [["render", be], ["__file", "/root/app/code/src
489
489
  }, qe = {
490
490
  class: "flex justify-between items-end flex-1",
491
491
  style: { height: "24px" }
492
- }, Ae = {
492
+ }, Te = {
493
493
  key: 0,
494
494
  class: "flex items-center",
495
495
  style: { gap: "4px" }
496
- }, Te = {
496
+ }, Ae = {
497
497
  class: "absolute left-0 top-0 flex items-center justify-center text-white",
498
498
  style: { width: "24px", height: "24px", "font-size": "8px", "font-weight": "500", "line-height": "24px", "letter-spacing": "-0.08px" }
499
- }, je = {
499
+ }, Fe = {
500
500
  style: { width: "12px", height: "12px" },
501
501
  viewBox: "0 0 12 12",
502
502
  fill: "none",
503
503
  xmlns: "http://www.w3.org/2000/svg"
504
504
  };
505
- function Ve(r, l, t, s, u, p) {
506
- return a(), i(
505
+ function je(r, l, t, s, f, m) {
506
+ return n(), i(
507
507
  "div",
508
508
  {
509
- class: k(["flex flex-col bg-white rounded-2xl shadow-card w-full", t.cardClasses]),
509
+ class: C(["flex flex-col bg-white rounded-2xl shadow-card w-full", t.cardClasses]),
510
510
  style: { gap: "16px", padding: "16px 0 24px 0" }
511
511
  },
512
512
  [
513
513
  o(" Card Image Section "),
514
- t.showImage ? (a(), i(
514
+ t.showImage ? (n(), i(
515
515
  "div",
516
516
  {
517
517
  key: 0,
518
- class: k(["relative flex-shrink-0 overflow-hidden rounded-t-2xl", t.imageClasses]),
518
+ class: C(["relative flex-shrink-0 overflow-hidden rounded-t-2xl", t.imageClasses]),
519
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%" }
520
520
  },
521
521
  [
@@ -530,26 +530,26 @@ function Ve(r, l, t, s, u, p) {
530
530
  o(" Card Header Overlay "),
531
531
  e("div", Ce, [
532
532
  o(" Labels/Pills "),
533
- t.showLabels ? (a(), i("div", ze, [
534
- t.label1 ? (a(), i(
533
+ t.showLabels ? (n(), i("div", ze, [
534
+ t.label1 ? (n(), i(
535
535
  "div",
536
536
  Se,
537
- c(t.label1),
537
+ u(t.label1),
538
538
  1
539
539
  /* TEXT */
540
540
  )) : o("v-if", !0),
541
- t.label2 ? (a(), i(
541
+ t.label2 ? (n(), i(
542
542
  "div",
543
543
  Me,
544
- c(t.label2),
544
+ u(t.label2),
545
545
  1
546
546
  /* TEXT */
547
547
  )) : o("v-if", !0)
548
548
  ])) : o("v-if", !0),
549
549
  o(" Menu Button "),
550
- t.showMenu ? (a(), i("button", {
550
+ t.showMenu ? (n(), i("button", {
551
551
  key: 1,
552
- onClick: l[0] || (l[0] = (n) => r.$emit("menu-click")),
552
+ onClick: l[0] || (l[0] = (a) => r.$emit("menu-click")),
553
553
  class: "flex justify-center items-center flex-shrink-0 rounded-full bg-white hover:bg-gray-100 transition-colors",
554
554
  style: { width: "24px", height: "24px" }
555
555
  }, [
@@ -565,31 +565,31 @@ function Ve(r, l, t, s, u, p) {
565
565
  /* CLASS */
566
566
  )) : o("v-if", !0),
567
567
  o(" Content Section "),
568
- t.showContent ? (a(), i("div", Ie, [
569
- t.title ? (a(), i(
568
+ t.showContent ? (n(), i("div", Ie, [
569
+ t.title ? (n(), i(
570
570
  "h3",
571
571
  Be,
572
- c(t.title),
572
+ u(t.title),
573
573
  1
574
574
  /* TEXT */
575
575
  )) : o("v-if", !0),
576
- t.description ? (a(), i(
576
+ t.description ? (n(), i(
577
577
  "p",
578
578
  Le,
579
- c(t.description),
579
+ u(t.description),
580
580
  1
581
581
  /* TEXT */
582
582
  )) : o("v-if", !0)
583
583
  ])) : o("v-if", !0),
584
584
  o(" Footer Section "),
585
- t.showFooter ? (a(), i("div", He, [
585
+ t.showFooter ? (n(), i("div", He, [
586
586
  e("div", qe, [
587
587
  o(" Member Avatars "),
588
- t.showMembers ? (a(), i("div", Ae, [
589
- (a(!0), i(
590
- g,
588
+ t.showMembers ? (n(), i("div", Te, [
589
+ (n(!0), i(
590
+ v,
591
591
  null,
592
- _(t.members, (n, d) => (a(), i("div", {
592
+ k(t.members, (a, d) => (n(), i("div", {
593
593
  key: d,
594
594
  class: "relative",
595
595
  style: { width: "24px", height: "24px" }
@@ -617,8 +617,8 @@ function Ve(r, l, t, s, u, p) {
617
617
  )),
618
618
  e(
619
619
  "div",
620
- Te,
621
- c(n),
620
+ Ae,
621
+ u(a),
622
622
  1
623
623
  /* TEXT */
624
624
  )
@@ -628,13 +628,13 @@ function Ve(r, l, t, s, u, p) {
628
628
  ))
629
629
  ])) : o("v-if", !0),
630
630
  o(" Add Button "),
631
- t.showAddButton ? (a(), i("button", {
631
+ t.showAddButton ? (n(), i("button", {
632
632
  key: 1,
633
- onClick: l[1] || (l[1] = (n) => r.$emit("add-click")),
633
+ onClick: l[1] || (l[1] = (a) => r.$emit("add-click")),
634
634
  class: "flex justify-center items-center flex-shrink-0 rounded-full bg-black hover:bg-gray-800 transition-colors",
635
635
  style: { width: "24px", height: "24px" }
636
636
  }, [
637
- (a(), i("svg", je, l[3] || (l[3] = [
637
+ (n(), i("svg", Fe, l[3] || (l[3] = [
638
638
  e(
639
639
  "path",
640
640
  {
@@ -670,7 +670,7 @@ function Ve(r, l, t, s, u, p) {
670
670
  /* CLASS */
671
671
  );
672
672
  }
673
- const Pt = /* @__PURE__ */ m(we, [["render", Ve], ["__file", "/root/app/code/src/components/CardComponents.vue"]]), De = /* @__PURE__ */ b({
673
+ const Dt = /* @__PURE__ */ g(we, [["render", je], ["__file", "/root/app/code/src/components/CardComponents.vue"]]), Ve = /* @__PURE__ */ w({
674
674
  __name: "InviteCollaboratorsModalV2",
675
675
  props: {
676
676
  isOpen: { type: Boolean, required: !1, default: !1 },
@@ -680,57 +680,57 @@ const Pt = /* @__PURE__ */ m(we, [["render", Ve], ["__file", "/root/app/code/src
680
680
  emits: ["close", "add"],
681
681
  setup(r, { expose: l, emit: t }) {
682
682
  l();
683
- const s = r, u = t, p = C(null), n = C(!1), d = C(""), f = C([]), y = C([...s.initialCollaborators]), q = N(() => s.availableUsersList.filter((h) => {
684
- const x = !y.value.some((D) => D.email === h.email);
685
- if (!d.value) return x;
686
- const v = d.value.toLowerCase();
687
- return x && (h.name.toLowerCase().includes(v) || h.email.toLowerCase().includes(v));
688
- })), A = (h) => f.value.some((x) => x.email === h.email), T = (h) => {
689
- const x = f.value.findIndex((v) => v.email === h.email);
690
- x > -1 ? f.value.splice(x, 1) : f.value.push(h), d.value = "";
683
+ const s = r, f = t, m = z(null), a = z(!1), d = z(""), x = z([]), b = z([...s.initialCollaborators]), q = N(() => s.availableUsersList.filter((h) => {
684
+ const p = !b.value.some((V) => V.email === h.email);
685
+ if (!d.value) return p;
686
+ const y = d.value.toLowerCase();
687
+ return p && (h.name.toLowerCase().includes(y) || h.email.toLowerCase().includes(y));
688
+ })), T = (h) => x.value.some((p) => p.email === h.email), A = (h) => {
689
+ const p = x.value.findIndex((y) => y.email === h.email);
690
+ p > -1 ? x.value.splice(p, 1) : x.value.push(h), d.value = "";
691
+ }, F = (h) => {
692
+ const p = x.value.findIndex((y) => y.email === h.email);
693
+ p > -1 && x.value.splice(p, 1);
691
694
  }, j = (h) => {
692
- const x = f.value.findIndex((v) => v.email === h.email);
693
- x > -1 && f.value.splice(x, 1);
694
- }, V = (h) => {
695
- const x = y.value.findIndex((v) => v.email === h.email);
696
- x > -1 && y.value.splice(x, 1);
695
+ const p = b.value.findIndex((y) => y.email === h.email);
696
+ p > -1 && b.value.splice(p, 1);
697
697
  }, B = () => {
698
- p.value?.focus();
699
- }, L = { props: s, emit: u, hiddenInput: p, showDropdown: n, searchQuery: d, selectedUsers: f, collaborators: y, availableUsers: q, isUserSelected: A, toggleUser: T, removeUser: j, removeCollaborator: V, focusInput: B, toggleDropdown: () => {
700
- n.value = !n.value, n.value && B();
698
+ m.value?.focus();
699
+ }, L = { props: s, emit: f, hiddenInput: m, showDropdown: a, searchQuery: d, selectedUsers: x, collaborators: b, availableUsers: q, isUserSelected: T, toggleUser: A, removeUser: F, removeCollaborator: j, focusInput: B, toggleDropdown: () => {
700
+ a.value = !a.value, a.value && B();
701
701
  }, handleBlur: () => {
702
702
  setTimeout(() => {
703
- n.value = !1;
703
+ a.value = !1;
704
704
  }, 200);
705
705
  }, closeModal: () => {
706
- u("close"), f.value = [], d.value = "", n.value = !1;
706
+ f("close"), x.value = [], d.value = "", a.value = !1;
707
707
  }, addCollaborators: () => {
708
- f.value.length > 0 && (f.value.forEach((h) => {
709
- y.value.some((x) => x.email === h.email) || y.value.push(h);
710
- }), u("add", f.value, y.value), f.value = [], d.value = "", n.value = !1), u("close");
708
+ x.value.length > 0 && (x.value.forEach((h) => {
709
+ b.value.some((p) => p.email === h.email) || b.value.push(h);
710
+ }), f("add", x.value, b.value), x.value = [], d.value = "", a.value = !1), f("close");
711
711
  } };
712
712
  return Object.defineProperty(L, "__isScriptSetup", { enumerable: !1, value: !0 }), L;
713
713
  }
714
- }), Pe = { class: "bg-white rounded-2xl w-full max-w-[630px] p-8 shadow-xl" }, Ne = { class: "relative mb-6" }, Fe = { class: "flex flex-wrap gap-2 flex-1" }, Ee = ["onClick"], Ue = {
714
+ }), De = { class: "bg-white rounded-2xl w-full max-w-[630px] p-8 shadow-xl" }, Ne = { class: "relative mb-6" }, Pe = { class: "flex flex-wrap gap-2 flex-1" }, Ee = ["onClick"], Ue = {
715
715
  key: 0,
716
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"
717
- }, Oe = ["onMousedown"], Re = { class: "flex-1" }, Ze = { class: "text-sm font-semibold text-black" }, Ge = { class: "text-sm text-gray-600" }, Qe = {
717
+ }, Oe = ["onMousedown"], We = { class: "flex-1" }, Re = { class: "text-sm font-semibold text-black" }, Ze = { class: "text-sm text-gray-600" }, Ge = {
718
718
  key: 0,
719
719
  class: "w-5 h-5 flex items-center justify-center text-black"
720
- }, $e = { class: "collaborators-list mb-8 max-h-96 overflow-y-auto" }, Ke = {
720
+ }, Qe = { class: "collaborators-list mb-8 max-h-96 overflow-y-auto" }, $e = {
721
721
  class: "font-semibold text-black",
722
722
  style: { "font-size": "14px" }
723
- }, We = {
723
+ }, Ke = {
724
724
  class: "text-black",
725
725
  style: { "font-size": "14px" }
726
726
  }, Ye = ["onClick"];
727
- function Je(r, l, t, s, u, p) {
728
- return t.isOpen ? (a(), i("div", {
727
+ function Je(r, l, t, s, f, m) {
728
+ return t.isOpen ? (n(), i("div", {
729
729
  key: 0,
730
730
  class: "fixed inset-0 bg-black/50 flex items-center justify-center z-50 p-4",
731
- onClick: z(s.closeModal, ["self"])
731
+ onClick: S(s.closeModal, ["self"])
732
732
  }, [
733
- e("div", Pe, [
733
+ e("div", De, [
734
734
  o(" Header "),
735
735
  l[3] || (l[3] = e(
736
736
  "h2",
@@ -763,21 +763,21 @@ function Je(r, l, t, s, u, p) {
763
763
  onClick: s.toggleDropdown
764
764
  }, " + "),
765
765
  o(" Selected User Pills "),
766
- e("div", Fe, [
767
- (a(!0), i(
768
- g,
766
+ e("div", Pe, [
767
+ (n(!0), i(
768
+ v,
769
769
  null,
770
- _(s.selectedUsers, (n) => (a(), i("span", {
771
- key: n.email,
770
+ k(s.selectedUsers, (a) => (n(), i("span", {
771
+ key: a.email,
772
772
  class: "inline-flex items-center gap-2 px-3 py-1.5 bg-gray-100 rounded-lg text-sm font-normal text-black"
773
773
  }, [
774
- M(
775
- c(n.display) + " ",
774
+ c(
775
+ u(a.display) + " ",
776
776
  1
777
777
  /* TEXT */
778
778
  ),
779
779
  e("button", {
780
- onClick: z((d) => s.removeUser(n), ["stop"]),
780
+ onClick: S((d) => s.removeUser(a), ["stop"]),
781
781
  class: "text-gray-600 hover:text-black transition-colors"
782
782
  }, " × ", 8, Ee)
783
783
  ]))),
@@ -785,16 +785,16 @@ function Je(r, l, t, s, u, p) {
785
785
  /* KEYED_FRAGMENT */
786
786
  )),
787
787
  o(" Hidden Input for Focus "),
788
- F(e(
788
+ P(e(
789
789
  "input",
790
790
  {
791
791
  ref: "hiddenInput",
792
792
  type: "text",
793
793
  class: "flex-1 min-w-[100px] outline-none bg-transparent text-black placeholder-gray-400",
794
794
  placeholder: "",
795
- onFocus: l[0] || (l[0] = (n) => s.showDropdown = !0),
795
+ onFocus: l[0] || (l[0] = (a) => s.showDropdown = !0),
796
796
  onBlur: s.handleBlur,
797
- "onUpdate:modelValue": l[1] || (l[1] = (n) => s.searchQuery = n)
797
+ "onUpdate:modelValue": l[1] || (l[1] = (a) => s.searchQuery = a)
798
798
  },
799
799
  null,
800
800
  544
@@ -805,33 +805,33 @@ function Je(r, l, t, s, u, p) {
805
805
  ])
806
806
  ]),
807
807
  o(" Dropdown "),
808
- s.showDropdown ? (a(), i("div", Ue, [
809
- (a(!0), i(
810
- g,
808
+ s.showDropdown ? (n(), i("div", Ue, [
809
+ (n(!0), i(
810
+ v,
811
811
  null,
812
- _(s.availableUsers, (n) => (a(), i("button", {
813
- key: n.email,
812
+ k(s.availableUsers, (a) => (n(), i("button", {
813
+ key: a.email,
814
814
  type: "button",
815
815
  class: "w-full px-4 py-3 text-left hover:bg-gray-50 transition-colors flex items-center justify-between group",
816
- onMousedown: z((d) => s.toggleUser(n), ["prevent"])
816
+ onMousedown: S((d) => s.toggleUser(a), ["prevent"])
817
817
  }, [
818
- e("div", Re, [
818
+ e("div", We, [
819
819
  e(
820
820
  "div",
821
- Ze,
822
- c(n.name),
821
+ Re,
822
+ u(a.name),
823
823
  1
824
824
  /* TEXT */
825
825
  ),
826
826
  e(
827
827
  "div",
828
- Ge,
829
- c(n.email),
828
+ Ze,
829
+ u(a.email),
830
830
  1
831
831
  /* TEXT */
832
832
  )
833
833
  ]),
834
- s.isUserSelected(n) ? (a(), i("div", Qe, " ✓ ")) : o("v-if", !0)
834
+ s.isUserSelected(a) ? (n(), i("div", Ge, " ✓ ")) : o("v-if", !0)
835
835
  ], 40, Oe))),
836
836
  128
837
837
  /* KEYED_FRAGMENT */
@@ -839,30 +839,30 @@ function Je(r, l, t, s, u, p) {
839
839
  ])) : o("v-if", !0)
840
840
  ]),
841
841
  o(" Collaborators List "),
842
- e("div", $e, [
843
- (a(!0), i(
844
- g,
842
+ e("div", Qe, [
843
+ (n(!0), i(
844
+ v,
845
845
  null,
846
- _(s.collaborators, (n) => (a(), i("div", {
847
- key: n.email,
846
+ k(s.collaborators, (a) => (n(), i("div", {
847
+ key: a.email,
848
848
  class: "grid grid-cols-[1fr_1.5fr_auto] gap-4 items-center py-4 border-b border-gray-200"
849
849
  }, [
850
850
  e(
851
851
  "div",
852
- Ke,
853
- c(n.name),
852
+ $e,
853
+ u(a.name),
854
854
  1
855
855
  /* TEXT */
856
856
  ),
857
857
  e(
858
858
  "div",
859
- We,
860
- c(n.email),
859
+ Ke,
860
+ u(a.email),
861
861
  1
862
862
  /* TEXT */
863
863
  ),
864
864
  e("button", {
865
- onClick: (d) => s.removeCollaborator(n),
865
+ onClick: (d) => s.removeCollaborator(a),
866
866
  class: "text-gray-800 hover:text-black transition-colors text-2xl leading-none"
867
867
  }, " × ", 8, Ye)
868
868
  ]))),
@@ -897,7 +897,7 @@ function Je(r, l, t, s, u, p) {
897
897
  -1
898
898
  /* CACHED */
899
899
  ),
900
- M(
900
+ c(
901
901
  " Cancel ",
902
902
  -1
903
903
  /* CACHED */
@@ -912,7 +912,7 @@ function Je(r, l, t, s, u, p) {
912
912
  ])
913
913
  ])) : o("v-if", !0);
914
914
  }
915
- const Nt = /* @__PURE__ */ m(De, [["render", Je], ["__scopeId", "data-v-f6014a35"], ["__file", "/root/app/code/src/components/InviteCollaboratorsModalV2.vue"]]), Xe = /* @__PURE__ */ b({
915
+ const Nt = /* @__PURE__ */ g(Ve, [["render", Je], ["__scopeId", "data-v-f6014a35"], ["__file", "/root/app/code/src/components/InviteCollaboratorsModalV2.vue"]]), Xe = /* @__PURE__ */ w({
916
916
  __name: "NavigationSidebar",
917
917
  props: {
918
918
  items: { type: Array, required: !1, default: () => [
@@ -927,21 +927,21 @@ const Nt = /* @__PURE__ */ m(De, [["render", Je], ["__scopeId", "data-v-f6014a35
927
927
  emits: ["item-click"],
928
928
  setup(r, { expose: l, emit: t }) {
929
929
  l();
930
- const s = t, n = { emit: s, handleItemClick: (d) => {
930
+ const s = t, a = { emit: s, handleItemClick: (d) => {
931
931
  s("item-click", d);
932
932
  }, getIconColor: (d) => d ? "#C3FF00" : "white", get Home() {
933
- return K;
934
- }, get MessageSquare() {
935
933
  return $;
936
- }, get ToyBrick() {
934
+ }, get MessageSquare() {
937
935
  return Q;
936
+ }, get ToyBrick() {
937
+ return G;
938
938
  } };
939
- return Object.defineProperty(n, "__isScriptSetup", { enumerable: !1, value: !0 }), n;
939
+ return Object.defineProperty(a, "__isScriptSetup", { enumerable: !1, value: !0 }), a;
940
940
  }
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" }, at = { class: "flex flex-col items-start px-4 pb-8 gap-4" }, it = { class: "profile-section flex items-center gap-3 w-full" }, nt = { 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, t, s, u, p) {
943
- return a(), i(
944
- g,
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" }, nt = { class: "flex flex-col items-start px-4 pb-8 gap-4" }, it = { 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, t, s, f, m) {
943
+ return n(), i(
944
+ v,
945
945
  null,
946
946
  [
947
947
  o(" Expandable Sidebar Navigation "),
@@ -949,26 +949,26 @@ function ct(r, l, t, s, u, p) {
949
949
  o(" Top Section "),
950
950
  e("div", tt, [
951
951
  o(" Logo "),
952
- l[0] || (l[0] = S('<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)),
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
953
  o(" Navigation Items "),
954
954
  e("div", lt, [
955
- (a(!0), i(
956
- g,
955
+ (n(!0), i(
956
+ v,
957
957
  null,
958
- _(t.items, (n, d) => (a(), i("div", {
958
+ k(t.items, (a, d) => (n(), i("div", {
959
959
  key: d,
960
- onClick: (f) => s.handleItemClick(d),
961
- class: k(["nav-item flex items-center gap-[18px] px-2.5 py-2 rounded-lg cursor-pointer transition-colors duration-200", t.activeItem === d ? "bg-[#232323]" : "hover:bg-[#232323]"])
960
+ onClick: (x) => s.handleItemClick(d),
961
+ class: C(["nav-item flex items-center gap-[18px] px-2.5 py-2 rounded-lg cursor-pointer transition-colors duration-200", t.activeItem === d ? "bg-[#232323]" : "hover:bg-[#232323]"])
962
962
  }, [
963
963
  o(" Dashboard Icon "),
964
- n.icon === "dashboard" ? (a(), w(s.Home, {
964
+ a.icon === "dashboard" ? (n(), _(s.Home, {
965
965
  key: 0,
966
966
  class: "flex-shrink-0",
967
967
  size: 20,
968
968
  "stroke-width": 1.5,
969
969
  color: s.getIconColor(t.activeItem === d)
970
- }, null, 8, ["color"])) : n.icon === "conversations" ? (a(), i(
971
- g,
970
+ }, null, 8, ["color"])) : a.icon === "conversations" ? (n(), i(
971
+ v,
972
972
  { key: 1 },
973
973
  [
974
974
  o(" Conversations Icon "),
@@ -981,8 +981,8 @@ function ct(r, l, t, s, u, p) {
981
981
  ],
982
982
  2112
983
983
  /* STABLE_FRAGMENT, DEV_ROOT_FRAGMENT */
984
- )) : n.icon === "templates" ? (a(), i(
985
- g,
984
+ )) : a.icon === "templates" ? (n(), i(
985
+ v,
986
986
  { key: 2 },
987
987
  [
988
988
  o(" Templates Icon "),
@@ -999,7 +999,7 @@ function ct(r, l, t, s, u, p) {
999
999
  e(
1000
1000
  "span",
1001
1001
  st,
1002
- c(n.name),
1002
+ u(a.name),
1003
1003
  1
1004
1004
  /* TEXT */
1005
1005
  )
@@ -1010,27 +1010,27 @@ function ct(r, l, t, s, u, p) {
1010
1010
  ])
1011
1011
  ]),
1012
1012
  o(" Bottom Section - Profile "),
1013
- e("div", at, [
1013
+ e("div", nt, [
1014
1014
  o(" User Profile "),
1015
1015
  e("div", it, [
1016
- l[1] || (l[1] = S('<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
- e("div", nt, [
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
+ e("div", at, [
1018
1018
  e(
1019
1019
  "div",
1020
1020
  rt,
1021
- c(t.userName),
1021
+ u(t.userName),
1022
1022
  1
1023
1023
  /* TEXT */
1024
1024
  ),
1025
1025
  e(
1026
1026
  "div",
1027
1027
  dt,
1028
- c(t.userVersion),
1028
+ u(t.userVersion),
1029
1029
  1
1030
1030
  /* TEXT */
1031
1031
  )
1032
1032
  ]),
1033
- l[2] || (l[2] = S('<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))
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))
1034
1034
  ])
1035
1035
  ])
1036
1036
  ])
@@ -1039,7 +1039,7 @@ function ct(r, l, t, s, u, p) {
1039
1039
  /* STABLE_FRAGMENT, DEV_ROOT_FRAGMENT */
1040
1040
  );
1041
1041
  }
1042
- const Ft = /* @__PURE__ */ m(Xe, [["render", ct], ["__scopeId", "data-v-4c3eb68c"], ["__file", "/root/app/code/src/components/NavigationSidebar.vue"]]), ut = /* @__PURE__ */ b({
1042
+ const Pt = /* @__PURE__ */ g(Xe, [["render", ct], ["__scopeId", "data-v-4c3eb68c"], ["__file", "/root/app/code/src/components/NavigationSidebar.vue"]]), ut = /* @__PURE__ */ w({
1043
1043
  __name: "TextStyles",
1044
1044
  setup(r, { expose: l }) {
1045
1045
  l();
@@ -1047,40 +1047,58 @@ const Ft = /* @__PURE__ */ m(Xe, [["render", ct], ["__scopeId", "data-v-4c3eb68c
1047
1047
  return Object.defineProperty(t, "__isScriptSetup", { enumerable: !1, value: !0 }), t;
1048
1048
  }
1049
1049
  }), ft = { class: "flex flex-col gap-12 w-full" };
1050
- function ht(r, l, t, s, u, p) {
1051
- return a(), i("div", ft, [
1052
- o(" Deliverable Header "),
1050
+ function xt(r, l, t, s, f, m) {
1051
+ return n(), i("div", ft, [
1052
+ o(" h1 "),
1053
1053
  l[0] || (l[0] = e(
1054
1054
  "div",
1055
1055
  { class: "flex flex-col gap-3" },
1056
1056
  [
1057
- e("p", { class: "text-xs font-semibold text-gray-500 uppercase tracking-wide" }, "Deliverable Header"),
1058
- e("h1", { class: "deliverable-header" }, "Deliverable Header"),
1059
- e("code", { class: "text-xs bg-gray-100 px-2 py-1 rounded" }, "32px / 600 / 38px line-height")
1057
+ e("p", { class: "text-xs font-semibold text-gray-500 uppercase tracking-wide" }, "h1"),
1058
+ e("h1", { class: "text-h1" }, "This is a headline"),
1059
+ e("p", { class: "text-sm text-gray-700 bg-gray-100 px-3 py-2 rounded" }, [
1060
+ e("strong", null, "Class:"),
1061
+ c(),
1062
+ e("code", null, "text-h1"),
1063
+ e("br"),
1064
+ c(" Inter / Font Size: 32px / Font Weight: 600 / Line Height: 38px ")
1065
+ ])
1060
1066
  ],
1061
1067
  -1
1062
1068
  /* CACHED */
1063
1069
  )),
1064
- o(" Page and Subheaders (Large) "),
1070
+ o(" h2 "),
1065
1071
  l[1] || (l[1] = e(
1066
1072
  "div",
1067
1073
  { class: "flex flex-col gap-3" },
1068
1074
  [
1069
- e("p", { class: "text-xs font-semibold text-gray-500 uppercase tracking-wide" }, "Page and Subheaders (Large)"),
1070
- e("h2", { class: "page-subheader-large" }, "Page and Subheaders"),
1071
- e("code", { class: "text-xs bg-gray-100 px-2 py-1 rounded" }, "24px / 600 / 28px line-height")
1075
+ e("p", { class: "text-xs font-semibold text-gray-500 uppercase tracking-wide" }, "h2"),
1076
+ e("h2", { class: "text-h2" }, "This is a headline"),
1077
+ e("p", { class: "text-sm text-gray-700 bg-gray-100 px-3 py-2 rounded" }, [
1078
+ e("strong", null, "Class:"),
1079
+ c(),
1080
+ e("code", null, "text-h2"),
1081
+ e("br"),
1082
+ c(" Inter / Font Size: 24px / Font Weight: 600 / Line Height: 28px ")
1083
+ ])
1072
1084
  ],
1073
1085
  -1
1074
1086
  /* CACHED */
1075
1087
  )),
1076
- o(" Page and Subheaders (Medium) "),
1088
+ o(" h3 "),
1077
1089
  l[2] || (l[2] = e(
1078
1090
  "div",
1079
1091
  { class: "flex flex-col gap-3" },
1080
1092
  [
1081
- e("p", { class: "text-xs font-semibold text-gray-500 uppercase tracking-wide" }, "Page and Subheaders (Medium)"),
1082
- e("h3", { class: "page-subheader-medium" }, "Page and Subheaders"),
1083
- e("code", { class: "text-xs bg-gray-100 px-2 py-1 rounded" }, "20px / 600 / 28px line-height")
1093
+ e("p", { class: "text-xs font-semibold text-gray-500 uppercase tracking-wide" }, "h3"),
1094
+ e("h3", { class: "text-h3" }, "This is a headline"),
1095
+ e("p", { class: "text-sm text-gray-700 bg-gray-100 px-3 py-2 rounded" }, [
1096
+ e("strong", null, "Class:"),
1097
+ c(),
1098
+ e("code", null, "text-h3"),
1099
+ e("br"),
1100
+ c(" Inter / Font Size: 20px / Font Weight: 600 / Line Height: 28px ")
1101
+ ])
1084
1102
  ],
1085
1103
  -1
1086
1104
  /* CACHED */
@@ -1091,8 +1109,14 @@ function ht(r, l, t, s, u, p) {
1091
1109
  { class: "flex flex-col gap-3" },
1092
1110
  [
1093
1111
  e("p", { class: "text-xs font-semibold text-gray-500 uppercase tracking-wide" }, "Card Headline Copy"),
1094
- e("h4", { class: "card-headline" }, "Card Headline Copy"),
1095
- e("code", { class: "text-xs bg-gray-100 px-2 py-1 rounded" }, "16px / 600 / 20px line-height / capitalize")
1112
+ e("h4", { class: "text-card-headline" }, "Card Headline Copy"),
1113
+ e("p", { class: "text-sm text-gray-700 bg-gray-100 px-3 py-2 rounded" }, [
1114
+ e("strong", null, "Class:"),
1115
+ c(),
1116
+ e("code", null, "text-card-headline"),
1117
+ e("br"),
1118
+ c(" Inter / Font Size: 16px / Font Weight: 600 / Line Height: 20px / Text Transform: capitalize ")
1119
+ ])
1096
1120
  ],
1097
1121
  -1
1098
1122
  /* CACHED */
@@ -1103,8 +1127,14 @@ function ht(r, l, t, s, u, p) {
1103
1127
  { class: "flex flex-col gap-3" },
1104
1128
  [
1105
1129
  e("p", { class: "text-xs font-semibold text-gray-500 uppercase tracking-wide" }, "Body Text (Large) - Header"),
1106
- e("p", { class: "body-text-large-header" }, "Header of body text content."),
1107
- e("code", { class: "text-xs bg-gray-100 px-2 py-1 rounded" }, "14px / 700 / 20px line-height")
1130
+ e("p", { class: "text-body-lg-header" }, "Header of body text content."),
1131
+ e("p", { class: "text-sm text-gray-700 bg-gray-100 px-3 py-2 rounded" }, [
1132
+ e("strong", null, "Class:"),
1133
+ c(),
1134
+ e("code", null, "text-body-lg-header"),
1135
+ e("br"),
1136
+ c(" Inter / Font Size: 14px / Font Weight: 700 / Line Height: 20px ")
1137
+ ])
1108
1138
  ],
1109
1139
  -1
1110
1140
  /* CACHED */
@@ -1115,8 +1145,14 @@ function ht(r, l, t, s, u, p) {
1115
1145
  { class: "flex flex-col gap-3" },
1116
1146
  [
1117
1147
  e("p", { class: "text-xs font-semibold text-gray-500 uppercase tracking-wide" }, "Body Text (Large)"),
1118
- e("p", { class: "body-text-large" }, "Body text content. Lorem ipsum dolere sit amet nonummy consectuter adspecit. Lorem ipsum dolere sit amet nonummy consectuter adspecit."),
1119
- e("code", { class: "text-xs bg-gray-100 px-2 py-1 rounded" }, "14px / 400 / 20px line-height")
1148
+ e("p", { class: "text-body-lg" }, "Body text content. Lorem ipsum dolere sit amet nonummy consectuter adspecit. Lorem ipsum dolere sit amet nonummy consectuter adspecit."),
1149
+ e("p", { class: "text-sm text-gray-700 bg-gray-100 px-3 py-2 rounded" }, [
1150
+ e("strong", null, "Class:"),
1151
+ c(),
1152
+ e("code", null, "text-body-lg"),
1153
+ e("br"),
1154
+ c(" Inter / Font Size: 14px / Font Weight: 400 / Line Height: 20px ")
1155
+ ])
1120
1156
  ],
1121
1157
  -1
1122
1158
  /* CACHED */
@@ -1127,8 +1163,14 @@ function ht(r, l, t, s, u, p) {
1127
1163
  { class: "flex flex-col gap-3" },
1128
1164
  [
1129
1165
  e("p", { class: "text-xs font-semibold text-gray-500 uppercase tracking-wide" }, "Body Text (Small) - Header"),
1130
- e("p", { class: "body-text-small-header" }, "Header of body text content."),
1131
- e("code", { class: "text-xs bg-gray-100 px-2 py-1 rounded" }, "12px / 700 / 20px line-height")
1166
+ e("p", { class: "text-body-sm-header" }, "Header of body text content."),
1167
+ e("p", { class: "text-sm text-gray-700 bg-gray-100 px-3 py-2 rounded" }, [
1168
+ e("strong", null, "Class:"),
1169
+ c(),
1170
+ e("code", null, "text-body-sm-header"),
1171
+ e("br"),
1172
+ c(" Inter / Font Size: 12px / Font Weight: 700 / Line Height: 20px ")
1173
+ ])
1132
1174
  ],
1133
1175
  -1
1134
1176
  /* CACHED */
@@ -1139,8 +1181,14 @@ function ht(r, l, t, s, u, p) {
1139
1181
  { class: "flex flex-col gap-3" },
1140
1182
  [
1141
1183
  e("p", { class: "text-xs font-semibold text-gray-500 uppercase tracking-wide" }, "Body Text (Small)"),
1142
- e("p", { class: "body-text-small" }, "Body text content. Lorem ipsum dolere sit amet nonummy consectuter adspecit. Lorem ipsum dolere sit amet nonummy consectuter adspecit."),
1143
- e("code", { class: "text-xs bg-gray-100 px-2 py-1 rounded" }, "12px / 400 / 18px line-height")
1184
+ e("p", { class: "text-body-sm" }, "Body text content. Lorem ipsum dolere sit amet nonummy consectuter adspecit. Lorem ipsum dolere sit amet nonummy consectuter adspecit."),
1185
+ e("p", { class: "text-sm text-gray-700 bg-gray-100 px-3 py-2 rounded" }, [
1186
+ e("strong", null, "Class:"),
1187
+ c(),
1188
+ e("code", null, "text-body-sm"),
1189
+ e("br"),
1190
+ c(" Inter / Font Size: 12px / Font Weight: 400 / Line Height: 18px ")
1191
+ ])
1144
1192
  ],
1145
1193
  -1
1146
1194
  /* CACHED */
@@ -1155,7 +1203,13 @@ function ht(r, l, t, s, u, p) {
1155
1203
  href: "#",
1156
1204
  class: "text-link"
1157
1205
  }, "Text Links, Navigation or Actions"),
1158
- e("code", { class: "text-xs bg-gray-100 px-2 py-1 rounded" }, "14px / 500 / 20px line-height")
1206
+ e("p", { class: "text-sm text-gray-700 bg-gray-100 px-3 py-2 rounded" }, [
1207
+ e("strong", null, "Class:"),
1208
+ c(),
1209
+ e("code", null, "text-link"),
1210
+ e("br"),
1211
+ c(" Inter / Font Size: 14px / Font Weight: 500 / Line Height: 20px ")
1212
+ ])
1159
1213
  ],
1160
1214
  -1
1161
1215
  /* CACHED */
@@ -1170,7 +1224,13 @@ function ht(r, l, t, s, u, p) {
1170
1224
  href: "#",
1171
1225
  class: "text-link-active"
1172
1226
  }, "Text Links, Navigation or Actions - ON"),
1173
- e("code", { class: "text-xs bg-gray-100 px-2 py-1 rounded" }, "14px / 600 / 20px line-height")
1227
+ e("p", { class: "text-sm text-gray-700 bg-gray-100 px-3 py-2 rounded" }, [
1228
+ e("strong", null, "Class:"),
1229
+ c(),
1230
+ e("code", null, "text-link-active"),
1231
+ e("br"),
1232
+ c(" Inter / Font Size: 14px / Font Weight: 600 / Line Height: 20px ")
1233
+ ])
1174
1234
  ],
1175
1235
  -1
1176
1236
  /* CACHED */
@@ -1181,22 +1241,28 @@ function ht(r, l, t, s, u, p) {
1181
1241
  { class: "flex flex-col gap-3" },
1182
1242
  [
1183
1243
  e("p", { class: "text-xs font-semibold text-gray-500 uppercase tracking-wide" }, "Labels"),
1184
- e("p", { class: "label" }, "Labels"),
1185
- e("code", { class: "text-xs bg-gray-100 px-2 py-1 rounded" }, "10px / 600 / 20px line-height / 0.5px letter-spacing / uppercase")
1244
+ e("p", { class: "text-label" }, "Labels"),
1245
+ e("p", { class: "text-sm text-gray-700 bg-gray-100 px-3 py-2 rounded" }, [
1246
+ e("strong", null, "Class:"),
1247
+ c(),
1248
+ e("code", null, "text-label"),
1249
+ e("br"),
1250
+ c(" Inter / Font Size: 10px / Font Weight: 600 / Line Height: 20px / Letter Spacing: 0.5px / Text Transform: uppercase ")
1251
+ ])
1186
1252
  ],
1187
1253
  -1
1188
1254
  /* CACHED */
1189
1255
  ))
1190
1256
  ]);
1191
1257
  }
1192
- const Et = /* @__PURE__ */ m(ut, [["render", ht], ["__scopeId", "data-v-716d7101"], ["__file", "/root/app/code/src/components/TextStyles.vue"]]), xt = {}, pt = {
1258
+ const Et = /* @__PURE__ */ g(ut, [["render", xt], ["__file", "/root/app/code/src/components/TextStyles.vue"]]), ht = {}, pt = {
1193
1259
  xmlns: "http://www.w3.org/2000/svg",
1194
1260
  width: "20",
1195
1261
  height: "20",
1196
1262
  fill: "currentColor"
1197
1263
  };
1198
1264
  function mt(r, l) {
1199
- return a(), i("svg", pt, l[0] || (l[0] = [
1265
+ return n(), i("svg", pt, l[0] || (l[0] = [
1200
1266
  e(
1201
1267
  "path",
1202
1268
  { 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" },
@@ -1206,14 +1272,14 @@ function mt(r, l) {
1206
1272
  )
1207
1273
  ]));
1208
1274
  }
1209
- const Ut = /* @__PURE__ */ m(xt, [["render", mt], ["__file", "/root/app/code/src/components/icons/IconCommunity.vue"]]), gt = {}, vt = {
1275
+ const Ut = /* @__PURE__ */ g(ht, [["render", mt], ["__file", "/root/app/code/src/components/icons/IconCommunity.vue"]]), gt = {}, vt = {
1210
1276
  xmlns: "http://www.w3.org/2000/svg",
1211
1277
  width: "20",
1212
1278
  height: "17",
1213
1279
  fill: "currentColor"
1214
1280
  };
1215
1281
  function yt(r, l) {
1216
- return a(), i("svg", vt, l[0] || (l[0] = [
1282
+ return n(), i("svg", vt, l[0] || (l[0] = [
1217
1283
  e(
1218
1284
  "path",
1219
1285
  { 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" },
@@ -1223,14 +1289,14 @@ function yt(r, l) {
1223
1289
  )
1224
1290
  ]));
1225
1291
  }
1226
- const Ot = /* @__PURE__ */ m(gt, [["render", yt], ["__file", "/root/app/code/src/components/icons/IconDocumentation.vue"]]), bt = {}, wt = {
1292
+ const Ot = /* @__PURE__ */ g(gt, [["render", yt], ["__file", "/root/app/code/src/components/icons/IconDocumentation.vue"]]), bt = {}, wt = {
1227
1293
  xmlns: "http://www.w3.org/2000/svg",
1228
1294
  width: "18",
1229
1295
  height: "20",
1230
1296
  fill: "currentColor"
1231
1297
  };
1232
1298
  function _t(r, l) {
1233
- return a(), i("svg", wt, l[0] || (l[0] = [
1299
+ return n(), i("svg", wt, l[0] || (l[0] = [
1234
1300
  e(
1235
1301
  "path",
1236
1302
  { 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" },
@@ -1240,14 +1306,14 @@ function _t(r, l) {
1240
1306
  )
1241
1307
  ]));
1242
1308
  }
1243
- const Rt = /* @__PURE__ */ m(bt, [["render", _t], ["__file", "/root/app/code/src/components/icons/IconEcosystem.vue"]]), kt = {}, Ct = {
1309
+ const Wt = /* @__PURE__ */ g(bt, [["render", _t], ["__file", "/root/app/code/src/components/icons/IconEcosystem.vue"]]), kt = {}, Ct = {
1244
1310
  xmlns: "http://www.w3.org/2000/svg",
1245
1311
  width: "20",
1246
1312
  height: "20",
1247
1313
  fill: "currentColor"
1248
1314
  };
1249
1315
  function zt(r, l) {
1250
- return a(), i("svg", Ct, l[0] || (l[0] = [
1316
+ return n(), i("svg", Ct, l[0] || (l[0] = [
1251
1317
  e(
1252
1318
  "path",
1253
1319
  { 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" },
@@ -1257,7 +1323,7 @@ function zt(r, l) {
1257
1323
  )
1258
1324
  ]));
1259
1325
  }
1260
- const Zt = /* @__PURE__ */ m(kt, [["render", zt], ["__file", "/root/app/code/src/components/icons/IconSupport.vue"]]), St = {}, Mt = {
1326
+ const Rt = /* @__PURE__ */ g(kt, [["render", zt], ["__file", "/root/app/code/src/components/icons/IconSupport.vue"]]), St = {}, Mt = {
1261
1327
  xmlns: "http://www.w3.org/2000/svg",
1262
1328
  "xmlns:xlink": "http://www.w3.org/1999/xlink",
1263
1329
  "aria-hidden": "true",
@@ -1269,7 +1335,7 @@ const Zt = /* @__PURE__ */ m(kt, [["render", zt], ["__file", "/root/app/code/src
1269
1335
  viewBox: "0 0 24 24"
1270
1336
  };
1271
1337
  function It(r, l) {
1272
- return a(), i("svg", Mt, l[0] || (l[0] = [
1338
+ return n(), i("svg", Mt, l[0] || (l[0] = [
1273
1339
  e(
1274
1340
  "path",
1275
1341
  {
@@ -1282,19 +1348,19 @@ function It(r, l) {
1282
1348
  )
1283
1349
  ]));
1284
1350
  }
1285
- const Gt = /* @__PURE__ */ m(St, [["render", It], ["__file", "/root/app/code/src/components/icons/IconTooling.vue"]]);
1351
+ const Zt = /* @__PURE__ */ g(St, [["render", It], ["__file", "/root/app/code/src/components/icons/IconTooling.vue"]]);
1286
1352
  export {
1287
- jt as BaseModal,
1288
- Vt as ButtonComponent,
1289
- Dt as CampaignCard,
1290
- Pt as CardComponents,
1353
+ Ft as BaseModal,
1354
+ jt as ButtonComponent,
1355
+ Vt as CampaignCard,
1356
+ Dt as CardComponents,
1291
1357
  Ut as IconCommunity,
1292
1358
  Ot as IconDocumentation,
1293
- Rt as IconEcosystem,
1294
- Zt as IconSupport,
1295
- Gt as IconTooling,
1359
+ Wt as IconEcosystem,
1360
+ Rt as IconSupport,
1361
+ Zt as IconTooling,
1296
1362
  Nt as InviteCollaboratorsModalV2,
1297
- Ft as NavigationSidebar,
1363
+ Pt as NavigationSidebar,
1298
1364
  Et as TextStyles
1299
1365
  };
1300
1366
  //# sourceMappingURL=fusion-component-library.es.js.map