@konstructio/ui 0.1.2-alpha.67 → 0.1.2-alpha.69

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 (47) hide show
  1. package/dist/AdditionalOptions-C2FDVZhu.js +45 -0
  2. package/dist/Modal-BGcucTHv.js +120 -0
  3. package/dist/assets/icons/components/CloudLockOutline.d.ts +3 -0
  4. package/dist/assets/icons/components/CloudLockOutline.js +28 -0
  5. package/dist/assets/icons/components/index.d.ts +1 -0
  6. package/dist/assets/icons/components/index.js +106 -104
  7. package/dist/assets/icons/index.js +106 -104
  8. package/dist/components/ButtonGroup/ButtonGroup.js +65 -61
  9. package/dist/components/ButtonGroup/ButtonGroup.types.d.ts +6 -0
  10. package/dist/components/ButtonGroup/components/ButtonGroupItem/ButtonGroupItem.js +32 -30
  11. package/dist/components/ButtonGroup/components/ButtonGroupItem/ButtonGroupItem.types.d.ts +3 -1
  12. package/dist/components/ButtonGroup/components/ButtonGroupItem/ButtonGroupItem.variants.d.ts +4 -1
  13. package/dist/components/ButtonGroup/components/ButtonGroupItem/ButtonGroupItem.variants.js +37 -17
  14. package/dist/components/DateRangePicker/components/CalendarPanel/components/IndependentModeCalendar/IndependentModeCalendar.js +1 -1
  15. package/dist/components/DateRangePicker/components/CalendarPanel/components/TogetherModeCalendar/TogetherModeCalendar.js +1 -1
  16. package/dist/components/Modal/Modal.js +1 -1
  17. package/dist/components/Modal/Modal.types.d.ts +7 -2
  18. package/dist/components/Modal/components/Wrapper/Wrapper.js +3 -2
  19. package/dist/components/Modal/components/Wrapper/Wrapper.types.d.ts +3 -0
  20. package/dist/components/Modal/components/Wrapper/Wrapper.variants.js +2 -2
  21. package/dist/components/Modal/components/index.js +1 -1
  22. package/dist/components/Select/Select.d.ts +1 -0
  23. package/dist/components/Select/Select.js +65 -42
  24. package/dist/components/Select/Select.types.d.ts +18 -2
  25. package/dist/components/Select/Select.variants.js +1 -1
  26. package/dist/components/Select/components/AdditionalOptions/AdditionalOptions.d.ts +3 -0
  27. package/dist/components/Select/components/AdditionalOptions/AdditionalOptions.js +11 -0
  28. package/dist/components/Select/components/AdditionalOptions/AdditionalOptions.types.d.ts +4 -0
  29. package/dist/components/Select/components/AdditionalOptions/AdditionalOptions.variants.d.ts +1 -0
  30. package/dist/components/Select/components/AdditionalOptions/AdditionalOptions.variants.js +26 -0
  31. package/dist/components/Select/components/List/List.js +131 -132
  32. package/dist/components/Select/components/List/List.types.d.ts +1 -0
  33. package/dist/components/Select/components/List/List.variants.d.ts +1 -0
  34. package/dist/components/Select/components/List/List.variants.js +18 -3
  35. package/dist/components/Select/components/Wrapper.d.ts +3 -1
  36. package/dist/components/Select/components/Wrapper.js +65 -63
  37. package/dist/components/Select/components/index.d.ts +1 -0
  38. package/dist/components/Select/components/index.js +8 -6
  39. package/dist/components/index.js +1 -1
  40. package/dist/icons.d.ts +1 -1
  41. package/dist/icons.js +106 -104
  42. package/dist/index.js +1 -1
  43. package/dist/package.json +3 -3
  44. package/dist/{proxy-BIRlSMN_.js → proxy-CngVm5qA.js} +1834 -1852
  45. package/dist/styles.css +1 -1
  46. package/package.json +3 -3
  47. package/dist/Modal--z642-Wv.js +0 -112
@@ -0,0 +1,45 @@
1
+ import { jsxs as s, jsx as t } from "react/jsx-runtime";
2
+ import { S as n } from "./index-BvoZGpli.js";
3
+ import { Fragment as p } from "react";
4
+ import { cn as c } from "./utils/index.js";
5
+ import { listGroupLabelVariants as m } from "./components/Select/components/List/List.variants.js";
6
+ import { additionalOptionSlotClassName as l } from "./components/Select/components/AdditionalOptions/AdditionalOptions.variants.js";
7
+ import { useSelectContext as u } from "./components/Select/contexts/select.hook.js";
8
+ const N = (o) => "groupLabel" in o, d = (o) => typeof o == "object" && o !== null && "groupLabel" in o && "options" in o, S = ({ additionalOptions: o }) => {
9
+ const { toggleOpen: i } = u();
10
+ return o?.length ? d(o[0]) ? o.map((r) => /* @__PURE__ */ s(p, { children: [
11
+ /* @__PURE__ */ t(
12
+ "li",
13
+ {
14
+ role: "presentation",
15
+ "aria-hidden": "true",
16
+ "data-action": "true",
17
+ className: c(m()),
18
+ children: r.groupLabel
19
+ }
20
+ ),
21
+ r.options.map((e, a) => /* @__PURE__ */ t(
22
+ "li",
23
+ {
24
+ role: "option",
25
+ "data-action": "true",
26
+ onClick: () => i(!1),
27
+ children: /* @__PURE__ */ t(n, { className: l, children: e })
28
+ },
29
+ a
30
+ ))
31
+ ] }, r.groupLabel)) : o.map((r, e) => /* @__PURE__ */ t(
32
+ "li",
33
+ {
34
+ role: "option",
35
+ "data-action": "true",
36
+ onClick: () => i(!1),
37
+ children: /* @__PURE__ */ t(n, { className: l, children: r })
38
+ },
39
+ e
40
+ )) : null;
41
+ };
42
+ export {
43
+ S as A,
44
+ N as i
45
+ };
@@ -0,0 +1,120 @@
1
+ import { Body as k } from "./components/Modal/components/Body/Body.js";
2
+ import { Footer as v } from "./components/Modal/components/Footer/Footer.js";
3
+ import { Header as w } from "./components/Modal/components/Header/Header.js";
4
+ import { jsx as a, jsxs as l, Fragment as A } from "react/jsx-runtime";
5
+ import { Children as m, isValidElement as c, useRef as F, useState as N, useEffect as R } from "react";
6
+ import { createPortal as x } from "react-dom";
7
+ import { R as B } from "./index-BKjcReYh.js";
8
+ import { R as C } from "./Combination-BtmnusWq.js";
9
+ import { cn as h } from "./utils/index.js";
10
+ import { buttonCloseVariants as E, modalVariants as H } from "./components/Modal/components/Wrapper/Wrapper.variants.js";
11
+ import { m as V } from "./proxy-CngVm5qA.js";
12
+ import { X as j } from "./x-Eoa9FJjA.js";
13
+ const D = ({
14
+ buttonCloseClassName: f,
15
+ children: o,
16
+ className: n,
17
+ containerClassName: s,
18
+ showCloseButton: p = !0,
19
+ theme: i,
20
+ transition: u,
21
+ onClose: d
22
+ }) => {
23
+ const r = m.toArray(o).find(
24
+ (e) => c(e) && e.type === t.Header
25
+ ), y = m.toArray(o).find(
26
+ (e) => c(e) && e.type === t.Body
27
+ ), b = m.toArray(o).find(
28
+ (e) => c(e) && e.type === t.Footer
29
+ ), g = m.toArray(o).filter(
30
+ (e) => !c(e) || ![t.Header, t.Body, t.Footer].includes(
31
+ e.type
32
+ )
33
+ );
34
+ return /* @__PURE__ */ a(C, { children: /* @__PURE__ */ l(
35
+ "div",
36
+ {
37
+ className: h(
38
+ "fixed inset-0 grid place-content-center",
39
+ s
40
+ ),
41
+ "data-theme": i,
42
+ children: [
43
+ /* @__PURE__ */ a(
44
+ "div",
45
+ {
46
+ className: "absolute inset-0 bg-black opacity-70 dark:opacity-85 animate-in fade-in-0",
47
+ onClick: d,
48
+ role: "presentation"
49
+ }
50
+ ),
51
+ /* @__PURE__ */ l(
52
+ V.div,
53
+ {
54
+ className: h(
55
+ H({
56
+ className: n
57
+ })
58
+ ),
59
+ role: "dialog",
60
+ "aria-modal": "true",
61
+ layout: "size",
62
+ transition: u ?? { duration: 0.25, ease: "easeInOut" },
63
+ children: [
64
+ r,
65
+ p && /* @__PURE__ */ l(
66
+ "button",
67
+ {
68
+ className: h(
69
+ E({
70
+ className: f
71
+ })
72
+ ),
73
+ onClick: d,
74
+ children: [
75
+ /* @__PURE__ */ a(j, {}),
76
+ /* @__PURE__ */ a(B, { children: "Dismiss modal" })
77
+ ]
78
+ }
79
+ ),
80
+ y ?? g,
81
+ b
82
+ ]
83
+ }
84
+ )
85
+ ]
86
+ }
87
+ ) });
88
+ }, t = ({ isOpen: f, onClose: o, container: n, theme: s, ...p }) => {
89
+ const i = F(null), [u, d] = N(
90
+ null
91
+ );
92
+ return R(() => {
93
+ if (!i.current || s || n)
94
+ return;
95
+ const r = i.current.closest("[data-theme]");
96
+ r && d(r);
97
+ }, [s, n]), R(() => {
98
+ const r = new AbortController(), y = (b) => {
99
+ b.code === "Escape" && o?.();
100
+ };
101
+ return window.addEventListener("keydown", y, {
102
+ signal: r.signal
103
+ }), () => {
104
+ r.abort();
105
+ };
106
+ }, [o]), /* @__PURE__ */ l(A, { children: [
107
+ /* @__PURE__ */ a("span", { ref: i, "data-testid": "modal-anchor", hidden: !0 }),
108
+ f && x(
109
+ /* @__PURE__ */ a(D, { ...p, theme: s, onClose: o }),
110
+ n || u || document.body
111
+ )
112
+ ] });
113
+ };
114
+ t.Header = w;
115
+ t.Body = k;
116
+ t.Footer = v;
117
+ export {
118
+ t as M,
119
+ D as W
120
+ };
@@ -0,0 +1,3 @@
1
+ import { IconProps } from './types';
2
+ export declare const CloudLockOutlineIcon: import('react').ForwardRefExoticComponent<Omit<IconProps, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
3
+ export default CloudLockOutlineIcon;
@@ -0,0 +1,28 @@
1
+ import { jsx as o } from "react/jsx-runtime";
2
+ import { forwardRef as n } from "react";
3
+ const e = n(
4
+ ({ size: C = 20, color: t = "currentColor", ...l }, r) => /* @__PURE__ */ o(
5
+ "svg",
6
+ {
7
+ ref: r,
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ width: C,
10
+ height: C,
11
+ viewBox: "0 0 20 20",
12
+ fill: "none",
13
+ ...l,
14
+ children: /* @__PURE__ */ o(
15
+ "path",
16
+ {
17
+ d: "M5.41665 15H10.8333V16.6667H5.41665C4.16665 16.6667 3.07498 16.25 2.17498 15.3584C1.28331 14.4834 0.833313 13.4084 0.833313 12.15C0.833313 11.0667 1.15831 10.1 1.80831 9.25004C2.45831 8.40004 3.33331 7.85837 4.37498 7.62504C4.72498 6.35004 5.41665 5.31671 6.45831 4.52504C7.49998 3.73337 8.68331 3.33337 9.99998 3.33337C11.625 3.33337 13 3.90004 14.1333 5.03337C15.0666 5.96671 15.6083 7.08337 15.775 8.33337C15.1916 8.33337 14.6333 8.49171 14.125 8.71671C14.0333 7.75837 13.65 6.92504 12.95 6.21671C12.1333 5.41671 11.15 5.00004 9.99998 5.00004C8.84998 5.00004 7.86665 5.41671 7.04998 6.21671C6.24998 7.03337 5.83331 8.01671 5.83331 9.16671H5.41665C4.60831 9.16671 3.92498 9.45004 3.35831 10.025C2.78331 10.5917 2.49998 11.275 2.49998 12.0834C2.49998 12.8917 2.78331 13.575 3.35831 14.1667C3.92498 14.7167 4.60831 15 5.41665 15ZM19.1666 14.4167V17.3334C19.1666 17.8334 18.6666 18.3334 18.0833 18.3334H13.5C13 18.3334 12.5 17.8334 12.5 17.25V14.3334C12.5 13.8334 13 13.3334 13.5 13.3334V12.0834C13.5 10.9167 14.6666 10 15.8333 10C17 10 18.1666 10.9167 18.1666 12.0834V13.3334C18.6666 13.3334 19.1666 13.8334 19.1666 14.4167ZM17.0833 12.0834C17.0833 11.4167 16.5 11 15.8333 11C15.1666 11 14.5833 11.4167 14.5833 12.0834V13.3334H17.0833V12.0834Z",
18
+ fill: t
19
+ }
20
+ )
21
+ }
22
+ )
23
+ );
24
+ e.displayName = "KonstructCloudLockOutlineIcon";
25
+ export {
26
+ e as CloudLockOutlineIcon,
27
+ e as default
28
+ };
@@ -17,6 +17,7 @@ export { ClockAlertIcon } from './ClockAlert';
17
17
  export { ClockOutlineIcon } from './ClockOutline';
18
18
  export { CloseIcon } from './Close';
19
19
  export { CloudIcon } from './Cloud';
20
+ export { CloudLockOutlineIcon } from './CloudLockOutline';
20
21
  export { ClustersIcon } from './Clusters';
21
22
  export { CogOutlineIcon } from './CogOutline';
22
23
  export { CopyIcon } from './Copy';
@@ -4,65 +4,66 @@ import { AlertOutlineIcon as p } from "./AlertOutline.js";
4
4
  import { AppRepoIcon as f } from "./AppRepo.js";
5
5
  import { AppsIcon as x } from "./Apps.js";
6
6
  import { ArchivesIcon as l } from "./Archives.js";
7
- import { ArrowDownIcon as s } from "./ArrowDown.js";
7
+ import { ArrowDownIcon as C } from "./ArrowDown.js";
8
8
  import { ArrowLeftIcon as u } from "./ArrowLeft.js";
9
- import { ArrowRightIcon as h } from "./ArrowRight.js";
10
- import { ArrowUpIcon as d } from "./ArrowUp.js";
11
- import { BarChartIcon as P } from "./BarChart.js";
9
+ import { ArrowRightIcon as d } from "./ArrowRight.js";
10
+ import { ArrowUpIcon as A } from "./ArrowUp.js";
11
+ import { BarChartIcon as O } from "./BarChart.js";
12
12
  import { BookOpenIcon as k } from "./BookOpen.js";
13
- import { CalendarMonthIcon as v } from "./CalendarMonth.js";
14
- import { CheckIcon as L } from "./Check.js";
13
+ import { CalendarMonthIcon as S } from "./CalendarMonth.js";
14
+ import { CheckIcon as E } from "./Check.js";
15
15
  import { CheckCircleIcon as b } from "./CheckCircle.js";
16
16
  import { ClockAlertIcon as y } from "./ClockAlert.js";
17
17
  import { ClockOutlineIcon as G } from "./ClockOutline.js";
18
18
  import { CloseIcon as N } from "./Close.js";
19
19
  import { CloudIcon as K } from "./Cloud.js";
20
- import { ClustersIcon as U } from "./Clusters.js";
21
- import { CogOutlineIcon as W } from "./CogOutline.js";
22
- import { CopyIcon as j } from "./Copy.js";
23
- import { CpuIcon as z } from "./Cpu.js";
24
- import { CubeIcon as J } from "./Cube.js";
25
- import { DatacenterIcon as Y } from "./Datacenter.js";
26
- import { DeleteIcon as _ } from "./Delete.js";
27
- import { DollarSignIcon as oo } from "./DollarSign.js";
28
- import { DownloadIcon as eo } from "./Download.js";
29
- import { EditIcon as no } from "./Edit.js";
30
- import { EllipsesIcon as po } from "./Ellipses.js";
31
- import { EnvironmentsIcon as fo } from "./Environments.js";
32
- import { ErrorIcon as xo } from "./Error.js";
33
- import { ErrorOutlineIcon as lo } from "./ErrorOutline.js";
34
- import { ExclamationIcon as so } from "./Exclamation.js";
35
- import { GitIcon as uo } from "./Git.js";
36
- import { GitOpsCatalogIcon as ho } from "./GitOpsCatalog.js";
37
- import { GridViewIcon as go } from "./GridView.js";
38
- import { HelpIcon as Oo } from "./Help.js";
39
- import { HideOutlineIcon as So } from "./HideOutline.js";
40
- import { HomeIcon as Eo } from "./Home.js";
41
- import { IdIcon as Do } from "./Id.js";
42
- import { InformationOutlineIcon as Ro } from "./InformationOutline.js";
43
- import { InvoiceListIcon as Bo } from "./InvoiceList.js";
44
- import { KeyIcon as Ho } from "./Key.js";
45
- import { LoaderIcon as To } from "./Loader.js";
46
- import { LightBulbIcon as Mo } from "./LightBulb.js";
47
- import { NetworkIcon as Vo } from "./Network.js";
48
- import { PagesStackIcon as Xo } from "./PagesStack.js";
49
- import { PageviewIcon as qo } from "./Pageview.js";
50
- import { PeopleIcon as Fo } from "./People.js";
51
- import { PhotoLibraryIcon as Qo } from "./PhotoLibrary.js";
52
- import { PipelineIcon as Zo } from "./Pipeline.js";
53
- import { PlusIcon as $o } from "./Plus.js";
54
- import { PowerSettingsIcon as rr } from "./PowerSettings.js";
55
- import { PreviewIcon as tr } from "./Preview.js";
56
- import { ReceiptLongIcon as cr } from "./ReceiptLong.js";
57
- import { RefreshIcon as mr } from "./Refresh.js";
58
- import { ScatterPlotIcon as Ir } from "./ScatterPlot.js";
59
- import { SearchIcon as ir } from "./Search.js";
60
- import { ServerIcon as ar } from "./Server.js";
61
- import { StartIcon as Cr } from "./Start.js";
62
- import { TabNewIcon as wr } from "./TabNew.js";
63
- import { TeamsIcon as Ar } from "./Teams.js";
64
- import { WarningIcon as gr } from "./Warning.js";
65
- import { XIcon as Or } from "./X.js";
20
+ import { CloudLockOutlineIcon as U } from "./CloudLockOutline.js";
21
+ import { ClustersIcon as W } from "./Clusters.js";
22
+ import { CogOutlineIcon as j } from "./CogOutline.js";
23
+ import { CopyIcon as z } from "./Copy.js";
24
+ import { CpuIcon as J } from "./Cpu.js";
25
+ import { CubeIcon as Y } from "./Cube.js";
26
+ import { DatacenterIcon as _ } from "./Datacenter.js";
27
+ import { DeleteIcon as oo } from "./Delete.js";
28
+ import { DollarSignIcon as eo } from "./DollarSign.js";
29
+ import { DownloadIcon as no } from "./Download.js";
30
+ import { EditIcon as po } from "./Edit.js";
31
+ import { EllipsesIcon as fo } from "./Ellipses.js";
32
+ import { EnvironmentsIcon as xo } from "./Environments.js";
33
+ import { ErrorIcon as lo } from "./Error.js";
34
+ import { ErrorOutlineIcon as Co } from "./ErrorOutline.js";
35
+ import { ExclamationIcon as uo } from "./Exclamation.js";
36
+ import { GitIcon as ho } from "./Git.js";
37
+ import { GitOpsCatalogIcon as go } from "./GitOpsCatalog.js";
38
+ import { GridViewIcon as Po } from "./GridView.js";
39
+ import { HelpIcon as Lo } from "./Help.js";
40
+ import { HideOutlineIcon as vo } from "./HideOutline.js";
41
+ import { HomeIcon as Do } from "./Home.js";
42
+ import { IdIcon as Ro } from "./Id.js";
43
+ import { InformationOutlineIcon as Bo } from "./InformationOutline.js";
44
+ import { InvoiceListIcon as Ho } from "./InvoiceList.js";
45
+ import { KeyIcon as To } from "./Key.js";
46
+ import { LoaderIcon as Mo } from "./Loader.js";
47
+ import { LightBulbIcon as Vo } from "./LightBulb.js";
48
+ import { NetworkIcon as Xo } from "./Network.js";
49
+ import { PagesStackIcon as qo } from "./PagesStack.js";
50
+ import { PageviewIcon as Fo } from "./Pageview.js";
51
+ import { PeopleIcon as Qo } from "./People.js";
52
+ import { PhotoLibraryIcon as Zo } from "./PhotoLibrary.js";
53
+ import { PipelineIcon as $o } from "./Pipeline.js";
54
+ import { PlusIcon as rr } from "./Plus.js";
55
+ import { PowerSettingsIcon as tr } from "./PowerSettings.js";
56
+ import { PreviewIcon as cr } from "./Preview.js";
57
+ import { ReceiptLongIcon as mr } from "./ReceiptLong.js";
58
+ import { RefreshIcon as Ir } from "./Refresh.js";
59
+ import { ScatterPlotIcon as ir } from "./ScatterPlot.js";
60
+ import { SearchIcon as ar } from "./Search.js";
61
+ import { ServerIcon as sr } from "./Server.js";
62
+ import { StartIcon as wr } from "./Start.js";
63
+ import { TabNewIcon as hr } from "./TabNew.js";
64
+ import { TeamsIcon as gr } from "./Teams.js";
65
+ import { WarningIcon as Pr } from "./Warning.js";
66
+ import { XIcon as Lr } from "./X.js";
66
67
  export {
67
68
  e as AccountsIcon,
68
69
  n as AddChartIcon,
@@ -70,63 +71,64 @@ export {
70
71
  f as AppRepoIcon,
71
72
  x as AppsIcon,
72
73
  l as ArchivesIcon,
73
- s as ArrowDownIcon,
74
+ C as ArrowDownIcon,
74
75
  u as ArrowLeftIcon,
75
- h as ArrowRightIcon,
76
- d as ArrowUpIcon,
77
- P as BarChartIcon,
76
+ d as ArrowRightIcon,
77
+ A as ArrowUpIcon,
78
+ O as BarChartIcon,
78
79
  k as BookOpenIcon,
79
- v as CalendarMonthIcon,
80
+ S as CalendarMonthIcon,
80
81
  b as CheckCircleIcon,
81
- L as CheckIcon,
82
+ E as CheckIcon,
82
83
  y as ClockAlertIcon,
83
84
  G as ClockOutlineIcon,
84
85
  N as CloseIcon,
85
86
  K as CloudIcon,
86
- U as ClustersIcon,
87
- W as CogOutlineIcon,
88
- j as CopyIcon,
89
- z as CpuIcon,
90
- J as CubeIcon,
91
- Y as DatacenterIcon,
92
- _ as DeleteIcon,
93
- oo as DollarSignIcon,
94
- eo as DownloadIcon,
95
- no as EditIcon,
96
- po as EllipsesIcon,
97
- fo as EnvironmentsIcon,
98
- xo as ErrorIcon,
99
- lo as ErrorOutlineIcon,
100
- so as ExclamationIcon,
101
- uo as GitIcon,
102
- ho as GitOpsCatalogIcon,
103
- go as GridViewIcon,
104
- Oo as HelpIcon,
105
- So as HideOutlineIcon,
106
- Eo as HomeIcon,
107
- Do as IdIcon,
108
- Ro as InformationOutlineIcon,
109
- Bo as InvoiceListIcon,
110
- Ho as KeyIcon,
111
- Mo as LightBulbIcon,
112
- To as LoaderIcon,
113
- Vo as NetworkIcon,
114
- Xo as PagesStackIcon,
115
- qo as PageviewIcon,
116
- Fo as PeopleIcon,
117
- Qo as PhotoLibraryIcon,
118
- Zo as PipelineIcon,
119
- $o as PlusIcon,
120
- rr as PowerSettingsIcon,
121
- tr as PreviewIcon,
122
- cr as ReceiptLongIcon,
123
- mr as RefreshIcon,
124
- Ir as ScatterPlotIcon,
125
- ir as SearchIcon,
126
- ar as ServerIcon,
127
- Cr as StartIcon,
128
- wr as TabNewIcon,
129
- Ar as TeamsIcon,
130
- gr as WarningIcon,
131
- Or as XIcon
87
+ U as CloudLockOutlineIcon,
88
+ W as ClustersIcon,
89
+ j as CogOutlineIcon,
90
+ z as CopyIcon,
91
+ J as CpuIcon,
92
+ Y as CubeIcon,
93
+ _ as DatacenterIcon,
94
+ oo as DeleteIcon,
95
+ eo as DollarSignIcon,
96
+ no as DownloadIcon,
97
+ po as EditIcon,
98
+ fo as EllipsesIcon,
99
+ xo as EnvironmentsIcon,
100
+ lo as ErrorIcon,
101
+ Co as ErrorOutlineIcon,
102
+ uo as ExclamationIcon,
103
+ ho as GitIcon,
104
+ go as GitOpsCatalogIcon,
105
+ Po as GridViewIcon,
106
+ Lo as HelpIcon,
107
+ vo as HideOutlineIcon,
108
+ Do as HomeIcon,
109
+ Ro as IdIcon,
110
+ Bo as InformationOutlineIcon,
111
+ Ho as InvoiceListIcon,
112
+ To as KeyIcon,
113
+ Vo as LightBulbIcon,
114
+ Mo as LoaderIcon,
115
+ Xo as NetworkIcon,
116
+ qo as PagesStackIcon,
117
+ Fo as PageviewIcon,
118
+ Qo as PeopleIcon,
119
+ Zo as PhotoLibraryIcon,
120
+ $o as PipelineIcon,
121
+ rr as PlusIcon,
122
+ tr as PowerSettingsIcon,
123
+ cr as PreviewIcon,
124
+ mr as ReceiptLongIcon,
125
+ Ir as RefreshIcon,
126
+ ir as ScatterPlotIcon,
127
+ ar as SearchIcon,
128
+ sr as ServerIcon,
129
+ wr as StartIcon,
130
+ hr as TabNewIcon,
131
+ gr as TeamsIcon,
132
+ Pr as WarningIcon,
133
+ Lr as XIcon
132
134
  };