kiban-design-system 3.8.0 → 3.10.0

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 (113) hide show
  1. package/dist/components/data-table/components/DataTableFooter.d.ts +15 -0
  2. package/dist/components/data-table/components/DataTableFooter.d.ts.map +1 -0
  3. package/dist/components/data-table/components/DataTableFooter.js +25 -0
  4. package/dist/components/data-table/components/DataTableHeader.d.ts +8 -0
  5. package/dist/components/data-table/components/DataTableHeader.d.ts.map +1 -0
  6. package/dist/components/data-table/components/DataTableHeader.js +27 -0
  7. package/dist/components/data-table/components/DataTableHeaderCell.d.ts +11 -0
  8. package/dist/components/data-table/components/DataTableHeaderCell.d.ts.map +1 -0
  9. package/dist/components/data-table/components/DataTableHeaderCell.js +81 -0
  10. package/dist/components/data-table/components/DataTablePagination.d.ts +9 -0
  11. package/dist/components/data-table/components/DataTablePagination.d.ts.map +1 -0
  12. package/dist/components/data-table/components/DataTablePagination.js +36 -0
  13. package/dist/components/data-table/components/DataTableTotalsRow.d.ts +10 -0
  14. package/dist/components/data-table/components/DataTableTotalsRow.d.ts.map +1 -0
  15. package/dist/components/data-table/components/DataTableTotalsRow.js +95 -0
  16. package/dist/components/data-table/data-table.d.ts +26 -0
  17. package/dist/components/data-table/data-table.d.ts.map +1 -0
  18. package/dist/components/data-table/data-table.js +134 -0
  19. package/dist/components/data-table/hooks/useDataTableColumns.d.ts +5 -0
  20. package/dist/components/data-table/hooks/useDataTableColumns.d.ts.map +1 -0
  21. package/dist/components/data-table/hooks/useDataTableColumns.js +39 -0
  22. package/dist/components/data-table/hooks/useDataTableConfig.d.ts +18 -0
  23. package/dist/components/data-table/hooks/useDataTableConfig.d.ts.map +1 -0
  24. package/dist/components/data-table/hooks/useDataTableConfig.js +54 -0
  25. package/dist/components/data-table/hooks/useStickyColumns.d.ts +5 -0
  26. package/dist/components/data-table/hooks/useStickyColumns.d.ts.map +1 -0
  27. package/dist/components/data-table/hooks/useStickyColumns.js +20 -0
  28. package/dist/components/data-table/utils/iconMap.d.ts +4 -0
  29. package/dist/components/data-table/utils/iconMap.d.ts.map +1 -0
  30. package/dist/components/data-table/utils/iconMap.js +11 -0
  31. package/dist/components/data-table/utils/stickyColumns.d.ts +17 -0
  32. package/dist/components/data-table/utils/stickyColumns.d.ts.map +1 -0
  33. package/dist/components/data-table/utils/stickyColumns.js +10 -0
  34. package/dist/components/data-table.d.ts +2 -0
  35. package/dist/components/data-table.d.ts.map +1 -0
  36. package/dist/components/header.d.ts +26 -0
  37. package/dist/components/header.d.ts.map +1 -0
  38. package/dist/components/header.js +81 -0
  39. package/dist/components/ui/avatar.d.ts +12 -0
  40. package/dist/components/ui/avatar.d.ts.map +1 -0
  41. package/dist/components/ui/avatar.js +106 -0
  42. package/dist/components/ui/badge.d.ts +10 -0
  43. package/dist/components/ui/badge.d.ts.map +1 -0
  44. package/dist/components/ui/badge.js +40 -0
  45. package/dist/components/ui/checkbox.d.ts +5 -0
  46. package/dist/components/ui/checkbox.d.ts.map +1 -0
  47. package/dist/components/ui/checkbox.js +33 -0
  48. package/dist/components/ui/dropdown-menu.d.ts +29 -0
  49. package/dist/components/ui/dropdown-menu.d.ts.map +1 -0
  50. package/dist/components/ui/dropdown-menu.js +126 -0
  51. package/dist/components/ui/table.d.ts +11 -0
  52. package/dist/components/ui/table.d.ts.map +1 -0
  53. package/dist/components/ui/table.js +115 -0
  54. package/dist/components/ui/tabs.d.ts +8 -0
  55. package/dist/components/ui/tabs.d.ts.map +1 -0
  56. package/dist/components/ui/tooltip.d.ts +8 -0
  57. package/dist/components/ui/tooltip.d.ts.map +1 -0
  58. package/dist/components/ui/tooltip.js +56 -0
  59. package/dist/index.d.ts +7 -0
  60. package/dist/index.d.ts.map +1 -1
  61. package/dist/index.js +97 -67
  62. package/dist/node_modules/@floating-ui/core/dist/floating-ui.core.js +532 -0
  63. package/dist/node_modules/@floating-ui/dom/dist/floating-ui.dom.js +402 -0
  64. package/dist/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.js +208 -0
  65. package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.js +136 -0
  66. package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.js +130 -0
  67. package/dist/node_modules/@radix-ui/primitive/dist/index.js +9 -0
  68. package/dist/node_modules/@radix-ui/react-arrow/dist/index.js +24 -0
  69. package/dist/node_modules/@radix-ui/react-collection/dist/index.js +50 -0
  70. package/dist/node_modules/@radix-ui/react-compose-refs/dist/index.js +29 -0
  71. package/dist/node_modules/@radix-ui/react-context/dist/index.js +53 -0
  72. package/dist/node_modules/@radix-ui/react-direction/dist/index.js +10 -0
  73. package/dist/node_modules/@radix-ui/react-dismissable-layer/dist/index.js +127 -0
  74. package/dist/node_modules/@radix-ui/react-dropdown-menu/dist/index.js +213 -0
  75. package/dist/node_modules/@radix-ui/react-focus-guards/dist/index.js +17 -0
  76. package/dist/node_modules/@radix-ui/react-focus-scope/dist/index.js +136 -0
  77. package/dist/node_modules/@radix-ui/react-id/dist/index.js +13 -0
  78. package/dist/node_modules/@radix-ui/react-menu/dist/index.js +608 -0
  79. package/dist/node_modules/@radix-ui/react-popper/dist/index.js +219 -0
  80. package/dist/node_modules/@radix-ui/react-portal/dist/index.js +15 -0
  81. package/dist/node_modules/@radix-ui/react-presence/dist/index.js +70 -0
  82. package/dist/node_modules/@radix-ui/react-primitive/dist/index.js +36 -0
  83. package/dist/node_modules/@radix-ui/react-roving-focus/dist/index.js +183 -0
  84. package/dist/node_modules/@radix-ui/react-tooltip/dist/index.js +338 -0
  85. package/dist/node_modules/@radix-ui/react-use-callback-ref/dist/index.js +10 -0
  86. package/dist/node_modules/@radix-ui/react-use-controllable-state/dist/index.js +52 -0
  87. package/dist/node_modules/@radix-ui/react-use-escape-keydown/dist/index.js +14 -0
  88. package/dist/node_modules/@radix-ui/react-use-layout-effect/dist/index.js +6 -0
  89. package/dist/node_modules/@radix-ui/react-use-size/dist/index.js +27 -0
  90. package/dist/node_modules/@radix-ui/react-visually-hidden/dist/index.js +32 -0
  91. package/dist/node_modules/aria-hidden/dist/es2015/index.js +52 -0
  92. package/dist/node_modules/get-nonce/dist/es2015/index.js +7 -0
  93. package/dist/node_modules/react-remove-scroll/dist/es2015/Combination.js +11 -0
  94. package/dist/node_modules/react-remove-scroll/dist/es2015/SideEffect.js +115 -0
  95. package/dist/node_modules/react-remove-scroll/dist/es2015/UI.js +31 -0
  96. package/dist/node_modules/react-remove-scroll/dist/es2015/aggresiveCapture.js +16 -0
  97. package/dist/node_modules/react-remove-scroll/dist/es2015/handleScroll.js +68 -0
  98. package/dist/node_modules/react-remove-scroll/dist/es2015/medium.js +5 -0
  99. package/dist/node_modules/react-remove-scroll/dist/es2015/sidecar.js +7 -0
  100. package/dist/node_modules/react-remove-scroll-bar/dist/es2015/component.js +71 -0
  101. package/dist/node_modules/react-remove-scroll-bar/dist/es2015/constants.js +7 -0
  102. package/dist/node_modules/react-remove-scroll-bar/dist/es2015/utils.js +25 -0
  103. package/dist/node_modules/react-style-singleton/dist/es2015/component.js +11 -0
  104. package/dist/node_modules/react-style-singleton/dist/es2015/hook.js +15 -0
  105. package/dist/node_modules/react-style-singleton/dist/es2015/singleton.js +30 -0
  106. package/dist/node_modules/tslib/tslib.es6.js +27 -0
  107. package/dist/node_modules/use-callback-ref/dist/es2015/assignRef.js +6 -0
  108. package/dist/node_modules/use-callback-ref/dist/es2015/useMergeRef.js +26 -0
  109. package/dist/node_modules/use-callback-ref/dist/es2015/useRef.js +25 -0
  110. package/dist/node_modules/use-sidecar/dist/es2015/exports.js +18 -0
  111. package/dist/node_modules/use-sidecar/dist/es2015/medium.js +67 -0
  112. package/dist/style.css +1 -1
  113. package/package.json +8 -1
@@ -0,0 +1,20 @@
1
+ import { useRef as s, useState as o, useEffect as c } from "react";
2
+ function f() {
3
+ const t = s(null), [n, l] = o(!1);
4
+ return c(() => {
5
+ if (t.current) {
6
+ const e = t.current.parentElement;
7
+ if (e) {
8
+ const r = () => {
9
+ l(e.scrollLeft > 0);
10
+ };
11
+ return e.addEventListener("scroll", r), () => {
12
+ e.removeEventListener("scroll", r);
13
+ };
14
+ }
15
+ }
16
+ }, []), { tableRef: t, isScrolled: n };
17
+ }
18
+ export {
19
+ f as useStickyColumns
20
+ };
@@ -0,0 +1,4 @@
1
+ export declare const iconMap: Record<string, React.ComponentType<{
2
+ className?: string;
3
+ }>>;
4
+ //# sourceMappingURL=iconMap.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"iconMap.d.ts","sourceRoot":"","sources":["../../../../src/components/data-table/utils/iconMap.ts"],"names":[],"mappings":"AAQA,eAAO,MAAM,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,KAAK,CAAC,aAAa,CAAC;IAAE,SAAS,CAAC,EAAE,MAAM,CAAA;CAAE,CAAC,CAM/E,CAAC"}
@@ -0,0 +1,11 @@
1
+ import { CircleHelp as l, AlertCircle as r, Info as c, HelpCircle as e } from "lucide-react";
2
+ const p = {
3
+ help: e,
4
+ helpCircle: e,
5
+ info: c,
6
+ alertCircle: r,
7
+ circleHelp: l
8
+ };
9
+ export {
10
+ p as iconMap
11
+ };
@@ -0,0 +1,17 @@
1
+ import type { ReactNode } from "react";
2
+ export type ColumnMeta = {
3
+ help?: {
4
+ icon?: ReactNode | string;
5
+ tooltip: string;
6
+ };
7
+ sticky?: "left" | "right";
8
+ };
9
+ export declare const getStickyColumns: (headers: Array<{
10
+ column: {
11
+ columnDef: {
12
+ meta?: ColumnMeta;
13
+ };
14
+ };
15
+ }>) => number[];
16
+ export declare const calculateStickyOffset: (stickyIndices: number[], columnIndex: number, columnWidth?: number) => number;
17
+ //# sourceMappingURL=stickyColumns.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"stickyColumns.d.ts","sourceRoot":"","sources":["../../../../src/components/data-table/utils/stickyColumns.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAGvC,MAAM,MAAM,UAAU,GAAG;IACvB,IAAI,CAAC,EAAE;QAAE,IAAI,CAAC,EAAE,SAAS,GAAG,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAA;KAAE,CAAC;IACtD,MAAM,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;CAC3B,CAAC;AAGF,eAAO,MAAM,gBAAgB,GAC3B,SAAS,KAAK,CAAC;IACb,MAAM,EAAE;QAAE,SAAS,EAAE;YAAE,IAAI,CAAC,EAAE,UAAU,CAAA;SAAE,CAAA;KAAE,CAAC;CAC9C,CAAC,KACD,MAAM,EASR,CAAC;AAGF,eAAO,MAAM,qBAAqB,GAChC,eAAe,MAAM,EAAE,EACvB,aAAa,MAAM,EACnB,cAAa,MAAW,KACvB,MAMF,CAAC"}
@@ -0,0 +1,10 @@
1
+ const u = (t) => {
2
+ const e = [];
3
+ return t.forEach((c, n) => {
4
+ c.column.columnDef.meta?.sticky === "left" && e.push(n);
5
+ }), e;
6
+ }, f = (t, e, c = 48) => t.includes(e) ? t.slice(0, t.indexOf(e)).reduce((n) => n + c, 0) : 0;
7
+ export {
8
+ f as calculateStickyOffset,
9
+ u as getStickyColumns
10
+ };
@@ -0,0 +1,2 @@
1
+ export { DataTable } from "./data-table/data-table";
2
+ //# sourceMappingURL=data-table.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"data-table.d.ts","sourceRoot":"","sources":["../../src/components/data-table.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAAE,MAAM,yBAAyB,CAAC"}
@@ -0,0 +1,26 @@
1
+ import * as React from "react";
2
+ export type HeaderAction = {
3
+ text: string;
4
+ onClick?: () => void;
5
+ variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link";
6
+ };
7
+ export type HeaderUserMenuItem = {
8
+ label: string;
9
+ onClick?: () => void;
10
+ href?: string;
11
+ variant?: "default" | "destructive";
12
+ };
13
+ interface HeaderProps extends React.ComponentProps<"header"> {
14
+ logo?: string | React.ReactNode;
15
+ user?: {
16
+ name: string;
17
+ email: string;
18
+ avatar?: string;
19
+ };
20
+ /** Ítems del menú del usuario (logout, billing, etc.). Si está vacío o no se pasa, no se muestra dropdown. */
21
+ userMenuItems?: HeaderUserMenuItem[];
22
+ extraActions?: HeaderAction[];
23
+ }
24
+ export declare function Header({ className, logo, user, userMenuItems, extraActions, ...props }: HeaderProps): import("react/jsx-runtime").JSX.Element;
25
+ export {};
26
+ //# sourceMappingURL=header.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"header.d.ts","sourceRoot":"","sources":["../../src/components/header.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAY/B,MAAM,MAAM,YAAY,GAAG;IACzB,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,OAAO,CAAC,EAAE,SAAS,GAAG,aAAa,GAAG,SAAS,GAAG,WAAW,GAAG,OAAO,GAAG,MAAM,CAAC;CAClF,CAAC;AAEF,MAAM,MAAM,kBAAkB,GAAG;IAC/B,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,SAAS,GAAG,aAAa,CAAC;CACrC,CAAC;AAEF,UAAU,WAAY,SAAQ,KAAK,CAAC,cAAc,CAAC,QAAQ,CAAC;IAC1D,IAAI,CAAC,EAAE,MAAM,GAAG,KAAK,CAAC,SAAS,CAAC;IAChC,IAAI,CAAC,EAAE;QACL,IAAI,EAAE,MAAM,CAAC;QACb,KAAK,EAAE,MAAM,CAAC;QACd,MAAM,CAAC,EAAE,MAAM,CAAC;KACjB,CAAC;IACF,8GAA8G;IAC9G,aAAa,CAAC,EAAE,kBAAkB,EAAE,CAAC;IACrC,YAAY,CAAC,EAAE,YAAY,EAAE,CAAC;CAC/B;AAED,wBAAgB,MAAM,CAAC,EACrB,SAAS,EACT,IAAI,EACJ,IAAI,EACJ,aAAa,EACb,YAAY,EACZ,GAAG,KAAK,EACT,EAAE,WAAW,2CA8Fb"}
@@ -0,0 +1,81 @@
1
+ import { jsx as e, jsxs as l } from "react/jsx-runtime";
2
+ import "react";
3
+ import { User as g, ChevronDown as u } from "lucide-react";
4
+ import { cn as v } from "../lib/utils.js";
5
+ import { Button as x } from "./ui/button.js";
6
+ import { Avatar as b, AvatarImage as N, AvatarFallback as k } from "./ui/avatar.js";
7
+ import { DropdownMenu as w, DropdownMenuTrigger as C, DropdownMenuContent as y, DropdownMenuItem as d } from "./ui/dropdown-menu.js";
8
+ function B({
9
+ className: c,
10
+ logo: n,
11
+ user: r,
12
+ userMenuItems: i,
13
+ extraActions: o,
14
+ ...m
15
+ }) {
16
+ const h = n ? /* @__PURE__ */ e("div", { className: "flex items-center", "data-slot": "header-logo", children: typeof n == "string" ? /* @__PURE__ */ e("img", { src: n, alt: "Kiban", className: "h-8 w-auto" }) : n }) : null, f = o && o.length > 0 ? /* @__PURE__ */ e("div", { className: "flex items-center gap-2", "data-slot": "header-extra-actions", children: o.map((a, t) => /* @__PURE__ */ e(
17
+ x,
18
+ {
19
+ onClick: a.onClick,
20
+ variant: a.variant,
21
+ size: "sm",
22
+ "data-slot": "header-extra-action",
23
+ children: a.text
24
+ },
25
+ t
26
+ )) }) : null, s = r ? /* @__PURE__ */ l(
27
+ "button",
28
+ {
29
+ type: "button",
30
+ className: "flex items-center gap-3 cursor-pointer outline-none rounded-lg hover:bg-slate-50 px-1 py-0.5 -mx-1 -my-0.5 focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2",
31
+ "data-slot": "header-user-profile-trigger",
32
+ "aria-haspopup": "menu",
33
+ "aria-expanded": void 0,
34
+ children: [
35
+ /* @__PURE__ */ l(b, { className: "size-10", children: [
36
+ r.avatar && /* @__PURE__ */ e(N, { src: r.avatar, alt: r.name }),
37
+ /* @__PURE__ */ e(k, { children: /* @__PURE__ */ e(g, { className: "size-5" }) })
38
+ ] }),
39
+ /* @__PURE__ */ l("div", { className: "flex flex-col text-left", children: [
40
+ /* @__PURE__ */ e("span", { className: "text-sm text-muted-foreground leading-5", children: r.name }),
41
+ /* @__PURE__ */ e("span", { className: "text-sm text-foreground leading-5", children: r.email })
42
+ ] }),
43
+ /* @__PURE__ */ e(u, { className: "size-4 text-muted-foreground shrink-0" })
44
+ ]
45
+ }
46
+ ) : null, p = r && i && i.length > 0 ? /* @__PURE__ */ l(w, { children: [
47
+ /* @__PURE__ */ e(C, { asChild: !0, children: s }),
48
+ /* @__PURE__ */ e(y, { align: "end", className: "min-w-[12rem]", children: i.map(
49
+ (a, t) => a.href ? /* @__PURE__ */ e(d, { variant: a.variant, asChild: !0, children: /* @__PURE__ */ e("a", { href: a.href, children: a.label }) }, t) : /* @__PURE__ */ e(
50
+ d,
51
+ {
52
+ variant: a.variant,
53
+ onClick: a.onClick,
54
+ children: a.label
55
+ },
56
+ t
57
+ )
58
+ ) })
59
+ ] }) : r ? /* @__PURE__ */ e("div", { "data-slot": "header-user-profile", children: s }) : null;
60
+ return /* @__PURE__ */ l(
61
+ "header",
62
+ {
63
+ "data-slot": "header",
64
+ className: v(
65
+ "flex h-16 items-center justify-between bg-background border-b border-slate-200 px-6",
66
+ c
67
+ ),
68
+ ...m,
69
+ children: [
70
+ /* @__PURE__ */ e("div", { className: "flex items-center flex-1", children: h }),
71
+ /* @__PURE__ */ l("div", { className: "flex items-center gap-4", children: [
72
+ f,
73
+ p
74
+ ] })
75
+ ]
76
+ }
77
+ );
78
+ }
79
+ export {
80
+ B as Header
81
+ };
@@ -0,0 +1,12 @@
1
+ import * as React from "react";
2
+ import * as AvatarPrimitive from "@radix-ui/react-avatar";
3
+ declare function Avatar({ className, size, ...props }: React.ComponentProps<typeof AvatarPrimitive.Root> & {
4
+ size?: "default" | "sm" | "lg";
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ declare function AvatarImage({ className, ...props }: React.ComponentProps<typeof AvatarPrimitive.Image>): import("react/jsx-runtime").JSX.Element;
7
+ declare function AvatarFallback({ className, children, ...props }: React.ComponentProps<typeof AvatarPrimitive.Fallback>): import("react/jsx-runtime").JSX.Element;
8
+ declare function AvatarBadge({ className, ...props }: React.ComponentProps<"span">): import("react/jsx-runtime").JSX.Element;
9
+ declare function AvatarGroup({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
10
+ declare function AvatarGroupCount({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
11
+ export { Avatar, AvatarImage, AvatarFallback, AvatarBadge, AvatarGroup, AvatarGroupCount, };
12
+ //# sourceMappingURL=avatar.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"avatar.d.ts","sourceRoot":"","sources":["../../../src/components/ui/avatar.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,KAAK,eAAe,MAAM,wBAAwB,CAAA;AAIzD,iBAAS,MAAM,CAAC,EACd,SAAS,EACT,IAAgB,EAChB,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,eAAe,CAAC,IAAI,CAAC,GAAG;IACrD,IAAI,CAAC,EAAE,SAAS,GAAG,IAAI,GAAG,IAAI,CAAA;CAC/B,2CAYA;AAED,iBAAS,WAAW,CAAC,EACnB,SAAS,EACT,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,eAAe,CAAC,KAAK,CAAC,2CAQpD;AAED,iBAAS,cAAc,CAAC,EACtB,SAAS,EACT,QAAQ,EACR,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,eAAe,CAAC,QAAQ,CAAC,2CAavD;AAED,iBAAS,WAAW,CAAC,EAAE,SAAS,EAAE,GAAG,KAAK,EAAE,EAAE,KAAK,CAAC,cAAc,CAAC,MAAM,CAAC,2CAczE;AAED,iBAAS,WAAW,CAAC,EAAE,SAAS,EAAE,GAAG,KAAK,EAAE,EAAE,KAAK,CAAC,cAAc,CAAC,KAAK,CAAC,2CAWxE;AAED,iBAAS,gBAAgB,CAAC,EACxB,SAAS,EACT,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,KAAK,CAAC,2CAW7B;AAED,OAAO,EACL,MAAM,EACN,WAAW,EACX,cAAc,EACd,WAAW,EACX,WAAW,EACX,gBAAgB,GACjB,CAAA"}
@@ -0,0 +1,106 @@
1
+ import { jsx as e } from "react/jsx-runtime";
2
+ import "react";
3
+ import * as i from "@radix-ui/react-avatar";
4
+ import { cn as r } from "../../lib/utils.js";
5
+ function g({
6
+ className: a,
7
+ size: t = "default",
8
+ ...s
9
+ }) {
10
+ return /* @__PURE__ */ e(
11
+ i.Root,
12
+ {
13
+ "data-slot": "avatar",
14
+ "data-size": t,
15
+ className: r(
16
+ "group/avatar relative flex size-8 shrink-0 overflow-hidden rounded-full select-none data-[size=lg]:size-10 data-[size=sm]:size-6",
17
+ a
18
+ ),
19
+ ...s
20
+ }
21
+ );
22
+ }
23
+ function l({
24
+ className: a,
25
+ ...t
26
+ }) {
27
+ return /* @__PURE__ */ e(
28
+ i.Image,
29
+ {
30
+ "data-slot": "avatar-image",
31
+ className: r("aspect-square size-full", a),
32
+ ...t
33
+ }
34
+ );
35
+ }
36
+ function d({
37
+ className: a,
38
+ children: t,
39
+ ...s
40
+ }) {
41
+ return /* @__PURE__ */ e(
42
+ i.Fallback,
43
+ {
44
+ "data-slot": "avatar-fallback",
45
+ className: r(
46
+ "bg-muted text-muted-foreground flex size-full items-center justify-center rounded-full text-sm group-data-[size=sm]/avatar:text-xs",
47
+ a
48
+ ),
49
+ ...s,
50
+ children: t
51
+ }
52
+ );
53
+ }
54
+ function v({ className: a, ...t }) {
55
+ return /* @__PURE__ */ e(
56
+ "span",
57
+ {
58
+ "data-slot": "avatar-badge",
59
+ className: r(
60
+ "bg-primary text-primary-foreground ring-background absolute right-0 bottom-0 z-10 inline-flex items-center justify-center rounded-full ring-2 select-none",
61
+ "group-data-[size=sm]/avatar:size-2 group-data-[size=sm]/avatar:[&>svg]:hidden",
62
+ "group-data-[size=default]/avatar:size-2.5 group-data-[size=default]/avatar:[&>svg]:size-2",
63
+ "group-data-[size=lg]/avatar:size-3 group-data-[size=lg]/avatar:[&>svg]:size-2",
64
+ a
65
+ ),
66
+ ...t
67
+ }
68
+ );
69
+ }
70
+ function m({ className: a, ...t }) {
71
+ return /* @__PURE__ */ e(
72
+ "div",
73
+ {
74
+ "data-slot": "avatar-group",
75
+ className: r(
76
+ "*:data-[slot=avatar]:ring-background group/avatar-group flex -space-x-2 *:data-[slot=avatar]:ring-2",
77
+ a
78
+ ),
79
+ ...t
80
+ }
81
+ );
82
+ }
83
+ function p({
84
+ className: a,
85
+ ...t
86
+ }) {
87
+ return /* @__PURE__ */ e(
88
+ "div",
89
+ {
90
+ "data-slot": "avatar-group-count",
91
+ className: r(
92
+ "bg-muted text-muted-foreground ring-background relative flex size-8 shrink-0 items-center justify-center rounded-full text-sm ring-2 group-has-data-[size=lg]/avatar-group:size-10 group-has-data-[size=sm]/avatar-group:size-6 [&>svg]:size-4 group-has-data-[size=lg]/avatar-group:[&>svg]:size-5 group-has-data-[size=sm]/avatar-group:[&>svg]:size-3",
93
+ a
94
+ ),
95
+ ...t
96
+ }
97
+ );
98
+ }
99
+ export {
100
+ g as Avatar,
101
+ v as AvatarBadge,
102
+ d as AvatarFallback,
103
+ m as AvatarGroup,
104
+ p as AvatarGroupCount,
105
+ l as AvatarImage
106
+ };
@@ -0,0 +1,10 @@
1
+ import * as React from "react";
2
+ import { type VariantProps } from "class-variance-authority";
3
+ declare const badgeVariants: (props?: ({
4
+ variant?: "default" | "destructive" | "outline" | "secondary" | null | undefined;
5
+ } & import("class-variance-authority/types").ClassProp) | undefined) => string;
6
+ declare function Badge({ className, variant, asChild, ...props }: React.ComponentProps<"span"> & VariantProps<typeof badgeVariants> & {
7
+ asChild?: boolean;
8
+ }): import("react/jsx-runtime").JSX.Element;
9
+ export { Badge, badgeVariants };
10
+ //# sourceMappingURL=badge.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"badge.d.ts","sourceRoot":"","sources":["../../../src/components/ui/badge.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAE9B,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAIjE,QAAA,MAAM,aAAa;;8EAmBlB,CAAA;AAED,iBAAS,KAAK,CAAC,EACb,SAAS,EACT,OAAO,EACP,OAAe,EACf,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,MAAM,CAAC,GAC7B,YAAY,CAAC,OAAO,aAAa,CAAC,GAAG;IAAE,OAAO,CAAC,EAAE,OAAO,CAAA;CAAE,2CAU3D;AAED,OAAO,EAAE,KAAK,EAAE,aAAa,EAAE,CAAA"}
@@ -0,0 +1,40 @@
1
+ import { jsx as a } from "react/jsx-runtime";
2
+ import "react";
3
+ import { Slot as o } from "@radix-ui/react-slot";
4
+ import { cva as n } from "class-variance-authority";
5
+ import { cn as s } from "../../lib/utils.js";
6
+ const d = n(
7
+ "inline-flex items-center justify-center rounded-full border px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden",
8
+ {
9
+ variants: {
10
+ variant: {
11
+ default: "border-transparent bg-primary text-primary-foreground [a&]:hover:bg-primary/90",
12
+ secondary: "border-transparent bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90",
13
+ destructive: "border-transparent bg-destructive text-white [a&]:hover:bg-destructive/90 focus-visible:ring-destructive/20 dark:focus-visible:ring-destructive/40 dark:bg-destructive/60",
14
+ outline: "text-foreground [a&]:hover:bg-accent [a&]:hover:text-accent-foreground"
15
+ }
16
+ },
17
+ defaultVariants: {
18
+ variant: "default"
19
+ }
20
+ }
21
+ );
22
+ function l({
23
+ className: r,
24
+ variant: e,
25
+ asChild: t = !1,
26
+ ...i
27
+ }) {
28
+ return /* @__PURE__ */ a(
29
+ t ? o : "span",
30
+ {
31
+ "data-slot": "badge",
32
+ className: s(d({ variant: e }), r),
33
+ ...i
34
+ }
35
+ );
36
+ }
37
+ export {
38
+ l as Badge,
39
+ d as badgeVariants
40
+ };
@@ -0,0 +1,5 @@
1
+ import * as React from "react";
2
+ import * as CheckboxPrimitive from "@radix-ui/react-checkbox";
3
+ declare function Checkbox({ className, ...props }: React.ComponentProps<typeof CheckboxPrimitive.Root>): import("react/jsx-runtime").JSX.Element;
4
+ export { Checkbox };
5
+ //# sourceMappingURL=checkbox.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"checkbox.d.ts","sourceRoot":"","sources":["../../../src/components/ui/checkbox.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,KAAK,iBAAiB,MAAM,0BAA0B,CAAA;AAK7D,iBAAS,QAAQ,CAAC,EAChB,SAAS,EACT,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,iBAAiB,CAAC,IAAI,CAAC,2CAuBrD;AAED,OAAO,EAAE,QAAQ,EAAE,CAAA"}
@@ -0,0 +1,33 @@
1
+ import { jsx as e } from "react/jsx-runtime";
2
+ import "react";
3
+ import * as t from "@radix-ui/react-checkbox";
4
+ import { MinusIcon as i, CheckIcon as d } from "lucide-react";
5
+ import { cn as n } from "../../lib/utils.js";
6
+ function l({
7
+ className: a,
8
+ ...r
9
+ }) {
10
+ return /* @__PURE__ */ e(
11
+ t.Root,
12
+ {
13
+ "data-slot": "checkbox",
14
+ className: n(
15
+ "peer border-input dark:bg-input/30 data-[state=checked]:bg-primary data-[state=checked]:text-primary-foreground dark:data-[state=checked]:bg-primary data-[state=checked]:border-primary data-[state=indeterminate]:bg-primary data-[state=indeterminate]:text-primary-foreground dark:data-[state=indeterminate]:bg-primary data-[state=indeterminate]:border-primary focus-visible:border-ring focus-visible:ring-ring/50 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive size-4 shrink-0 rounded-[4px] border shadow-xs transition-shadow outline-none focus-visible:ring-[3px] disabled:cursor-not-allowed disabled:opacity-50",
16
+ a
17
+ ),
18
+ ...r,
19
+ children: /* @__PURE__ */ e(
20
+ t.Indicator,
21
+ {
22
+ "data-slot": "checkbox-indicator",
23
+ className: "grid place-content-center text-current transition-none",
24
+ asChild: !0,
25
+ children: r.checked === "indeterminate" ? /* @__PURE__ */ e(i, { className: "size-3.5" }) : /* @__PURE__ */ e(d, { className: "size-3.5" })
26
+ }
27
+ )
28
+ }
29
+ );
30
+ }
31
+ export {
32
+ l as Checkbox
33
+ };
@@ -0,0 +1,29 @@
1
+ import * as React from "react";
2
+ import * as DropdownMenuPrimitive from "@radix-ui/react-dropdown-menu";
3
+ declare const DropdownMenu: React.FC<DropdownMenuPrimitive.DropdownMenuProps>;
4
+ declare const DropdownMenuTrigger: React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuTriggerProps & React.RefAttributes<HTMLButtonElement>>;
5
+ declare const DropdownMenuGroup: React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuGroupProps & React.RefAttributes<HTMLDivElement>>;
6
+ declare const DropdownMenuPortal: React.FC<DropdownMenuPrimitive.DropdownMenuPortalProps>;
7
+ declare const DropdownMenuSub: React.FC<DropdownMenuPrimitive.DropdownMenuSubProps>;
8
+ declare const DropdownMenuRadioGroup: React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuRadioGroupProps & React.RefAttributes<HTMLDivElement>>;
9
+ declare const DropdownMenuSubTrigger: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubTriggerProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
10
+ inset?: boolean;
11
+ } & React.RefAttributes<HTMLDivElement>>;
12
+ declare const DropdownMenuSubContent: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
13
+ declare const DropdownMenuContent: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
14
+ declare const DropdownMenuItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
15
+ inset?: boolean;
16
+ variant?: "default" | "destructive";
17
+ } & React.RefAttributes<HTMLDivElement>>;
18
+ declare const DropdownMenuCheckboxItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuCheckboxItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
19
+ declare const DropdownMenuRadioItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuRadioItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
20
+ declare const DropdownMenuLabel: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuLabelProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
21
+ inset?: boolean;
22
+ } & React.RefAttributes<HTMLDivElement>>;
23
+ declare const DropdownMenuSeparator: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSeparatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
24
+ declare const DropdownMenuShortcut: {
25
+ ({ className, ...props }: React.HTMLAttributes<HTMLSpanElement>): import("react/jsx-runtime").JSX.Element;
26
+ displayName: string;
27
+ };
28
+ export { DropdownMenu, DropdownMenuTrigger, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuGroup, DropdownMenuPortal, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuCheckboxItem, DropdownMenuShortcut, };
29
+ //# sourceMappingURL=dropdown-menu.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"dropdown-menu.d.ts","sourceRoot":"","sources":["../../../src/components/ui/dropdown-menu.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,KAAK,qBAAqB,MAAM,+BAA+B,CAAC;AAIvE,QAAA,MAAM,YAAY,mDAA6B,CAAC;AAEhD,QAAA,MAAM,mBAAmB,0HAAgC,CAAC;AAE1D,QAAA,MAAM,iBAAiB,qHAA8B,CAAC;AAEtD,QAAA,MAAM,kBAAkB,yDAA+B,CAAC;AAExD,QAAA,MAAM,eAAe,sDAA4B,CAAC;AAElD,QAAA,MAAM,sBAAsB,0HAAmC,CAAC;AAEhE,QAAA,MAAM,sBAAsB;YAGhB,OAAO;wCAcjB,CAAC;AAGH,QAAA,MAAM,sBAAsB,6KAgB1B,CAAC;AAGH,QAAA,MAAM,mBAAmB,0KAmBvB,CAAC;AAGH,QAAA,MAAM,gBAAgB;YAGV,OAAO;cACL,SAAS,GAAG,aAAa;wCAcrC,CAAC;AAGH,QAAA,MAAM,wBAAwB,+KAe5B,CAAC;AAIH,QAAA,MAAM,qBAAqB,4KAczB,CAAC;AAGH,QAAA,MAAM,iBAAiB;YAGX,OAAO;wCAYjB,CAAC;AAGH,QAAA,MAAM,qBAAqB,4KASzB,CAAC;AAGH,QAAA,MAAM,oBAAoB;8BAGvB,KAAK,CAAC,cAAc,CAAC,eAAe,CAAC;;CAQvC,CAAC;AAGF,OAAO,EACL,YAAY,EACZ,mBAAmB,EACnB,mBAAmB,EACnB,gBAAgB,EAChB,iBAAiB,EACjB,qBAAqB,EACrB,iBAAiB,EACjB,kBAAkB,EAClB,eAAe,EACf,sBAAsB,EACtB,sBAAsB,EACtB,sBAAsB,EACtB,qBAAqB,EACrB,wBAAwB,EACxB,oBAAoB,GACrB,CAAC"}
@@ -0,0 +1,126 @@
1
+ import { jsx as n } from "react/jsx-runtime";
2
+ import * as d from "react";
3
+ import { SubTrigger as i, SubContent as l, Portal as g, Content as m, Item as c, CheckboxItem as p, RadioItem as f, Label as u, Separator as b, Root as x, Trigger as w } from "../../node_modules/@radix-ui/react-dropdown-menu/dist/index.js";
4
+ import { cn as r } from "../../lib/utils.js";
5
+ const k = x, T = w, y = d.forwardRef(({ className: e, inset: t, children: o, ...a }, s) => /* @__PURE__ */ n(
6
+ i,
7
+ {
8
+ ref: s,
9
+ className: r(
10
+ "flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none focus:bg-accent data-[state=open]:bg-accent",
11
+ t && "pl-8",
12
+ e
13
+ ),
14
+ ...a,
15
+ children: o
16
+ }
17
+ ));
18
+ y.displayName = i.displayName;
19
+ const N = d.forwardRef(({ className: e, ...t }, o) => /* @__PURE__ */ n(
20
+ l,
21
+ {
22
+ ref: o,
23
+ className: r(
24
+ "z-50 min-w-[8rem] overflow-hidden rounded-md border border-slate-200 bg-background p-1 text-foreground shadow-lg",
25
+ "animate-in fade-in-0 zoom-in-95",
26
+ "data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95",
27
+ "data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2",
28
+ "origin-[var(--radix-dropdown-menu-content-transform-origin)]",
29
+ e
30
+ ),
31
+ ...t
32
+ }
33
+ ));
34
+ N.displayName = l.displayName;
35
+ const v = d.forwardRef(({ className: e, sideOffset: t = 4, ...o }, a) => /* @__PURE__ */ n(g, { children: /* @__PURE__ */ n(
36
+ m,
37
+ {
38
+ ref: a,
39
+ sideOffset: t,
40
+ className: r(
41
+ "z-50 min-w-[8rem] overflow-hidden rounded-md border border-slate-200 bg-background p-1 text-foreground shadow-lg",
42
+ "animate-in fade-in-0 zoom-in-95",
43
+ "data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95",
44
+ "data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2",
45
+ "origin-[var(--radix-dropdown-menu-content-transform-origin)]",
46
+ e
47
+ ),
48
+ ...o
49
+ }
50
+ ) }));
51
+ v.displayName = m.displayName;
52
+ const R = d.forwardRef(({ className: e, inset: t, variant: o = "default", ...a }, s) => /* @__PURE__ */ n(
53
+ c,
54
+ {
55
+ ref: s,
56
+ className: r(
57
+ "relative flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
58
+ t && "pl-8",
59
+ o === "destructive" && "text-destructive focus:bg-destructive/10 focus:text-destructive",
60
+ e
61
+ ),
62
+ ...a
63
+ }
64
+ ));
65
+ R.displayName = c.displayName;
66
+ const h = d.forwardRef(({ className: e, children: t, checked: o, ...a }, s) => /* @__PURE__ */ n(
67
+ p,
68
+ {
69
+ ref: s,
70
+ className: r(
71
+ "relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
72
+ e
73
+ ),
74
+ checked: o,
75
+ ...a,
76
+ children: t
77
+ }
78
+ ));
79
+ h.displayName = p.displayName;
80
+ const D = d.forwardRef(({ className: e, children: t, ...o }, a) => /* @__PURE__ */ n(
81
+ f,
82
+ {
83
+ ref: a,
84
+ className: r(
85
+ "relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
86
+ e
87
+ ),
88
+ ...o,
89
+ children: t
90
+ }
91
+ ));
92
+ D.displayName = f.displayName;
93
+ const M = d.forwardRef(({ className: e, inset: t, ...o }, a) => /* @__PURE__ */ n(
94
+ u,
95
+ {
96
+ ref: a,
97
+ className: r(
98
+ "px-2 py-1.5 text-sm font-semibold",
99
+ t && "pl-8",
100
+ e
101
+ ),
102
+ ...o
103
+ }
104
+ ));
105
+ M.displayName = u.displayName;
106
+ const C = d.forwardRef(({ className: e, ...t }, o) => /* @__PURE__ */ n(
107
+ b,
108
+ {
109
+ ref: o,
110
+ className: r("-mx-1 my-1 h-px bg-slate-200", e),
111
+ ...t
112
+ }
113
+ ));
114
+ C.displayName = b.displayName;
115
+ export {
116
+ k as DropdownMenu,
117
+ h as DropdownMenuCheckboxItem,
118
+ v as DropdownMenuContent,
119
+ R as DropdownMenuItem,
120
+ M as DropdownMenuLabel,
121
+ D as DropdownMenuRadioItem,
122
+ C as DropdownMenuSeparator,
123
+ N as DropdownMenuSubContent,
124
+ y as DropdownMenuSubTrigger,
125
+ T as DropdownMenuTrigger
126
+ };
@@ -0,0 +1,11 @@
1
+ import * as React from "react";
2
+ declare function Table({ className, ...props }: React.ComponentProps<"table">): import("react/jsx-runtime").JSX.Element;
3
+ declare function TableHeader({ className, ...props }: React.ComponentProps<"thead">): import("react/jsx-runtime").JSX.Element;
4
+ declare function TableBody({ className, ...props }: React.ComponentProps<"tbody">): import("react/jsx-runtime").JSX.Element;
5
+ declare function TableFooter({ className, ...props }: React.ComponentProps<"tfoot">): import("react/jsx-runtime").JSX.Element;
6
+ declare function TableRow({ className, ...props }: React.ComponentProps<"tr">): import("react/jsx-runtime").JSX.Element;
7
+ declare function TableHead({ className, ...props }: React.ComponentProps<"th">): import("react/jsx-runtime").JSX.Element;
8
+ declare function TableCell({ className, ...props }: React.ComponentProps<"td">): import("react/jsx-runtime").JSX.Element;
9
+ declare function TableCaption({ className, ...props }: React.ComponentProps<"caption">): import("react/jsx-runtime").JSX.Element;
10
+ export { Table, TableHeader, TableBody, TableFooter, TableHead, TableRow, TableCell, TableCaption, };
11
+ //# sourceMappingURL=table.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"table.d.ts","sourceRoot":"","sources":["../../../src/components/ui/table.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAI9B,iBAAS,KAAK,CAAC,EAAE,SAAS,EAAE,GAAG,KAAK,EAAE,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,CAAC,2CAapE;AAED,iBAAS,WAAW,CAAC,EAAE,SAAS,EAAE,GAAG,KAAK,EAAE,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,CAAC,2CAQ1E;AAED,iBAAS,SAAS,CAAC,EAAE,SAAS,EAAE,GAAG,KAAK,EAAE,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,CAAC,2CAQxE;AAED,iBAAS,WAAW,CAAC,EAAE,SAAS,EAAE,GAAG,KAAK,EAAE,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,CAAC,2CAW1E;AAED,iBAAS,QAAQ,CAAC,EAAE,SAAS,EAAE,GAAG,KAAK,EAAE,EAAE,KAAK,CAAC,cAAc,CAAC,IAAI,CAAC,2CAWpE;AAED,iBAAS,SAAS,CAAC,EAAE,SAAS,EAAE,GAAG,KAAK,EAAE,EAAE,KAAK,CAAC,cAAc,CAAC,IAAI,CAAC,2CAWrE;AAED,iBAAS,SAAS,CAAC,EAAE,SAAS,EAAE,GAAG,KAAK,EAAE,EAAE,KAAK,CAAC,cAAc,CAAC,IAAI,CAAC,2CAWrE;AAED,iBAAS,YAAY,CAAC,EACpB,SAAS,EACT,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,SAAS,CAAC,2CAQjC;AAED,OAAO,EACL,KAAK,EACL,WAAW,EACX,SAAS,EACT,WAAW,EACX,SAAS,EACT,QAAQ,EACR,SAAS,EACT,YAAY,GACb,CAAA"}