@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
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
import { c as t } from "../../../../index-D29mdTf5.js";
|
|
2
|
-
const
|
|
2
|
+
const r = t([
|
|
3
|
+
"flex",
|
|
4
|
+
"items-center",
|
|
5
|
+
"h-8",
|
|
6
|
+
"px-6",
|
|
7
|
+
"py-1.5",
|
|
8
|
+
"text-[11px]",
|
|
9
|
+
"font-medium",
|
|
10
|
+
"uppercase",
|
|
11
|
+
"tracking-[0.25px]",
|
|
12
|
+
"text-metal-50",
|
|
13
|
+
"pointer-events-none",
|
|
14
|
+
"select-none",
|
|
15
|
+
"cursor-default"
|
|
16
|
+
]), a = t([
|
|
3
17
|
"scrollbar",
|
|
4
18
|
"absolute",
|
|
5
19
|
"bg-white",
|
|
@@ -27,5 +41,6 @@ const o = t([
|
|
|
27
41
|
"[&>li:last-child]:mb-2"
|
|
28
42
|
]);
|
|
29
43
|
export {
|
|
30
|
-
|
|
44
|
+
r as listGroupLabelVariants,
|
|
45
|
+
a as listVariants
|
|
31
46
|
};
|
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
import { ComponentRef, ForwardRefExoticComponent, RefAttributes } from 'react';
|
|
2
2
|
import { SelectProps } from '../Select.types';
|
|
3
|
-
export declare const Wrapper: ForwardRefExoticComponent<Omit<SelectProps, 'options'> &
|
|
3
|
+
export declare const Wrapper: ForwardRefExoticComponent<Omit<SelectProps, 'options'> & {
|
|
4
|
+
groupedOptions: SelectProps['options'];
|
|
5
|
+
} & RefAttributes<ComponentRef<'input'>>>;
|
|
@@ -1,98 +1,99 @@
|
|
|
1
1
|
import { jsxs as o, jsx as r } from "react/jsx-runtime";
|
|
2
|
-
import { forwardRef as
|
|
3
|
-
import { Typography as
|
|
2
|
+
import { forwardRef as ae, useId as re, useRef as w, useMemo as ne, useImperativeHandle as le, useEffect as se } from "react";
|
|
3
|
+
import { Typography as oe } from "../../Typography/Typography.js";
|
|
4
4
|
import { cn as n } from "../../../utils/index.js";
|
|
5
|
-
import { labelVariants as
|
|
6
|
-
import { useSelect as
|
|
7
|
-
import { List as
|
|
8
|
-
import { c as
|
|
9
|
-
import { LoaderIcon as
|
|
10
|
-
import { C as
|
|
11
|
-
import { useSelectContext as
|
|
12
|
-
const
|
|
5
|
+
import { labelVariants as ce, inputVariants as ie, selectVariants as me } from "../Select.variants.js";
|
|
6
|
+
import { useSelect as pe } from "../hooks/useSelect.js";
|
|
7
|
+
import { List as ue } from "./List/List.js";
|
|
8
|
+
import { c as fe } from "../../../createLucideIcon-CP-mMPfa.js";
|
|
9
|
+
import { LoaderIcon as de } from "../../../assets/icons/components/Loader.js";
|
|
10
|
+
import { C as xe } from "../../../chevron-up-IlDPxR7j.js";
|
|
11
|
+
import { useSelectContext as he } from "../contexts/select.hook.js";
|
|
12
|
+
const ve = [
|
|
13
13
|
["path", { d: "m21 21-4.34-4.34", key: "14j7rj" }],
|
|
14
14
|
["circle", { cx: "11", cy: "11", r: "8", key: "4ej97u" }]
|
|
15
|
-
],
|
|
15
|
+
], Ne = fe("search", ve), Oe = ae(
|
|
16
16
|
({
|
|
17
17
|
additionalOptions: z,
|
|
18
18
|
className: O,
|
|
19
19
|
defaultValue: x,
|
|
20
20
|
disabled: t = !1,
|
|
21
21
|
error: f,
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
22
|
+
groupedOptions: R,
|
|
23
|
+
iconClassName: F,
|
|
24
|
+
inputClassName: S,
|
|
25
|
+
isInfiniteScrollEnabled: T = !1,
|
|
25
26
|
isLoading: g,
|
|
26
27
|
isRequired: h,
|
|
27
28
|
label: v,
|
|
28
|
-
labelAction:
|
|
29
|
-
labelClassName:
|
|
30
|
-
labelWrapperClassName:
|
|
31
|
-
listClassName:
|
|
32
|
-
listItemClassName:
|
|
33
|
-
listItemSecondRowClassName:
|
|
29
|
+
labelAction: E,
|
|
30
|
+
labelClassName: M,
|
|
31
|
+
labelWrapperClassName: W,
|
|
32
|
+
listClassName: _,
|
|
33
|
+
listItemClassName: $,
|
|
34
|
+
listItemSecondRowClassName: H,
|
|
34
35
|
name: d,
|
|
35
|
-
noOptionsText:
|
|
36
|
+
noOptionsText: P,
|
|
36
37
|
placeholder: N,
|
|
37
38
|
searchable: k = !1,
|
|
38
39
|
showSearchIcon: C,
|
|
39
|
-
theme:
|
|
40
|
-
wrapperClassName:
|
|
41
|
-
onFetchMoreOptions:
|
|
42
|
-
onBlur:
|
|
43
|
-
onSearchChange:
|
|
40
|
+
theme: U,
|
|
41
|
+
wrapperClassName: q,
|
|
42
|
+
onFetchMoreOptions: A,
|
|
43
|
+
onBlur: B,
|
|
44
|
+
onSearchChange: D,
|
|
44
45
|
...y
|
|
45
|
-
},
|
|
46
|
-
const I =
|
|
46
|
+
}, G) => {
|
|
47
|
+
const I = re(), c = w(null), j = w(null), J = w(0), {
|
|
47
48
|
isOpen: i,
|
|
48
49
|
options: l,
|
|
49
|
-
searchTerm:
|
|
50
|
+
searchTerm: K,
|
|
50
51
|
value: s,
|
|
51
|
-
setCanFilter:
|
|
52
|
-
setSearchTerm:
|
|
52
|
+
setCanFilter: Q,
|
|
53
|
+
setSearchTerm: X,
|
|
53
54
|
setValue: m,
|
|
54
|
-
toggleOpen:
|
|
55
|
-
} =
|
|
55
|
+
toggleOpen: Y
|
|
56
|
+
} = he(), e = ne(() => l.find(({ value: a }) => a === s), [l, s]), { wrapperRef: Z, wrapperInputRef: L, handleOpen: V } = pe({
|
|
56
57
|
ulRef: j,
|
|
57
58
|
inputRef: c,
|
|
58
59
|
disabled: t,
|
|
59
60
|
internalValue: e,
|
|
60
|
-
onBlur:
|
|
61
|
+
onBlur: B
|
|
61
62
|
}), p = d ? `${I}-${d}` : I;
|
|
62
|
-
|
|
63
|
+
le(G, () => c.current, [c]), se(() => {
|
|
63
64
|
if (x && !s) {
|
|
64
65
|
const a = l && l.find((u) => u.value === x);
|
|
65
66
|
a && m(a.value);
|
|
66
67
|
}
|
|
67
68
|
}, [x, l, m, s]);
|
|
68
|
-
const
|
|
69
|
+
const ee = (a) => {
|
|
69
70
|
const u = a.target.value;
|
|
70
|
-
|
|
71
|
+
Q(!0), m(""), X(u ?? ""), D?.(u);
|
|
71
72
|
const b = l.find(
|
|
72
|
-
(
|
|
73
|
+
(te) => te.value.toLocaleLowerCase() === u.toLocaleLowerCase()
|
|
73
74
|
);
|
|
74
75
|
m(b ? b.value : e?.value ?? "");
|
|
75
76
|
};
|
|
76
77
|
return /* @__PURE__ */ o(
|
|
77
78
|
"div",
|
|
78
79
|
{
|
|
79
|
-
ref:
|
|
80
|
-
className: n("flex flex-col gap-2 w-full relative",
|
|
81
|
-
"data-theme":
|
|
80
|
+
ref: Z,
|
|
81
|
+
className: n("flex flex-col gap-2 w-full relative", q),
|
|
82
|
+
"data-theme": U,
|
|
82
83
|
children: [
|
|
83
84
|
v ? /* @__PURE__ */ o(
|
|
84
85
|
"div",
|
|
85
86
|
{
|
|
86
87
|
className: n(
|
|
87
88
|
"flex items-center justify-between",
|
|
88
|
-
|
|
89
|
+
W
|
|
89
90
|
),
|
|
90
91
|
children: [
|
|
91
92
|
/* @__PURE__ */ o(
|
|
92
93
|
"label",
|
|
93
94
|
{
|
|
94
95
|
id: p,
|
|
95
|
-
className: n(
|
|
96
|
+
className: n(ce({ className: M })),
|
|
96
97
|
htmlFor: p,
|
|
97
98
|
onClick: () => !t && V(),
|
|
98
99
|
children: [
|
|
@@ -101,7 +102,7 @@ const he = [
|
|
|
101
102
|
]
|
|
102
103
|
}
|
|
103
104
|
),
|
|
104
|
-
|
|
105
|
+
E
|
|
105
106
|
]
|
|
106
107
|
}
|
|
107
108
|
) : null,
|
|
@@ -111,18 +112,18 @@ const he = [
|
|
|
111
112
|
ref: L,
|
|
112
113
|
id: p,
|
|
113
114
|
className: n(
|
|
114
|
-
|
|
115
|
+
me({ className: O, hasError: !!f, disabled: t })
|
|
115
116
|
),
|
|
116
117
|
role: "combobox",
|
|
117
|
-
onClick: () => !t &&
|
|
118
|
+
onClick: () => !t && Y(!i),
|
|
118
119
|
"aria-expanded": i,
|
|
119
|
-
tabIndex:
|
|
120
|
+
tabIndex: J.current,
|
|
120
121
|
"aria-labelledby": p,
|
|
121
122
|
children: [
|
|
122
123
|
/* @__PURE__ */ o("div", { className: "flex gap-2.5 items-center flex-1", children: [
|
|
123
124
|
e?.leftIcon && !C && /* @__PURE__ */ r("span", { className: "w-4 h-4 flex justify-center items-center dark:text-metal-50", children: e.leftIcon }),
|
|
124
125
|
C && /* @__PURE__ */ r(
|
|
125
|
-
|
|
126
|
+
Ne,
|
|
126
127
|
{
|
|
127
128
|
className: n(
|
|
128
129
|
"w-4",
|
|
@@ -140,10 +141,10 @@ const he = [
|
|
|
140
141
|
"input",
|
|
141
142
|
{
|
|
142
143
|
type: "text",
|
|
143
|
-
value: i ?
|
|
144
|
-
onChange:
|
|
144
|
+
value: i ? K : e?.label ?? s ?? "",
|
|
145
|
+
onChange: ee,
|
|
145
146
|
placeholder: N,
|
|
146
|
-
className: n(
|
|
147
|
+
className: n(ie({ className: S }), {
|
|
147
148
|
"text-red-700 placeholder:text-red-700": !!f
|
|
148
149
|
}),
|
|
149
150
|
onClick: (a) => {
|
|
@@ -159,7 +160,7 @@ const he = [
|
|
|
159
160
|
...y
|
|
160
161
|
}
|
|
161
162
|
) : /* @__PURE__ */ o(
|
|
162
|
-
|
|
163
|
+
oe,
|
|
163
164
|
{
|
|
164
165
|
variant: "body2",
|
|
165
166
|
className: n(
|
|
@@ -181,18 +182,18 @@ const he = [
|
|
|
181
182
|
)
|
|
182
183
|
] }),
|
|
183
184
|
g ? /* @__PURE__ */ r(
|
|
184
|
-
|
|
185
|
+
de,
|
|
185
186
|
{
|
|
186
187
|
size: 16,
|
|
187
188
|
className: "text-metal-400 animate-spin select-none"
|
|
188
189
|
}
|
|
189
190
|
) : !C && /* @__PURE__ */ r(
|
|
190
|
-
|
|
191
|
+
xe,
|
|
191
192
|
{
|
|
192
193
|
"data-state": i ? "open" : "closed",
|
|
193
194
|
className: n(
|
|
194
195
|
"w-4 h-4 text-zinc-500 transition-all duration-100 data-[state=open]:rotate-0 data-[state=closed]:rotate-180 select-none dark:group-focus-within:text-metal-50",
|
|
195
|
-
|
|
196
|
+
F,
|
|
196
197
|
{
|
|
197
198
|
"text-red-700": !!f,
|
|
198
199
|
"text-metal-400/50 dark:group-focus-within:text-zinc-500": t
|
|
@@ -218,22 +219,23 @@ const he = [
|
|
|
218
219
|
}
|
|
219
220
|
),
|
|
220
221
|
i && /* @__PURE__ */ r(
|
|
221
|
-
|
|
222
|
+
ue,
|
|
222
223
|
{
|
|
223
224
|
ref: j,
|
|
224
225
|
additionalOptions: z,
|
|
225
|
-
className:
|
|
226
|
-
|
|
226
|
+
className: _,
|
|
227
|
+
groupedOptions: R,
|
|
228
|
+
itemClassName: $,
|
|
227
229
|
name: d,
|
|
228
230
|
wrapperInputRef: L,
|
|
229
231
|
inputRef: c,
|
|
230
232
|
options: l,
|
|
231
233
|
isLoading: !!g,
|
|
232
234
|
searchable: k,
|
|
233
|
-
listItemSecondRowClassName:
|
|
234
|
-
isInfiniteScrollEnabled:
|
|
235
|
-
onFetchMoreOptions:
|
|
236
|
-
noOptionsText:
|
|
235
|
+
listItemSecondRowClassName: H,
|
|
236
|
+
isInfiniteScrollEnabled: T,
|
|
237
|
+
onFetchMoreOptions: A,
|
|
238
|
+
noOptionsText: P
|
|
237
239
|
}
|
|
238
240
|
)
|
|
239
241
|
]
|
|
@@ -242,5 +244,5 @@ const he = [
|
|
|
242
244
|
}
|
|
243
245
|
);
|
|
244
246
|
export {
|
|
245
|
-
|
|
247
|
+
Oe as Wrapper
|
|
246
248
|
};
|
|
@@ -1,8 +1,10 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
1
|
+
import { A as t } from "../../../AdditionalOptions-C2FDVZhu.js";
|
|
2
|
+
import { EmptyList as e } from "./EmptyList.js";
|
|
3
|
+
import { List as m } from "./List/List.js";
|
|
4
|
+
import { Wrapper as s } from "./Wrapper.js";
|
|
4
5
|
export {
|
|
5
|
-
|
|
6
|
-
e as
|
|
7
|
-
|
|
6
|
+
t as AdditionalOptions,
|
|
7
|
+
e as EmptyList,
|
|
8
|
+
m as List,
|
|
9
|
+
s as Wrapper
|
|
8
10
|
};
|
package/dist/components/index.js
CHANGED
|
@@ -17,7 +17,7 @@ import { Filter as k } from "./Filter/Filter.js";
|
|
|
17
17
|
import { ImageUpload as F } from "./ImageUpload/ImageUpload.js";
|
|
18
18
|
import { Input as M } from "./Input/Input.js";
|
|
19
19
|
import { Loading as y } from "./Loading/Loading.js";
|
|
20
|
-
import { M as U } from "../Modal
|
|
20
|
+
import { M as U } from "../Modal-mwLmWbnA.js";
|
|
21
21
|
import { MultiSelectDropdown as j } from "./MultiSelectDropdown/MultiSelectDropdown.js";
|
|
22
22
|
import { PhoneNumberInput as H } from "./PhoneNumberInput/PhoneNumberInput.js";
|
|
23
23
|
import { PieChart as K } from "./PieChart/PieChart.js";
|
package/dist/icons.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { AccountsIcon, AddChartIcon, AlertOutlineIcon, AppRepoIcon, AppsIcon, ArchivesIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, BarChartIcon, BookOpenIcon, CalendarMonthIcon, CheckIcon, CheckCircleIcon, ClockAlertIcon, ClockOutlineIcon, CloseIcon, CloudIcon, ClustersIcon, CogOutlineIcon, CopyIcon, CpuIcon, CubeIcon, DatacenterIcon, DeleteIcon, DollarSignIcon, DownloadIcon, EditIcon, EllipsesIcon, EnvironmentsIcon, ErrorIcon, ErrorOutlineIcon, ExclamationIcon, GitIcon, GitOpsCatalogIcon, GridViewIcon, HelpIcon, HideOutlineIcon, HomeIcon, IdIcon, InformationOutlineIcon, InvoiceListIcon, KeyIcon, LoaderIcon, LightBulbIcon, NetworkIcon, PagesStackIcon, PageviewIcon, PeopleIcon, PhotoLibraryIcon, PipelineIcon, PlusIcon, PowerSettingsIcon, PreviewIcon, ReceiptLongIcon, RefreshIcon, ScatterPlotIcon, SearchIcon, ServerIcon, StartIcon, TabNewIcon, TeamsIcon, WarningIcon, XIcon, } from './assets/icons/components';
|
|
1
|
+
export { AccountsIcon, AddChartIcon, AlertOutlineIcon, AppRepoIcon, AppsIcon, ArchivesIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, BarChartIcon, BookOpenIcon, CalendarMonthIcon, CheckIcon, CheckCircleIcon, ClockAlertIcon, ClockOutlineIcon, CloseIcon, CloudIcon, CloudLockOutlineIcon, ClustersIcon, CogOutlineIcon, CopyIcon, CpuIcon, CubeIcon, DatacenterIcon, DeleteIcon, DollarSignIcon, DownloadIcon, EditIcon, EllipsesIcon, EnvironmentsIcon, ErrorIcon, ErrorOutlineIcon, ExclamationIcon, GitIcon, GitOpsCatalogIcon, GridViewIcon, HelpIcon, HideOutlineIcon, HomeIcon, IdIcon, InformationOutlineIcon, InvoiceListIcon, KeyIcon, LoaderIcon, LightBulbIcon, NetworkIcon, PagesStackIcon, PageviewIcon, PeopleIcon, PhotoLibraryIcon, PipelineIcon, PlusIcon, PowerSettingsIcon, PreviewIcon, ReceiptLongIcon, RefreshIcon, ScatterPlotIcon, SearchIcon, ServerIcon, StartIcon, TabNewIcon, TeamsIcon, WarningIcon, XIcon, } from './assets/icons/components';
|
|
2
2
|
export type { IconProps, IconComponent } from './assets/icons/components';
|
package/dist/icons.js
CHANGED
|
@@ -4,65 +4,66 @@ import { AlertOutlineIcon as p } from "./assets/icons/components/AlertOutline.js
|
|
|
4
4
|
import { AppRepoIcon as f } from "./assets/icons/components/AppRepo.js";
|
|
5
5
|
import { AppsIcon as x } from "./assets/icons/components/Apps.js";
|
|
6
6
|
import { ArchivesIcon as l } from "./assets/icons/components/Archives.js";
|
|
7
|
-
import { ArrowDownIcon as
|
|
7
|
+
import { ArrowDownIcon as C } from "./assets/icons/components/ArrowDown.js";
|
|
8
8
|
import { ArrowLeftIcon as u } from "./assets/icons/components/ArrowLeft.js";
|
|
9
|
-
import { ArrowRightIcon as
|
|
10
|
-
import { ArrowUpIcon as
|
|
11
|
-
import { BarChartIcon as
|
|
9
|
+
import { ArrowRightIcon as d } from "./assets/icons/components/ArrowRight.js";
|
|
10
|
+
import { ArrowUpIcon as A } from "./assets/icons/components/ArrowUp.js";
|
|
11
|
+
import { BarChartIcon as O } from "./assets/icons/components/BarChart.js";
|
|
12
12
|
import { BookOpenIcon as k } from "./assets/icons/components/BookOpen.js";
|
|
13
|
-
import { CalendarMonthIcon as
|
|
14
|
-
import { CheckCircleIcon as
|
|
13
|
+
import { CalendarMonthIcon as S } from "./assets/icons/components/CalendarMonth.js";
|
|
14
|
+
import { CheckCircleIcon as E } from "./assets/icons/components/CheckCircle.js";
|
|
15
15
|
import { CheckIcon as b } from "./assets/icons/components/Check.js";
|
|
16
16
|
import { ClockAlertIcon as y } from "./assets/icons/components/ClockAlert.js";
|
|
17
17
|
import { ClockOutlineIcon as G } from "./assets/icons/components/ClockOutline.js";
|
|
18
18
|
import { CloseIcon as N } from "./assets/icons/components/Close.js";
|
|
19
19
|
import { CloudIcon as K } from "./assets/icons/components/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 "./assets/icons/components/CloudLockOutline.js";
|
|
21
|
+
import { ClustersIcon as W } from "./assets/icons/components/Clusters.js";
|
|
22
|
+
import { CogOutlineIcon as j } from "./assets/icons/components/CogOutline.js";
|
|
23
|
+
import { CopyIcon as z } from "./assets/icons/components/Copy.js";
|
|
24
|
+
import { CpuIcon as J } from "./assets/icons/components/Cpu.js";
|
|
25
|
+
import { CubeIcon as Y } from "./assets/icons/components/Cube.js";
|
|
26
|
+
import { DatacenterIcon as _ } from "./assets/icons/components/Datacenter.js";
|
|
27
|
+
import { DeleteIcon as oo } from "./assets/icons/components/Delete.js";
|
|
28
|
+
import { DollarSignIcon as eo } from "./assets/icons/components/DollarSign.js";
|
|
29
|
+
import { DownloadIcon as no } from "./assets/icons/components/Download.js";
|
|
30
|
+
import { EditIcon as po } from "./assets/icons/components/Edit.js";
|
|
31
|
+
import { EllipsesIcon as fo } from "./assets/icons/components/Ellipses.js";
|
|
32
|
+
import { EnvironmentsIcon as xo } from "./assets/icons/components/Environments.js";
|
|
33
|
+
import { ErrorIcon as lo } from "./assets/icons/components/Error.js";
|
|
34
|
+
import { ErrorOutlineIcon as Co } from "./assets/icons/components/ErrorOutline.js";
|
|
35
|
+
import { ExclamationIcon as uo } from "./assets/icons/components/Exclamation.js";
|
|
36
|
+
import { GitIcon as ho } from "./assets/icons/components/Git.js";
|
|
37
|
+
import { GitOpsCatalogIcon as go } from "./assets/icons/components/GitOpsCatalog.js";
|
|
38
|
+
import { GridViewIcon as Po } from "./assets/icons/components/GridView.js";
|
|
39
|
+
import { HelpIcon as Lo } from "./assets/icons/components/Help.js";
|
|
40
|
+
import { HideOutlineIcon as vo } from "./assets/icons/components/HideOutline.js";
|
|
41
|
+
import { HomeIcon as Do } from "./assets/icons/components/Home.js";
|
|
42
|
+
import { IdIcon as Ro } from "./assets/icons/components/Id.js";
|
|
43
|
+
import { InformationOutlineIcon as Bo } from "./assets/icons/components/InformationOutline.js";
|
|
44
|
+
import { InvoiceListIcon as Ho } from "./assets/icons/components/InvoiceList.js";
|
|
45
|
+
import { KeyIcon as To } from "./assets/icons/components/Key.js";
|
|
46
|
+
import { LightBulbIcon as Mo } from "./assets/icons/components/LightBulb.js";
|
|
47
|
+
import { LoaderIcon as Vo } from "./assets/icons/components/Loader.js";
|
|
48
|
+
import { NetworkIcon as Xo } from "./assets/icons/components/Network.js";
|
|
49
|
+
import { PagesStackIcon as qo } from "./assets/icons/components/PagesStack.js";
|
|
50
|
+
import { PageviewIcon as Fo } from "./assets/icons/components/Pageview.js";
|
|
51
|
+
import { PeopleIcon as Qo } from "./assets/icons/components/People.js";
|
|
52
|
+
import { PhotoLibraryIcon as Zo } from "./assets/icons/components/PhotoLibrary.js";
|
|
53
|
+
import { PipelineIcon as $o } from "./assets/icons/components/Pipeline.js";
|
|
54
|
+
import { PlusIcon as rr } from "./assets/icons/components/Plus.js";
|
|
55
|
+
import { PowerSettingsIcon as tr } from "./assets/icons/components/PowerSettings.js";
|
|
56
|
+
import { PreviewIcon as cr } from "./assets/icons/components/Preview.js";
|
|
57
|
+
import { ReceiptLongIcon as mr } from "./assets/icons/components/ReceiptLong.js";
|
|
58
|
+
import { RefreshIcon as Ir } from "./assets/icons/components/Refresh.js";
|
|
59
|
+
import { ScatterPlotIcon as ir } from "./assets/icons/components/ScatterPlot.js";
|
|
60
|
+
import { SearchIcon as ar } from "./assets/icons/components/Search.js";
|
|
61
|
+
import { ServerIcon as sr } from "./assets/icons/components/Server.js";
|
|
62
|
+
import { StartIcon as wr } from "./assets/icons/components/Start.js";
|
|
63
|
+
import { TabNewIcon as hr } from "./assets/icons/components/TabNew.js";
|
|
64
|
+
import { TeamsIcon as gr } from "./assets/icons/components/Teams.js";
|
|
65
|
+
import { WarningIcon as Pr } from "./assets/icons/components/Warning.js";
|
|
66
|
+
import { XIcon as Lr } from "./assets/icons/components/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
|
-
|
|
80
|
+
S as CalendarMonthIcon,
|
|
81
|
+
E as CheckCircleIcon,
|
|
81
82
|
b 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
|
-
To as
|
|
112
|
-
Mo as
|
|
113
|
-
Vo as
|
|
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
|
+
Mo as LightBulbIcon,
|
|
114
|
+
Vo 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
|
};
|
package/dist/index.js
CHANGED
|
@@ -26,7 +26,7 @@ import { Input as _ } from "./components/Input/Input.js";
|
|
|
26
26
|
import { List as rr } from "./components/Tabs/components/List.js";
|
|
27
27
|
import { Loading as er } from "./components/Loading/Loading.js";
|
|
28
28
|
import { Logo as pr } from "./components/Sidebar/components/Logo/Logo.js";
|
|
29
|
-
import { M as mr } from "./Modal
|
|
29
|
+
import { M as mr } from "./Modal-mwLmWbnA.js";
|
|
30
30
|
import { MultiSelectDropdown as fr } from "./components/MultiSelectDropdown/MultiSelectDropdown.js";
|
|
31
31
|
import { Navigation as ir } from "./components/Sidebar/components/Navigation/Navigation.js";
|
|
32
32
|
import { NavigationGroup as dr } from "./components/Sidebar/components/NavigationGroup/NavigationGroup.js";
|
package/dist/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@konstructio/ui",
|
|
3
3
|
"description": "A set of reusable and customizable React components built for konstruct.io",
|
|
4
4
|
"private": false,
|
|
5
|
-
"version": "0.1.2-alpha.
|
|
5
|
+
"version": "0.1.2-alpha.67",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"main": "dist/index.js",
|