@konstructio/ui 0.1.2-alpha.67 → 0.1.2-alpha.68
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.
- package/dist/AdditionalOptions-C2FDVZhu.js +45 -0
- package/dist/{Modal--z642-Wv.js → Modal-mwLmWbnA.js} +23 -20
- package/dist/assets/icons/components/CloudLockOutline.d.ts +3 -0
- package/dist/assets/icons/components/CloudLockOutline.js +28 -0
- package/dist/assets/icons/components/index.d.ts +1 -0
- package/dist/assets/icons/components/index.js +106 -104
- package/dist/assets/icons/index.js +106 -104
- package/dist/components/ButtonGroup/ButtonGroup.js +65 -61
- package/dist/components/ButtonGroup/ButtonGroup.types.d.ts +6 -0
- package/dist/components/ButtonGroup/components/ButtonGroupItem/ButtonGroupItem.js +32 -30
- package/dist/components/ButtonGroup/components/ButtonGroupItem/ButtonGroupItem.types.d.ts +3 -1
- package/dist/components/ButtonGroup/components/ButtonGroupItem/ButtonGroupItem.variants.d.ts +4 -1
- package/dist/components/ButtonGroup/components/ButtonGroupItem/ButtonGroupItem.variants.js +37 -17
- package/dist/components/Modal/Modal.js +1 -1
- package/dist/components/Modal/components/Wrapper/Wrapper.js +3 -2
- package/dist/components/Modal/components/Wrapper/Wrapper.variants.js +2 -2
- package/dist/components/Modal/components/index.js +1 -1
- package/dist/components/Select/Select.d.ts +1 -0
- package/dist/components/Select/Select.js +54 -40
- package/dist/components/Select/Select.types.d.ts +18 -2
- package/dist/components/Select/components/AdditionalOptions/AdditionalOptions.d.ts +3 -0
- package/dist/components/Select/components/AdditionalOptions/AdditionalOptions.js +11 -0
- package/dist/components/Select/components/AdditionalOptions/AdditionalOptions.types.d.ts +4 -0
- package/dist/components/Select/components/AdditionalOptions/AdditionalOptions.variants.d.ts +1 -0
- package/dist/components/Select/components/AdditionalOptions/AdditionalOptions.variants.js +26 -0
- package/dist/components/Select/components/List/List.js +131 -132
- package/dist/components/Select/components/List/List.types.d.ts +1 -0
- package/dist/components/Select/components/List/List.variants.d.ts +1 -0
- package/dist/components/Select/components/List/List.variants.js +17 -2
- package/dist/components/Select/components/Wrapper.d.ts +3 -1
- package/dist/components/Select/components/Wrapper.js +65 -63
- package/dist/components/Select/components/index.d.ts +1 -0
- package/dist/components/Select/components/index.js +8 -6
- package/dist/components/index.js +1 -1
- package/dist/icons.d.ts +1 -1
- package/dist/icons.js +106 -104
- package/dist/index.js +1 -1
- package/dist/package.json +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
|
@@ -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
|
+
};
|
|
@@ -8,22 +8,23 @@ import { R as N } from "./index-BKjcReYh.js";
|
|
|
8
8
|
import { R as x } from "./Combination-BtmnusWq.js";
|
|
9
9
|
import { cn as h } from "./utils/index.js";
|
|
10
10
|
import { buttonCloseVariants as B, modalVariants as C } from "./components/Modal/components/Wrapper/Wrapper.variants.js";
|
|
11
|
-
import {
|
|
12
|
-
|
|
11
|
+
import { m as E } from "./proxy-BIRlSMN_.js";
|
|
12
|
+
import { X as H } from "./x-Eoa9FJjA.js";
|
|
13
|
+
const V = ({
|
|
13
14
|
buttonCloseClassName: l,
|
|
14
|
-
children:
|
|
15
|
+
children: o,
|
|
15
16
|
className: s,
|
|
16
17
|
showCloseButton: i = !0,
|
|
17
18
|
theme: f,
|
|
18
19
|
onClose: a
|
|
19
20
|
}) => {
|
|
20
|
-
const p = d.toArray(
|
|
21
|
+
const p = d.toArray(o).find(
|
|
21
22
|
(e) => m(e) && e.type === t.Header
|
|
22
|
-
), u = d.toArray(
|
|
23
|
+
), u = d.toArray(o).find(
|
|
23
24
|
(e) => m(e) && e.type === t.Body
|
|
24
|
-
),
|
|
25
|
+
), r = d.toArray(o).find(
|
|
25
26
|
(e) => m(e) && e.type === t.Footer
|
|
26
|
-
), y = d.toArray(
|
|
27
|
+
), y = d.toArray(o).filter(
|
|
27
28
|
(e) => !m(e) || ![t.Header, t.Body, t.Footer].includes(
|
|
28
29
|
e.type
|
|
29
30
|
)
|
|
@@ -43,7 +44,7 @@ const H = ({
|
|
|
43
44
|
}
|
|
44
45
|
),
|
|
45
46
|
/* @__PURE__ */ c(
|
|
46
|
-
|
|
47
|
+
E.div,
|
|
47
48
|
{
|
|
48
49
|
className: h(
|
|
49
50
|
C({
|
|
@@ -52,6 +53,8 @@ const H = ({
|
|
|
52
53
|
),
|
|
53
54
|
role: "dialog",
|
|
54
55
|
"aria-modal": "true",
|
|
56
|
+
layout: "size",
|
|
57
|
+
transition: { duration: 0.25, ease: "easeInOut" },
|
|
55
58
|
children: [
|
|
56
59
|
p,
|
|
57
60
|
i && /* @__PURE__ */ c(
|
|
@@ -64,41 +67,41 @@ const H = ({
|
|
|
64
67
|
),
|
|
65
68
|
onClick: a,
|
|
66
69
|
children: [
|
|
67
|
-
/* @__PURE__ */ n(
|
|
70
|
+
/* @__PURE__ */ n(H, {}),
|
|
68
71
|
/* @__PURE__ */ n(N, { children: "Dismiss modal" })
|
|
69
72
|
]
|
|
70
73
|
}
|
|
71
74
|
),
|
|
72
75
|
u ?? y,
|
|
73
|
-
|
|
76
|
+
r
|
|
74
77
|
]
|
|
75
78
|
}
|
|
76
79
|
)
|
|
77
80
|
]
|
|
78
81
|
}
|
|
79
82
|
) });
|
|
80
|
-
}, t = ({ isOpen: l, onClose:
|
|
83
|
+
}, t = ({ isOpen: l, onClose: o, container: s, theme: i, ...f }) => {
|
|
81
84
|
const a = w(null), [p, u] = A(
|
|
82
85
|
null
|
|
83
86
|
);
|
|
84
87
|
return b(() => {
|
|
85
88
|
if (!a.current || i || s)
|
|
86
89
|
return;
|
|
87
|
-
const
|
|
88
|
-
|
|
90
|
+
const r = a.current.closest("[data-theme]");
|
|
91
|
+
r && u(r);
|
|
89
92
|
}, [i, s]), b(() => {
|
|
90
|
-
const
|
|
91
|
-
e.code === "Escape" &&
|
|
93
|
+
const r = new AbortController(), y = (e) => {
|
|
94
|
+
e.code === "Escape" && o?.();
|
|
92
95
|
};
|
|
93
96
|
return window.addEventListener("keydown", y, {
|
|
94
|
-
signal:
|
|
97
|
+
signal: r.signal
|
|
95
98
|
}), () => {
|
|
96
|
-
|
|
99
|
+
r.abort();
|
|
97
100
|
};
|
|
98
|
-
}, [
|
|
101
|
+
}, [o]), /* @__PURE__ */ c(v, { children: [
|
|
99
102
|
/* @__PURE__ */ n("span", { ref: a, "data-testid": "modal-anchor", hidden: !0 }),
|
|
100
103
|
l && F(
|
|
101
|
-
/* @__PURE__ */ n(
|
|
104
|
+
/* @__PURE__ */ n(V, { ...f, theme: i, onClose: o }),
|
|
102
105
|
s || p || document.body
|
|
103
106
|
)
|
|
104
107
|
] });
|
|
@@ -108,5 +111,5 @@ t.Body = R;
|
|
|
108
111
|
t.Footer = g;
|
|
109
112
|
export {
|
|
110
113
|
t as M,
|
|
111
|
-
|
|
114
|
+
V as W
|
|
112
115
|
};
|
|
@@ -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
|
|
7
|
+
import { ArrowDownIcon as C } from "./ArrowDown.js";
|
|
8
8
|
import { ArrowLeftIcon as u } from "./ArrowLeft.js";
|
|
9
|
-
import { ArrowRightIcon as
|
|
10
|
-
import { ArrowUpIcon as
|
|
11
|
-
import { BarChartIcon as
|
|
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
|
|
14
|
-
import { CheckIcon as
|
|
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 {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
62
|
-
import {
|
|
63
|
-
import {
|
|
64
|
-
import {
|
|
65
|
-
import {
|
|
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
|
-
|
|
74
|
+
C as ArrowDownIcon,
|
|
74
75
|
u as ArrowLeftIcon,
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
76
|
+
d as ArrowRightIcon,
|
|
77
|
+
A as ArrowUpIcon,
|
|
78
|
+
O as BarChartIcon,
|
|
78
79
|
k as BookOpenIcon,
|
|
79
|
-
|
|
80
|
+
S as CalendarMonthIcon,
|
|
80
81
|
b as CheckCircleIcon,
|
|
81
|
-
|
|
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
|
|
87
|
-
W as
|
|
88
|
-
j as
|
|
89
|
-
z as
|
|
90
|
-
J as
|
|
91
|
-
Y as
|
|
92
|
-
_ as
|
|
93
|
-
oo as
|
|
94
|
-
eo as
|
|
95
|
-
no as
|
|
96
|
-
po as
|
|
97
|
-
fo as
|
|
98
|
-
xo as
|
|
99
|
-
lo as
|
|
100
|
-
|
|
101
|
-
uo as
|
|
102
|
-
ho as
|
|
103
|
-
go as
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
Do as
|
|
108
|
-
Ro as
|
|
109
|
-
Bo as
|
|
110
|
-
Ho as
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
Xo as
|
|
115
|
-
qo as
|
|
116
|
-
Fo as
|
|
117
|
-
Qo as
|
|
118
|
-
Zo as
|
|
119
|
-
$o as
|
|
120
|
-
rr as
|
|
121
|
-
tr as
|
|
122
|
-
cr as
|
|
123
|
-
mr as
|
|
124
|
-
Ir as
|
|
125
|
-
ir as
|
|
126
|
-
ar as
|
|
127
|
-
|
|
128
|
-
wr as
|
|
129
|
-
|
|
130
|
-
gr as
|
|
131
|
-
|
|
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
|
};
|