@mittwald/flow-react-components 0.1.0-alpha.56 → 0.1.0-alpha.57

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.
Files changed (48) hide show
  1. package/dist/ButtonGroup.js +13 -13
  2. package/dist/{Checkbox-DBT4VBSr.js → Checkbox-gCtHl4pE.js} +8 -7
  3. package/dist/Checkbox.js +1 -1
  4. package/dist/{CheckboxButton-CoEvnLRt.js → CheckboxButton-CW6TfZFj.js} +1 -1
  5. package/dist/CheckboxButton.js +1 -1
  6. package/dist/CheckboxGroup.js +1 -1
  7. package/dist/ContextMenu.js +63 -22
  8. package/dist/IconCheckboxEmpty-BNFRkCm2.js +10 -0
  9. package/dist/IconCheckboxIndeterminate-Bsk1h92j.js +9 -0
  10. package/dist/Icons.js +34 -33
  11. package/dist/List.js +226 -221
  12. package/dist/deepHas-ocYuTM8M.js +7 -0
  13. package/dist/styles.css +1 -1
  14. package/dist/types/components/Button/Button.d.ts +1 -1
  15. package/dist/types/components/Content/Content.d.ts +1 -1
  16. package/dist/types/components/ContextMenu/ContextMenu.d.ts +2 -2
  17. package/dist/types/components/ContextMenu/components/ContextMenuItem/ContextMenuItem.d.ts +2 -2
  18. package/dist/types/components/ContextMenu/components/ContextMenuItem/ContextMenuItemContent.d.ts +6 -0
  19. package/dist/types/components/ContextMenu/stories/Default.stories.d.ts +2 -0
  20. package/dist/types/components/CopyButton/CopyButton.d.ts +1 -1
  21. package/dist/types/components/FieldError/FieldError.d.ts +1 -1
  22. package/dist/types/components/Header/Header.d.ts +1 -1
  23. package/dist/types/components/Icon/Icon.d.ts +1 -1
  24. package/dist/types/components/Image/Image.d.ts +1 -1
  25. package/dist/types/components/Initials/Initials.d.ts +1 -1
  26. package/dist/types/components/InlineAlert/InlineAlert.d.ts +1 -1
  27. package/dist/types/components/Label/Label.d.ts +1 -1
  28. package/dist/types/components/LayoutCard/LayoutCard.d.ts +1 -1
  29. package/dist/types/components/Link/Link.d.ts +1 -2
  30. package/dist/types/components/List/List.d.ts +2 -1
  31. package/dist/types/components/List/components/Item/Item.d.ts +1 -1
  32. package/dist/types/components/List/components/ShowNextBatchButton/ShowNextBatchButton.d.ts +5 -0
  33. package/dist/types/components/List/components/ShowNextBatchButton/index.d.ts +4 -0
  34. package/dist/types/components/List/model/List.d.ts +2 -2
  35. package/dist/types/components/List/model/loading/IncrementalLoader.d.ts +2 -3
  36. package/dist/types/components/List/model/pagination/BatchesController.d.ts +17 -0
  37. package/dist/types/components/List/model/pagination/types.d.ts +2 -2
  38. package/dist/types/components/List/model/types.d.ts +2 -2
  39. package/dist/types/components/RadioGroup/components/Radio/Radio.d.ts +1 -2
  40. package/dist/types/components/StatusBadge/StatusBadge.d.ts +1 -1
  41. package/dist/types/components/Switch/Switch.d.ts +1 -1
  42. package/dist/types/components/Text/Text.d.ts +1 -1
  43. package/dist/types/lib/types/props.d.ts +1 -3
  44. package/package.json +3 -3
  45. package/dist/IconCheckboxIndeterminate-B6FOeb87.js +0 -11
  46. package/dist/types/components/List/components/ShowMoreItemsButton/ShowMoreItemsButton.d.ts +0 -5
  47. package/dist/types/components/List/components/ShowMoreItemsButton/index.d.ts +0 -4
  48. package/dist/types/components/List/model/pagination/Pagination.d.ts +0 -17
@@ -1,25 +1,25 @@
1
1
  "use client"
2
2
  /* */
3
3
  import o from "react";
4
- import { C as m } from "./ClearPropsContext-CD1-9TZA.js";
5
- import { P as c } from "./PropsContextProvider-BsrVIv1a.js";
4
+ import { C as u } from "./ClearPropsContext-CD1-9TZA.js";
5
+ import { P as m } from "./PropsContextProvider-BsrVIv1a.js";
6
6
  import { u as l } from "./useProps-BEU8ldpP.js";
7
- import { d as i } from "./dynamic-ClpUSmEt.js";
8
- import b from "clsx";
9
- const f = "flow--button-group", d = "flow--button-group--abort", t = {
7
+ import { d } from "./dynamic-ClpUSmEt.js";
8
+ import i from "clsx";
9
+ const f = "flow--button-group", y = "flow--button-group--secondary", t = {
10
10
  buttonGroup: f,
11
- abort: d
12
- }, g = (r) => {
13
- const { children: e, className: s, ...a } = l("ButtonGroup", r), n = b(t.buttonGroup, s), p = {
11
+ secondary: y
12
+ }, N = (r) => {
13
+ const { children: e, className: s, ...n } = l("ButtonGroup", r), a = i(t.buttonGroup, s), c = {
14
14
  Button: {
15
- className: i(
16
- (u) => u.variant === "secondary" ? t.abort : void 0
15
+ className: d(
16
+ (p) => p.variant === "secondary" ? t.secondary : void 0
17
17
  )
18
18
  }
19
19
  };
20
- return /* @__PURE__ */ o.createElement(m, null, /* @__PURE__ */ o.createElement("div", { ...a, className: n, role: "group" }, /* @__PURE__ */ o.createElement(c, { props: p }, e)));
20
+ return /* @__PURE__ */ o.createElement(u, null, /* @__PURE__ */ o.createElement("div", { ...n, className: a, role: "group" }, /* @__PURE__ */ o.createElement(m, { props: c }, e)));
21
21
  };
22
22
  export {
23
- g as ButtonGroup,
24
- g as default
23
+ N as ButtonGroup,
24
+ N as default
25
25
  };
@@ -10,14 +10,15 @@ import "./propsContext-Dx7WKmmM.js";
10
10
  import "@react-aria/utils";
11
11
  import "remeda";
12
12
  import "@mittwald/react-tunnel";
13
- import { I as x, a as h, b } from "./IconCheckboxIndeterminate-B6FOeb87.js";
14
- const k = "flow--checkbox", C = "flow--checkbox--icon", o = {
15
- checkbox: k,
16
- icon: C
17
- }, F = (c) => {
13
+ import { I as x, a as h } from "./IconCheckboxEmpty-BNFRkCm2.js";
14
+ import { I as k } from "./IconCheckboxIndeterminate-Bsk1h92j.js";
15
+ const C = "flow--checkbox", b = "flow--checkbox--icon", o = {
16
+ checkbox: C,
17
+ icon: b
18
+ }, P = (c) => {
18
19
  const { children: t, className: r, ...m } = c, a = i(o.checkbox, r);
19
- return /* @__PURE__ */ e.createElement(p, null, /* @__PURE__ */ e.createElement(l.Checkbox, { ...m, className: a }, ({ isSelected: n, isIndeterminate: s }) => /* @__PURE__ */ e.createElement(e.Fragment, null, n ? /* @__PURE__ */ e.createElement(x, { className: o.icon }) : s ? /* @__PURE__ */ e.createElement(h, { className: o.icon }) : /* @__PURE__ */ e.createElement(b, { className: o.icon }), t)));
20
+ return /* @__PURE__ */ e.createElement(p, null, /* @__PURE__ */ e.createElement(l.Checkbox, { ...m, className: a }, ({ isSelected: n, isIndeterminate: s }) => /* @__PURE__ */ e.createElement(e.Fragment, null, n ? /* @__PURE__ */ e.createElement(x, { className: o.icon }) : s ? /* @__PURE__ */ e.createElement(k, { className: o.icon }) : /* @__PURE__ */ e.createElement(h, { className: o.icon }), t)));
20
21
  };
21
22
  export {
22
- F as C
23
+ P as C
23
24
  };
package/dist/Checkbox.js CHANGED
@@ -1,6 +1,6 @@
1
1
  "use client"
2
2
  /* */
3
- import { C as a } from "./Checkbox-DBT4VBSr.js";
3
+ import { C as a } from "./Checkbox-gCtHl4pE.js";
4
4
  export {
5
5
  a as Checkbox,
6
6
  a as default
@@ -6,7 +6,7 @@ import "./propsContext-Dx7WKmmM.js";
6
6
  import { P as m } from "./PropsContextProvider-BsrVIv1a.js";
7
7
  import "@react-aria/utils";
8
8
  import "remeda";
9
- import { C as b } from "./Checkbox-DBT4VBSr.js";
9
+ import { C as b } from "./Checkbox-gCtHl4pE.js";
10
10
  const p = "flow--checkbox-button", x = "flow--checkbox-button--content", h = "flow--checkbox-button--label", t = {
11
11
  checkboxButton: p,
12
12
  content: x,
@@ -1,6 +1,6 @@
1
1
  "use client"
2
2
  /* */
3
- import { C as t } from "./CheckboxButton-CoEvnLRt.js";
3
+ import { C as t } from "./CheckboxButton-CW6TfZFj.js";
4
4
  export {
5
5
  t as CheckboxButton,
6
6
  t as default
@@ -8,7 +8,7 @@ import { P as x } from "./PropsContextProvider-BsrVIv1a.js";
8
8
  import "@react-aria/utils";
9
9
  import "remeda";
10
10
  import { F as b } from "./FieldError-BDRDWTgn.js";
11
- import { C as h } from "./CheckboxButton-CoEvnLRt.js";
11
+ import { C as h } from "./CheckboxButton-CW6TfZFj.js";
12
12
  import { TunnelProvider as C, TunnelExit as t } from "@mittwald/react-tunnel";
13
13
  import { s as r } from "./FormField.module-DHK6nIcD.js";
14
14
  import { C as k } from "./ColumnLayout-FMONjI17.js";
@@ -1,28 +1,69 @@
1
1
  "use client"
2
2
  /* */
3
- import c from "react";
4
- import * as m from "react-aria-components";
5
- import { MenuTrigger as E } from "react-aria-components";
6
- import { f as u } from "./flowComponent-Dv5hKZam.js";
7
- import x from "clsx";
8
- const l = "flow--context-menu", i = "flow--context-menu--menu-list", s = {
9
- contextMenu: l,
3
+ import e from "react";
4
+ import * as l from "react-aria-components";
5
+ import { MenuTrigger as Q } from "react-aria-components";
6
+ import { f as p } from "./flowComponent-Dv5hKZam.js";
7
+ import f from "clsx";
8
+ import "./propsContext-Dx7WKmmM.js";
9
+ import { P as d } from "./PropsContextProvider-BsrVIv1a.js";
10
+ import "@react-aria/utils";
11
+ import "remeda";
12
+ import "@tabler/icons-react";
13
+ import "html-react-parser";
14
+ import "@mittwald/react-tunnel";
15
+ import { I as M, a as C } from "./IconCheckboxEmpty-BNFRkCm2.js";
16
+ import { I, a as E } from "./IconRadioOn-D9S2_D7W.js";
17
+ import { T as i } from "./Text-Dc6eN_n2.js";
18
+ import { d as h } from "./deepHas-ocYuTM8M.js";
19
+ import { W as g } from "./Wrap-DGT1h1o3.js";
20
+ const w = "flow--context-menu", N = "flow--context-menu--menu-list", u = {
21
+ contextMenu: w,
10
22
  "popover-slide": "flow--context-menu--popover-slide",
11
- menuList: i
12
- }, I = u("ContextMenu", (e) => {
13
- const { children: t, onAction: n, ...o } = e;
14
- return /* @__PURE__ */ c.createElement(m.Popover, { className: s.contextMenu, ...o }, /* @__PURE__ */ c.createElement(m.Menu, { className: s.menuList, onAction: n }, t));
15
- }), a = "flow--context-menu--context-menu-item", f = "flow--context-menu--context-menu-item--icon", M = "flow--context-menu--context-menu-item--text", p = {
16
- contextMenuItem: a,
17
- icon: f,
18
- text: M
19
- }, N = (e) => {
20
- const { children: t, className: n, ...o } = e, r = x(p.contextMenuItem, n);
21
- return /* @__PURE__ */ c.createElement(m.MenuItem, { ...o, className: r }, t);
23
+ menuList: N
24
+ }, D = p("ContextMenu", (c) => {
25
+ const {
26
+ children: t,
27
+ onAction: n,
28
+ selectionMode: o,
29
+ selectedKeys: m,
30
+ defaultSelectedKeys: s,
31
+ onSelectionChange: r,
32
+ ...x
33
+ } = c;
34
+ return /* @__PURE__ */ e.createElement(l.Popover, { className: u.contextMenu, ...x }, /* @__PURE__ */ e.createElement(
35
+ l.Menu,
36
+ {
37
+ className: u.menuList,
38
+ onAction: n,
39
+ selectionMode: o,
40
+ selectedKeys: m,
41
+ defaultSelectedKeys: s,
42
+ onSelectionChange: r
43
+ },
44
+ t
45
+ ));
46
+ }), T = "flow--context-menu--context-menu-item", y = "flow--context-menu--context-menu-item--icon", v = "flow--context-menu--context-menu-item--text", a = {
47
+ contextMenuItem: T,
48
+ icon: y,
49
+ text: v
50
+ }, P = (c) => {
51
+ const { selectionMode: t, isSelected: n, children: o } = c, m = {
52
+ Icon: {
53
+ className: a.icon
54
+ },
55
+ Text: {
56
+ className: a.text
57
+ }
58
+ }, s = t === "none" ? null : t === "single" && n ? /* @__PURE__ */ e.createElement(I, null) : t === "single" && !n ? /* @__PURE__ */ e.createElement(E, null) : t === "multiple" && n ? /* @__PURE__ */ e.createElement(M, null) : /* @__PURE__ */ e.createElement(C, null), r = h(o, i);
59
+ return /* @__PURE__ */ e.createElement(d, { props: m }, s, /* @__PURE__ */ e.createElement(g, { if: !r }, /* @__PURE__ */ e.createElement(i, null, o)));
60
+ }, F = (c) => {
61
+ const { children: t, className: n, ...o } = c, m = f(a.contextMenuItem, n);
62
+ return /* @__PURE__ */ e.createElement(l.MenuItem, { ...o, className: m }, (s) => /* @__PURE__ */ e.createElement(P, { ...s }, t));
22
63
  };
23
64
  export {
24
- I as ContextMenu,
25
- N as ContextMenuItem,
26
- E as ContextMenuTrigger,
27
- I as default
65
+ D as ContextMenu,
66
+ F as ContextMenuItem,
67
+ Q as ContextMenuTrigger,
68
+ D as default
28
69
  };
@@ -0,0 +1,10 @@
1
+ "use client"
2
+ /* */
3
+ import e from "react";
4
+ import { IconSquareCheckFilled as t, IconSquare as n } from "@tabler/icons-react";
5
+ import { I as o } from "./Icon-DK_xMxr-.js";
6
+ const l = (c) => /* @__PURE__ */ e.createElement(o, { ...c }, /* @__PURE__ */ e.createElement(t, null)), I = (c) => /* @__PURE__ */ e.createElement(o, { ...c }, /* @__PURE__ */ e.createElement(n, null));
7
+ export {
8
+ l as I,
9
+ I as a
10
+ };
@@ -0,0 +1,9 @@
1
+ "use client"
2
+ /* */
3
+ import e from "react";
4
+ import { IconSquareMinusFilled as t } from "@tabler/icons-react";
5
+ import { I as r } from "./Icon-DK_xMxr-.js";
6
+ const a = (o) => /* @__PURE__ */ e.createElement(r, { ...o }, /* @__PURE__ */ e.createElement(t, null));
7
+ export {
8
+ a as I
9
+ };
package/dist/Icons.js CHANGED
@@ -1,39 +1,40 @@
1
1
  "use client"
2
2
  /* */
3
3
  import e from "react";
4
- import { IconAppWindow as o, IconArrowLeft as l, IconClock as c, IconChevronLeft as a, IconCalendarCheck as r, IconBuilding as I, IconLayoutBoard as m, IconDatabase as s, IconCalendar as E, IconTrash as u, IconWorld as i, IconMail as p, IconExternalLink as f, IconFilter as h, IconEyeCancel as C, IconHome as d, IconList as x, IconPower as S, IconUsersGroup as L, IconBell as k, IconArchive as b, IconDice3 as g, IconSearch as D, IconListSearch as v, IconServer as $, IconSettings as w, IconEye as y, IconAdjustmentsHorizontal as H, IconDoor as A, IconHeadset as B, IconFileX as F, IconLayoutGrid as R } from "@tabler/icons-react";
4
+ import { IconAppWindow as o, IconArrowLeft as l, IconClock as c, IconChevronLeft as a, IconCalendarCheck as r, IconBuilding as I, IconLayoutBoard as m, IconDatabase as s, IconCalendar as E, IconTrash as u, IconWorld as i, IconMail as p, IconExternalLink as f, IconFilter as h, IconEyeCancel as x, IconHome as C, IconList as d, IconPower as S, IconUsersGroup as L, IconBell as k, IconArchive as b, IconDice3 as g, IconSearch as D, IconListSearch as v, IconServer as $, IconSettings as w, IconEye as y, IconAdjustmentsHorizontal as H, IconDoor as A, IconHeadset as B, IconFileX as F, IconLayoutGrid as R } from "@tabler/icons-react";
5
5
  import { I as t } from "./Icon-DK_xMxr-.js";
6
- import { I as xe } from "./IconCheck-DmRifITa.js";
7
- import { I as Le, b as ke, a as be } from "./IconCheckboxIndeterminate-B6FOeb87.js";
8
- import { I as De, a as ve } from "./IconChevronUp-DJu_PD8w.js";
9
- import { I as we } from "./IconChevronRight-T-spe-97.js";
10
- import { I as He } from "./IconClose-DIMx1m3Z.js";
11
- import { I as Be } from "./IconContextMenu-BF-N2Mtz.js";
12
- import { I as Re } from "./IconCopy-C1rPlvpD.js";
13
- import { I as Pe } from "./IconDanger-Dz5HIiAc.js";
14
- import { a as je, b as We, I as Ge } from "./IconSucceeded-IhwCzdOs.js";
15
- import { I as Ue, a as Ve, b as ze } from "./IconWarning-BiArksZS.js";
16
- import { I as Xe, a as qe } from "./IconPlus-BZwxakYk.js";
17
- import { a as Ke, I as Qe } from "./IconRadioOn-D9S2_D7W.js";
18
- const j = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(o, null)), W = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(l, null)), G = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(c, null)), O = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(a, null)), U = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(r, null)), V = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(I, null)), z = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(m, null)), N = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(s, null)), X = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(E, null)), q = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(u, null)), J = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(i, null)), K = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(p, null)), Q = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(f, null)), Y = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(h, null)), Z = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(C, null)), _ = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(d, null)), ee = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(x, null)), ne = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(S, null)), te = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(L, null)), ce = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(k, null)), oe = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(b, null)), le = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(g, null)), ae = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(D, null)), re = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(v, null)), Ie = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement($, null)), me = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(w, null)), se = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(y, null)), Ee = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(H, null)), ue = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(A, null)), ie = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(B, null)), pe = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(F, null)), fe = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(R, null)), he = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(c, null));
6
+ import { I as de } from "./IconCheck-DmRifITa.js";
7
+ import { I as Le, a as ke } from "./IconCheckboxEmpty-BNFRkCm2.js";
8
+ import { I as ge } from "./IconCheckboxIndeterminate-Bsk1h92j.js";
9
+ import { I as ve, a as $e } from "./IconChevronUp-DJu_PD8w.js";
10
+ import { I as ye } from "./IconChevronRight-T-spe-97.js";
11
+ import { I as Ae } from "./IconClose-DIMx1m3Z.js";
12
+ import { I as Fe } from "./IconContextMenu-BF-N2Mtz.js";
13
+ import { I as Me } from "./IconCopy-C1rPlvpD.js";
14
+ import { I as Te } from "./IconDanger-Dz5HIiAc.js";
15
+ import { a as We, b as Ge, I as Oe } from "./IconSucceeded-IhwCzdOs.js";
16
+ import { I as Ve, a as ze, b as Ne } from "./IconWarning-BiArksZS.js";
17
+ import { I as qe, a as Je } from "./IconPlus-BZwxakYk.js";
18
+ import { a as Qe, I as Ye } from "./IconRadioOn-D9S2_D7W.js";
19
+ const j = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(o, null)), W = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(l, null)), G = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(c, null)), O = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(a, null)), U = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(r, null)), V = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(I, null)), z = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(m, null)), N = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(s, null)), X = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(E, null)), q = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(u, null)), J = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(i, null)), K = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(p, null)), Q = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(f, null)), Y = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(h, null)), Z = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(x, null)), _ = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(C, null)), ee = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(d, null)), ne = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(S, null)), te = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(L, null)), ce = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(k, null)), oe = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(b, null)), le = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(g, null)), ae = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(D, null)), re = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(v, null)), Ie = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement($, null)), me = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(w, null)), se = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(y, null)), Ee = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(H, null)), ue = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(A, null)), ie = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(B, null)), pe = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(F, null)), fe = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(R, null)), he = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(c, null));
19
20
  export {
20
21
  j as IconApp,
21
22
  W as IconBackLink,
22
23
  G as IconBackup,
23
- xe as IconCheck,
24
+ de as IconCheck,
24
25
  Le as IconCheckboxChecked,
25
26
  ke as IconCheckboxEmpty,
26
- be as IconCheckboxIndeterminate,
27
- De as IconChevronDown,
27
+ ge as IconCheckboxIndeterminate,
28
+ ve as IconChevronDown,
28
29
  O as IconChevronLeft,
29
- we as IconChevronRight,
30
- ve as IconChevronUp,
31
- He as IconClose,
32
- Be as IconContextMenu,
33
- Re as IconCopy,
30
+ ye as IconChevronRight,
31
+ $e as IconChevronUp,
32
+ Ae as IconClose,
33
+ Fe as IconContextMenu,
34
+ Me as IconCopy,
34
35
  U as IconCronjob,
35
36
  V as IconCustomer,
36
- Pe as IconDanger,
37
+ Te as IconDanger,
37
38
  z as IconDashboard,
38
39
  N as IconDatabase,
39
40
  X as IconDate,
@@ -41,21 +42,21 @@ export {
41
42
  J as IconDomain,
42
43
  K as IconEmail,
43
44
  Q as IconExternalLink,
44
- je as IconFailed,
45
+ We as IconFailed,
45
46
  Y as IconFilter,
46
47
  Z as IconHide,
47
48
  _ as IconHome,
48
- Ue as IconInfo,
49
+ Ve as IconInfo,
49
50
  ee as IconListView,
50
51
  ne as IconLogout,
51
52
  te as IconMember,
52
- Xe as IconMinus,
53
+ qe as IconMinus,
53
54
  ce as IconNotification,
54
- We as IconPending,
55
- qe as IconPlus,
55
+ Ge as IconPending,
56
+ Je as IconPlus,
56
57
  oe as IconProject,
57
- Ke as IconRadioOff,
58
- Qe as IconRadioOn,
58
+ Qe as IconRadioOff,
59
+ Ye as IconRadioOn,
59
60
  le as IconRandom,
60
61
  ae as IconSearch,
61
62
  re as IconSearchEngine,
@@ -64,11 +65,11 @@ export {
64
65
  se as IconShow,
65
66
  Ee as IconSorting,
66
67
  ue as IconSshSftp,
67
- Ge as IconSucceeded,
68
- Ve as IconSuccess,
68
+ Oe as IconSucceeded,
69
+ ze as IconSuccess,
69
70
  ie as IconSupport,
70
71
  pe as IconTerminate,
71
72
  fe as IconTileView,
72
73
  he as IconTime,
73
- ze as IconWarning
74
+ Ne as IconWarning
74
75
  };