@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.
Files changed (40) hide show
  1. package/dist/AdditionalOptions-C2FDVZhu.js +45 -0
  2. package/dist/{Modal--z642-Wv.js → Modal-mwLmWbnA.js} +23 -20
  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/Modal/Modal.js +1 -1
  15. package/dist/components/Modal/components/Wrapper/Wrapper.js +3 -2
  16. package/dist/components/Modal/components/Wrapper/Wrapper.variants.js +2 -2
  17. package/dist/components/Modal/components/index.js +1 -1
  18. package/dist/components/Select/Select.d.ts +1 -0
  19. package/dist/components/Select/Select.js +54 -40
  20. package/dist/components/Select/Select.types.d.ts +18 -2
  21. package/dist/components/Select/components/AdditionalOptions/AdditionalOptions.d.ts +3 -0
  22. package/dist/components/Select/components/AdditionalOptions/AdditionalOptions.js +11 -0
  23. package/dist/components/Select/components/AdditionalOptions/AdditionalOptions.types.d.ts +4 -0
  24. package/dist/components/Select/components/AdditionalOptions/AdditionalOptions.variants.d.ts +1 -0
  25. package/dist/components/Select/components/AdditionalOptions/AdditionalOptions.variants.js +26 -0
  26. package/dist/components/Select/components/List/List.js +131 -132
  27. package/dist/components/Select/components/List/List.types.d.ts +1 -0
  28. package/dist/components/Select/components/List/List.variants.d.ts +1 -0
  29. package/dist/components/Select/components/List/List.variants.js +17 -2
  30. package/dist/components/Select/components/Wrapper.d.ts +3 -1
  31. package/dist/components/Select/components/Wrapper.js +65 -63
  32. package/dist/components/Select/components/index.d.ts +1 -0
  33. package/dist/components/Select/components/index.js +8 -6
  34. package/dist/components/index.js +1 -1
  35. package/dist/icons.d.ts +1 -1
  36. package/dist/icons.js +106 -104
  37. package/dist/index.js +1 -1
  38. package/dist/package.json +1 -1
  39. package/dist/styles.css +1 -1
  40. package/package.json +1 -1
@@ -1 +1,2 @@
1
+ export declare const listGroupLabelVariants: (props?: import('class-variance-authority/types').ClassProp | undefined) => string;
1
2
  export declare const listVariants: (props?: import('class-variance-authority/types').ClassProp | undefined) => string;
@@ -1,5 +1,19 @@
1
1
  import { c as t } from "../../../../index-D29mdTf5.js";
2
- const o = t([
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
- o as listVariants
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'> & RefAttributes<ComponentRef<'input'>>>;
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 te, useId as ae, useRef as w, useMemo as re, useImperativeHandle as ne, useEffect as le } from "react";
3
- import { Typography as se } from "../../Typography/Typography.js";
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 oe, inputVariants as ce, selectVariants as ie } from "../Select.variants.js";
6
- import { useSelect as me } from "../hooks/useSelect.js";
7
- import { List as pe } from "./List/List.js";
8
- import { c as ue } from "../../../createLucideIcon-CP-mMPfa.js";
9
- import { LoaderIcon as fe } from "../../../assets/icons/components/Loader.js";
10
- import { C as de } from "../../../chevron-up-IlDPxR7j.js";
11
- import { useSelectContext as xe } from "../contexts/select.hook.js";
12
- const he = [
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
- ], ve = ue("search", he), ze = te(
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
- iconClassName: R,
23
- inputClassName: F,
24
- isInfiniteScrollEnabled: S = !1,
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: T,
29
- labelClassName: E,
30
- labelWrapperClassName: M,
31
- listClassName: W,
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: H,
36
+ noOptionsText: P,
36
37
  placeholder: N,
37
38
  searchable: k = !1,
38
39
  showSearchIcon: C,
39
- theme: P,
40
- wrapperClassName: U,
41
- onFetchMoreOptions: q,
42
- onBlur: A,
43
- onSearchChange: B,
40
+ theme: U,
41
+ wrapperClassName: q,
42
+ onFetchMoreOptions: A,
43
+ onBlur: B,
44
+ onSearchChange: D,
44
45
  ...y
45
- }, D) => {
46
- const I = ae(), c = w(null), j = w(null), G = w(0), {
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: J,
50
+ searchTerm: K,
50
51
  value: s,
51
- setCanFilter: K,
52
- setSearchTerm: Q,
52
+ setCanFilter: Q,
53
+ setSearchTerm: X,
53
54
  setValue: m,
54
- toggleOpen: X
55
- } = xe(), e = re(() => l.find(({ value: a }) => a === s), [l, s]), { wrapperRef: Y, wrapperInputRef: L, handleOpen: V } = me({
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: A
61
+ onBlur: B
61
62
  }), p = d ? `${I}-${d}` : I;
62
- ne(D, () => c.current, [c]), le(() => {
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 Z = (a) => {
69
+ const ee = (a) => {
69
70
  const u = a.target.value;
70
- K(!0), m(""), Q(u ?? ""), B?.(u);
71
+ Q(!0), m(""), X(u ?? ""), D?.(u);
71
72
  const b = l.find(
72
- (ee) => ee.value.toLocaleLowerCase() === u.toLocaleLowerCase()
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: Y,
80
- className: n("flex flex-col gap-2 w-full relative", U),
81
- "data-theme": P,
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
- M
89
+ W
89
90
  ),
90
91
  children: [
91
92
  /* @__PURE__ */ o(
92
93
  "label",
93
94
  {
94
95
  id: p,
95
- className: n(oe({ className: E })),
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
- T
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
- ie({ className: O, hasError: !!f, disabled: t })
115
+ me({ className: O, hasError: !!f, disabled: t })
115
116
  ),
116
117
  role: "combobox",
117
- onClick: () => !t && X(!i),
118
+ onClick: () => !t && Y(!i),
118
119
  "aria-expanded": i,
119
- tabIndex: G.current,
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
- ve,
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 ? J : e?.label ?? s ?? "",
144
- onChange: Z,
144
+ value: i ? K : e?.label ?? s ?? "",
145
+ onChange: ee,
145
146
  placeholder: N,
146
- className: n(ce({ className: F }), {
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
- se,
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
- fe,
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
- de,
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
- R,
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
- pe,
222
+ ue,
222
223
  {
223
224
  ref: j,
224
225
  additionalOptions: z,
225
- className: W,
226
- itemClassName: _,
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: S,
235
- onFetchMoreOptions: q,
236
- noOptionsText: H
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
- ze as Wrapper
247
+ Oe as Wrapper
246
248
  };
@@ -1,3 +1,4 @@
1
+ export * from './AdditionalOptions/AdditionalOptions';
1
2
  export * from './EmptyList';
2
3
  export * from './List/List';
3
4
  export * from './Wrapper';
@@ -1,8 +1,10 @@
1
- import { EmptyList as p } from "./EmptyList.js";
2
- import { List as e } from "./List/List.js";
3
- import { Wrapper as f } from "./Wrapper.js";
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
- p as EmptyList,
6
- e as List,
7
- f as Wrapper
6
+ t as AdditionalOptions,
7
+ e as EmptyList,
8
+ m as List,
9
+ s as Wrapper
8
10
  };
@@ -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--z642-Wv.js";
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 s } from "./assets/icons/components/ArrowDown.js";
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 h } from "./assets/icons/components/ArrowRight.js";
10
- import { ArrowUpIcon as d } from "./assets/icons/components/ArrowUp.js";
11
- import { BarChartIcon as P } from "./assets/icons/components/BarChart.js";
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 v } from "./assets/icons/components/CalendarMonth.js";
14
- import { CheckCircleIcon as L } from "./assets/icons/components/CheckCircle.js";
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 { ClustersIcon as U } from "./assets/icons/components/Clusters.js";
21
- import { CogOutlineIcon as W } from "./assets/icons/components/CogOutline.js";
22
- import { CopyIcon as j } from "./assets/icons/components/Copy.js";
23
- import { CpuIcon as z } from "./assets/icons/components/Cpu.js";
24
- import { CubeIcon as J } from "./assets/icons/components/Cube.js";
25
- import { DatacenterIcon as Y } from "./assets/icons/components/Datacenter.js";
26
- import { DeleteIcon as _ } from "./assets/icons/components/Delete.js";
27
- import { DollarSignIcon as oo } from "./assets/icons/components/DollarSign.js";
28
- import { DownloadIcon as eo } from "./assets/icons/components/Download.js";
29
- import { EditIcon as no } from "./assets/icons/components/Edit.js";
30
- import { EllipsesIcon as po } from "./assets/icons/components/Ellipses.js";
31
- import { EnvironmentsIcon as fo } from "./assets/icons/components/Environments.js";
32
- import { ErrorIcon as xo } from "./assets/icons/components/Error.js";
33
- import { ErrorOutlineIcon as lo } from "./assets/icons/components/ErrorOutline.js";
34
- import { ExclamationIcon as so } from "./assets/icons/components/Exclamation.js";
35
- import { GitIcon as uo } from "./assets/icons/components/Git.js";
36
- import { GitOpsCatalogIcon as ho } from "./assets/icons/components/GitOpsCatalog.js";
37
- import { GridViewIcon as go } from "./assets/icons/components/GridView.js";
38
- import { HelpIcon as Oo } from "./assets/icons/components/Help.js";
39
- import { HideOutlineIcon as So } from "./assets/icons/components/HideOutline.js";
40
- import { HomeIcon as Eo } from "./assets/icons/components/Home.js";
41
- import { IdIcon as Do } from "./assets/icons/components/Id.js";
42
- import { InformationOutlineIcon as Ro } from "./assets/icons/components/InformationOutline.js";
43
- import { InvoiceListIcon as Bo } from "./assets/icons/components/InvoiceList.js";
44
- import { KeyIcon as Ho } from "./assets/icons/components/Key.js";
45
- import { LightBulbIcon as To } from "./assets/icons/components/LightBulb.js";
46
- import { LoaderIcon as Mo } from "./assets/icons/components/Loader.js";
47
- import { NetworkIcon as Vo } from "./assets/icons/components/Network.js";
48
- import { PagesStackIcon as Xo } from "./assets/icons/components/PagesStack.js";
49
- import { PageviewIcon as qo } from "./assets/icons/components/Pageview.js";
50
- import { PeopleIcon as Fo } from "./assets/icons/components/People.js";
51
- import { PhotoLibraryIcon as Qo } from "./assets/icons/components/PhotoLibrary.js";
52
- import { PipelineIcon as Zo } from "./assets/icons/components/Pipeline.js";
53
- import { PlusIcon as $o } from "./assets/icons/components/Plus.js";
54
- import { PowerSettingsIcon as rr } from "./assets/icons/components/PowerSettings.js";
55
- import { PreviewIcon as tr } from "./assets/icons/components/Preview.js";
56
- import { ReceiptLongIcon as cr } from "./assets/icons/components/ReceiptLong.js";
57
- import { RefreshIcon as mr } from "./assets/icons/components/Refresh.js";
58
- import { ScatterPlotIcon as Ir } from "./assets/icons/components/ScatterPlot.js";
59
- import { SearchIcon as ir } from "./assets/icons/components/Search.js";
60
- import { ServerIcon as ar } from "./assets/icons/components/Server.js";
61
- import { StartIcon as Cr } from "./assets/icons/components/Start.js";
62
- import { TabNewIcon as wr } from "./assets/icons/components/TabNew.js";
63
- import { TeamsIcon as Ar } from "./assets/icons/components/Teams.js";
64
- import { WarningIcon as gr } from "./assets/icons/components/Warning.js";
65
- import { XIcon as Or } from "./assets/icons/components/X.js";
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
- 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
- L as CheckCircleIcon,
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 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
- To as LightBulbIcon,
112
- Mo 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
+ 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--z642-Wv.js";
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.66",
5
+ "version": "0.1.2-alpha.67",
6
6
  "type": "module",
7
7
  "license": "MIT",
8
8
  "main": "dist/index.js",