prometeo-design-system 4.4.0 → 4.4.3

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,10 +1,14 @@
1
1
  import { j as a } from "./jsx-runtime-GkKLlHH4.js";
2
- import { c as s } from "./cn-B6yFEsav.js";
3
- import { memo as k, forwardRef as g, useId as v, useRef as C, useCallback as y } from "react";
4
- import { Check as j } from "./Icons/Check.es.js";
5
- const i = g(
6
- ({ className: l, disabled: e, onChange: d, value: u, ...t }, r) => {
7
- const f = v(), o = C(null), p = `
2
+ import { c as C } from "./cn-B6yFEsav.js";
3
+ import { memo as y, forwardRef as j, useId as I, useRef as z, useState as N, useImperativeHandle as w } from "react";
4
+ import { Check as R } from "./Icons/Check.es.js";
5
+ const l = j(
6
+ ({ className: c, disabled: e, onChange: o, value: d, checked: n, ...f }, u) => {
7
+ const p = I(), s = z(null), i = n !== void 0, [h, m] = N(!1), t = i ? n : h;
8
+ w(u, () => s.current, []);
9
+ const x = (r) => {
10
+ o && o(r), i || m(r.target.checked);
11
+ }, b = `
8
12
  after:content-[""]
9
13
  after:absolute
10
14
  after:top-1/2
@@ -17,68 +21,64 @@ const i = g(
17
21
  after:bg-neutral-700
18
22
  after:-z-10
19
23
  after:opacity-0
20
- ${!e && "hover:after:opacity-100"}
24
+ ${!e && "aria-checked:hover:after:opacity-100"}
21
25
  after:transition-all
22
26
  after:duration-200
23
27
  after:ease-in-out
24
28
  after:pointer-events-none
25
- ${!e && "aria-checked:hover:bg-primary-default-hover hover:border-primary-default-hover"}
29
+ ${!e && `aria-checked:hover:bg-primary-default-hover
30
+ hover:border-primary-default-hover`}
26
31
  transition-all
27
32
  duration-200
28
33
  ease-in-out
29
- `, h = "hover:#hover-span:opacity-100", x = "bg-primary-light", m = `
34
+ `, g = "bg-primary-light", v = `
30
35
  bg-transparent
31
36
  border-[2px]
32
37
  aria-checked:border-none
33
38
  border-neutral-medium-default
34
39
  hover:border-neutral-medium-hover
35
- `, b = {
36
- selected: "bg-primary-default-disabled!",
37
- default: "border-neutral-default-disabled "
38
- }, c = y(() => {
39
- if (o.current)
40
- return o.current.click();
41
- }, []);
40
+ transition-all
41
+ duration-200
42
+ ease-in-out
43
+ `, k = {
44
+ selected: "bg-primary-default-disabled",
45
+ default: "border-neutral-default-disabled"
46
+ };
42
47
  return /* @__PURE__ */ a.jsx(
43
48
  "div",
44
49
  {
45
- id: "checkbox-container",
46
50
  style: {
47
51
  width: "24px",
48
52
  height: "24px",
49
53
  position: "relative",
50
54
  zIndex: 10
51
55
  },
52
- className: "grid place-items-center p-2",
53
- onClick: c,
56
+ className: "grid place-items-center p-2 ",
54
57
  draggable: !1,
55
58
  children: /* @__PURE__ */ a.jsxs(
56
59
  "div",
57
60
  {
58
- id: "checkbox-box",
59
- "aria-checked": t.checked,
60
- className: s(
61
+ "aria-checked": t,
62
+ className: C(
61
63
  "grid place-items-center absolute size-[18px] rounded-[2px]",
62
- p,
63
- m,
64
- t.checked ? x : "",
65
- e && b[t.checked ? "selected" : "default"],
66
- l
64
+ b,
65
+ v,
66
+ t ? g : "",
67
+ e && k[t ? "selected" : "default"],
68
+ c
67
69
  ),
68
- onClick: c,
69
70
  draggable: !1,
70
71
  children: [
71
72
  /* @__PURE__ */ a.jsx(
72
73
  "input",
73
74
  {
74
75
  type: "checkbox",
75
- id: f,
76
- ref: (n) => {
77
- o.current = n, typeof r == "function" ? r(n) : r && (r.current = n);
76
+ id: p,
77
+ ref: (r) => {
78
+ s.current = r;
78
79
  },
79
- onChange: d,
80
- value: u,
81
- className: s(h),
80
+ onChange: x,
81
+ value: d,
82
82
  disabled: e,
83
83
  style: {
84
84
  position: "absolute",
@@ -91,11 +91,11 @@ const i = g(
91
91
  opacity: 0,
92
92
  zIndex: 150
93
93
  },
94
- ...t
94
+ ...f
95
95
  }
96
96
  ),
97
- t.checked && /* @__PURE__ */ a.jsx(
98
- j,
97
+ t && /* @__PURE__ */ a.jsx(
98
+ R,
99
99
  {
100
100
  size: 18,
101
101
  className: `absolute ${e ? "icon-neutral-strong-disabled" : ""} pointer-events-none icon-neutral-strong-default`
@@ -108,8 +108,8 @@ const i = g(
108
108
  );
109
109
  }
110
110
  );
111
- i.displayName = "CheckBox";
112
- const $ = k(i);
111
+ l.displayName = "CheckBox";
112
+ const E = y(l);
113
113
  export {
114
- $ as default
114
+ E as default
115
115
  };
package/dist/Chip.d.ts ADDED
@@ -0,0 +1,6 @@
1
+ export * from './exports/Chip'
2
+ export {}
3
+ import PrometeoDesignSystem from './exports/Chip'
4
+ export default PrometeoDesignSystem
5
+ export * from './exports/Chip'
6
+ export {}
@@ -0,0 +1,55 @@
1
+ import { j as t } from "./jsx-runtime-GkKLlHH4.js";
2
+ import { c as r } from "./cn-B6yFEsav.js";
3
+ import { memo as f } from "react";
4
+ import { Close as p } from "./Icons/Close.es.js";
5
+ const m = {
6
+ default: {
7
+ container: "text-neutral-default-default border-neutral-default-default ",
8
+ icon: ""
9
+ },
10
+ error: {
11
+ container: "",
12
+ icon: ""
13
+ },
14
+ success: {
15
+ container: "",
16
+ icon: ""
17
+ }
18
+ }, l = {
19
+ icon: " text-neutral-default-disabled",
20
+ container: " border-neutral-strong-default text-neutral-default-disabled"
21
+ }, i = ({ id: a, label: c, onRemove: n, className: u, disabled: e, variant: d = "default", tabIndex: o }) => /* @__PURE__ */ t.jsxs(
22
+ "div",
23
+ {
24
+ tabIndex: o,
25
+ className: r(
26
+ "inline-flex max-w-[calc(50%-0.25rem)] items-center gap-1 px-2 py-1 bg-inherit text-xs rounded-lg border h-[30px]",
27
+ m[d].container,
28
+ e && l.container
29
+ ),
30
+ children: [
31
+ /* @__PURE__ */ t.jsx("span", { className: "truncate w-max ", children: c }),
32
+ n && /* @__PURE__ */ t.jsx(
33
+ "button",
34
+ {
35
+ onMouseDown: (s) => {
36
+ e || (s.stopPropagation(), s.preventDefault(), a && n?.(a));
37
+ },
38
+ className: r(
39
+ "shrink-0 p-0.5 transition-all duration-200 hover:text-neutral-default-hover cursor-pointer z-50 text-neutral-default-default hover:scale-105",
40
+ e && "cursor-default hover:scale-100",
41
+ u
42
+ ),
43
+ type: "button",
44
+ tabIndex: o,
45
+ children: /* @__PURE__ */ t.jsx(p, { size: 18, className: r(e && l.icon) })
46
+ }
47
+ )
48
+ ]
49
+ }
50
+ );
51
+ i.displayName = "Chip";
52
+ const C = f(i);
53
+ export {
54
+ C as default
55
+ };
package/dist/Header.es.js CHANGED
@@ -1,32 +1,34 @@
1
- import { j as a } from "./jsx-runtime-GkKLlHH4.js";
2
- import { c as l } from "./cn-B6yFEsav.js";
1
+ import { j as s } from "./jsx-runtime-GkKLlHH4.js";
2
+ import { c as a } from "./cn-B6yFEsav.js";
3
3
  import { motion as n } from "framer-motion";
4
- import { memo as d } from "react";
5
- const c = ({ title: e, subtitle: t, children: i, className: s, subtitleClassName: m, titleClassName: r }) => /* @__PURE__ */ a.jsx(
6
- "header",
4
+ import { memo as f } from "react";
5
+ const c = ({ title: e, subtitle: t, children: i, className: r, subtitleClassName: m, titleClassName: d, mainActionSlot: l }) => /* @__PURE__ */ s.jsxs(
6
+ n.header,
7
7
  {
8
- className: l(
9
- "h-16 flex items-center px-4 sm:h-20 md:h-24 md:px-6 lg:h-28 xl:h-32 2xl:h-36",
10
- s
8
+ initial: { opacity: 0, y: -10 },
9
+ animate: { opacity: 1, y: 0 },
10
+ transition: { duration: 0.6, ease: "easeOut" },
11
+ className: a(
12
+ "h-16 flex items-center px-4 sm:h-20 md:h-24 md:px-6 lg:h-28 xl:h-32 2xl:h-36 overflow-hidden",
13
+ "flex justify-between items-center w-full",
14
+ r
11
15
  ),
12
- children: /* @__PURE__ */ a.jsxs(
13
- n.div,
14
- {
15
- initial: { opacity: 0, y: -10 },
16
- animate: { opacity: 1, y: 0 },
17
- transition: { duration: 0.6, ease: "easeOut" },
18
- className: "flex justify-between items-center w-full",
19
- children: [
20
- /* @__PURE__ */ a.jsxs("div", { className: "flex flex-col leading-6", children: [
21
- t && /* @__PURE__ */ a.jsx("h3", { className: l(" prometeo-fonts-body-medium text-neutral-medium-default ", m), children: t }),
22
- e && /* @__PURE__ */ a.jsx("h1", { className: l("prometeo-fonts-headline-small text-neutral-strong-default", r), children: e })
23
- ] }),
24
- i && /* @__PURE__ */ a.jsx("div", { className: "flex gap-4", children: i })
25
- ]
26
- }
27
- )
16
+ children: [
17
+ /* @__PURE__ */ s.jsxs("div", { className: a(
18
+ "flex items-center md:items-start md:flex-col leading-6 h-full justify-center min-w-max",
19
+ l && "justify-start"
20
+ ), children: [
21
+ l && /* @__PURE__ */ s.jsx("div", { children: typeof l == "function" ? l() : l }),
22
+ /* @__PURE__ */ s.jsxs("div", { className: "flex flex-col leading-6 justify-center", children: [
23
+ t && /* @__PURE__ */ s.jsx("h3", { className: a(" prometeo-fonts-body-medium text-neutral-medium-default ", m), children: t }),
24
+ e && /* @__PURE__ */ s.jsx("h1", { className: a("prometeo-fonts-headline-small text-neutral-strong-default", d), children: e })
25
+ ] })
26
+ ] }),
27
+ i && /* @__PURE__ */ s.jsx("div", { className: "bg-red-400 px-2", children: i })
28
+ ]
28
29
  }
29
- ), x = d(c, (e, t) => e.title !== t.title || e.subtitle !== t.subtitle || e.className !== t.className ? !1 : e.children !== t.children ? !e.children && !t.children : !0);
30
+ ), u = f(c, (e, t) => e.title !== t.title || e.subtitle !== t.subtitle || e.className !== t.className ? !1 : e.children !== t.children ? !e.children && !t.children : !0);
31
+ u.displayName = "Header";
30
32
  export {
31
- x as default
33
+ u as default
32
34
  };
@@ -1,9 +1,18 @@
1
- import { j as r } from "../jsx-runtime-GkKLlHH4.js";
2
- import { m as o } from "../iconUtils-D0lVAgGT.js";
3
- const l = o(({ size: s = 24, className: t, ...e }) => /* @__PURE__ */ r.jsxs("svg", { ...e, width: s, height: s, viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", className: t, children: [
4
- /* @__PURE__ */ r.jsx("mask", { id: "mask0_2325_2814", style: { maskType: "alpha" }, maskUnits: "userSpaceOnUse", x: "0", y: "0", width: "20", height: "20", children: /* @__PURE__ */ r.jsx("rect", { width: "20", height: "20", fill: "currentColor" }) }),
5
- /* @__PURE__ */ r.jsx("g", { mask: "url(#mask0_2325_2814)", children: /* @__PURE__ */ r.jsx("path", { d: "M10 15L5 9.99999L6.16667 8.83332L9.16667 11.8333V4.16666H10.8333V11.8333L13.8333 8.83332L15 9.99999L10 15Z", fill: "currentColor" }) })
6
- ] }));
1
+ import { j as o } from "../jsx-runtime-GkKLlHH4.js";
2
+ import { m as s } from "../iconUtils-D0lVAgGT.js";
3
+ const e = s(({ size: r = 24, className: t, ...m }) => /* @__PURE__ */ o.jsx(
4
+ "svg",
5
+ {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ ...m,
8
+ viewBox: "0 -960 960 960",
9
+ width: r,
10
+ height: r,
11
+ fill: "currentColor",
12
+ className: t,
13
+ children: /* @__PURE__ */ o.jsx("path", { d: "M480-120 200-400l80-80 160 160v-400h80v400l160-160 80 80-280 280Z" })
14
+ }
15
+ ));
7
16
  export {
8
- l as ArrowDownward
17
+ e as ArrowDownward
9
18
  };
@@ -1,9 +1,18 @@
1
- import { j as r } from "../jsx-runtime-GkKLlHH4.js";
2
- import { m as i } from "../iconUtils-D0lVAgGT.js";
3
- const l = i(({ size: s = 24, className: t, ...e }) => /* @__PURE__ */ r.jsxs("svg", { ...e, width: s, height: s, viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", className: t, children: [
4
- /* @__PURE__ */ r.jsx("mask", { id: "mask0_2325_2813", style: { maskType: "alpha" }, maskUnits: "userSpaceOnUse", x: "0", y: "0", width: "20", height: "20", children: /* @__PURE__ */ r.jsx("rect", { width: "20", height: "20", fill: "currentColor" }) }),
5
- /* @__PURE__ */ r.jsx("g", { mask: "url(#mask0_2325_2813)", children: /* @__PURE__ */ r.jsx("path", { d: "M9.16667 15V7.33332L6.16667 10.3333L5 9.16666L10 4.16666L15 9.16666L13.8333 10.3333L10.8333 7.33332V15H9.16667Z", fill: "currentColor" }) })
6
- ] }));
1
+ import { j as o } from "../jsx-runtime-GkKLlHH4.js";
2
+ import { m as s } from "../iconUtils-D0lVAgGT.js";
3
+ const h = s(({ size: r = 24, className: t, ...m }) => /* @__PURE__ */ o.jsx(
4
+ "svg",
5
+ {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ ...m,
8
+ viewBox: "0 -960 960 960",
9
+ width: r,
10
+ height: r,
11
+ fill: "currentColor",
12
+ className: t,
13
+ children: /* @__PURE__ */ o.jsx("path", { d: "M480-840 200-560l80 80 160-160v400h80v-400l160 160 80-80-280-280Z" })
14
+ }
15
+ ));
7
16
  export {
8
- l as ArrowUpward
17
+ h as ArrowUpward
9
18
  };
@@ -0,0 +1,6 @@
1
+ export * from './components/DragIndicator'
2
+ export {}
3
+ import PrometeoDesignSystem from './components/DragIndicator'
4
+ export default PrometeoDesignSystem
5
+ export * from './components/DragIndicator'
6
+ export {}
@@ -0,0 +1,19 @@
1
+ import { j as T } from "../jsx-runtime-GkKLlHH4.js";
2
+ import { m as o } from "../iconUtils-D0lVAgGT.js";
3
+ const e = o(({ size: q = 24, className: r, ...t }) => /* @__PURE__ */ T.jsx(
4
+ "svg",
5
+ {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ ...t,
8
+ viewBox: "0 -960 960 960",
9
+ width: q,
10
+ height: q,
11
+ fill: "currentColor",
12
+ className: r,
13
+ children: /* @__PURE__ */ T.jsx("path", { d: "M360-160q-33 0-56.5-23.5T280-240q0-33 23.5-56.5T360-320q33 0 56.5 23.5T440-240q0 33-23.5 56.5T360-160Zm240 0q-33 0-56.5-23.5T520-240q0-33 23.5-56.5T600-320q33 0 56.5 23.5T680-240q0 33-23.5 56.5T600-160ZM360-400q-33 0-56.5-23.5T280-480q0-33 23.5-56.5T360-560q33 0 56.5 23.5T440-480q0 33-23.5 56.5T360-400Zm240 0q-33 0-56.5-23.5T520-480q0-33 23.5-56.5T600-560q33 0 56.5 23.5T680-480q0 33-23.5 56.5T600-400ZM360-640q-33 0-56.5-23.5T280-720q0-33 23.5-56.5T360-800q33 0 56.5 23.5T440-720q0 33-23.5 56.5T360-640Zm240 0q-33 0-56.5-23.5T520-720q0-33 23.5-56.5T600-800q33 0 56.5 23.5T680-720q0 33-23.5 56.5T600-640Z" })
14
+ }
15
+ ));
16
+ export {
17
+ e as DragIndicator,
18
+ e as default
19
+ };
@@ -0,0 +1,4 @@
1
+ import { IconProps } from '../iconUtils';
2
+ export type { IconProps };
3
+ export declare const DragIndicator: import('react').MemoExoticComponent<(props: IconProps) => import('react').ReactElement>;
4
+ export default DragIndicator;
@@ -65,5 +65,6 @@ export { Reassignment } from './components/Reassignment';
65
65
  export { ReassignmentFill } from './components/ReassignmentFill';
66
66
  export { Send } from './components/Send';
67
67
  export { StarFill } from './components/StarFill';
68
+ export { DragIndicator } from './components/DragIndicator';
68
69
  export type { IconProps } from './iconUtils';
69
70
  export type { IconComponent } from './types';
@@ -65,6 +65,7 @@ import { Reassignment } from './components/Reassignment';
65
65
  import { ReassignmentFill } from './components/ReassignmentFill';
66
66
  import { Send } from './components/Send';
67
67
  import { StarFill } from './components/StarFill';
68
+ import { DragIndicator } from './components/DragIndicator';
68
69
  export type IconsMap = {
69
70
  Ticket: typeof Ticket;
70
71
  Home: typeof Home;
@@ -133,6 +134,7 @@ export type IconsMap = {
133
134
  Send: typeof Send;
134
135
  StarFill: typeof StarFill;
135
136
  UserAvatar: typeof UserAvatar;
137
+ DragIndicator: typeof DragIndicator;
136
138
  };
137
139
  export type IconName = keyof IconsMap;
138
140
  export type IconComponent = IconsMap[IconName];
package/dist/Icons.es.js CHANGED
@@ -2,21 +2,21 @@ import { Ticket as e } from "./Icons/Ticket.es.js";
2
2
  import { Home as p } from "./Icons/Home.es.js";
3
3
  import { Boards as f } from "./Icons/Boards.es.js";
4
4
  import { Notifications as a } from "./Icons/Notifications.es.js";
5
- import { Help as i } from "./Icons/Help.es.js";
5
+ import { Help as l } from "./Icons/Help.es.js";
6
6
  import { Settings as d } from "./Icons/Settings.es.js";
7
- import { CrevronLeft as C } from "./Icons/CrevronLeft.es.js";
7
+ import { CrevronLeft as c } from "./Icons/CrevronLeft.es.js";
8
8
  import { CrevronRight as F } from "./Icons/CrevronRight.es.js";
9
9
  import { ArrowLeft as h } from "./Icons/ArrowLeft.es.js";
10
- import { ArrowDownward as S } from "./Icons/ArrowDownward.es.js";
10
+ import { ArrowDownward as g } from "./Icons/ArrowDownward.es.js";
11
11
  import { ArrowUpward as k } from "./Icons/ArrowUpward.es.js";
12
12
  import { Shared as U } from "./Icons/Shared.es.js";
13
- import { ChevronDown as v } from "./Icons/ChevronDown.es.js";
13
+ import { ChevronDown as D } from "./Icons/ChevronDown.es.js";
14
14
  import { Collapse as E } from "./Icons/Collapse.es.js";
15
15
  import { Calendar as T } from "./Icons/Calendar.es.js";
16
16
  import { Close as H } from "./Icons/Close.es.js";
17
- import { UserPerson as V } from "./Icons/UserPerson.es.js";
18
- import { UserAvatar as q } from "./Icons/UserAvatar.es.js";
19
- import { Logout as I } from "./Icons/Logout.es.js";
17
+ import { UserPerson as M } from "./Icons/UserPerson.es.js";
18
+ import { UserAvatar as b } from "./Icons/UserAvatar.es.js";
19
+ import { Logout as B } from "./Icons/Logout.es.js";
20
20
  import { ArrowUpDown as P } from "./Icons/ArrowUpDown.es.js";
21
21
  import { Filter as W } from "./Icons/Filter.es.js";
22
22
  import { Search as z } from "./Icons/Search.es.js";
@@ -29,21 +29,21 @@ import { Copy as er } from "./Icons/Copy.es.js";
29
29
  import { FaLock as pr } from "./Icons/FaLock.es.js";
30
30
  import { AccountCircle as fr } from "./Icons/AccountCircle.es.js";
31
31
  import { UserAdd as ar } from "./Icons/UserAdd.es.js";
32
- import { AttachFile as ir } from "./Icons/AttachFile.es.js";
32
+ import { AttachFile as lr } from "./Icons/AttachFile.es.js";
33
33
  import { HistoryActivity as dr } from "./Icons/HistoryActivity.es.js";
34
- import { MessageSquare as Cr } from "./Icons/MessageSquare.es.js";
34
+ import { MessageSquare as cr } from "./Icons/MessageSquare.es.js";
35
35
  import { CloseNavBarDesktop as Fr } from "./Icons/CloseNavBarDesktop.es.js";
36
36
  import { EyeVisibility as hr } from "./Icons/EyeVisibility.es.js";
37
- import { EyeVisibilityOff as Sr } from "./Icons/EyeVisibilityOff.es.js";
37
+ import { EyeVisibilityOff as gr } from "./Icons/EyeVisibilityOff.es.js";
38
38
  import { Check as kr } from "./Icons/Check.es.js";
39
39
  import { Info as Ur } from "./Icons/Info.es.js";
40
- import { Error as vr } from "./Icons/Error.es.js";
40
+ import { Error as Dr } from "./Icons/Error.es.js";
41
41
  import { TicketFilled as Er } from "./Icons/TicketFilled.es.js";
42
42
  import { UploadCloud as Tr } from "./Icons/UploadCloud.es.js";
43
43
  import { Clock as Hr } from "./Icons/Clock.es.js";
44
- import { Pause as Vr } from "./Icons/Pause.es.js";
45
- import { FastForward as qr } from "./Icons/FastForward.es.js";
46
- import { Trash as Ir } from "./Icons/Trash.es.js";
44
+ import { Pause as Mr } from "./Icons/Pause.es.js";
45
+ import { FastForward as br } from "./Icons/FastForward.es.js";
46
+ import { Trash as Br } from "./Icons/Trash.es.js";
47
47
  import { Sort as Pr } from "./Icons/Sort.es.js";
48
48
  import { Cancel as Wr } from "./Icons/Cancel.es.js";
49
49
  import { CheckCircle as zr } from "./Icons/CheckCircle.es.js";
@@ -56,63 +56,65 @@ import { Download as eo } from "./Icons/Download.es.js";
56
56
  import { Reload as po } from "./Icons/Reload.es.js";
57
57
  import { Image as fo } from "./Icons/Image.es.js";
58
58
  import { DocumentFill as ao } from "./Icons/DocumentFill.es.js";
59
- import { Company as io } from "./Icons/Company.es.js";
59
+ import { Company as lo } from "./Icons/Company.es.js";
60
60
  import { EditFill as no } from "./Icons/EditFill.es.js";
61
- import { TrashFill as co } from "./Icons/TrashFill.es.js";
61
+ import { TrashFill as Co } from "./Icons/TrashFill.es.js";
62
62
  import { MessageSquareFill as Ao } from "./Icons/MessageSquareFill.es.js";
63
63
  import { UserAddFill as wo } from "./Icons/UserAddFill.es.js";
64
- import { Reassignment as go } from "./Icons/Reassignment.es.js";
64
+ import { Reassignment as So } from "./Icons/Reassignment.es.js";
65
65
  import { ReassignmentFill as yo } from "./Icons/ReassignmentFill.es.js";
66
66
  import { Send as uo } from "./Icons/Send.es.js";
67
- import { StarFill as Do } from "./Icons/StarFill.es.js";
67
+ import { StarFill as vo } from "./Icons/StarFill.es.js";
68
+ import { DragIndicator as Lo } from "./Icons/DragIndicator.es.js";
68
69
  export {
69
70
  fr as AccountCircle,
70
71
  Y as Add,
71
- S as ArrowDownward,
72
+ g as ArrowDownward,
72
73
  h as ArrowLeft,
73
74
  P as ArrowUpDown,
74
75
  k as ArrowUpward,
75
- ir as AttachFile,
76
+ lr as AttachFile,
76
77
  f as Boards,
77
78
  T as Calendar,
78
79
  Wr as Cancel,
79
80
  kr as Check,
80
81
  zr as CheckCircle,
81
82
  Qr as CheckList,
82
- v as ChevronDown,
83
+ D as ChevronDown,
83
84
  Hr as Clock,
84
85
  H as Close,
85
86
  Fr as CloseNavBarDesktop,
86
87
  E as Collapse,
87
- io as Company,
88
+ lo as Company,
88
89
  er as Copy,
89
- C as CrevronLeft,
90
+ c as CrevronLeft,
90
91
  F as CrevronRight,
91
92
  ao as DocumentFill,
92
93
  eo as Download,
94
+ Lo as DragIndicator,
93
95
  _ as Edit,
94
96
  no as EditFill,
95
97
  ro as Email,
96
- vr as Error,
98
+ Dr as Error,
97
99
  hr as EyeVisibility,
98
- Sr as EyeVisibilityOff,
100
+ gr as EyeVisibilityOff,
99
101
  pr as FaLock,
100
- qr as FastForward,
102
+ br as FastForward,
101
103
  _r as File,
102
104
  W as Filter,
103
105
  Jr as FormatColorText,
104
- i as Help,
106
+ l as Help,
105
107
  dr as HistoryActivity,
106
108
  p as Home,
107
109
  fo as Image,
108
110
  Ur as Info,
109
- I as Logout,
110
- Cr as MessageSquare,
111
+ B as Logout,
112
+ cr as MessageSquare,
111
113
  Ao as MessageSquareFill,
112
114
  Q as MoreVert,
113
115
  a as Notifications,
114
- Vr as Pause,
115
- go as Reassignment,
116
+ Mr as Pause,
117
+ So as Reassignment,
116
118
  yo as ReassignmentFill,
117
119
  po as Reload,
118
120
  z as Search,
@@ -120,17 +122,17 @@ export {
120
122
  d as Settings,
121
123
  U as Shared,
122
124
  Pr as Sort,
123
- Do as StarFill,
125
+ vo as StarFill,
124
126
  J as Stars,
125
127
  e as Ticket,
126
128
  Er as TicketFilled,
127
- Ir as Trash,
128
- co as TrashFill,
129
+ Br as Trash,
130
+ Co as TrashFill,
129
131
  rr as Upload,
130
132
  Tr as UploadCloud,
131
133
  ar as UserAdd,
132
134
  wo as UserAddFill,
133
- q as UserAvatar,
134
- V as UserPerson,
135
+ b as UserAvatar,
136
+ M as UserPerson,
135
137
  Yr as WhatsApp
136
138
  };