@schandlergarcia/sf-web-components 1.1.2 → 1.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/library/index.d.ts +9 -4
- package/dist/components/library/ui/Card.d.ts +37 -11
- package/dist/components/library/ui/FieldGroup.d.ts +5 -0
- package/dist/components/library/ui/FieldGroup.js +19 -0
- package/dist/components/library/ui/FieldGroup.js.map +1 -0
- package/dist/components/library/ui/alert.d.ts +21 -10
- package/dist/components/library/ui/alert.js +51 -56
- package/dist/components/library/ui/alert.js.map +1 -1
- package/dist/components/library/ui/card.js +72 -55
- package/dist/components/library/ui/card.js.map +1 -1
- package/dist/components/library/ui/checkbox.d.ts +4 -4
- package/dist/components/library/ui/checkbox.js +14 -26
- package/dist/components/library/ui/checkbox.js.map +1 -1
- package/dist/components/library/ui/label.d.ts +6 -4
- package/dist/components/library/ui/label.js +12 -15
- package/dist/components/library/ui/label.js.map +1 -1
- package/dist/index.js +170 -147
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -6,6 +6,9 @@ export { default as UIChip } from "./ui/Chip";
|
|
|
6
6
|
export { default as Avatar } from "./ui/Avatar";
|
|
7
7
|
export { default as EmptyState } from "./ui/EmptyState";
|
|
8
8
|
export { default as Spinner } from "./ui/Spinner";
|
|
9
|
+
export { default as Label } from "./ui/Label";
|
|
10
|
+
export { default as Checkbox } from "./ui/Checkbox";
|
|
11
|
+
export { default as FieldGroup } from "./ui/FieldGroup";
|
|
9
12
|
export { default as BaseCard } from "./cards/BaseCard";
|
|
10
13
|
export { default as ChartCard } from "./cards/ChartCard";
|
|
11
14
|
export { default as ListCard } from "./cards/ListCard";
|
|
@@ -33,9 +36,6 @@ export { default as HeroUICard } from "./heroui/Card";
|
|
|
33
36
|
export { default as HeroUIToggle } from "./heroui/Toggle";
|
|
34
37
|
export { default as HeroUITabs } from "./heroui/Tabs";
|
|
35
38
|
export { default as HeroUIAccordion } from "./heroui/Accordion";
|
|
36
|
-
export { default as HeroUIBreadcrumbs } from "./heroui/Breadcrumbs";
|
|
37
|
-
export { default as HeroUISeparator } from "./heroui/Separator";
|
|
38
|
-
export { default as HeroUIPagination } from "./heroui/Pagination";
|
|
39
39
|
export { default as HeroUIDrawer } from "./heroui/Drawer";
|
|
40
40
|
export { default as HeroUIModal } from "./heroui/Modal";
|
|
41
41
|
export { default as HeroUIDropdown } from "./heroui/Dropdown";
|
|
@@ -46,13 +46,18 @@ export { default as HeroUIBadge } from "./heroui/Badge";
|
|
|
46
46
|
export { default as HeroUIProgressBar } from "./heroui/ProgressBar";
|
|
47
47
|
export { default as HeroUIProgressCircle } from "./heroui/ProgressCircle";
|
|
48
48
|
export { default as HeroUIMeter } from "./heroui/Meter";
|
|
49
|
-
export { default as HeroUISkeleton } from "./heroui/Skeleton";
|
|
50
49
|
export { default as HeroUISelect } from "./heroui/Select";
|
|
51
50
|
export { default as AppThemeProvider, useThemeMode } from "./theme/AppThemeProvider";
|
|
51
|
+
export { default as UICard, Card, CardHeader, CardTitle, CardDescription, CardContent, CardFooter } from "./ui/Card";
|
|
52
|
+
export { default as Alert, AlertTitle, AlertDescription, AlertAction } from "./ui/Alert";
|
|
52
53
|
export { FormModal, FormRenderer, FormSection, FormField, useFormState } from "./forms";
|
|
53
54
|
export { FilterBar, SearchFilter, SelectFilter, ToggleFilter } from "./filters";
|
|
54
55
|
export { default as DataModeProvider, useDataMode } from "./data/DataModeProvider";
|
|
55
56
|
export { filterBySearch, filterByValue, filterByToggle, filterByDateRange, sortByKey, applyFilters } from "./data/filterUtils";
|
|
56
57
|
export { ChatPanel, ChatBar, ChatMessageList, ChatMessage, ChatInput, ChatTypingIndicator, ChatSuggestions, ChatToolCall, ChatWelcome, useChatState } from "./chat";
|
|
58
|
+
export { default as HeroUIBreadcrumbs, Breadcrumbs } from "./heroui/Breadcrumbs";
|
|
59
|
+
export { default as HeroUISeparator, Separator } from "./heroui/Separator";
|
|
60
|
+
export { default as HeroUIPagination, Pagination } from "./heroui/Pagination";
|
|
61
|
+
export { default as HeroUISkeleton, Skeleton } from "./heroui/Skeleton";
|
|
57
62
|
export { default as HeroUIKbd, Kbd } from "./heroui/Kbd";
|
|
58
63
|
export { default as HeroUIScrollShadow, ScrollShadow } from "./heroui/ScrollShadow";
|
|
@@ -1,11 +1,37 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
1
|
+
export default function UICard({ children, padding, style, className, ...rest }: {
|
|
2
|
+
[x: string]: any;
|
|
3
|
+
children: any;
|
|
4
|
+
padding?: string | undefined;
|
|
5
|
+
style: any;
|
|
6
|
+
className?: string | undefined;
|
|
7
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export function Card({ className, children, ...rest }: {
|
|
9
|
+
[x: string]: any;
|
|
10
|
+
className?: string | undefined;
|
|
11
|
+
children: any;
|
|
12
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export function CardHeader({ className, children, ...rest }: {
|
|
14
|
+
[x: string]: any;
|
|
15
|
+
className?: string | undefined;
|
|
16
|
+
children: any;
|
|
17
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
18
|
+
export function CardTitle({ className, children, ...rest }: {
|
|
19
|
+
[x: string]: any;
|
|
20
|
+
className?: string | undefined;
|
|
21
|
+
children: any;
|
|
22
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
23
|
+
export function CardDescription({ className, children, ...rest }: {
|
|
24
|
+
[x: string]: any;
|
|
25
|
+
className?: string | undefined;
|
|
26
|
+
children: any;
|
|
27
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
28
|
+
export function CardContent({ className, children, ...rest }: {
|
|
29
|
+
[x: string]: any;
|
|
30
|
+
className?: string | undefined;
|
|
31
|
+
children: any;
|
|
32
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
33
|
+
export function CardFooter({ className, children, ...rest }: {
|
|
34
|
+
[x: string]: any;
|
|
35
|
+
className?: string | undefined;
|
|
36
|
+
children: any;
|
|
37
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { jsx as r } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
function a({ className: o = "", children: e, ...l }) {
|
|
4
|
+
return /* @__PURE__ */ r(
|
|
5
|
+
"div",
|
|
6
|
+
{
|
|
7
|
+
className: [
|
|
8
|
+
"flex flex-col gap-1.5",
|
|
9
|
+
o
|
|
10
|
+
].filter(Boolean).join(" "),
|
|
11
|
+
...l,
|
|
12
|
+
children: e
|
|
13
|
+
}
|
|
14
|
+
);
|
|
15
|
+
}
|
|
16
|
+
export {
|
|
17
|
+
a as default
|
|
18
|
+
};
|
|
19
|
+
//# sourceMappingURL=FieldGroup.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FieldGroup.js","sources":["../../../../src/components/library/ui/FieldGroup.jsx"],"sourcesContent":["import React from \"react\";\n\nexport default function FieldGroup({ className = \"\", children, ...rest }) {\n return (\n <div\n className={[\n \"flex flex-col gap-1.5\",\n className\n ]\n .filter(Boolean)\n .join(\" \")}\n {...rest}\n >\n {children}\n </div>\n );\n}\n"],"names":["FieldGroup","className","children","rest","jsx"],"mappings":";;AAEA,SAAwBA,EAAW,EAAE,WAAAC,IAAY,IAAI,UAAAC,GAAU,GAAGC,KAAQ;AACxE,SACE,gBAAAC;AAAA,IAAC;AAAA,IAAA;AAAA,MACC,WAAW;AAAA,QACT;AAAA,QACAH;AAAA,MAAA,EAEC,OAAO,OAAO,EACd,KAAK,GAAG;AAAA,MACV,GAAGE;AAAA,MAEH,UAAAD;AAAA,IAAA;AAAA,EAAA;AAGP;"}
|
|
@@ -1,10 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
1
|
+
export default function Alert({ variant, className, children, ...rest }: {
|
|
2
|
+
[x: string]: any;
|
|
3
|
+
variant?: string | undefined;
|
|
4
|
+
className?: string | undefined;
|
|
5
|
+
children: any;
|
|
6
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export function AlertTitle({ className, children, ...rest }: {
|
|
8
|
+
[x: string]: any;
|
|
9
|
+
className?: string | undefined;
|
|
10
|
+
children: any;
|
|
11
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export function AlertDescription({ className, children, ...rest }: {
|
|
13
|
+
[x: string]: any;
|
|
14
|
+
className?: string | undefined;
|
|
15
|
+
children: any;
|
|
16
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
17
|
+
export function AlertAction({ className, children, ...rest }: {
|
|
18
|
+
[x: string]: any;
|
|
19
|
+
className?: string | undefined;
|
|
20
|
+
children: any;
|
|
21
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,78 +1,73 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
"
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
variant: "default"
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
);
|
|
18
|
-
function u({
|
|
19
|
-
className: t,
|
|
20
|
-
variant: e,
|
|
21
|
-
...s
|
|
22
|
-
}) {
|
|
23
|
-
return /* @__PURE__ */ r(
|
|
1
|
+
import { jsx as d } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
const l = {
|
|
4
|
+
default: "bg-slate-50 border-slate-200 text-slate-900 dark:bg-slate-900 dark:border-slate-800 dark:text-slate-50",
|
|
5
|
+
info: "bg-blue-50 border-blue-200 text-blue-900 dark:bg-blue-950 dark:border-blue-800 dark:text-blue-50",
|
|
6
|
+
success: "bg-green-50 border-green-200 text-green-900 dark:bg-green-950 dark:border-green-800 dark:text-green-50",
|
|
7
|
+
warning: "bg-yellow-50 border-yellow-200 text-yellow-900 dark:bg-yellow-950 dark:border-yellow-800 dark:text-yellow-50",
|
|
8
|
+
error: "bg-red-50 border-red-200 text-red-900 dark:bg-red-950 dark:border-red-800 dark:text-red-50",
|
|
9
|
+
destructive: "bg-red-50 border-red-200 text-red-900 dark:bg-red-950 dark:border-red-800 dark:text-red-50"
|
|
10
|
+
};
|
|
11
|
+
function i({ variant: e = "default", className: r = "", children: t, ...o }) {
|
|
12
|
+
const a = l[e] || l.default;
|
|
13
|
+
return /* @__PURE__ */ d(
|
|
24
14
|
"div",
|
|
25
15
|
{
|
|
26
|
-
"data-slot": "alert",
|
|
27
16
|
role: "alert",
|
|
28
|
-
className:
|
|
29
|
-
|
|
17
|
+
className: [
|
|
18
|
+
"rounded-lg border p-4",
|
|
19
|
+
a,
|
|
20
|
+
r
|
|
21
|
+
].filter(Boolean).join(" "),
|
|
22
|
+
...o,
|
|
23
|
+
children: t
|
|
30
24
|
}
|
|
31
25
|
);
|
|
32
26
|
}
|
|
33
|
-
function
|
|
34
|
-
return /* @__PURE__ */
|
|
35
|
-
"
|
|
27
|
+
function s({ className: e = "", children: r, ...t }) {
|
|
28
|
+
return /* @__PURE__ */ d(
|
|
29
|
+
"h5",
|
|
36
30
|
{
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
31
|
+
className: [
|
|
32
|
+
"mb-1 font-medium leading-none tracking-tight",
|
|
33
|
+
e
|
|
34
|
+
].filter(Boolean).join(" "),
|
|
35
|
+
...t,
|
|
36
|
+
children: r
|
|
43
37
|
}
|
|
44
38
|
);
|
|
45
39
|
}
|
|
46
|
-
function
|
|
47
|
-
|
|
48
|
-
...e
|
|
49
|
-
}) {
|
|
50
|
-
return /* @__PURE__ */ r(
|
|
40
|
+
function g({ className: e = "", children: r, ...t }) {
|
|
41
|
+
return /* @__PURE__ */ d(
|
|
51
42
|
"div",
|
|
52
43
|
{
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
44
|
+
className: [
|
|
45
|
+
"text-sm opacity-90",
|
|
46
|
+
e
|
|
47
|
+
].filter(Boolean).join(" "),
|
|
48
|
+
...t,
|
|
49
|
+
children: r
|
|
59
50
|
}
|
|
60
51
|
);
|
|
61
52
|
}
|
|
62
|
-
function
|
|
63
|
-
return /* @__PURE__ */
|
|
53
|
+
function u({ className: e = "", children: r, ...t }) {
|
|
54
|
+
return /* @__PURE__ */ d(
|
|
64
55
|
"div",
|
|
65
56
|
{
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
57
|
+
className: [
|
|
58
|
+
"mt-3",
|
|
59
|
+
e
|
|
60
|
+
].filter(Boolean).join(" "),
|
|
61
|
+
...t,
|
|
62
|
+
children: r
|
|
69
63
|
}
|
|
70
64
|
);
|
|
71
65
|
}
|
|
72
66
|
export {
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
67
|
+
i as Alert,
|
|
68
|
+
u as AlertAction,
|
|
69
|
+
g as AlertDescription,
|
|
70
|
+
s as AlertTitle,
|
|
71
|
+
i as default
|
|
77
72
|
};
|
|
78
|
-
//# sourceMappingURL=
|
|
73
|
+
//# sourceMappingURL=Alert.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"
|
|
1
|
+
{"version":3,"file":"Alert.js","sources":["../../../../src/components/library/ui/Alert.jsx"],"sourcesContent":["import React from \"react\";\n\nconst VARIANT_CLASSES = {\n default: \"bg-slate-50 border-slate-200 text-slate-900 dark:bg-slate-900 dark:border-slate-800 dark:text-slate-50\",\n info: \"bg-blue-50 border-blue-200 text-blue-900 dark:bg-blue-950 dark:border-blue-800 dark:text-blue-50\",\n success: \"bg-green-50 border-green-200 text-green-900 dark:bg-green-950 dark:border-green-800 dark:text-green-50\",\n warning: \"bg-yellow-50 border-yellow-200 text-yellow-900 dark:bg-yellow-950 dark:border-yellow-800 dark:text-yellow-50\",\n error: \"bg-red-50 border-red-200 text-red-900 dark:bg-red-950 dark:border-red-800 dark:text-red-50\",\n destructive: \"bg-red-50 border-red-200 text-red-900 dark:bg-red-950 dark:border-red-800 dark:text-red-50\"\n};\n\nexport default function Alert({ variant = \"default\", className = \"\", children, ...rest }) {\n const variantClasses = VARIANT_CLASSES[variant] || VARIANT_CLASSES.default;\n\n return (\n <div\n role=\"alert\"\n className={[\n \"rounded-lg border p-4\",\n variantClasses,\n className\n ]\n .filter(Boolean)\n .join(\" \")}\n {...rest}\n >\n {children}\n </div>\n );\n}\n\nexport function AlertTitle({ className = \"\", children, ...rest }) {\n return (\n <h5\n className={[\n \"mb-1 font-medium leading-none tracking-tight\",\n className\n ]\n .filter(Boolean)\n .join(\" \")}\n {...rest}\n >\n {children}\n </h5>\n );\n}\n\nexport function AlertDescription({ className = \"\", children, ...rest }) {\n return (\n <div\n className={[\n \"text-sm opacity-90\",\n className\n ]\n .filter(Boolean)\n .join(\" \")}\n {...rest}\n >\n {children}\n </div>\n );\n}\n\nexport function AlertAction({ className = \"\", children, ...rest }) {\n return (\n <div\n className={[\n \"mt-3\",\n className\n ]\n .filter(Boolean)\n .join(\" \")}\n {...rest}\n >\n {children}\n </div>\n );\n}\n\nexport { Alert };\n"],"names":["VARIANT_CLASSES","Alert","variant","className","children","rest","variantClasses","jsx","AlertTitle","AlertDescription","AlertAction"],"mappings":";;AAEA,MAAMA,IAAkB;AAAA,EACtB,SAAS;AAAA,EACT,MAAM;AAAA,EACN,SAAS;AAAA,EACT,SAAS;AAAA,EACT,OAAO;AAAA,EACP,aAAa;AACf;AAEA,SAAwBC,EAAM,EAAE,SAAAC,IAAU,WAAW,WAAAC,IAAY,IAAI,UAAAC,GAAU,GAAGC,KAAQ;AACxF,QAAMC,IAAiBN,EAAgBE,CAAO,KAAKF,EAAgB;AAEnE,SACE,gBAAAO;AAAA,IAAC;AAAA,IAAA;AAAA,MACC,MAAK;AAAA,MACL,WAAW;AAAA,QACT;AAAA,QACAD;AAAA,QACAH;AAAA,MAAA,EAEC,OAAO,OAAO,EACd,KAAK,GAAG;AAAA,MACV,GAAGE;AAAA,MAEH,UAAAD;AAAA,IAAA;AAAA,EAAA;AAGP;AAEO,SAASI,EAAW,EAAE,WAAAL,IAAY,IAAI,UAAAC,GAAU,GAAGC,KAAQ;AAChE,SACE,gBAAAE;AAAA,IAAC;AAAA,IAAA;AAAA,MACC,WAAW;AAAA,QACT;AAAA,QACAJ;AAAA,MAAA,EAEC,OAAO,OAAO,EACd,KAAK,GAAG;AAAA,MACV,GAAGE;AAAA,MAEH,UAAAD;AAAA,IAAA;AAAA,EAAA;AAGP;AAEO,SAASK,EAAiB,EAAE,WAAAN,IAAY,IAAI,UAAAC,GAAU,GAAGC,KAAQ;AACtE,SACE,gBAAAE;AAAA,IAAC;AAAA,IAAA;AAAA,MACC,WAAW;AAAA,QACT;AAAA,QACAJ;AAAA,MAAA,EAEC,OAAO,OAAO,EACd,KAAK,GAAG;AAAA,MACV,GAAGE;AAAA,MAEH,UAAAD;AAAA,IAAA;AAAA,EAAA;AAGP;AAEO,SAASM,EAAY,EAAE,WAAAP,IAAY,IAAI,UAAAC,GAAU,GAAGC,KAAQ;AACjE,SACE,gBAAAE;AAAA,IAAC;AAAA,IAAA;AAAA,MACC,WAAW;AAAA,QACT;AAAA,QACAJ;AAAA,MAAA,EAEC,OAAO,OAAO,EACd,KAAK,GAAG;AAAA,MACV,GAAGE;AAAA,MAEH,UAAAD;AAAA,IAAA;AAAA,EAAA;AAGP;"}
|
|
@@ -1,88 +1,105 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import
|
|
3
|
-
function
|
|
4
|
-
|
|
5
|
-
size: r = "default",
|
|
6
|
-
...e
|
|
7
|
-
}) {
|
|
8
|
-
return /* @__PURE__ */ t(
|
|
1
|
+
import { jsx as o } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
function d({ children: e, padding: r = "p-5", style: t, className: a = "", ...n }) {
|
|
4
|
+
return /* @__PURE__ */ o(
|
|
9
5
|
"div",
|
|
10
6
|
{
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
7
|
+
style: t,
|
|
8
|
+
className: [
|
|
9
|
+
"rounded-2xl border border-slate-200 bg-white shadow-sm dark:border-slate-800 dark:bg-slate-900",
|
|
10
|
+
r,
|
|
15
11
|
a
|
|
16
|
-
),
|
|
17
|
-
...
|
|
12
|
+
].filter(Boolean).join(" "),
|
|
13
|
+
...n,
|
|
14
|
+
children: e
|
|
18
15
|
}
|
|
19
16
|
);
|
|
20
17
|
}
|
|
21
|
-
function
|
|
22
|
-
return /* @__PURE__ */
|
|
18
|
+
function s({ className: e = "", children: r, ...t }) {
|
|
19
|
+
return /* @__PURE__ */ o(
|
|
23
20
|
"div",
|
|
24
21
|
{
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
22
|
+
className: [
|
|
23
|
+
"rounded-2xl border border-slate-200 bg-white shadow-sm dark:border-slate-800 dark:bg-slate-900",
|
|
24
|
+
e
|
|
25
|
+
].filter(Boolean).join(" "),
|
|
26
|
+
...t,
|
|
27
|
+
children: r
|
|
31
28
|
}
|
|
32
29
|
);
|
|
33
30
|
}
|
|
34
|
-
function
|
|
35
|
-
return /* @__PURE__ */
|
|
31
|
+
function f({ className: e = "", children: r, ...t }) {
|
|
32
|
+
return /* @__PURE__ */ o(
|
|
36
33
|
"div",
|
|
37
34
|
{
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
35
|
+
className: [
|
|
36
|
+
"flex flex-col space-y-1.5 p-6",
|
|
37
|
+
e
|
|
38
|
+
].filter(Boolean).join(" "),
|
|
39
|
+
...t,
|
|
40
|
+
children: r
|
|
44
41
|
}
|
|
45
42
|
);
|
|
46
43
|
}
|
|
47
|
-
function
|
|
48
|
-
return /* @__PURE__ */
|
|
49
|
-
"
|
|
44
|
+
function c({ className: e = "", children: r, ...t }) {
|
|
45
|
+
return /* @__PURE__ */ o(
|
|
46
|
+
"h3",
|
|
47
|
+
{
|
|
48
|
+
className: [
|
|
49
|
+
"text-2xl font-semibold leading-none tracking-tight",
|
|
50
|
+
e
|
|
51
|
+
].filter(Boolean).join(" "),
|
|
52
|
+
...t,
|
|
53
|
+
children: r
|
|
54
|
+
}
|
|
55
|
+
);
|
|
56
|
+
}
|
|
57
|
+
function u({ className: e = "", children: r, ...t }) {
|
|
58
|
+
return /* @__PURE__ */ o(
|
|
59
|
+
"p",
|
|
50
60
|
{
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
61
|
+
className: [
|
|
62
|
+
"text-sm text-slate-500 dark:text-slate-400",
|
|
63
|
+
e
|
|
64
|
+
].filter(Boolean).join(" "),
|
|
65
|
+
...t,
|
|
66
|
+
children: r
|
|
54
67
|
}
|
|
55
68
|
);
|
|
56
69
|
}
|
|
57
|
-
function
|
|
58
|
-
return /* @__PURE__ */
|
|
70
|
+
function m({ className: e = "", children: r, ...t }) {
|
|
71
|
+
return /* @__PURE__ */ o(
|
|
59
72
|
"div",
|
|
60
73
|
{
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
74
|
+
className: [
|
|
75
|
+
"p-6 pt-0",
|
|
76
|
+
e
|
|
77
|
+
].filter(Boolean).join(" "),
|
|
78
|
+
...t,
|
|
79
|
+
children: r
|
|
64
80
|
}
|
|
65
81
|
);
|
|
66
82
|
}
|
|
67
|
-
function
|
|
68
|
-
return /* @__PURE__ */
|
|
83
|
+
function p({ className: e = "", children: r, ...t }) {
|
|
84
|
+
return /* @__PURE__ */ o(
|
|
69
85
|
"div",
|
|
70
86
|
{
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
87
|
+
className: [
|
|
88
|
+
"flex items-center p-6 pt-0",
|
|
89
|
+
e
|
|
90
|
+
].filter(Boolean).join(" "),
|
|
91
|
+
...t,
|
|
92
|
+
children: r
|
|
77
93
|
}
|
|
78
94
|
);
|
|
79
95
|
}
|
|
80
96
|
export {
|
|
81
|
-
|
|
82
|
-
|
|
97
|
+
s as Card,
|
|
98
|
+
m as CardContent,
|
|
83
99
|
u as CardDescription,
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
100
|
+
p as CardFooter,
|
|
101
|
+
f as CardHeader,
|
|
102
|
+
c as CardTitle,
|
|
103
|
+
d as default
|
|
87
104
|
};
|
|
88
|
-
//# sourceMappingURL=
|
|
105
|
+
//# sourceMappingURL=Card.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"
|
|
1
|
+
{"version":3,"file":"Card.js","sources":["../../../../src/components/library/ui/Card.jsx"],"sourcesContent":["import React from \"react\";\n\nexport default function UICard({ children, padding = \"p-5\", style, className = \"\", ...rest }) {\n return (\n <div\n style={style}\n className={[\n \"rounded-2xl border border-slate-200 bg-white shadow-sm dark:border-slate-800 dark:bg-slate-900\",\n padding,\n className\n ]\n .filter(Boolean)\n .join(\" \")}\n {...rest}\n >\n {children}\n </div>\n );\n}\n\n// shadcn-compatible Card components\nexport function Card({ className = \"\", children, ...rest }) {\n return (\n <div\n className={[\n \"rounded-2xl border border-slate-200 bg-white shadow-sm dark:border-slate-800 dark:bg-slate-900\",\n className\n ]\n .filter(Boolean)\n .join(\" \")}\n {...rest}\n >\n {children}\n </div>\n );\n}\n\nexport function CardHeader({ className = \"\", children, ...rest }) {\n return (\n <div\n className={[\n \"flex flex-col space-y-1.5 p-6\",\n className\n ]\n .filter(Boolean)\n .join(\" \")}\n {...rest}\n >\n {children}\n </div>\n );\n}\n\nexport function CardTitle({ className = \"\", children, ...rest }) {\n return (\n <h3\n className={[\n \"text-2xl font-semibold leading-none tracking-tight\",\n className\n ]\n .filter(Boolean)\n .join(\" \")}\n {...rest}\n >\n {children}\n </h3>\n );\n}\n\nexport function CardDescription({ className = \"\", children, ...rest }) {\n return (\n <p\n className={[\n \"text-sm text-slate-500 dark:text-slate-400\",\n className\n ]\n .filter(Boolean)\n .join(\" \")}\n {...rest}\n >\n {children}\n </p>\n );\n}\n\nexport function CardContent({ className = \"\", children, ...rest }) {\n return (\n <div\n className={[\n \"p-6 pt-0\",\n className\n ]\n .filter(Boolean)\n .join(\" \")}\n {...rest}\n >\n {children}\n </div>\n );\n}\n\nexport function CardFooter({ className = \"\", children, ...rest }) {\n return (\n <div\n className={[\n \"flex items-center p-6 pt-0\",\n className\n ]\n .filter(Boolean)\n .join(\" \")}\n {...rest}\n >\n {children}\n </div>\n );\n}\n\n"],"names":["UICard","children","padding","style","className","rest","jsx","Card","CardHeader","CardTitle","CardDescription","CardContent","CardFooter"],"mappings":";;AAEA,SAAwBA,EAAO,EAAE,UAAAC,GAAU,SAAAC,IAAU,OAAO,OAAAC,GAAO,WAAAC,IAAY,IAAI,GAAGC,KAAQ;AAC5F,SACE,gBAAAC;AAAA,IAAC;AAAA,IAAA;AAAA,MACC,OAAAH;AAAA,MACA,WAAW;AAAA,QACT;AAAA,QACAD;AAAA,QACAE;AAAA,MAAA,EAEC,OAAO,OAAO,EACd,KAAK,GAAG;AAAA,MACV,GAAGC;AAAA,MAEH,UAAAJ;AAAA,IAAA;AAAA,EAAA;AAGP;AAGO,SAASM,EAAK,EAAE,WAAAH,IAAY,IAAI,UAAAH,GAAU,GAAGI,KAAQ;AAC1D,SACE,gBAAAC;AAAA,IAAC;AAAA,IAAA;AAAA,MACC,WAAW;AAAA,QACT;AAAA,QACAF;AAAA,MAAA,EAEC,OAAO,OAAO,EACd,KAAK,GAAG;AAAA,MACV,GAAGC;AAAA,MAEH,UAAAJ;AAAA,IAAA;AAAA,EAAA;AAGP;AAEO,SAASO,EAAW,EAAE,WAAAJ,IAAY,IAAI,UAAAH,GAAU,GAAGI,KAAQ;AAChE,SACE,gBAAAC;AAAA,IAAC;AAAA,IAAA;AAAA,MACC,WAAW;AAAA,QACT;AAAA,QACAF;AAAA,MAAA,EAEC,OAAO,OAAO,EACd,KAAK,GAAG;AAAA,MACV,GAAGC;AAAA,MAEH,UAAAJ;AAAA,IAAA;AAAA,EAAA;AAGP;AAEO,SAASQ,EAAU,EAAE,WAAAL,IAAY,IAAI,UAAAH,GAAU,GAAGI,KAAQ;AAC/D,SACE,gBAAAC;AAAA,IAAC;AAAA,IAAA;AAAA,MACC,WAAW;AAAA,QACT;AAAA,QACAF;AAAA,MAAA,EAEC,OAAO,OAAO,EACd,KAAK,GAAG;AAAA,MACV,GAAGC;AAAA,MAEH,UAAAJ;AAAA,IAAA;AAAA,EAAA;AAGP;AAEO,SAASS,EAAgB,EAAE,WAAAN,IAAY,IAAI,UAAAH,GAAU,GAAGI,KAAQ;AACrE,SACE,gBAAAC;AAAA,IAAC;AAAA,IAAA;AAAA,MACC,WAAW;AAAA,QACT;AAAA,QACAF;AAAA,MAAA,EAEC,OAAO,OAAO,EACd,KAAK,GAAG;AAAA,MACV,GAAGC;AAAA,MAEH,UAAAJ;AAAA,IAAA;AAAA,EAAA;AAGP;AAEO,SAASU,EAAY,EAAE,WAAAP,IAAY,IAAI,UAAAH,GAAU,GAAGI,KAAQ;AACjE,SACE,gBAAAC;AAAA,IAAC;AAAA,IAAA;AAAA,MACC,WAAW;AAAA,QACT;AAAA,QACAF;AAAA,MAAA,EAEC,OAAO,OAAO,EACd,KAAK,GAAG;AAAA,MACV,GAAGC;AAAA,MAEH,UAAAJ;AAAA,IAAA;AAAA,EAAA;AAGP;AAEO,SAASW,EAAW,EAAE,WAAAR,IAAY,IAAI,UAAAH,GAAU,GAAGI,KAAQ;AAChE,SACE,gBAAAC;AAAA,IAAC;AAAA,IAAA;AAAA,MACC,WAAW;AAAA,QACT;AAAA,QACAF;AAAA,MAAA,EAEC,OAAO,OAAO,EACd,KAAK,GAAG;AAAA,MACV,GAAGC;AAAA,MAEH,UAAAJ;AAAA,IAAA;AAAA,EAAA;AAGP;"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
export default function Checkbox({ className, ...rest }: {
|
|
2
|
+
[x: string]: any;
|
|
3
|
+
className?: string | undefined;
|
|
4
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,32 +1,20 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
className: e,
|
|
7
|
-
...i
|
|
8
|
-
}) {
|
|
9
|
-
return /* @__PURE__ */ r(
|
|
10
|
-
o,
|
|
1
|
+
import { jsx as o } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
function n({ className: r = "", ...e }) {
|
|
4
|
+
return /* @__PURE__ */ o(
|
|
5
|
+
"input",
|
|
11
6
|
{
|
|
12
|
-
|
|
13
|
-
className:
|
|
14
|
-
"
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
d,
|
|
20
|
-
{
|
|
21
|
-
"data-slot": "checkbox-indicator",
|
|
22
|
-
className: "[&>svg]:size-3.5 grid place-content-center text-current transition-none",
|
|
23
|
-
children: /* @__PURE__ */ r(t, {})
|
|
24
|
-
}
|
|
25
|
-
)
|
|
7
|
+
type: "checkbox",
|
|
8
|
+
className: [
|
|
9
|
+
"h-4 w-4 rounded border-slate-300 text-brand-600 focus:ring-brand-500",
|
|
10
|
+
"dark:border-slate-600 dark:bg-slate-800 dark:focus:ring-brand-400",
|
|
11
|
+
r
|
|
12
|
+
].filter(Boolean).join(" "),
|
|
13
|
+
...e
|
|
26
14
|
}
|
|
27
15
|
);
|
|
28
16
|
}
|
|
29
17
|
export {
|
|
30
|
-
|
|
18
|
+
n as default
|
|
31
19
|
};
|
|
32
|
-
//# sourceMappingURL=
|
|
20
|
+
//# sourceMappingURL=Checkbox.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"
|
|
1
|
+
{"version":3,"file":"Checkbox.js","sources":["../../../../src/components/library/ui/Checkbox.jsx"],"sourcesContent":["import React from \"react\";\n\nexport default function Checkbox({ className = \"\", ...rest }) {\n return (\n <input\n type=\"checkbox\"\n className={[\n \"h-4 w-4 rounded border-slate-300 text-brand-600 focus:ring-brand-500\",\n \"dark:border-slate-600 dark:bg-slate-800 dark:focus:ring-brand-400\",\n className\n ]\n .filter(Boolean)\n .join(\" \")}\n {...rest}\n />\n );\n}\n"],"names":["Checkbox","className","rest","jsx"],"mappings":";;AAEA,SAAwBA,EAAS,EAAE,WAAAC,IAAY,IAAI,GAAGC,KAAQ;AAC5D,SACE,gBAAAC;AAAA,IAAC;AAAA,IAAA;AAAA,MACC,MAAK;AAAA,MACL,WAAW;AAAA,QACT;AAAA,QACA;AAAA,QACAF;AAAA,MAAA,EAEC,OAAO,OAAO,EACd,KAAK,GAAG;AAAA,MACV,GAAGC;AAAA,IAAA;AAAA,EAAA;AAGV;"}
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
export default function Label({ children, htmlFor, className, ...rest }: {
|
|
2
|
+
[x: string]: any;
|
|
3
|
+
children: any;
|
|
4
|
+
htmlFor: any;
|
|
5
|
+
className?: string | undefined;
|
|
6
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,23 +1,20 @@
|
|
|
1
1
|
import { jsx as o } from "react/jsx-runtime";
|
|
2
|
-
import
|
|
3
|
-
|
|
4
|
-
function l({
|
|
5
|
-
className: e,
|
|
6
|
-
...t
|
|
7
|
-
}) {
|
|
2
|
+
import "react";
|
|
3
|
+
function s({ children: t, htmlFor: e, className: a = "", ...l }) {
|
|
8
4
|
return /* @__PURE__ */ o(
|
|
9
|
-
|
|
5
|
+
"label",
|
|
10
6
|
{
|
|
11
|
-
|
|
12
|
-
className:
|
|
13
|
-
"
|
|
14
|
-
|
|
15
|
-
),
|
|
16
|
-
...
|
|
7
|
+
htmlFor: e,
|
|
8
|
+
className: [
|
|
9
|
+
"block text-sm font-medium text-slate-700 dark:text-slate-200",
|
|
10
|
+
a
|
|
11
|
+
].filter(Boolean).join(" "),
|
|
12
|
+
...l,
|
|
13
|
+
children: t
|
|
17
14
|
}
|
|
18
15
|
);
|
|
19
16
|
}
|
|
20
17
|
export {
|
|
21
|
-
|
|
18
|
+
s as default
|
|
22
19
|
};
|
|
23
|
-
//# sourceMappingURL=
|
|
20
|
+
//# sourceMappingURL=Label.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"
|
|
1
|
+
{"version":3,"file":"Label.js","sources":["../../../../src/components/library/ui/Label.jsx"],"sourcesContent":["import React from \"react\";\n\nexport default function Label({ children, htmlFor, className = \"\", ...rest }) {\n return (\n <label\n htmlFor={htmlFor}\n className={[\n \"block text-sm font-medium text-slate-700 dark:text-slate-200\",\n className\n ]\n .filter(Boolean)\n .join(\" \")}\n {...rest}\n >\n {children}\n </label>\n );\n}\n"],"names":["Label","children","htmlFor","className","rest","jsx"],"mappings":";;AAEA,SAAwBA,EAAM,EAAE,UAAAC,GAAU,SAAAC,GAAS,WAAAC,IAAY,IAAI,GAAGC,KAAQ;AAC5E,SACE,gBAAAC;AAAA,IAAC;AAAA,IAAA;AAAA,MACC,SAAAH;AAAA,MACA,WAAW;AAAA,QACT;AAAA,QACAC;AAAA,MAAA,EAEC,OAAO,OAAO,EACd,KAAK,GAAG;AAAA,MACV,GAAGC;AAAA,MAEH,UAAAH;AAAA,IAAA;AAAA,EAAA;AAGP;"}
|
package/dist/index.js
CHANGED
|
@@ -1,163 +1,186 @@
|
|
|
1
|
-
import { cn as
|
|
1
|
+
import { cn as t } from "./lib/utils.js";
|
|
2
2
|
import { default as a, useThemeMode as f } from "./components/library/theme/AppThemeProvider.js";
|
|
3
3
|
import { default as d } from "./components/library/ui/UIButton.js";
|
|
4
4
|
import { default as p } from "./components/library/ui/UIInput.js";
|
|
5
5
|
import { default as m } from "./components/library/ui/Text.js";
|
|
6
6
|
import { default as i } from "./components/library/ui/Container.js";
|
|
7
|
-
import { default as
|
|
7
|
+
import { default as n } from "./components/library/ui/Chip.js";
|
|
8
8
|
import { default as U } from "./components/library/ui/Avatar.js";
|
|
9
|
-
import { default as
|
|
10
|
-
import { default as
|
|
11
|
-
import { default as T } from "./components/library/
|
|
12
|
-
import { default as
|
|
13
|
-
import { default as
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import { default as
|
|
17
|
-
import { default as
|
|
18
|
-
import { default as
|
|
19
|
-
import { default as
|
|
20
|
-
import { default as
|
|
21
|
-
import { default as
|
|
22
|
-
import { default as
|
|
23
|
-
import { default as
|
|
24
|
-
import { default as
|
|
25
|
-
import {
|
|
26
|
-
import { default as
|
|
27
|
-
import { default as
|
|
28
|
-
import { default as
|
|
29
|
-
import { default as
|
|
30
|
-
import {
|
|
31
|
-
import { default as
|
|
32
|
-
import { default as
|
|
33
|
-
import { default as
|
|
34
|
-
import { default as
|
|
35
|
-
import { default as
|
|
36
|
-
import { default as
|
|
37
|
-
import { default as
|
|
38
|
-
import { default as
|
|
39
|
-
import { default as
|
|
40
|
-
import { default as
|
|
41
|
-
import { default as
|
|
42
|
-
import {
|
|
43
|
-
import { default as
|
|
44
|
-
import { default as
|
|
45
|
-
import { default as
|
|
46
|
-
import { default as
|
|
47
|
-
import {
|
|
48
|
-
import { default as
|
|
49
|
-
import { default as
|
|
50
|
-
import { default as
|
|
51
|
-
import { default as
|
|
52
|
-
import { default as
|
|
53
|
-
import { default as
|
|
54
|
-
import { default as
|
|
55
|
-
import { default as
|
|
56
|
-
import { default as
|
|
57
|
-
import { default as
|
|
58
|
-
import { default as
|
|
59
|
-
import { default as
|
|
60
|
-
import { default as
|
|
61
|
-
import { default as
|
|
62
|
-
import { default as
|
|
63
|
-
import { default as
|
|
64
|
-
import { default as
|
|
65
|
-
import { default as
|
|
66
|
-
import { default as
|
|
67
|
-
import { default as
|
|
68
|
-
import { default as
|
|
69
|
-
import { default as
|
|
70
|
-
import { default as
|
|
71
|
-
import { default as
|
|
72
|
-
import { default as
|
|
73
|
-
import { default as
|
|
74
|
-
import { default as
|
|
75
|
-
import { default as
|
|
76
|
-
import {
|
|
9
|
+
import { default as H } from "./components/library/ui/EmptyState.js";
|
|
10
|
+
import { default as g } from "./components/library/ui/Spinner.js";
|
|
11
|
+
import { default as T } from "./components/library/ui/Label.js";
|
|
12
|
+
import { default as B } from "./components/library/ui/Checkbox.js";
|
|
13
|
+
import { default as A } from "./components/library/ui/FieldGroup.js";
|
|
14
|
+
import { Card as y, CardContent as P, CardDescription as b, CardFooter as k, CardHeader as v, CardTitle as w, default as L } from "./components/library/ui/Card.js";
|
|
15
|
+
import { Alert as G, AlertAction as R, AlertDescription as W, AlertTitle as E } from "./components/library/ui/Alert.js";
|
|
16
|
+
import { default as j } from "./components/library/cards/BaseCard.js";
|
|
17
|
+
import { default as z } from "./components/library/cards/ChartCard.js";
|
|
18
|
+
import { default as N } from "./components/library/cards/ListCard.js";
|
|
19
|
+
import { default as Q } from "./components/library/cards/MetricCard.js";
|
|
20
|
+
import { default as Y } from "./components/library/cards/SectionCard.js";
|
|
21
|
+
import { default as _ } from "./components/library/cards/StatusCard.js";
|
|
22
|
+
import { default as ee } from "./components/library/cards/TableCard.js";
|
|
23
|
+
import { default as te } from "./components/library/cards/WidgetCard.js";
|
|
24
|
+
import { default as ae } from "./components/library/cards/FeedPanel.js";
|
|
25
|
+
import { default as le } from "./components/library/cards/ActivityCard.js";
|
|
26
|
+
import { default as se } from "./components/library/cards/MetricsStrip.js";
|
|
27
|
+
import { default as ue } from "./components/library/cards/CalloutCard.js";
|
|
28
|
+
import { default as xe } from "./components/library/cards/ActionList.js";
|
|
29
|
+
import { default as Ce } from "./components/library/charts/D3Chart.js";
|
|
30
|
+
import { D3ChartTemplates as Ie } from "./components/library/charts/D3ChartTemplates.js";
|
|
31
|
+
import { default as ce } from "./components/library/charts/GeoMap.js";
|
|
32
|
+
import { default as Se } from "./components/library/layout/PageContainer.js";
|
|
33
|
+
import { default as he } from "./components/library/skeletons/CardSkeleton.js";
|
|
34
|
+
import { default as Fe } from "./components/library/forms/FormModal.js";
|
|
35
|
+
import { default as Me } from "./components/library/forms/FormRenderer.js";
|
|
36
|
+
import { default as De } from "./components/library/forms/FormSection.js";
|
|
37
|
+
import { default as Pe } from "./components/library/forms/FormField.js";
|
|
38
|
+
import { default as ke } from "./components/library/forms/useFormState.js";
|
|
39
|
+
import { default as we } from "./components/library/filters/FilterBar.js";
|
|
40
|
+
import { default as Ke } from "./components/library/filters/SearchFilter.js";
|
|
41
|
+
import { default as Re } from "./components/library/filters/SelectFilter.js";
|
|
42
|
+
import { default as Ee } from "./components/library/filters/ToggleFilter.js";
|
|
43
|
+
import { default as je, useDataMode as qe } from "./components/library/data/DataModeProvider.js";
|
|
44
|
+
import { default as Je } from "./components/library/data/DataModeToggle.js";
|
|
45
|
+
import { default as Oe } from "./components/library/data/useDataSource.js";
|
|
46
|
+
import { default as Xe } from "./components/library/data/usePageFilters.js";
|
|
47
|
+
import { applyFilters as Ze, filterByDateRange as _e, filterBySearch as $e, filterByToggle as er, filterByValue as rr, sortByKey as tr } from "./components/library/data/filterUtils.js";
|
|
48
|
+
import { default as ar } from "./components/library/chat/ChatPanel.js";
|
|
49
|
+
import { default as lr } from "./components/library/chat/ChatBar.js";
|
|
50
|
+
import { default as sr } from "./components/library/chat/ChatMessageList.js";
|
|
51
|
+
import { default as ur } from "./components/library/chat/ChatMessage.js";
|
|
52
|
+
import { default as xr } from "./components/library/chat/ChatInput.js";
|
|
53
|
+
import { default as Cr } from "./components/library/chat/ChatTypingIndicator.js";
|
|
54
|
+
import { default as Ir } from "./components/library/chat/ChatSuggestions.js";
|
|
55
|
+
import { default as cr } from "./components/library/chat/ChatToolCall.js";
|
|
56
|
+
import { default as Sr } from "./components/library/chat/ChatWelcome.js";
|
|
57
|
+
import { default as hr } from "./components/library/chat/useChatState.js";
|
|
58
|
+
import { default as Fr } from "./components/library/heroui/Button.js";
|
|
59
|
+
import { default as Mr } from "./components/library/heroui/Input.js";
|
|
60
|
+
import { default as Dr } from "./components/library/heroui/Card.js";
|
|
61
|
+
import { default as Pr } from "./components/library/heroui/Toggle.js";
|
|
62
|
+
import { default as kr } from "./components/library/heroui/Tabs.js";
|
|
63
|
+
import { default as wr } from "./components/library/heroui/Accordion.js";
|
|
64
|
+
import { default as Kr } from "./components/library/heroui/Breadcrumbs.js";
|
|
65
|
+
import { default as Rr } from "./components/library/heroui/Separator.js";
|
|
66
|
+
import { default as Er } from "./components/library/heroui/Pagination.js";
|
|
67
|
+
import { default as jr } from "./components/library/heroui/Drawer.js";
|
|
68
|
+
import { default as zr } from "./components/library/heroui/Modal.js";
|
|
69
|
+
import { default as Nr } from "./components/library/heroui/Dropdown.js";
|
|
70
|
+
import { default as Qr } from "./components/library/heroui/Tooltip.js";
|
|
71
|
+
import { default as Yr } from "./components/library/heroui/Toast.js";
|
|
72
|
+
import { default as _r } from "./components/library/heroui/Alert.js";
|
|
73
|
+
import { default as et } from "./components/library/heroui/Badge.js";
|
|
74
|
+
import { default as tt } from "./components/library/heroui/ProgressBar.js";
|
|
75
|
+
import { default as at } from "./components/library/heroui/ProgressCircle.js";
|
|
76
|
+
import { default as lt } from "./components/library/heroui/Meter.js";
|
|
77
|
+
import { default as st } from "./components/library/heroui/Skeleton.js";
|
|
78
|
+
import { default as ut } from "./components/library/heroui/Select.js";
|
|
79
|
+
import { default as xt } from "./components/library/heroui/Kbd.js";
|
|
80
|
+
import { default as Ct } from "./components/library/heroui/ScrollShadow.js";
|
|
81
|
+
import { Breadcrumbs as It, Kbd as Ut, Pagination as ct, ScrollShadow as Ht, Separator as St, Skeleton as gt } from "@heroui/react";
|
|
77
82
|
export {
|
|
78
|
-
|
|
79
|
-
|
|
83
|
+
xe as ActionList,
|
|
84
|
+
le as ActivityCard,
|
|
85
|
+
G as Alert,
|
|
86
|
+
R as AlertAction,
|
|
87
|
+
W as AlertDescription,
|
|
88
|
+
E as AlertTitle,
|
|
80
89
|
a as AppThemeProvider,
|
|
81
90
|
U as Avatar,
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
91
|
+
j as BaseCard,
|
|
92
|
+
It as Breadcrumbs,
|
|
93
|
+
ue as CalloutCard,
|
|
94
|
+
y as Card,
|
|
95
|
+
P as CardContent,
|
|
96
|
+
b as CardDescription,
|
|
97
|
+
k as CardFooter,
|
|
98
|
+
v as CardHeader,
|
|
99
|
+
he as CardSkeleton,
|
|
100
|
+
w as CardTitle,
|
|
101
|
+
z as ChartCard,
|
|
102
|
+
lr as ChatBar,
|
|
103
|
+
xr as ChatInput,
|
|
104
|
+
ur as ChatMessage,
|
|
105
|
+
sr as ChatMessageList,
|
|
106
|
+
ar as ChatPanel,
|
|
107
|
+
Ir as ChatSuggestions,
|
|
108
|
+
cr as ChatToolCall,
|
|
109
|
+
Cr as ChatTypingIndicator,
|
|
110
|
+
Sr as ChatWelcome,
|
|
111
|
+
B as Checkbox,
|
|
112
|
+
Ce as D3Chart,
|
|
113
|
+
Ie as D3ChartTemplates,
|
|
114
|
+
je as DataModeProvider,
|
|
115
|
+
Je as DataModeToggle,
|
|
116
|
+
H as EmptyState,
|
|
117
|
+
ae as FeedPanel,
|
|
118
|
+
A as FieldGroup,
|
|
119
|
+
we as FilterBar,
|
|
120
|
+
Pe as FormField,
|
|
121
|
+
Fe as FormModal,
|
|
122
|
+
Me as FormRenderer,
|
|
123
|
+
De as FormSection,
|
|
124
|
+
ce as GeoMap,
|
|
125
|
+
wr as HeroUIAccordion,
|
|
126
|
+
_r as HeroUIAlert,
|
|
127
|
+
et as HeroUIBadge,
|
|
128
|
+
Kr as HeroUIBreadcrumbs,
|
|
129
|
+
Fr as HeroUIButton,
|
|
130
|
+
Dr as HeroUICard,
|
|
131
|
+
jr as HeroUIDrawer,
|
|
132
|
+
Nr as HeroUIDropdown,
|
|
133
|
+
Mr as HeroUIInput,
|
|
134
|
+
xt as HeroUIKbd,
|
|
135
|
+
lt as HeroUIMeter,
|
|
136
|
+
zr as HeroUIModal,
|
|
137
|
+
Er as HeroUIPagination,
|
|
138
|
+
tt as HeroUIProgressBar,
|
|
139
|
+
at as HeroUIProgressCircle,
|
|
140
|
+
Ct as HeroUIScrollShadow,
|
|
141
|
+
ut as HeroUISelect,
|
|
142
|
+
Rr as HeroUISeparator,
|
|
143
|
+
st as HeroUISkeleton,
|
|
144
|
+
kr as HeroUITabs,
|
|
145
|
+
Yr as HeroUIToast,
|
|
146
|
+
Pr as HeroUIToggle,
|
|
147
|
+
Qr as HeroUITooltip,
|
|
148
|
+
Ut as Kbd,
|
|
149
|
+
T as Label,
|
|
150
|
+
N as ListCard,
|
|
151
|
+
Q as MetricCard,
|
|
152
|
+
se as MetricsStrip,
|
|
153
|
+
Se as PageContainer,
|
|
154
|
+
ct as Pagination,
|
|
155
|
+
Ht as ScrollShadow,
|
|
156
|
+
Ke as SearchFilter,
|
|
157
|
+
Y as SectionCard,
|
|
158
|
+
Re as SelectFilter,
|
|
159
|
+
St as Separator,
|
|
160
|
+
gt as Skeleton,
|
|
161
|
+
g as Spinner,
|
|
162
|
+
_ as StatusCard,
|
|
163
|
+
ee as TableCard,
|
|
164
|
+
Ee as ToggleFilter,
|
|
143
165
|
d as UIButton,
|
|
144
|
-
|
|
166
|
+
L as UICard,
|
|
167
|
+
n as UIChip,
|
|
145
168
|
i as UIContainer,
|
|
146
169
|
p as UIInput,
|
|
147
170
|
m as UIText,
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
171
|
+
te as WidgetCard,
|
|
172
|
+
Ze as applyFilters,
|
|
173
|
+
t as cn,
|
|
174
|
+
_e as filterByDateRange,
|
|
175
|
+
$e as filterBySearch,
|
|
176
|
+
er as filterByToggle,
|
|
177
|
+
rr as filterByValue,
|
|
178
|
+
tr as sortByKey,
|
|
179
|
+
hr as useChatState,
|
|
180
|
+
qe as useDataMode,
|
|
181
|
+
Oe as useDataSource,
|
|
182
|
+
ke as useFormState,
|
|
183
|
+
Xe as usePageFilters,
|
|
161
184
|
f as useThemeMode
|
|
162
185
|
};
|
|
163
186
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/package.json
CHANGED