@konstructio/ui 0.1.2-alpha.3 → 0.1.2-alpha.5

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 (103) hide show
  1. package/dist/{Modal-V67Uz78z.js → Modal-D-NOEWMX.js} +3 -3
  2. package/dist/_commonjsHelpers-DaMA6jEr.js +8 -0
  3. package/dist/{chevron-down-BLZPftpV.js → chevron-down-MZvQoT2F.js} +2 -2
  4. package/dist/chevron-right-VYBOBhRt.js +19 -0
  5. package/dist/components/Alert/Alert.js +2 -2
  6. package/dist/components/AlertDialog/AlertDialog.js +1 -1
  7. package/dist/components/AlertDialog/components/AlertDialogTrigger.js +1 -1
  8. package/dist/components/AlertDialog/components/index.js +1 -1
  9. package/dist/components/Badge/Badge.js +2 -2
  10. package/dist/components/Breadcrumb/Breadcrumb.js +1 -1
  11. package/dist/components/Breadcrumb/components/Item/Item.js +16 -15
  12. package/dist/components/Checkbox/Checkbox.js +5 -4
  13. package/dist/components/Command/Command.js +2 -2
  14. package/dist/components/Command/components/Command.js +1 -1
  15. package/dist/components/Command/components/CommandEmpty.js +1 -1
  16. package/dist/components/Command/components/CommandGroup.js +1 -1
  17. package/dist/components/Command/components/CommandInput.js +2 -2
  18. package/dist/components/Command/components/CommandItem.js +1 -1
  19. package/dist/components/Command/components/CommandList.js +1 -1
  20. package/dist/components/Command/components/CommandSeparator.js +1 -1
  21. package/dist/components/Command/components/DialogContent.js +2 -2
  22. package/dist/components/Command/components/DialogOverlay.js +1 -1
  23. package/dist/components/Datepicker/DatePicker.js +545 -543
  24. package/dist/components/Dropdown/Dropdown.js +36 -24
  25. package/dist/components/Dropdown/Dropdown.variants.js +25 -7
  26. package/dist/components/Dropdown/components/List/List.js +59 -44
  27. package/dist/components/Dropdown/components/List/List.variants.js +9 -7
  28. package/dist/components/Dropdown/components/ListItem/ListItem.js +48 -24
  29. package/dist/components/Dropdown/components/ListItem/ListItem.variants.js +9 -7
  30. package/dist/components/Dropdown/components/Wrapper.js +141 -106
  31. package/dist/components/Dropdown/contexts/dropdown.context.js +9 -8
  32. package/dist/components/Dropdown/contexts/dropdown.provider.js +20 -19
  33. package/dist/components/Dropdown/hooks/useDropdown.js +26 -27
  34. package/dist/components/Dropdown/hooks/useNavigationList.js +32 -28
  35. package/dist/components/DropdownButton/DropdownButton.js +1 -1
  36. package/dist/components/Filter/components/BadgeDropdown/BadgeMultiSelect.js +1 -1
  37. package/dist/components/Filter/components/DateFilterDropdown/DateFilterDropdown.js +1 -1
  38. package/dist/components/Input/Input.js +1 -1
  39. package/dist/components/Loading/Loading.js +2 -2
  40. package/dist/components/Modal/Modal.js +2 -2
  41. package/dist/components/Modal/components/Wrapper/Wrapper.js +3 -3
  42. package/dist/components/Modal/components/index.js +1 -1
  43. package/dist/components/NumberInput/NumberInput.js +2 -2
  44. package/dist/components/PieChart/PieChart.js +217 -215
  45. package/dist/components/Range/Range.js +1 -1
  46. package/dist/components/Sidebar/components/Wrapper/Wrapper.js +29 -28
  47. package/dist/components/Slider/Slider.js +1 -1
  48. package/dist/components/Switch/Switch.js +6 -5
  49. package/dist/components/Tabs/Tabs.js +1 -1
  50. package/dist/components/Tabs/Tabs.variants.js +45 -24
  51. package/dist/components/Tabs/components/Content.js +1 -1
  52. package/dist/components/Tabs/components/List.js +1 -1
  53. package/dist/components/Tabs/components/Trigger.js +9 -8
  54. package/dist/components/TagSelect/components/Wrapper/Wrapper.js +98 -49
  55. package/dist/components/TimePicker/components/Wrapper/Wrapper.js +1 -1
  56. package/dist/components/Toast/Toast.js +8 -7
  57. package/dist/components/VirtualizedTable/VirtualizedTable.js +99 -0
  58. package/dist/components/VirtualizedTable/VirtualizedTable.variants.js +5 -0
  59. package/dist/components/VirtualizedTable/assets/chevron-down.js +25 -0
  60. package/dist/components/VirtualizedTable/assets/chevron-up.js +25 -0
  61. package/dist/components/VirtualizedTable/assets/index.js +6 -0
  62. package/dist/components/VirtualizedTable/components/Actions/Actions.js +46 -0
  63. package/dist/components/VirtualizedTable/components/Body/Body.js +25 -0
  64. package/dist/components/VirtualizedTable/components/DotPaginate/DotPaginate.js +165 -0
  65. package/dist/components/VirtualizedTable/components/DropdownPaginate/DropdownPaginate.js +34 -0
  66. package/dist/components/VirtualizedTable/components/Filter/Filter.js +73 -0
  67. package/dist/components/VirtualizedTable/components/FormPaginate/FormPaginate.js +48 -0
  68. package/dist/components/VirtualizedTable/components/Header/Header.js +82 -0
  69. package/dist/components/VirtualizedTable/components/Pagination/Pagination.js +45 -0
  70. package/dist/components/VirtualizedTable/components/TruncateText/TruncateText.js +1870 -0
  71. package/dist/components/VirtualizedTable/components/index.js +14 -0
  72. package/dist/components/VirtualizedTable/constants/index.js +5 -0
  73. package/dist/components/VirtualizedTable/constants/pagination.js +5 -0
  74. package/dist/components/VirtualizedTable/contexts/index.js +8 -0
  75. package/dist/components/VirtualizedTable/contexts/table.context.js +31 -0
  76. package/dist/components/VirtualizedTable/contexts/table.hook.js +11 -0
  77. package/dist/components/VirtualizedTable/contexts/table.provider.js +778 -0
  78. package/dist/components/index.js +44 -40
  79. package/dist/{createLucideIcon-DbC6TvM5.js → createLucideIcon-D2CN7Ma9.js} +4 -4
  80. package/dist/debounce-BFejQm9P.js +200 -0
  81. package/dist/{index-D3xzCzcO.js → index-B7t8D14s.js} +2 -2
  82. package/dist/index-BAEWsOG1.js +27 -0
  83. package/dist/{index-C9T9HQaa.js → index-BITvcJAz.js} +1 -1
  84. package/dist/index-BZPx6jYI.js +8 -0
  85. package/dist/{index-BAraV3ai.js → index-Bnb0ezr3.js} +1 -1
  86. package/dist/{index-DB2XhXHn.js → index-C84F4YyO.js} +11 -10
  87. package/dist/index-Cd2vhaop.js +137 -0
  88. package/dist/{index-iXyXtdgP.js → index-DBbEcSUG.js} +1 -1
  89. package/dist/index-Dx2grAuN.js +1742 -0
  90. package/dist/{index-BXuxPoz7.js → index-DzIBBMjs.js} +18 -17
  91. package/dist/{index-h-Ul0anl.js → index-N2OStZoU.js} +1 -1
  92. package/dist/{index-Oq5GlCHP.js → index-os7vysFS.js} +1 -1
  93. package/dist/index-ti1b9kqV.js +14 -0
  94. package/dist/index.d.ts +94 -5
  95. package/dist/index.js +41 -37
  96. package/dist/package.json +26 -22
  97. package/dist/styles.css +1 -1
  98. package/dist/{x-BPcqkRZd.js → x-4F_5p77m.js} +1 -1
  99. package/package.json +26 -22
  100. package/dist/_commonjsHelpers-C6fGbg64.js +0 -6
  101. package/dist/chevron-up-RLP4nX7V.js +0 -54
  102. package/dist/index-CZnD2QxM.js +0 -32
  103. package/dist/index-CrBonFvu.js +0 -144
@@ -2,10 +2,11 @@ import * as i from "react";
2
2
  import { a as Ee, c as he, b as _, d as ye } from "./index-BfXxHr_2.js";
3
3
  import { u as S, c as De } from "./index-DQH6odE9.js";
4
4
  import { u as w } from "./index-bwWKd82e.js";
5
- import { P as be, D as Ce } from "./index-CrBonFvu.js";
6
- import { P as N } from "./index-C9T9HQaa.js";
5
+ import { D as be } from "./index-Cd2vhaop.js";
6
+ import { P as N } from "./index-BITvcJAz.js";
7
7
  import { u as j } from "./index-0ioNhtNM.js";
8
8
  import { jsx as l, jsxs as q, Fragment as B } from "react/jsx-runtime";
9
+ import { P as Ce } from "./index-ti1b9kqV.js";
9
10
  import { P as U } from "./index-C1g_chDT.js";
10
11
  import { R as Ae } from "./Combination-VYaRRJBZ.js";
11
12
  var x = "focusScope.autoFocusOnMount", L = "focusScope.autoFocusOnUnmount", V = { bubbles: !1, cancelable: !0 }, Re = "FocusScope", Q = i.forwardRef((e, o) => {
@@ -197,7 +198,7 @@ var Se = function(e) {
197
198
  return r ? (n.push.apply(n, Array.from(r.querySelectorAll("[aria-live]"))), we(n, r, t, "aria-hidden")) : function() {
198
199
  return null;
199
200
  };
200
- }, M = "Dialog", [te, et] = he(M), [Le, m] = te(M), oe = (e) => {
201
+ }, M = "Dialog", [te, tt] = he(M), [Le, m] = te(M), oe = (e) => {
201
202
  const {
202
203
  __scopeDialog: o,
203
204
  children: t,
@@ -252,7 +253,7 @@ var K = "DialogPortal", [ke, ae] = te(K, {
252
253
  forceMount: void 0
253
254
  }), se = (e) => {
254
255
  const { __scopeDialog: o, forceMount: t, children: n, container: r } = e, a = m(K, o);
255
- return /* @__PURE__ */ l(ke, { scope: o, forceMount: t, children: i.Children.map(n, (d) => /* @__PURE__ */ l(U, { present: t || a.open, children: /* @__PURE__ */ l(be, { asChild: !0, container: r, children: d }) })) });
256
+ return /* @__PURE__ */ l(ke, { scope: o, forceMount: t, children: i.Children.map(n, (d) => /* @__PURE__ */ l(U, { present: t || a.open, children: /* @__PURE__ */ l(Ce, { asChild: !0, container: r, children: d }) })) });
256
257
  };
257
258
  se.displayName = K;
258
259
  var I = "DialogOverlay", ie = i.forwardRef(
@@ -347,7 +348,7 @@ var Ke = i.forwardRef(
347
348
  onMountAutoFocus: r,
348
349
  onUnmountAutoFocus: a,
349
350
  children: /* @__PURE__ */ l(
350
- Ce,
351
+ be,
351
352
  {
352
353
  role: "dialog",
353
354
  id: s.contentId,
@@ -399,7 +400,7 @@ ve.displayName = pe;
399
400
  function H(e) {
400
401
  return e ? "open" : "closed";
401
402
  }
402
- var me = "DialogTitleWarning", [tt, ge] = ye(me, {
403
+ var me = "DialogTitleWarning", [ot, ge] = ye(me, {
403
404
  contentName: A,
404
405
  titleName: G,
405
406
  docsSlug: "dialog"
@@ -418,18 +419,18 @@ For more information, see https://radix-ui.com/primitives/docs/components/${o.do
418
419
  const r = e.current?.getAttribute("aria-describedby");
419
420
  o && r && (document.getElementById(o) || console.warn(n));
420
421
  }, [n, e, o]), null;
421
- }, ot = oe, nt = re, rt = se, at = ie, st = ce, it = le, ct = de, ut = ve;
422
+ }, nt = oe, rt = re, at = se, st = ie, it = ce, ct = le, ut = de, lt = ve;
422
423
  export {
423
- st as C,
424
+ it as C,
424
425
  le as D,
425
- at as O,
426
- rt as P,
427
- ot as R,
428
- it as T,
429
- tt as W,
426
+ st as O,
427
+ at as P,
428
+ nt as R,
429
+ ct as T,
430
+ ot as W,
430
431
  se as a,
431
- ut as b,
432
- et as c,
433
- ct as d,
434
- nt as e
432
+ lt as b,
433
+ tt as c,
434
+ ut as d,
435
+ rt as e
435
436
  };
@@ -1,4 +1,4 @@
1
- import { g as ge } from "./_commonjsHelpers-C6fGbg64.js";
1
+ import { g as ge } from "./_commonjsHelpers-DaMA6jEr.js";
2
2
  var V = { exports: {} }, N = { exports: {} }, T = {};
3
3
  /** @license React v16.13.1
4
4
  * react-is.production.min.js
@@ -2,7 +2,7 @@ import { jsx as i, jsxs as O } from "react/jsx-runtime";
2
2
  import * as l from "react";
3
3
  import { c as w, b as M } from "./index-BfXxHr_2.js";
4
4
  import { u, b as x } from "./index-DQH6odE9.js";
5
- import { c as A, R as I, P as $, O as L, W as F, C as G, T as W, d as j, b as v, e as B } from "./index-BXuxPoz7.js";
5
+ import { c as A, R as I, P as $, O as L, W as F, C as G, T as W, d as j, b as v, e as B } from "./index-DzIBBMjs.js";
6
6
  import { Button as Y } from "./components/Button/Button.js";
7
7
  import { cn as k } from "./utils/index.js";
8
8
  var D = "AlertDialog", [q, le] = w(D, [
@@ -0,0 +1,14 @@
1
+ import * as o from "react";
2
+ import { R as m, P as c } from "./index-BITvcJAz.js";
3
+ import { u as f } from "./index-BfXxHr_2.js";
4
+ import { jsx as l } from "react/jsx-runtime";
5
+ var u = "Portal", p = o.forwardRef((r, a) => {
6
+ const { container: e, ...s } = r, [n, i] = o.useState(!1);
7
+ f(() => i(!0), []);
8
+ const t = e || n && globalThis?.document?.body;
9
+ return t ? m.createPortal(/* @__PURE__ */ l(c.div, { ...s, ref: a }), t) : null;
10
+ });
11
+ p.displayName = u;
12
+ export {
13
+ p as P
14
+ };
package/dist/index.d.ts CHANGED
@@ -1,7 +1,9 @@
1
1
  import { AlertDialogProps as AlertDialogProps_2 } from '@radix-ui/react-alert-dialog';
2
2
  import { ButtonHTMLAttributes } from 'react';
3
+ import { CellContext } from '@tanstack/react-table';
3
4
  import { CheckboxProps as CheckboxProps_2 } from '@radix-ui/react-checkbox';
4
5
  import { ClassProp } from 'class-variance-authority/types';
6
+ import { ColumnDef } from '@tanstack/react-table';
5
7
  import { ComponentRef } from 'react';
6
8
  import { Context } from 'react';
7
9
  import { DayPickerProps } from 'react-day-picker';
@@ -11,15 +13,23 @@ import { getAllTimezones } from 'countries-and-timezones';
11
13
  import { HTMLAttributes } from 'react';
12
14
  import { HtmlHTMLAttributes } from 'react';
13
15
  import { InputHTMLAttributes } from 'react';
16
+ import { JSX } from 'react/jsx-runtime';
17
+ import { JSX as JSX_2 } from 'react';
14
18
  import { PropsWithChildren } from 'react';
15
19
  import { ReactNode } from 'react';
16
20
  import * as ReactTabs from '@radix-ui/react-tabs';
17
21
  import { Ref } from 'react';
18
22
  import { RefAttributes } from 'react';
23
+ import { RowData as RowData_2 } from '@tanstack/react-table';
19
24
  import { SliderProps } from '@radix-ui/react-slider';
20
25
  import { TabsContentProps } from '@radix-ui/react-tabs';
21
26
  import { VariantProps } from 'class-variance-authority';
22
27
 
28
+ declare type Action<TData> = {
29
+ label: string;
30
+ onClick: (rowData: TData) => void;
31
+ };
32
+
23
33
  export declare const Alert: FC<AlertProps>;
24
34
 
25
35
  export declare const AlertDialog: FC<AlertDialogProps>;
@@ -198,11 +208,14 @@ export declare const Dropdown: FC<DropdownProps>;
198
208
 
199
209
  export declare const DropdownButton: FC<Props>;
200
210
 
201
- declare interface DropdownProps extends VariantProps<typeof dropdownVariants>, Omit<React.InputHTMLAttributes<HTMLInputElement>, 'value' | 'onChange'> {
211
+ declare type DropdownProps = VariantProps<typeof dropdownVariants> & Omit<InputHTMLAttributes<HTMLInputElement>, 'value' | 'onChange'> & {
212
+ additionalOptions?: ReactNode[] | string[];
202
213
  className?: string;
203
214
  error?: string;
204
215
  helperText?: string;
216
+ highlightSearch?: boolean;
205
217
  iconClassName?: string;
218
+ inputClassName?: string;
206
219
  isLoading?: boolean;
207
220
  isRequired?: boolean;
208
221
  label?: string;
@@ -211,12 +224,13 @@ declare interface DropdownProps extends VariantProps<typeof dropdownVariants>, O
211
224
  listItemClassName?: string;
212
225
  options: Option_3[];
213
226
  searchable?: boolean;
227
+ showSearchIcon?: boolean;
214
228
  theme?: Theme;
215
229
  value?: string;
216
230
  wrapperClassName?: string;
217
231
  onBlur?: VoidFunction;
218
232
  onChange?: OnChangeFn;
219
- }
233
+ };
220
234
 
221
235
  declare const dropdownVariants: (props?: ({
222
236
  hasError?: boolean | null | undefined;
@@ -320,6 +334,13 @@ declare interface ModalProps extends PropsWithChildren, VariantProps<typeof moda
320
334
 
321
335
  declare const modalVariants: (props?: ClassProp | undefined) => string;
322
336
 
337
+ declare type MultiSelectFilter = {
338
+ key: string;
339
+ label: string;
340
+ position?: 'right' | 'left';
341
+ options: OptionType[];
342
+ };
343
+
323
344
  export declare const Navigation: FC<NavigationProps> & NavigationChildrenProps;
324
345
 
325
346
  declare type NavigationChildrenProps = {
@@ -429,6 +450,12 @@ declare type Option_5 = {
429
450
  variant?: BadgeProps['variant'];
430
451
  };
431
452
 
453
+ declare type OptionType = {
454
+ id: string;
455
+ label: string;
456
+ variant?: 'info' | 'danger' | 'success' | 'default' | 'warning' | null;
457
+ };
458
+
432
459
  export declare const PieChart: FC<Props_2>;
433
460
 
434
461
  export declare const ProgressBar: FC<ProgressBarProps>;
@@ -535,6 +562,53 @@ declare type Props_2 = {
535
562
  subtitle?: string;
536
563
  });
537
564
 
565
+ declare type Props_3<TData extends RowData> = CellContext<TData, string> & {
566
+ value?: string;
567
+ };
568
+
569
+ declare type Props_4<TData extends RowData_2> = VariantProps<typeof virtualizeTableVariants> & {
570
+ id: string;
571
+ ariaLabel?: string;
572
+ columns: ColumnDef<TData, string>[];
573
+ data: TData[];
574
+ totalItems: number;
575
+ fetchData: (params: Record<string, string | number | string[] | number[] | undefined>) => Promise<{
576
+ data: TData[];
577
+ totalItemsCount: number;
578
+ }>;
579
+ classNameHeaderTable?: string;
580
+ classNameHeaderArrows?: string;
581
+ classNameHeaderActiveArrows?: string;
582
+ } & ({
583
+ showPagination: true;
584
+ showTotalItems?: boolean;
585
+ showDropdownPagination?: boolean;
586
+ showDotPagination?: boolean;
587
+ showFormPagination?: boolean;
588
+ pageSizes?: number[] | string[];
589
+ } | {
590
+ showPagination?: false | undefined;
591
+ showTotalItems?: never;
592
+ showDropdownPagination?: never;
593
+ showDotPagination?: never;
594
+ showFormPagination?: never;
595
+ pageSizes?: never;
596
+ }) & ({
597
+ filterSearchPlaceholder?: string;
598
+ multiSelectFilter?: MultiSelectFilter[];
599
+ showFilter: true;
600
+ showFilterInput?: boolean;
601
+ } | {
602
+ filterSearchPlaceholder?: never;
603
+ multiSelectFilter?: never;
604
+ showFilter?: false | undefined;
605
+ showFilterInput?: never;
606
+ });
607
+
608
+ declare type Props_5<TData extends RowData> = CellContext<TData, unknown> & {
609
+ actions: Action<TData>[];
610
+ };
611
+
538
612
  export declare const Radio: FC<RadioProps>;
539
613
 
540
614
  export declare const RadioCard: FC<RadioCardProps>;
@@ -615,6 +689,8 @@ declare type ResetButtonProps = ButtonProps & {
615
689
  onClick?: VoidFunction;
616
690
  };
617
691
 
692
+ declare type RowData = RowData_2;
693
+
618
694
  declare interface RowProps extends React.HTMLAttributes<HTMLTableRowElement>, PropsWithChildren, VariantProps<typeof rowVariants> {
619
695
  width?: string;
620
696
  isSelected?: boolean;
@@ -637,11 +713,12 @@ declare type SidebarChildrenProps = {
637
713
  };
638
714
 
639
715
  declare interface SidebarProps extends VariantProps<typeof wrapperSiderbarVariants>, PropsWithChildren {
640
- wrapperClassName?: string;
641
- minWith?: number;
642
- maxWith?: number;
643
716
  canResize?: boolean;
717
+ dividerClassName?: string;
718
+ maxWith?: number;
719
+ minWith?: number;
644
720
  theme?: Theme;
721
+ wrapperClassName?: string;
645
722
  }
646
723
 
647
724
  export declare const Slider: FC<SliderProps_2>;
@@ -829,6 +906,8 @@ declare const triggerVariants: (props?: ({
829
906
  variant?: "default" | "active" | "inactive" | null | undefined;
830
907
  } & ClassProp) | undefined) => string;
831
908
 
909
+ export declare const TruncateText: <TData>({ getValue, value }: Props_3<TData>) => JSX.Element;
910
+
832
911
  export declare const Typography: ForwardRefExoticComponent<Omit<TypographyProps, 'ref'> & RefAttributes<HTMLParagraphElement | HTMLHeadingElement>>;
833
912
 
834
913
  declare interface TypographyProps extends HTMLAttributes<ComponentRef<HeadingTag | 'p' | 'span'>>, VariantProps<typeof typographyVariants> {
@@ -846,6 +925,16 @@ export declare const useTheme: () => ThemeProps;
846
925
 
847
926
  export declare const useToggle: (initialState?: boolean) => [boolean, (value?: boolean) => void];
848
927
 
928
+ export declare const VirtualizedTable: VirtualizedTableCompound;
929
+
930
+ declare type VirtualizedTableCompound = (<TData extends RowData>(props: Props_4<TData>) => JSX_2.Element) & {
931
+ TruncateText: typeof TruncateText;
932
+ Actions: <TData extends RowData>(props: Props_5<TData>) => JSX_2.Element | null;
933
+ displayName?: string;
934
+ };
935
+
936
+ declare const virtualizeTableVariants: (props?: ClassProp | undefined) => string;
937
+
849
938
  declare const wrapperSiderbarVariants: (props?: ClassProp | undefined) => string;
850
939
 
851
940
  export { }
package/dist/index.js CHANGED
@@ -4,10 +4,10 @@ import { Autocomplete as x } from "./components/Autocomplete/Autocomplete.js";
4
4
  import { Badge as a } from "./components/Badge/Badge.js";
5
5
  import { Breadcrumb as d } from "./components/Breadcrumb/Breadcrumb.js";
6
6
  import { Button as n } from "./components/Button/Button.js";
7
- import { Card as T } from "./components/Card/Card.js";
7
+ import { Card as l } from "./components/Card/Card.js";
8
8
  import { Checkbox as c } from "./components/Checkbox/Checkbox.js";
9
- import { DatePicker as h } from "./components/Datepicker/DatePicker.js";
10
- import { Divider as D } from "./components/Divider/Divider.js";
9
+ import { DatePicker as b } from "./components/Datepicker/DatePicker.js";
10
+ import { Divider as C } from "./components/Divider/Divider.js";
11
11
  import { Dropdown as v } from "./components/Dropdown/Dropdown.js";
12
12
  import { DropdownButton as S } from "./components/DropdownButton/DropdownButton.js";
13
13
  import { Filter as P } from "./components/Filter/Filter.js";
@@ -15,12 +15,12 @@ import { BadgeMultiSelect as w } from "./components/Filter/components/BadgeDropd
15
15
  import { DateFilterDropdown as k } from "./components/Filter/components/DateFilterDropdown/DateFilterDropdown.js";
16
16
  import { Input as G } from "./components/Input/Input.js";
17
17
  import { Loading as M } from "./components/Loading/Loading.js";
18
- import { M as I } from "./Modal-V67Uz78z.js";
19
- import { NumberInput as j } from "./components/NumberInput/NumberInput.js";
20
- import { PieChart as z } from "./components/PieChart/PieChart.js";
21
- import { ProgressBar as H } from "./components/ProgressBar/ProgressBar.js";
22
- import { Radio as K } from "./components/Radio/Radio.js";
23
- import { RadioCard as U } from "./components/RadioCard/RadioCard.js";
18
+ import { M as I } from "./Modal-D-NOEWMX.js";
19
+ import { NumberInput as O } from "./components/NumberInput/NumberInput.js";
20
+ import { PieChart as j } from "./components/PieChart/PieChart.js";
21
+ import { ProgressBar as E } from "./components/ProgressBar/ProgressBar.js";
22
+ import { Radio as J } from "./components/Radio/Radio.js";
23
+ import { RadioCard as Q } from "./components/RadioCard/RadioCard.js";
24
24
  import { RadioCardGroup as W } from "./components/RadioCardGroup/RadioCardGroup.js";
25
25
  import { RadioGroup as Y } from "./components/RadioGroup/RadioGroup.js";
26
26
  import { Range as _ } from "./components/Range/Range.js";
@@ -30,11 +30,11 @@ import { Navigation as po } from "./components/Sidebar/components/Navigation/Nav
30
30
  import { NavigationGroup as xo } from "./components/Sidebar/components/NavigationGroup/NavigationGroup.js";
31
31
  import { NavigationOption as ao } from "./components/Sidebar/components/NavigationOption/NavigationOption.js";
32
32
  import { NavigationSeparator as go } from "./components/Sidebar/components/NavigationSeparator/NavigationSeparator.js";
33
- import { Sidebar as lo } from "./components/Sidebar/Sidebar.js";
33
+ import { Sidebar as To } from "./components/Sidebar/Sidebar.js";
34
34
  import { Slider as uo } from "./components/Slider/Slider.js";
35
35
  import { Switch as so } from "./components/Switch/Switch.js";
36
- import { Table as Co } from "./components/Table/Table.js";
37
- import { Content as bo } from "./components/Tabs/components/Content.js";
36
+ import { Table as ho } from "./components/Table/Table.js";
37
+ import { Content as Do } from "./components/Tabs/components/Content.js";
38
38
  import { List as Bo } from "./components/Tabs/components/List.js";
39
39
  import { Tabs as No } from "./components/Tabs/Tabs.js";
40
40
  import { Trigger as Ro } from "./components/Tabs/components/Trigger.js";
@@ -42,13 +42,15 @@ import { Tag as Ao } from "./components/Tag/Tag.js";
42
42
  import { TagSelect as Fo } from "./components/TagSelect/TagSelect.js";
43
43
  import { TextArea as Lo } from "./components/TextArea/TextArea.js";
44
44
  import { TimePicker as yo } from "./components/TimePicker/TimePicker.js";
45
- import { Toast as Oo } from "./components/Toast/Toast.js";
46
- import { Tooltip as qo } from "./components/Tooltip/Tooltip.js";
47
- import { Typography as Eo } from "./components/Typography/Typography.js";
48
- import { ThemeContext as Jo } from "./contexts/theme.context.js";
49
- import { useTheme as Qo } from "./contexts/theme.hook.js";
50
- import { ThemeProvider as Vo } from "./contexts/theme.provider.js";
51
- import { useToggle as Xo } from "./hooks/useToggle.js";
45
+ import { Toast as zo } from "./components/Toast/Toast.js";
46
+ import { Tooltip as Vo } from "./components/Tooltip/Tooltip.js";
47
+ import { Typography as qo } from "./components/Typography/Typography.js";
48
+ import { TruncateText as Ho } from "./components/VirtualizedTable/components/TruncateText/TruncateText.js";
49
+ import { VirtualizedTable as Ko } from "./components/VirtualizedTable/VirtualizedTable.js";
50
+ import { ThemeContext as Uo } from "./contexts/theme.context.js";
51
+ import { useTheme as Xo } from "./contexts/theme.hook.js";
52
+ import { ThemeProvider as Zo } from "./contexts/theme.provider.js";
53
+ import { useToggle as $o } from "./hooks/useToggle.js";
52
54
  export {
53
55
  e as Alert,
54
56
  p as AlertDialog,
@@ -57,12 +59,12 @@ export {
57
59
  w as BadgeMultiSelect,
58
60
  d as Breadcrumb,
59
61
  n as Button,
60
- T as Card,
62
+ l as Card,
61
63
  c as Checkbox,
62
- bo as Content,
64
+ Do as Content,
63
65
  k as DateFilterDropdown,
64
- h as DatePicker,
65
- D as Divider,
66
+ b as DatePicker,
67
+ C as Divider,
66
68
  v as Dropdown,
67
69
  S as DropdownButton,
68
70
  P as Filter,
@@ -76,29 +78,31 @@ export {
76
78
  xo as NavigationGroup,
77
79
  ao as NavigationOption,
78
80
  go as NavigationSeparator,
79
- j as NumberInput,
80
- z as PieChart,
81
- H as ProgressBar,
82
- K as Radio,
83
- U as RadioCard,
81
+ O as NumberInput,
82
+ j as PieChart,
83
+ E as ProgressBar,
84
+ J as Radio,
85
+ Q as RadioCard,
84
86
  W as RadioCardGroup,
85
87
  Y as RadioGroup,
86
88
  _ as Range,
87
- lo as Sidebar,
89
+ To as Sidebar,
88
90
  uo as Slider,
89
91
  so as Switch,
90
- Co as Table,
92
+ ho as Table,
91
93
  No as Tabs,
92
94
  Ao as Tag,
93
95
  Fo as TagSelect,
94
96
  Lo as TextArea,
95
- Jo as ThemeContext,
96
- Vo as ThemeProvider,
97
+ Uo as ThemeContext,
98
+ Zo as ThemeProvider,
97
99
  yo as TimePicker,
98
- Oo as Toast,
99
- qo as Tooltip,
100
+ zo as Toast,
101
+ Vo as Tooltip,
100
102
  Ro as Trigger,
101
- Eo as Typography,
102
- Qo as useTheme,
103
- Xo as useToggle
103
+ Ho as TruncateText,
104
+ qo as Typography,
105
+ Ko as VirtualizedTable,
106
+ Xo as useTheme,
107
+ $o as useToggle
104
108
  };
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.2",
5
+ "version": "0.1.2-alpha.4",
6
6
  "type": "module",
7
7
  "license": "MIT",
8
8
  "main": "dist/index.js",
@@ -63,16 +63,19 @@
63
63
  "@radix-ui/react-switch": "^1.2.6",
64
64
  "@radix-ui/react-tabs": "^1.1.13",
65
65
  "@radix-ui/react-toast": "^1.2.15",
66
+ "@radix-ui/react-tooltip": "^1.2.8",
66
67
  "@radix-ui/react-visually-hidden": "^1.2.3",
67
- "chart.js": "^4.5.0",
68
+ "@tanstack/react-query": "^5.90.3",
69
+ "@tanstack/react-table": "^8.21.3",
70
+ "chart.js": "^4.5.1",
68
71
  "class-variance-authority": "^0.7.1",
69
72
  "clsx": "^2.1.1",
70
73
  "cmdk": "^1.1.1",
71
74
  "countries-and-timezones": "^3.8.0",
72
75
  "js-cookie": "^3.0.5",
73
- "lucide-react": "^0.544.0",
76
+ "lucide-react": "^0.545.0",
74
77
  "react-chartjs-2": "^5.3.0",
75
- "react-day-picker": "^9.11.0",
78
+ "react-day-picker": "^9.11.1",
76
79
  "react-feather": "^2.0.10",
77
80
  "react-focus-lock": "^2.13.6",
78
81
  "react-remove-scroll": "^2.7.1",
@@ -107,29 +110,30 @@
107
110
  }
108
111
  },
109
112
  "devDependencies": {
113
+ "@faker-js/faker": "^10.0.0",
110
114
  "@rollup/plugin-alias": "^5.1.1",
111
- "@storybook/addon-docs": "^9.1.7",
112
- "@storybook/addon-links": "^9.1.7",
113
- "@storybook/react-vite": "^9.1.7",
114
- "@tailwindcss/vite": "^4.1.13",
115
- "@testing-library/jest-dom": "^6.8.0",
115
+ "@storybook/addon-docs": "^9.1.10",
116
+ "@storybook/addon-links": "^9.1.10",
117
+ "@storybook/react-vite": "^9.1.10",
118
+ "@tailwindcss/vite": "^4.1.14",
119
+ "@testing-library/jest-dom": "^6.9.1",
116
120
  "@testing-library/react": "^16.3.0",
117
121
  "@testing-library/user-event": "^14.6.1",
118
122
  "@types/jest-axe": "^3.5.9",
119
123
  "@types/js-cookie": "^3.0.6",
120
124
  "@types/lodash": "^4.17.20",
121
- "@types/react": "^19.1.13",
122
- "@types/react-dom": "^19.1.9",
123
- "@typescript-eslint/eslint-plugin": "^8.44.0",
124
- "@typescript-eslint/parser": "^8.44.0",
125
- "@vitejs/plugin-react": "^5.0.3",
125
+ "@types/react": "^19.2.2",
126
+ "@types/react-dom": "^19.2.2",
127
+ "@typescript-eslint/eslint-plugin": "^8.46.1",
128
+ "@typescript-eslint/parser": "^8.46.1",
129
+ "@vitejs/plugin-react": "^5.0.4",
126
130
  "@vitest/coverage-v8": "^3.2.4",
127
131
  "autoprefixer": "^10.4.21",
128
- "eslint": "^9.36.0",
132
+ "eslint": "^9.37.0",
129
133
  "eslint-plugin-react": "^7.37.5",
130
- "eslint-plugin-react-hooks": "^5.2.0",
131
- "eslint-plugin-react-refresh": "^0.4.20",
132
- "eslint-plugin-storybook": "^9.1.7",
134
+ "eslint-plugin-react-hooks": "^6.1.1",
135
+ "eslint-plugin-react-refresh": "^0.4.23",
136
+ "eslint-plugin-storybook": "^9.1.10",
133
137
  "eslint-plugin-vitest": "^0.5.4",
134
138
  "glob": "^11.0.3",
135
139
  "husky": "^9.1.7",
@@ -139,11 +143,11 @@
139
143
  "postcss": "^8.5.6",
140
144
  "prettier": "^3.6.2",
141
145
  "rimraf": "^6.0.1",
142
- "storybook": "^9.1.7",
143
- "tailwindcss": "^4.1.13",
146
+ "storybook": "^9.1.10",
147
+ "tailwindcss": "^4.1.14",
144
148
  "ts-node": "^10.9.2",
145
- "typescript": "^5.9.2",
146
- "vite": "^7.1.7",
149
+ "typescript": "^5.9.3",
150
+ "vite": "^7.1.10",
147
151
  "vite-plugin-dts": "^4.5.4",
148
152
  "vite-plugin-lib-inject-css": "^2.2.2",
149
153
  "vite-plugin-svgr": "^4.5.0",