@konstructio/ui 0.1.2-alpha.54 → 0.1.2-alpha.56
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/assets/icons/components/BookOpen.d.ts +3 -0
- package/dist/assets/icons/components/BookOpen.js +32 -0
- package/dist/assets/icons/components/DollarSign.d.ts +3 -0
- package/dist/assets/icons/components/DollarSign.js +30 -0
- package/dist/assets/icons/components/LightBulb.d.ts +3 -0
- package/dist/assets/icons/components/LightBulb.js +43 -0
- package/dist/assets/icons/components/index.d.ts +3 -0
- package/dist/assets/icons/components/index.js +114 -108
- package/dist/assets/icons/index.js +114 -108
- package/dist/components/Autocomplete/Autocomplete.js +41 -40
- package/dist/components/Autocomplete/Autocomplete.types.d.ts +2 -0
- package/dist/components/Button/Button.variants.js +7 -1
- package/dist/components/ButtonGroup/ButtonGroup.d.ts +34 -0
- package/dist/components/ButtonGroup/ButtonGroup.js +136 -0
- package/dist/components/ButtonGroup/ButtonGroup.types.d.ts +94 -0
- package/dist/components/ButtonGroup/ButtonGroup.variants.d.ts +14 -0
- package/dist/components/ButtonGroup/ButtonGroup.variants.js +39 -0
- package/dist/components/ButtonGroup/components/ButtonGroupItem/ButtonGroupItem.d.ts +3 -0
- package/dist/components/ButtonGroup/components/ButtonGroupItem/ButtonGroupItem.js +112 -0
- package/dist/components/ButtonGroup/components/ButtonGroupItem/ButtonGroupItem.types.d.ts +19 -0
- package/dist/components/ButtonGroup/components/ButtonGroupItem/ButtonGroupItem.variants.d.ts +22 -0
- package/dist/components/ButtonGroup/components/ButtonGroupItem/ButtonGroupItem.variants.js +85 -0
- package/dist/components/ButtonGroup/components/ButtonGroupItem/index.d.ts +2 -0
- package/dist/components/ButtonGroup/components/ButtonGroupItem/index.js +4 -0
- package/dist/components/ButtonGroup/components/ButtonGroupLabel/ButtonGroupLabel.d.ts +3 -0
- package/dist/components/ButtonGroup/components/ButtonGroupLabel/ButtonGroupLabel.js +45 -0
- package/dist/components/ButtonGroup/components/ButtonGroupLabel/ButtonGroupLabel.types.d.ts +8 -0
- package/dist/components/ButtonGroup/components/ButtonGroupLabel/index.d.ts +2 -0
- package/dist/components/ButtonGroup/components/ButtonGroupLabel/index.js +4 -0
- package/dist/components/ButtonGroup/components/ButtonGroupMessage/ButtonGroupMessage.d.ts +3 -0
- package/dist/components/ButtonGroup/components/ButtonGroupMessage/ButtonGroupMessage.js +37 -0
- package/dist/components/ButtonGroup/components/ButtonGroupMessage/ButtonGroupMessage.types.d.ts +6 -0
- package/dist/components/ButtonGroup/components/ButtonGroupMessage/index.d.ts +2 -0
- package/dist/components/ButtonGroup/components/ButtonGroupMessage/index.js +4 -0
- package/dist/components/ButtonGroup/components/index.d.ts +3 -0
- package/dist/components/ButtonGroup/components/index.js +8 -0
- package/dist/components/ButtonGroup/hooks/index.d.ts +2 -0
- package/dist/components/ButtonGroup/hooks/index.js +4 -0
- package/dist/components/ButtonGroup/hooks/useButtonGroup.d.ts +3 -0
- package/dist/components/ButtonGroup/hooks/useButtonGroup.js +67 -0
- package/dist/components/ButtonGroup/hooks/useButtonGroup.types.d.ts +18 -0
- package/dist/components/Checkbox/Checkbox.js +152 -144
- package/dist/components/Checkbox/Checkbox.types.d.ts +2 -0
- package/dist/components/Counter/Counter.js +43 -42
- package/dist/components/Counter/Counter.types.d.ts +2 -0
- package/dist/components/DateRangePicker/DateRangePicker.js +94 -93
- package/dist/components/DateRangePicker/DateRangePicker.types.d.ts +2 -0
- package/dist/components/DateRangePicker/components/CalendarPanel/components/IndependentModeCalendar/IndependentModeCalendar.js +1 -1
- package/dist/components/DateRangePicker/components/CalendarPanel/components/TogetherModeCalendar/TogetherModeCalendar.js +1 -1
- package/dist/components/DateRangePicker/components/PresetPanel/PresetPanel.js +11 -11
- package/dist/components/Drawer/Drawer.d.ts +36 -0
- package/dist/components/Drawer/Drawer.js +134 -0
- package/dist/components/Drawer/Drawer.types.d.ts +65 -0
- package/dist/components/Drawer/Drawer.variants.d.ts +8 -0
- package/dist/components/Drawer/Drawer.variants.js +92 -0
- package/dist/components/Drawer/components/Body/Body.d.ts +3 -0
- package/dist/components/Drawer/components/Body/Body.js +24 -0
- package/dist/components/Drawer/components/Body/Body.types.d.ts +7 -0
- package/dist/components/Drawer/components/Body/index.d.ts +2 -0
- package/dist/components/Drawer/components/Body/index.js +4 -0
- package/dist/components/Drawer/components/Footer/Footer.d.ts +3 -0
- package/dist/components/Drawer/components/Footer/Footer.js +26 -0
- package/dist/components/Drawer/components/Footer/Footer.types.d.ts +7 -0
- package/dist/components/Drawer/components/Footer/index.d.ts +2 -0
- package/dist/components/Drawer/components/Footer/index.js +4 -0
- package/dist/components/Drawer/components/Header/Header.d.ts +3 -0
- package/dist/components/Drawer/components/Header/Header.js +27 -0
- package/dist/components/Drawer/components/Header/Header.types.d.ts +9 -0
- package/dist/components/Drawer/components/Header/index.d.ts +2 -0
- package/dist/components/Drawer/components/Header/index.js +4 -0
- package/dist/components/Drawer/components/index.d.ts +3 -0
- package/dist/components/Drawer/components/index.js +8 -0
- package/dist/components/Drawer/constants/index.d.ts +6 -0
- package/dist/components/Drawer/constants/index.js +9 -0
- package/dist/components/Drawer/contexts/Drawer.context.d.ts +7 -0
- package/dist/components/Drawer/contexts/Drawer.context.js +6 -0
- package/dist/components/Drawer/contexts/index.d.ts +2 -0
- package/dist/components/Drawer/contexts/index.js +5 -0
- package/dist/components/Drawer/hooks/index.d.ts +2 -0
- package/dist/components/Drawer/hooks/index.js +4 -0
- package/dist/components/Drawer/hooks/useDrawer.d.ts +2 -0
- package/dist/components/Drawer/hooks/useDrawer.js +66 -0
- package/dist/components/Drawer/hooks/useDrawer.types.d.ts +30 -0
- package/dist/components/ImageUpload/ImageUpload.d.ts +1 -1
- package/dist/components/ImageUpload/ImageUpload.js +51 -50
- package/dist/components/ImageUpload/ImageUpload.types.d.ts +2 -0
- package/dist/components/Input/Input.js +72 -58
- package/dist/components/Input/Input.types.d.ts +4 -0
- package/dist/components/MultiSelectDropdown/MultiSelectDropdown.types.d.ts +2 -0
- package/dist/components/MultiSelectDropdown/components/Wrapper/Wrapper.js +40 -39
- package/dist/components/PhoneNumberInput/PhoneNumberInput.types.d.ts +2 -0
- package/dist/components/PhoneNumberInput/components/Wrapper.js +163 -162
- package/dist/components/PhoneNumberInput/contexts/phone-number.provider.js +172 -116
- package/dist/components/RadioGroup/RadioGroup.js +34 -33
- package/dist/components/RadioGroup/RadioGroup.types.d.ts +3 -1
- package/dist/components/Range/Range.js +26 -24
- package/dist/components/Range/Range.types.d.ts +2 -0
- package/dist/components/Select/Select.types.d.ts +1 -0
- package/dist/components/Select/Select.variants.js +2 -1
- package/dist/components/Select/components/Wrapper.js +74 -73
- package/dist/components/Slider/Slider.js +30 -20
- package/dist/components/Slider/Slider.types.d.ts +2 -0
- package/dist/components/Stepper/Stepper.js +29 -25
- package/dist/components/Stepper/components/HorizontalStepItem/HorizontalStepItem.d.ts +1 -2
- package/dist/components/Stepper/components/HorizontalStepItem/HorizontalStepItem.js +96 -91
- package/dist/components/Stepper/components/StepConnector/StepConnector.d.ts +1 -2
- package/dist/components/Stepper/components/StepConnector/StepConnector.js +10 -9
- package/dist/components/Stepper/components/StepIndicatorContent/StepIndicatorContent.d.ts +1 -2
- package/dist/components/Stepper/components/StepIndicatorContent/StepIndicatorContent.js +13 -19
- package/dist/components/Stepper/components/StepItem/StepItem.d.ts +1 -2
- package/dist/components/Stepper/components/StepItem/StepItem.js +6 -5
- package/dist/components/Stepper/components/VerticalStepItem/VerticalStepItem.d.ts +1 -2
- package/dist/components/Stepper/components/VerticalStepItem/VerticalStepItem.js +65 -60
- package/dist/components/Stepper/constants/index.d.ts +3 -0
- package/dist/components/Stepper/constants/index.js +13 -0
- package/dist/components/Stepper/hooks/index.d.ts +1 -0
- package/dist/components/Stepper/hooks/index.js +4 -0
- package/dist/components/Stepper/hooks/useStepItemLogic.d.ts +2 -0
- package/dist/components/Stepper/hooks/useStepItemLogic.js +27 -0
- package/dist/components/Stepper/hooks/useStepItemLogic.types.d.ts +16 -0
- package/dist/components/Stepper/utils/index.d.ts +3 -0
- package/dist/components/Stepper/utils/index.js +13 -0
- package/dist/components/Switch/Switch.js +89 -87
- package/dist/components/Switch/Switch.types.d.ts +2 -0
- package/dist/components/TagSelect/TagSelect.types.d.ts +2 -0
- package/dist/components/TagSelect/components/Wrapper/Wrapper.js +47 -46
- package/dist/components/TextArea/TextArea.js +27 -26
- package/dist/components/TextArea/TextArea.types.d.ts +2 -0
- package/dist/components/Tooltip/Tooltip.variants.d.ts +2 -2
- package/dist/components/index.d.ts +2 -0
- package/dist/components/index.js +113 -109
- package/dist/icons.d.ts +1 -1
- package/dist/icons.js +114 -108
- package/dist/index.js +115 -111
- package/dist/package.json +26 -25
- package/dist/{proxy-Drz23HDt.js → proxy-BhEKW5n7.js} +1743 -1588
- package/dist/styles.css +1 -1
- package/package.json +23 -24
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { jsx as r } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef as i } from "react";
|
|
3
|
+
const s = i(
|
|
4
|
+
({ size: o = 24, color: t = "currentColor", ...e }, n) => /* @__PURE__ */ r(
|
|
5
|
+
"svg",
|
|
6
|
+
{
|
|
7
|
+
ref: n,
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
width: o,
|
|
10
|
+
height: o,
|
|
11
|
+
viewBox: "0 0 22 18",
|
|
12
|
+
fill: "none",
|
|
13
|
+
...e,
|
|
14
|
+
children: /* @__PURE__ */ r(
|
|
15
|
+
"path",
|
|
16
|
+
{
|
|
17
|
+
d: "M10.75 4.083C10.75 2.25 9.25 0.75 7.417 0.75H0.75V12.75H7.458C10.75 12.75 10.75 16.084 10.75 16.084M10.75 4.083C10.75 2.249 12.25 0.75 14.083 0.75H20.75V12.75H14.083C10.75 12.75 10.75 16.084 10.75 16.084M10.75 4.083V16.084M12.625 17.208C12.8337 16.7759 13.1587 16.4105 13.5636 16.1529C13.9685 15.8954 14.4372 15.7558 14.917 15.75H19.75M8.875 17.208C8.67016 16.7729 8.34602 16.405 7.94028 16.1469C7.53454 15.8888 7.06387 15.7511 6.583 15.75H1.75",
|
|
18
|
+
stroke: t,
|
|
19
|
+
strokeWidth: "1.5",
|
|
20
|
+
strokeMiterlimit: "10",
|
|
21
|
+
strokeLinecap: "round",
|
|
22
|
+
strokeLinejoin: "round"
|
|
23
|
+
}
|
|
24
|
+
)
|
|
25
|
+
}
|
|
26
|
+
)
|
|
27
|
+
);
|
|
28
|
+
s.displayName = "KonstructBookOpenIcon";
|
|
29
|
+
export {
|
|
30
|
+
s as BookOpenIcon,
|
|
31
|
+
s as default
|
|
32
|
+
};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { jsx as l } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef as t } from "react";
|
|
3
|
+
const C = t(
|
|
4
|
+
({ size: o = 24, color: r = "currentColor", ...e }, n) => /* @__PURE__ */ l(
|
|
5
|
+
"svg",
|
|
6
|
+
{
|
|
7
|
+
ref: n,
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
width: o,
|
|
10
|
+
height: o,
|
|
11
|
+
viewBox: "0 0 10 18",
|
|
12
|
+
fill: "none",
|
|
13
|
+
...e,
|
|
14
|
+
children: /* @__PURE__ */ l(
|
|
15
|
+
"path",
|
|
16
|
+
{
|
|
17
|
+
fillRule: "evenodd",
|
|
18
|
+
clipRule: "evenodd",
|
|
19
|
+
d: "M5.57143 9.42857V13.7143C7.07957 13.5789 7.71429 12.7341 7.71429 11.6186C7.71429 10.5441 7.22057 9.90857 5.57143 9.42857ZM4.28571 7.28571V3.42857C2.883 3.60643 2.14286 4.42714 2.14286 5.32714C2.14286 6.22714 2.72743 6.89014 4.28571 7.28571ZM5.50286 7.60157L5.96229 7.72029C8.47886 8.32414 9.85714 9.393 9.85714 11.5011C9.85714 13.926 7.94314 15.3017 5.50286 15.48V17.1429H4.42157V15.48C1.99071 15.2919 0.0672857 13.8767 0 11.5011H1.98086C2.15314 12.6591 2.88086 13.5103 4.42157 13.6783V9.36386L4.029 9.26486C1.59814 8.68071 0.287143 7.55229 0.287143 5.54314C0.287143 3.32614 2.01 1.86129 4.42157 1.67314V0H5.50286V1.67271C7.89514 1.87071 9.62743 3.35529 9.70414 5.60229H7.71343C7.58914 4.35514 6.72771 3.63257 5.50286 3.474V7.60157Z",
|
|
20
|
+
fill: r
|
|
21
|
+
}
|
|
22
|
+
)
|
|
23
|
+
}
|
|
24
|
+
)
|
|
25
|
+
);
|
|
26
|
+
C.displayName = "KonstructDollarSignIcon";
|
|
27
|
+
export {
|
|
28
|
+
C as DollarSignIcon,
|
|
29
|
+
C as default
|
|
30
|
+
};
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { jsxs as n, jsx as C } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef as i } from "react";
|
|
3
|
+
const s = i(
|
|
4
|
+
({ size: o = 24, color: t = "currentColor", ...r }, e) => /* @__PURE__ */ n(
|
|
5
|
+
"svg",
|
|
6
|
+
{
|
|
7
|
+
ref: e,
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
width: o,
|
|
10
|
+
height: o,
|
|
11
|
+
viewBox: "0 0 20 21",
|
|
12
|
+
fill: "none",
|
|
13
|
+
...r,
|
|
14
|
+
children: [
|
|
15
|
+
/* @__PURE__ */ C(
|
|
16
|
+
"path",
|
|
17
|
+
{
|
|
18
|
+
d: "M15.167 10.863C14.883 13.228 13.334 14.173 12.665 14.859C11.995 15.547 12.115 15.684 12.16 16.693C12.1675 16.8178 12.1494 16.9429 12.1067 17.0604C12.064 17.178 11.9978 17.2856 11.9119 17.3765C11.8261 17.4675 11.7226 17.5399 11.6077 17.5894C11.4928 17.6388 11.369 17.6642 11.244 17.664H8.58598C8.46101 17.6638 8.33738 17.6381 8.22266 17.5885C8.10793 17.5389 8.00451 17.4665 7.9187 17.3756C7.83289 17.2848 7.76649 17.1774 7.72356 17.06C7.68063 16.9426 7.66206 16.8178 7.66898 16.693C7.66898 15.703 7.76099 15.473 7.16499 14.859C6.40499 14.099 4.61699 13.026 4.61699 10.075C4.61242 9.34197 4.75975 8.61597 5.0497 7.94274C5.33964 7.26951 5.76591 6.66364 6.30163 6.16332C6.83735 5.66301 7.47091 5.2791 8.16237 5.0358C8.85383 4.79249 9.58819 4.69507 10.3192 4.74967C11.0502 4.80426 11.7619 5.0097 12.4095 5.35302C13.0572 5.69635 13.6267 6.17012 14.0821 6.74446C14.5376 7.31881 14.8691 7.98128 15.0558 8.69012C15.2425 9.39895 15.2804 10.1388 15.167 10.863Z",
|
|
19
|
+
stroke: t,
|
|
20
|
+
strokeWidth: "1.5",
|
|
21
|
+
strokeLinecap: "round",
|
|
22
|
+
strokeLinejoin: "round"
|
|
23
|
+
}
|
|
24
|
+
),
|
|
25
|
+
/* @__PURE__ */ C(
|
|
26
|
+
"path",
|
|
27
|
+
{
|
|
28
|
+
d: "M8.375 17.609V19.121C8.375 19.534 8.605 19.873 8.888 19.873H10.941C11.226 19.873 11.455 19.533 11.455 19.121V17.609M9.135 7.069C8.54454 7.06927 7.97835 7.30401 7.56092 7.72163C7.14349 8.13924 6.909 8.70554 6.909 9.296M17.247 10.277H19.081M15.401 4.265L16.702 2.964M16.401 15.373L17.702 16.673M9.915 0.75V2.233M3.155 2.963L4.447 4.265M2.155 16.673L3.447 15.373M2.583 10.277H0.75",
|
|
29
|
+
stroke: t,
|
|
30
|
+
strokeWidth: "1.5",
|
|
31
|
+
strokeLinecap: "round",
|
|
32
|
+
strokeLinejoin: "round"
|
|
33
|
+
}
|
|
34
|
+
)
|
|
35
|
+
]
|
|
36
|
+
}
|
|
37
|
+
)
|
|
38
|
+
);
|
|
39
|
+
s.displayName = "KonstructLightBulbIcon";
|
|
40
|
+
export {
|
|
41
|
+
s as LightBulbIcon,
|
|
42
|
+
s as default
|
|
43
|
+
};
|
|
@@ -8,6 +8,7 @@ export { ArrowLeftIcon } from './ArrowLeft';
|
|
|
8
8
|
export { ArrowRightIcon } from './ArrowRight';
|
|
9
9
|
export { ArrowUpIcon } from './ArrowUp';
|
|
10
10
|
export { BarChartIcon } from './BarChart';
|
|
11
|
+
export { BookOpenIcon } from './BookOpen';
|
|
11
12
|
export { CalendarMonthIcon } from './CalendarMonth';
|
|
12
13
|
export { CheckIcon } from './Check';
|
|
13
14
|
export { CheckCircleIcon } from './CheckCircle';
|
|
@@ -22,6 +23,7 @@ export { CpuIcon } from './Cpu';
|
|
|
22
23
|
export { CubeIcon } from './Cube';
|
|
23
24
|
export { DatacenterIcon } from './Datacenter';
|
|
24
25
|
export { DeleteIcon } from './Delete';
|
|
26
|
+
export { DollarSignIcon } from './DollarSign';
|
|
25
27
|
export { DownloadIcon } from './Download';
|
|
26
28
|
export { EditIcon } from './Edit';
|
|
27
29
|
export { EllipsesIcon } from './Ellipses';
|
|
@@ -40,6 +42,7 @@ export { InformationOutlineIcon } from './InformationOutline';
|
|
|
40
42
|
export { InvoiceListIcon } from './InvoiceList';
|
|
41
43
|
export { KeyIcon } from './Key';
|
|
42
44
|
export { LoaderIcon } from './Loader';
|
|
45
|
+
export { LightBulbIcon } from './LightBulb';
|
|
43
46
|
export { NetworkIcon } from './Network';
|
|
44
47
|
export { PagesStackIcon } from './PagesStack';
|
|
45
48
|
export { PageviewIcon } from './Pageview';
|
|
@@ -3,122 +3,128 @@ import { AddChartIcon as n } from "./AddChart.js";
|
|
|
3
3
|
import { AppRepoIcon as p } from "./AppRepo.js";
|
|
4
4
|
import { AppsIcon as f } from "./Apps.js";
|
|
5
5
|
import { ArchivesIcon as x } from "./Archives.js";
|
|
6
|
-
import { ArrowDownIcon as
|
|
6
|
+
import { ArrowDownIcon as l } from "./ArrowDown.js";
|
|
7
7
|
import { ArrowLeftIcon as s } from "./ArrowLeft.js";
|
|
8
|
-
import { ArrowRightIcon as
|
|
9
|
-
import { ArrowUpIcon as
|
|
10
|
-
import { BarChartIcon as
|
|
11
|
-
import {
|
|
8
|
+
import { ArrowRightIcon as u } from "./ArrowRight.js";
|
|
9
|
+
import { ArrowUpIcon as h } from "./ArrowUp.js";
|
|
10
|
+
import { BarChartIcon as g } from "./BarChart.js";
|
|
11
|
+
import { BookOpenIcon as P } from "./BookOpen.js";
|
|
12
|
+
import { CalendarMonthIcon as O } from "./CalendarMonth.js";
|
|
12
13
|
import { CheckIcon as v } from "./Check.js";
|
|
13
|
-
import { CheckCircleIcon as
|
|
14
|
-
import { ClockAlertIcon as
|
|
15
|
-
import { ClockOutlineIcon as
|
|
16
|
-
import { CloseIcon as
|
|
17
|
-
import { CloudIcon as
|
|
18
|
-
import { ClustersIcon as
|
|
19
|
-
import { CogOutlineIcon as
|
|
20
|
-
import { CopyIcon as
|
|
21
|
-
import { CpuIcon as
|
|
22
|
-
import { CubeIcon as
|
|
23
|
-
import { DatacenterIcon as
|
|
24
|
-
import { DeleteIcon as
|
|
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 {
|
|
14
|
+
import { CheckCircleIcon as L } from "./CheckCircle.js";
|
|
15
|
+
import { ClockAlertIcon as b } from "./ClockAlert.js";
|
|
16
|
+
import { ClockOutlineIcon as y } from "./ClockOutline.js";
|
|
17
|
+
import { CloseIcon as G } from "./Close.js";
|
|
18
|
+
import { CloudIcon as N } from "./Cloud.js";
|
|
19
|
+
import { ClustersIcon as K } from "./Clusters.js";
|
|
20
|
+
import { CogOutlineIcon as U } from "./CogOutline.js";
|
|
21
|
+
import { CopyIcon as W } from "./Copy.js";
|
|
22
|
+
import { CpuIcon as j } from "./Cpu.js";
|
|
23
|
+
import { CubeIcon as z } from "./Cube.js";
|
|
24
|
+
import { DatacenterIcon as J } from "./Datacenter.js";
|
|
25
|
+
import { DeleteIcon as Y } from "./Delete.js";
|
|
26
|
+
import { DollarSignIcon as _ } from "./DollarSign.js";
|
|
27
|
+
import { DownloadIcon as oo } from "./Download.js";
|
|
28
|
+
import { EditIcon as eo } from "./Edit.js";
|
|
29
|
+
import { EllipsesIcon as no } from "./Ellipses.js";
|
|
30
|
+
import { EnvironmentsIcon as po } from "./Environments.js";
|
|
31
|
+
import { ErrorIcon as fo } from "./Error.js";
|
|
32
|
+
import { ErrorOutlineIcon as xo } from "./ErrorOutline.js";
|
|
33
|
+
import { ExclamationIcon as lo } from "./Exclamation.js";
|
|
34
|
+
import { GitIcon as so } from "./Git.js";
|
|
35
|
+
import { GitOpsCatalogIcon as uo } from "./GitOpsCatalog.js";
|
|
36
|
+
import { GridViewIcon as ho } from "./GridView.js";
|
|
37
|
+
import { HelpIcon as Ao } from "./Help.js";
|
|
38
|
+
import { HideOutlineIcon as ko } from "./HideOutline.js";
|
|
39
|
+
import { HomeIcon as So } from "./Home.js";
|
|
40
|
+
import { IdIcon as Eo } from "./Id.js";
|
|
41
|
+
import { InformationOutlineIcon as Do } from "./InformationOutline.js";
|
|
42
|
+
import { InvoiceListIcon as Ro } from "./InvoiceList.js";
|
|
43
|
+
import { KeyIcon as Bo } from "./Key.js";
|
|
44
|
+
import { LoaderIcon as Ho } from "./Loader.js";
|
|
45
|
+
import { LightBulbIcon as To } from "./LightBulb.js";
|
|
46
|
+
import { NetworkIcon as Mo } from "./Network.js";
|
|
47
|
+
import { PagesStackIcon as Vo } from "./PagesStack.js";
|
|
48
|
+
import { PageviewIcon as Xo } from "./Pageview.js";
|
|
49
|
+
import { PeopleIcon as qo } from "./People.js";
|
|
50
|
+
import { PhotoLibraryIcon as Fo } from "./PhotoLibrary.js";
|
|
51
|
+
import { PipelineIcon as Qo } from "./Pipeline.js";
|
|
52
|
+
import { PlusIcon as Zo } from "./Plus.js";
|
|
53
|
+
import { PowerSettingsIcon as $o } from "./PowerSettings.js";
|
|
54
|
+
import { PreviewIcon as rr } from "./Preview.js";
|
|
55
|
+
import { ReceiptLongIcon as tr } from "./ReceiptLong.js";
|
|
56
|
+
import { RefreshIcon as cr } from "./Refresh.js";
|
|
57
|
+
import { ScatterPlotIcon as mr } from "./ScatterPlot.js";
|
|
58
|
+
import { SearchIcon as Ir } from "./Search.js";
|
|
59
|
+
import { ServerIcon as ir } from "./Server.js";
|
|
60
|
+
import { StartIcon as ar } from "./Start.js";
|
|
61
|
+
import { TabNewIcon as Cr } from "./TabNew.js";
|
|
62
|
+
import { TeamsIcon as wr } from "./Teams.js";
|
|
63
|
+
import { WarningIcon as dr } from "./Warning.js";
|
|
64
|
+
import { XIcon as Ar } from "./X.js";
|
|
62
65
|
export {
|
|
63
66
|
e as AccountsIcon,
|
|
64
67
|
n as AddChartIcon,
|
|
65
68
|
p as AppRepoIcon,
|
|
66
69
|
f as AppsIcon,
|
|
67
70
|
x as ArchivesIcon,
|
|
68
|
-
|
|
71
|
+
l as ArrowDownIcon,
|
|
69
72
|
s as ArrowLeftIcon,
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
O as
|
|
73
|
+
u as ArrowRightIcon,
|
|
74
|
+
h as ArrowUpIcon,
|
|
75
|
+
g as BarChartIcon,
|
|
76
|
+
P as BookOpenIcon,
|
|
77
|
+
O as CalendarMonthIcon,
|
|
78
|
+
L as CheckCircleIcon,
|
|
75
79
|
v as CheckIcon,
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
Eo as
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
80
|
+
b as ClockAlertIcon,
|
|
81
|
+
y as ClockOutlineIcon,
|
|
82
|
+
G as CloseIcon,
|
|
83
|
+
N as CloudIcon,
|
|
84
|
+
K as ClustersIcon,
|
|
85
|
+
U as CogOutlineIcon,
|
|
86
|
+
W as CopyIcon,
|
|
87
|
+
j as CpuIcon,
|
|
88
|
+
z as CubeIcon,
|
|
89
|
+
J as DatacenterIcon,
|
|
90
|
+
Y as DeleteIcon,
|
|
91
|
+
_ as DollarSignIcon,
|
|
92
|
+
oo as DownloadIcon,
|
|
93
|
+
eo as EditIcon,
|
|
94
|
+
no as EllipsesIcon,
|
|
95
|
+
po as EnvironmentsIcon,
|
|
96
|
+
fo as ErrorIcon,
|
|
97
|
+
xo as ErrorOutlineIcon,
|
|
98
|
+
lo as ExclamationIcon,
|
|
99
|
+
so as GitIcon,
|
|
100
|
+
uo as GitOpsCatalogIcon,
|
|
101
|
+
ho as GridViewIcon,
|
|
102
|
+
Ao as HelpIcon,
|
|
103
|
+
ko as HideOutlineIcon,
|
|
104
|
+
So as HomeIcon,
|
|
105
|
+
Eo as IdIcon,
|
|
106
|
+
Do as InformationOutlineIcon,
|
|
107
|
+
Ro as InvoiceListIcon,
|
|
108
|
+
Bo as KeyIcon,
|
|
109
|
+
To as LightBulbIcon,
|
|
110
|
+
Ho as LoaderIcon,
|
|
111
|
+
Mo as NetworkIcon,
|
|
112
|
+
Vo as PagesStackIcon,
|
|
113
|
+
Xo as PageviewIcon,
|
|
114
|
+
qo as PeopleIcon,
|
|
115
|
+
Fo as PhotoLibraryIcon,
|
|
116
|
+
Qo as PipelineIcon,
|
|
117
|
+
Zo as PlusIcon,
|
|
118
|
+
$o as PowerSettingsIcon,
|
|
119
|
+
rr as PreviewIcon,
|
|
120
|
+
tr as ReceiptLongIcon,
|
|
121
|
+
cr as RefreshIcon,
|
|
122
|
+
mr as ScatterPlotIcon,
|
|
123
|
+
Ir as SearchIcon,
|
|
124
|
+
ir as ServerIcon,
|
|
125
|
+
ar as StartIcon,
|
|
126
|
+
Cr as TabNewIcon,
|
|
127
|
+
wr as TeamsIcon,
|
|
128
|
+
dr as WarningIcon,
|
|
129
|
+
Ar as XIcon
|
|
124
130
|
};
|
|
@@ -3,122 +3,128 @@ import { AddChartIcon as n } from "./components/AddChart.js";
|
|
|
3
3
|
import { AppRepoIcon as p } from "./components/AppRepo.js";
|
|
4
4
|
import { AppsIcon as f } from "./components/Apps.js";
|
|
5
5
|
import { ArchivesIcon as x } from "./components/Archives.js";
|
|
6
|
-
import { ArrowDownIcon as
|
|
6
|
+
import { ArrowDownIcon as l } from "./components/ArrowDown.js";
|
|
7
7
|
import { ArrowLeftIcon as s } from "./components/ArrowLeft.js";
|
|
8
|
-
import { ArrowRightIcon as
|
|
9
|
-
import { ArrowUpIcon as
|
|
10
|
-
import { BarChartIcon as
|
|
11
|
-
import {
|
|
8
|
+
import { ArrowRightIcon as u } from "./components/ArrowRight.js";
|
|
9
|
+
import { ArrowUpIcon as h } from "./components/ArrowUp.js";
|
|
10
|
+
import { BarChartIcon as g } from "./components/BarChart.js";
|
|
11
|
+
import { BookOpenIcon as P } from "./components/BookOpen.js";
|
|
12
|
+
import { CalendarMonthIcon as O } from "./components/CalendarMonth.js";
|
|
12
13
|
import { CheckIcon as v } from "./components/Check.js";
|
|
13
|
-
import { CheckCircleIcon as
|
|
14
|
-
import { ClockAlertIcon as
|
|
15
|
-
import { ClockOutlineIcon as
|
|
16
|
-
import { CloseIcon as
|
|
17
|
-
import { CloudIcon as
|
|
18
|
-
import { ClustersIcon as
|
|
19
|
-
import { CogOutlineIcon as
|
|
20
|
-
import { CopyIcon as
|
|
21
|
-
import { CpuIcon as
|
|
22
|
-
import { CubeIcon as
|
|
23
|
-
import { DatacenterIcon as
|
|
24
|
-
import { DeleteIcon as
|
|
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 {
|
|
14
|
+
import { CheckCircleIcon as L } from "./components/CheckCircle.js";
|
|
15
|
+
import { ClockAlertIcon as b } from "./components/ClockAlert.js";
|
|
16
|
+
import { ClockOutlineIcon as y } from "./components/ClockOutline.js";
|
|
17
|
+
import { CloseIcon as G } from "./components/Close.js";
|
|
18
|
+
import { CloudIcon as N } from "./components/Cloud.js";
|
|
19
|
+
import { ClustersIcon as K } from "./components/Clusters.js";
|
|
20
|
+
import { CogOutlineIcon as U } from "./components/CogOutline.js";
|
|
21
|
+
import { CopyIcon as W } from "./components/Copy.js";
|
|
22
|
+
import { CpuIcon as j } from "./components/Cpu.js";
|
|
23
|
+
import { CubeIcon as z } from "./components/Cube.js";
|
|
24
|
+
import { DatacenterIcon as J } from "./components/Datacenter.js";
|
|
25
|
+
import { DeleteIcon as Y } from "./components/Delete.js";
|
|
26
|
+
import { DollarSignIcon as _ } from "./components/DollarSign.js";
|
|
27
|
+
import { DownloadIcon as oo } from "./components/Download.js";
|
|
28
|
+
import { EditIcon as eo } from "./components/Edit.js";
|
|
29
|
+
import { EllipsesIcon as no } from "./components/Ellipses.js";
|
|
30
|
+
import { EnvironmentsIcon as po } from "./components/Environments.js";
|
|
31
|
+
import { ErrorIcon as fo } from "./components/Error.js";
|
|
32
|
+
import { ErrorOutlineIcon as xo } from "./components/ErrorOutline.js";
|
|
33
|
+
import { ExclamationIcon as lo } from "./components/Exclamation.js";
|
|
34
|
+
import { GitIcon as so } from "./components/Git.js";
|
|
35
|
+
import { GitOpsCatalogIcon as uo } from "./components/GitOpsCatalog.js";
|
|
36
|
+
import { GridViewIcon as ho } from "./components/GridView.js";
|
|
37
|
+
import { HelpIcon as Ao } from "./components/Help.js";
|
|
38
|
+
import { HideOutlineIcon as ko } from "./components/HideOutline.js";
|
|
39
|
+
import { HomeIcon as So } from "./components/Home.js";
|
|
40
|
+
import { IdIcon as Eo } from "./components/Id.js";
|
|
41
|
+
import { InformationOutlineIcon as Do } from "./components/InformationOutline.js";
|
|
42
|
+
import { InvoiceListIcon as Ro } from "./components/InvoiceList.js";
|
|
43
|
+
import { KeyIcon as Bo } from "./components/Key.js";
|
|
44
|
+
import { LoaderIcon as Ho } from "./components/Loader.js";
|
|
45
|
+
import { LightBulbIcon as To } from "./components/LightBulb.js";
|
|
46
|
+
import { NetworkIcon as Mo } from "./components/Network.js";
|
|
47
|
+
import { PagesStackIcon as Vo } from "./components/PagesStack.js";
|
|
48
|
+
import { PageviewIcon as Xo } from "./components/Pageview.js";
|
|
49
|
+
import { PeopleIcon as qo } from "./components/People.js";
|
|
50
|
+
import { PhotoLibraryIcon as Fo } from "./components/PhotoLibrary.js";
|
|
51
|
+
import { PipelineIcon as Qo } from "./components/Pipeline.js";
|
|
52
|
+
import { PlusIcon as Zo } from "./components/Plus.js";
|
|
53
|
+
import { PowerSettingsIcon as $o } from "./components/PowerSettings.js";
|
|
54
|
+
import { PreviewIcon as rr } from "./components/Preview.js";
|
|
55
|
+
import { ReceiptLongIcon as tr } from "./components/ReceiptLong.js";
|
|
56
|
+
import { RefreshIcon as cr } from "./components/Refresh.js";
|
|
57
|
+
import { ScatterPlotIcon as mr } from "./components/ScatterPlot.js";
|
|
58
|
+
import { SearchIcon as Ir } from "./components/Search.js";
|
|
59
|
+
import { ServerIcon as ir } from "./components/Server.js";
|
|
60
|
+
import { StartIcon as ar } from "./components/Start.js";
|
|
61
|
+
import { TabNewIcon as Cr } from "./components/TabNew.js";
|
|
62
|
+
import { TeamsIcon as wr } from "./components/Teams.js";
|
|
63
|
+
import { WarningIcon as dr } from "./components/Warning.js";
|
|
64
|
+
import { XIcon as Ar } from "./components/X.js";
|
|
62
65
|
export {
|
|
63
66
|
e as AccountsIcon,
|
|
64
67
|
n as AddChartIcon,
|
|
65
68
|
p as AppRepoIcon,
|
|
66
69
|
f as AppsIcon,
|
|
67
70
|
x as ArchivesIcon,
|
|
68
|
-
|
|
71
|
+
l as ArrowDownIcon,
|
|
69
72
|
s as ArrowLeftIcon,
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
O as
|
|
73
|
+
u as ArrowRightIcon,
|
|
74
|
+
h as ArrowUpIcon,
|
|
75
|
+
g as BarChartIcon,
|
|
76
|
+
P as BookOpenIcon,
|
|
77
|
+
O as CalendarMonthIcon,
|
|
78
|
+
L as CheckCircleIcon,
|
|
75
79
|
v as CheckIcon,
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
Eo as
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
80
|
+
b as ClockAlertIcon,
|
|
81
|
+
y as ClockOutlineIcon,
|
|
82
|
+
G as CloseIcon,
|
|
83
|
+
N as CloudIcon,
|
|
84
|
+
K as ClustersIcon,
|
|
85
|
+
U as CogOutlineIcon,
|
|
86
|
+
W as CopyIcon,
|
|
87
|
+
j as CpuIcon,
|
|
88
|
+
z as CubeIcon,
|
|
89
|
+
J as DatacenterIcon,
|
|
90
|
+
Y as DeleteIcon,
|
|
91
|
+
_ as DollarSignIcon,
|
|
92
|
+
oo as DownloadIcon,
|
|
93
|
+
eo as EditIcon,
|
|
94
|
+
no as EllipsesIcon,
|
|
95
|
+
po as EnvironmentsIcon,
|
|
96
|
+
fo as ErrorIcon,
|
|
97
|
+
xo as ErrorOutlineIcon,
|
|
98
|
+
lo as ExclamationIcon,
|
|
99
|
+
so as GitIcon,
|
|
100
|
+
uo as GitOpsCatalogIcon,
|
|
101
|
+
ho as GridViewIcon,
|
|
102
|
+
Ao as HelpIcon,
|
|
103
|
+
ko as HideOutlineIcon,
|
|
104
|
+
So as HomeIcon,
|
|
105
|
+
Eo as IdIcon,
|
|
106
|
+
Do as InformationOutlineIcon,
|
|
107
|
+
Ro as InvoiceListIcon,
|
|
108
|
+
Bo as KeyIcon,
|
|
109
|
+
To as LightBulbIcon,
|
|
110
|
+
Ho as LoaderIcon,
|
|
111
|
+
Mo as NetworkIcon,
|
|
112
|
+
Vo as PagesStackIcon,
|
|
113
|
+
Xo as PageviewIcon,
|
|
114
|
+
qo as PeopleIcon,
|
|
115
|
+
Fo as PhotoLibraryIcon,
|
|
116
|
+
Qo as PipelineIcon,
|
|
117
|
+
Zo as PlusIcon,
|
|
118
|
+
$o as PowerSettingsIcon,
|
|
119
|
+
rr as PreviewIcon,
|
|
120
|
+
tr as ReceiptLongIcon,
|
|
121
|
+
cr as RefreshIcon,
|
|
122
|
+
mr as ScatterPlotIcon,
|
|
123
|
+
Ir as SearchIcon,
|
|
124
|
+
ir as ServerIcon,
|
|
125
|
+
ar as StartIcon,
|
|
126
|
+
Cr as TabNewIcon,
|
|
127
|
+
wr as TeamsIcon,
|
|
128
|
+
dr as WarningIcon,
|
|
129
|
+
Ar as XIcon
|
|
124
130
|
};
|