chesai-ui 0.16.7 → 0.16.8
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.
|
@@ -30,5 +30,10 @@ export interface DataDisplayProps<TData> {
|
|
|
30
30
|
*/
|
|
31
31
|
enableSortControl?: boolean;
|
|
32
32
|
searchViewProps?: Partial<Omit<SearchViewProps, "value" | "onChange">>;
|
|
33
|
+
emptyTitle?: string;
|
|
34
|
+
emptyDescription?: string;
|
|
35
|
+
emptyIcon?: React.ReactNode;
|
|
36
|
+
emptyAction?: React.ReactNode;
|
|
37
|
+
renderEmptyState?: () => React.ReactNode;
|
|
33
38
|
}
|
|
34
|
-
export declare function DataDisplay<TData>({ data, columns, renderItem, layout, gridProps, masonryProps, itemContainerClassName, pageCount, pagination, onPaginationChange, sorting, onSortingChange, columnFilters, onColumnFiltersChange, globalFilter, onGlobalFilterChange, isLoading, toolbarChildren, bulkActions, enableSortControl, searchViewProps, }: DataDisplayProps<TData>): import("react/jsx-runtime").JSX.Element;
|
|
39
|
+
export declare function DataDisplay<TData>({ data, columns, renderItem, layout, gridProps, masonryProps, itemContainerClassName, pageCount, pagination, onPaginationChange, sorting, onSortingChange, columnFilters, onColumnFiltersChange, globalFilter, onGlobalFilterChange, isLoading, toolbarChildren, bulkActions, enableSortControl, searchViewProps, emptyTitle, emptyDescription, emptyIcon, emptyAction, renderEmptyState, }: DataDisplayProps<TData>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,29 +1,30 @@
|
|
|
1
|
-
import { jsx as e, jsxs as r, Fragment as
|
|
2
|
-
import { useReactTable as
|
|
3
|
-
import { ArrowUpDown as
|
|
1
|
+
import { jsx as e, jsxs as r, Fragment as W } from "react/jsx-runtime";
|
|
2
|
+
import { useReactTable as X, getFacetedUniqueValues as Y, getFacetedRowModel as Z, getSortedRowModel as ee, getPaginationRowModel as te, getFilteredRowModel as ne, getCoreRowModel as re } from "@tanstack/react-table";
|
|
3
|
+
import { ArrowUpDown as oe, Search as ie } from "lucide-react";
|
|
4
4
|
import n from "react";
|
|
5
|
-
import { Button as
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
|
|
15
|
-
|
|
5
|
+
import { Button as ae } from "../button/index.mjs";
|
|
6
|
+
import { EmptyState as le } from "../empty-state/index.mjs";
|
|
7
|
+
import { DataTableContext as se } from "../data-table/context.mjs";
|
|
8
|
+
import { advancedFilterFn as de } from "../data-table/filter-utils.mjs";
|
|
9
|
+
import { DataTablePagination as ce } from "../data-table/pagination.mjs";
|
|
10
|
+
import { DataTableToolbar as me } from "../data-table/toolbar.mjs";
|
|
11
|
+
import { DropdownMenu as ue, DropdownMenuTrigger as ge, DropdownMenuContent as fe, DropdownMenuLabel as pe, DropdownMenuSeparator as C, DropdownMenuItem as p } from "../dropdown-menu/index.mjs";
|
|
12
|
+
import { Grid as he } from "../layouts/grid.mjs";
|
|
13
|
+
import { Masonry as Se } from "../layouts/masonry.mjs";
|
|
14
|
+
import { LoadingIndicator as we } from "../loadingIndicator/index.mjs";
|
|
15
|
+
function Fe({
|
|
16
|
+
table: a
|
|
16
17
|
}) {
|
|
17
|
-
const d =
|
|
18
|
+
const d = a.getAllColumns().filter((t) => t.getCanSort());
|
|
18
19
|
if (d.length === 0) return null;
|
|
19
|
-
const o =
|
|
20
|
-
return /* @__PURE__ */ r(
|
|
21
|
-
/* @__PURE__ */ e(
|
|
22
|
-
|
|
20
|
+
const o = a.getState().sorting[0];
|
|
21
|
+
return /* @__PURE__ */ r(ue, { children: [
|
|
22
|
+
/* @__PURE__ */ e(ge, { asChild: !0, children: /* @__PURE__ */ r(
|
|
23
|
+
ae,
|
|
23
24
|
{
|
|
24
25
|
variant: "secondary",
|
|
25
26
|
size: "sm",
|
|
26
|
-
startIcon: /* @__PURE__ */ e(
|
|
27
|
+
startIcon: /* @__PURE__ */ e(oe, { className: "h-3.5 w-3.5" }),
|
|
27
28
|
className: "h-8",
|
|
28
29
|
children: [
|
|
29
30
|
"Sort",
|
|
@@ -37,9 +38,9 @@ function ge({
|
|
|
37
38
|
]
|
|
38
39
|
}
|
|
39
40
|
) }),
|
|
40
|
-
/* @__PURE__ */ r(
|
|
41
|
-
/* @__PURE__ */ e(
|
|
42
|
-
/* @__PURE__ */ e(
|
|
41
|
+
/* @__PURE__ */ r(fe, { align: "end", className: "w-48", children: [
|
|
42
|
+
/* @__PURE__ */ e(pe, { children: "Sort by" }),
|
|
43
|
+
/* @__PURE__ */ e(C, {}),
|
|
43
44
|
d.map((t) => {
|
|
44
45
|
const c = typeof t.columnDef.header == "string" ? t.columnDef.header : t.id;
|
|
45
46
|
return /* @__PURE__ */ r(n.Fragment, { children: [
|
|
@@ -53,99 +54,113 @@ function ge({
|
|
|
53
54
|
] })
|
|
54
55
|
] }, t.id);
|
|
55
56
|
}),
|
|
56
|
-
o && /* @__PURE__ */ r(
|
|
57
|
-
/* @__PURE__ */ e(
|
|
58
|
-
/* @__PURE__ */ e(p, { onClick: () =>
|
|
57
|
+
o && /* @__PURE__ */ r(W, { children: [
|
|
58
|
+
/* @__PURE__ */ e(C, {}),
|
|
59
|
+
/* @__PURE__ */ e(p, { onClick: () => a.resetSorting(), children: "Clear Sort" })
|
|
59
60
|
] })
|
|
60
61
|
] })
|
|
61
62
|
] });
|
|
62
63
|
}
|
|
63
|
-
function
|
|
64
|
-
data:
|
|
64
|
+
function Ae({
|
|
65
|
+
data: a,
|
|
65
66
|
columns: d,
|
|
66
67
|
renderItem: o,
|
|
67
68
|
layout: t = "grid",
|
|
68
69
|
gridProps: c,
|
|
69
|
-
masonryProps:
|
|
70
|
-
itemContainerClassName:
|
|
71
|
-
pageCount:
|
|
72
|
-
pagination:
|
|
70
|
+
masonryProps: D,
|
|
71
|
+
itemContainerClassName: u,
|
|
72
|
+
pageCount: b,
|
|
73
|
+
pagination: y,
|
|
73
74
|
onPaginationChange: h,
|
|
74
75
|
sorting: R,
|
|
75
76
|
onSortingChange: S,
|
|
76
|
-
columnFilters:
|
|
77
|
+
columnFilters: v,
|
|
77
78
|
onColumnFiltersChange: w,
|
|
78
|
-
globalFilter:
|
|
79
|
+
globalFilter: x,
|
|
79
80
|
onGlobalFilterChange: F,
|
|
80
|
-
isLoading:
|
|
81
|
-
toolbarChildren:
|
|
82
|
-
bulkActions:
|
|
83
|
-
enableSortControl:
|
|
84
|
-
searchViewProps:
|
|
81
|
+
isLoading: N,
|
|
82
|
+
toolbarChildren: I,
|
|
83
|
+
bulkActions: P,
|
|
84
|
+
enableSortControl: T = !0,
|
|
85
|
+
searchViewProps: V,
|
|
86
|
+
emptyTitle: j,
|
|
87
|
+
emptyDescription: A,
|
|
88
|
+
emptyIcon: k,
|
|
89
|
+
emptyAction: G,
|
|
90
|
+
renderEmptyState: M
|
|
85
91
|
}) {
|
|
86
|
-
const [
|
|
92
|
+
const [U, q] = n.useState({}), [z, L] = n.useState({}), [_, B] = n.useState(
|
|
87
93
|
[]
|
|
88
|
-
), [
|
|
94
|
+
), [$, E] = n.useState([]), [H, J] = n.useState(""), [K, O] = n.useState({
|
|
89
95
|
pageIndex: 0,
|
|
90
96
|
pageSize: 12
|
|
91
|
-
}), m = !!h,
|
|
92
|
-
data:
|
|
97
|
+
}), m = !!h, g = !!S, l = !!w || !!F, f = X({
|
|
98
|
+
data: a,
|
|
93
99
|
columns: d,
|
|
94
|
-
pageCount: m ?
|
|
100
|
+
pageCount: m ? b : void 0,
|
|
95
101
|
state: {
|
|
96
|
-
sorting:
|
|
97
|
-
columnFilters:
|
|
98
|
-
globalFilter:
|
|
99
|
-
pagination: m ?
|
|
100
|
-
columnVisibility:
|
|
101
|
-
rowSelection:
|
|
102
|
+
sorting: g ? R : _,
|
|
103
|
+
columnFilters: l ? v : $,
|
|
104
|
+
globalFilter: l ? x : H,
|
|
105
|
+
pagination: m ? y : K,
|
|
106
|
+
columnVisibility: z,
|
|
107
|
+
rowSelection: U
|
|
102
108
|
},
|
|
103
|
-
onRowSelectionChange:
|
|
104
|
-
onColumnVisibilityChange:
|
|
105
|
-
onSortingChange:
|
|
106
|
-
onColumnFiltersChange:
|
|
107
|
-
onGlobalFilterChange:
|
|
108
|
-
onPaginationChange: m ? h :
|
|
109
|
+
onRowSelectionChange: q,
|
|
110
|
+
onColumnVisibilityChange: L,
|
|
111
|
+
onSortingChange: g ? S : B,
|
|
112
|
+
onColumnFiltersChange: l ? w : E,
|
|
113
|
+
onGlobalFilterChange: l ? F : J,
|
|
114
|
+
onPaginationChange: m ? h : O,
|
|
109
115
|
manualPagination: m,
|
|
110
|
-
manualSorting:
|
|
111
|
-
manualFiltering:
|
|
112
|
-
getCoreRowModel:
|
|
113
|
-
getFilteredRowModel:
|
|
114
|
-
getPaginationRowModel:
|
|
115
|
-
getSortedRowModel:
|
|
116
|
-
getFacetedRowModel:
|
|
117
|
-
getFacetedUniqueValues:
|
|
116
|
+
manualSorting: g,
|
|
117
|
+
manualFiltering: l,
|
|
118
|
+
getCoreRowModel: re(),
|
|
119
|
+
getFilteredRowModel: ne(),
|
|
120
|
+
getPaginationRowModel: te(),
|
|
121
|
+
getSortedRowModel: ee(),
|
|
122
|
+
getFacetedRowModel: Z(),
|
|
123
|
+
getFacetedUniqueValues: Y(),
|
|
118
124
|
defaultColumn: {
|
|
119
|
-
filterFn:
|
|
125
|
+
filterFn: de
|
|
120
126
|
}
|
|
121
|
-
}), s = f.getRowModel().rows,
|
|
122
|
-
|
|
127
|
+
}), s = f.getRowModel().rows, Q = () => N && s.length === 0 ? /* @__PURE__ */ e("div", { className: "flex h-64 w-full items-center justify-center", children: /* @__PURE__ */ e(we, { variant: "material-morph" }) }) : s.length === 0 ? M ? M() : /* @__PURE__ */ e("div", { className: "flex h-64 w-full items-center justify-center border-2 border-dashed border-outline-variant rounded-xl p-6", children: /* @__PURE__ */ e(
|
|
128
|
+
le,
|
|
129
|
+
{
|
|
130
|
+
variant: "default",
|
|
131
|
+
icon: k ?? /* @__PURE__ */ e(ie, { className: "h-10 w-10 opacity-40 text-on-surface-variant" }),
|
|
132
|
+
title: j ?? "No results found.",
|
|
133
|
+
description: A ?? "Try adjusting your filters or search terms.",
|
|
134
|
+
action: G
|
|
135
|
+
}
|
|
136
|
+
) }) : t === "masonry" ? /* @__PURE__ */ e(
|
|
137
|
+
Se,
|
|
123
138
|
{
|
|
124
139
|
columns: { default: 1, sm: 2, md: 3, lg: 4 },
|
|
125
140
|
gap: "md",
|
|
126
|
-
...
|
|
127
|
-
className:
|
|
141
|
+
...D,
|
|
142
|
+
className: u,
|
|
128
143
|
children: s.map((i) => /* @__PURE__ */ e(n.Fragment, { children: o(i) }, i.id))
|
|
129
144
|
}
|
|
130
145
|
) : t === "grid" ? /* @__PURE__ */ e(
|
|
131
|
-
|
|
146
|
+
he,
|
|
132
147
|
{
|
|
133
148
|
columns: { default: 1, sm: 2, md: 3, lg: 4 },
|
|
134
149
|
gap: "md",
|
|
135
150
|
...c,
|
|
136
|
-
className:
|
|
151
|
+
className: u,
|
|
137
152
|
children: s.map((i) => /* @__PURE__ */ e(n.Fragment, { children: o(i) }, i.id))
|
|
138
153
|
}
|
|
139
|
-
) : /* @__PURE__ */ e("div", { className: `flex flex-col gap-4 ${
|
|
140
|
-
return /* @__PURE__ */ e(
|
|
141
|
-
/* @__PURE__ */ r(
|
|
142
|
-
|
|
143
|
-
|
|
154
|
+
) : /* @__PURE__ */ e("div", { className: `flex flex-col gap-4 ${u}`, children: s.map((i) => /* @__PURE__ */ e(n.Fragment, { children: o(i) }, i.id)) });
|
|
155
|
+
return /* @__PURE__ */ e(se.Provider, { value: { table: f, searchViewProps: V }, children: /* @__PURE__ */ r("div", { className: "flex flex-col w-full space-y-6", children: [
|
|
156
|
+
/* @__PURE__ */ r(me, { bulkActions: P, children: [
|
|
157
|
+
I,
|
|
158
|
+
T && /* @__PURE__ */ e(Fe, { table: f })
|
|
144
159
|
] }),
|
|
145
|
-
/* @__PURE__ */ e("div", { className: "min-h-[200px]", children:
|
|
146
|
-
/* @__PURE__ */ e(
|
|
160
|
+
/* @__PURE__ */ e("div", { className: "min-h-[200px]", children: Q() }),
|
|
161
|
+
/* @__PURE__ */ e(ce, {})
|
|
147
162
|
] }) });
|
|
148
163
|
}
|
|
149
164
|
export {
|
|
150
|
-
|
|
165
|
+
Ae as DataDisplay
|
|
151
166
|
};
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
import { cva as
|
|
1
|
+
import { jsxs as o, jsx as n } from "react/jsx-runtime";
|
|
2
|
+
import { cva as E } from "class-variance-authority";
|
|
3
3
|
import { clsx as i } from "clsx";
|
|
4
4
|
import { motion as h } from "framer-motion";
|
|
5
|
-
import { Check as
|
|
6
|
-
import
|
|
7
|
-
|
|
5
|
+
import { Check as A, X as K } from "lucide-react";
|
|
6
|
+
import w, { useState as L } from "react";
|
|
7
|
+
import { useLayout as W } from "../../context/layout-context.mjs";
|
|
8
|
+
const X = E(
|
|
8
9
|
"relative border-2 cursor-pointer disabled:cursor-not-allowed disabled:opacity-50 outline-none rounded-full transition-colors duration-300",
|
|
9
10
|
{
|
|
10
11
|
variants: {
|
|
@@ -22,43 +23,50 @@ const R = z(
|
|
|
22
23
|
size: "md"
|
|
23
24
|
}
|
|
24
25
|
}
|
|
25
|
-
),
|
|
26
|
+
), _ = {
|
|
26
27
|
type: "spring",
|
|
27
28
|
stiffness: 700,
|
|
28
29
|
damping: 30
|
|
29
|
-
},
|
|
30
|
+
}, k = {
|
|
30
31
|
type: "spring",
|
|
31
32
|
stiffness: 500,
|
|
32
33
|
damping: 25
|
|
33
|
-
},
|
|
34
|
+
}, q = w.forwardRef(
|
|
34
35
|
({
|
|
35
|
-
className:
|
|
36
|
-
size:
|
|
37
|
-
label:
|
|
38
|
-
description:
|
|
39
|
-
withIcons:
|
|
40
|
-
showUncheckedIcon:
|
|
41
|
-
checked:
|
|
42
|
-
defaultChecked:
|
|
43
|
-
onCheckedChange:
|
|
36
|
+
className: N,
|
|
37
|
+
size: c = "md",
|
|
38
|
+
label: u,
|
|
39
|
+
description: m,
|
|
40
|
+
withIcons: b = !0,
|
|
41
|
+
showUncheckedIcon: I = !1,
|
|
42
|
+
checked: l,
|
|
43
|
+
defaultChecked: j,
|
|
44
|
+
onCheckedChange: d,
|
|
44
45
|
disabled: t,
|
|
45
|
-
id:
|
|
46
|
-
...
|
|
47
|
-
},
|
|
48
|
-
const
|
|
49
|
-
|
|
50
|
-
|
|
46
|
+
id: S,
|
|
47
|
+
...p
|
|
48
|
+
}, T) => {
|
|
49
|
+
const C = w.useId(), g = S || C;
|
|
50
|
+
let s = !1;
|
|
51
|
+
try {
|
|
52
|
+
s = W().isRtl;
|
|
53
|
+
} catch {
|
|
54
|
+
typeof window < "u" && (s = document.documentElement.dir === "rtl" || document.documentElement.classList.contains("rtl"));
|
|
55
|
+
}
|
|
56
|
+
const [R, y] = L(
|
|
57
|
+
j ?? !1
|
|
58
|
+
), e = l !== void 0 ? l : R, x = (r) => {
|
|
51
59
|
if (t) return;
|
|
52
|
-
const
|
|
53
|
-
|
|
60
|
+
const a = r.target.checked;
|
|
61
|
+
l === void 0 && y(a), d?.(a), p.onChange?.(r);
|
|
54
62
|
}, V = (r) => {
|
|
55
63
|
if (!t && (r.key === "Enter" || r.key === " ")) {
|
|
56
64
|
r.preventDefault();
|
|
57
|
-
const
|
|
58
|
-
|
|
65
|
+
const a = !e;
|
|
66
|
+
l === void 0 && y(a), d?.(a);
|
|
59
67
|
}
|
|
60
68
|
}, f = (() => {
|
|
61
|
-
switch (
|
|
69
|
+
switch (c) {
|
|
62
70
|
case "sm":
|
|
63
71
|
return {
|
|
64
72
|
width: e ? 16 : 12,
|
|
@@ -78,12 +86,12 @@ const R = z(
|
|
|
78
86
|
x: e ? 22 : 7
|
|
79
87
|
};
|
|
80
88
|
}
|
|
81
|
-
})(), v =
|
|
82
|
-
return /* @__PURE__ */
|
|
83
|
-
/* @__PURE__ */
|
|
89
|
+
})(), z = s ? -1 : 1, D = f.x * z, v = c === "sm" ? 10 : c === "lg" ? 20 : 16;
|
|
90
|
+
return /* @__PURE__ */ o("div", { className: i("inline-flex items-center gap-3", N), children: [
|
|
91
|
+
/* @__PURE__ */ o(
|
|
84
92
|
"label",
|
|
85
93
|
{
|
|
86
|
-
htmlFor:
|
|
94
|
+
htmlFor: g,
|
|
87
95
|
className: i(
|
|
88
96
|
"relative inline-flex items-center group outline-none rounded-full select-none",
|
|
89
97
|
!t && "cursor-pointer",
|
|
@@ -96,35 +104,39 @@ const R = z(
|
|
|
96
104
|
"input",
|
|
97
105
|
{
|
|
98
106
|
type: "checkbox",
|
|
99
|
-
id:
|
|
100
|
-
ref:
|
|
107
|
+
id: g,
|
|
108
|
+
ref: T,
|
|
101
109
|
className: "sr-only",
|
|
102
110
|
checked: e,
|
|
103
111
|
onChange: x,
|
|
104
112
|
disabled: t,
|
|
105
113
|
tabIndex: -1,
|
|
106
|
-
...
|
|
114
|
+
...p
|
|
107
115
|
}
|
|
108
116
|
),
|
|
109
117
|
/* @__PURE__ */ n(
|
|
110
118
|
"div",
|
|
111
119
|
{
|
|
112
120
|
className: i(
|
|
113
|
-
|
|
121
|
+
X({ size: c, checked: e }),
|
|
114
122
|
t && e && "bg-on-surface/12 border-transparent",
|
|
115
123
|
t && !e && "bg-surface-container-highest/38 border-on-surface/12"
|
|
116
124
|
),
|
|
117
|
-
children: /* @__PURE__ */
|
|
125
|
+
children: /* @__PURE__ */ o(
|
|
118
126
|
h.div,
|
|
119
127
|
{
|
|
120
|
-
transition:
|
|
128
|
+
transition: _,
|
|
121
129
|
initial: !1,
|
|
122
130
|
animate: {
|
|
123
|
-
x:
|
|
131
|
+
x: D,
|
|
124
132
|
width: f.width,
|
|
125
133
|
height: f.height,
|
|
126
134
|
backgroundColor: e ? "var(--md-sys-color-on-primary)" : "var(--md-sys-color-outline-variant)"
|
|
127
135
|
},
|
|
136
|
+
style: {
|
|
137
|
+
left: s ? "auto" : 0,
|
|
138
|
+
right: s ? 0 : "auto"
|
|
139
|
+
},
|
|
128
140
|
className: i(
|
|
129
141
|
"absolute top-1/2 -translate-y-1/2 rounded-full shadow-sm flex items-center justify-center z-10",
|
|
130
142
|
t && "!bg-on-surface/38"
|
|
@@ -142,8 +154,8 @@ const R = z(
|
|
|
142
154
|
}
|
|
143
155
|
}
|
|
144
156
|
),
|
|
145
|
-
/* @__PURE__ */
|
|
146
|
-
|
|
157
|
+
/* @__PURE__ */ o("div", { className: "relative w-full h-full flex items-center justify-center overflow-hidden", children: [
|
|
158
|
+
b && /* @__PURE__ */ n(
|
|
147
159
|
h.div,
|
|
148
160
|
{
|
|
149
161
|
initial: !1,
|
|
@@ -152,9 +164,9 @@ const R = z(
|
|
|
152
164
|
opacity: e ? 1 : 0,
|
|
153
165
|
rotate: e ? 0 : -90
|
|
154
166
|
},
|
|
155
|
-
transition:
|
|
167
|
+
transition: k,
|
|
156
168
|
children: /* @__PURE__ */ n(
|
|
157
|
-
|
|
169
|
+
A,
|
|
158
170
|
{
|
|
159
171
|
size: v,
|
|
160
172
|
strokeWidth: 4,
|
|
@@ -163,7 +175,7 @@ const R = z(
|
|
|
163
175
|
)
|
|
164
176
|
}
|
|
165
177
|
),
|
|
166
|
-
|
|
178
|
+
I && /* @__PURE__ */ n(
|
|
167
179
|
h.div,
|
|
168
180
|
{
|
|
169
181
|
initial: !1,
|
|
@@ -173,9 +185,9 @@ const R = z(
|
|
|
173
185
|
opacity: e ? 0 : 1,
|
|
174
186
|
rotate: e ? 90 : 0
|
|
175
187
|
},
|
|
176
|
-
transition:
|
|
188
|
+
transition: k,
|
|
177
189
|
children: /* @__PURE__ */ n(
|
|
178
|
-
|
|
190
|
+
K,
|
|
179
191
|
{
|
|
180
192
|
size: v - 2,
|
|
181
193
|
strokeWidth: 3,
|
|
@@ -193,30 +205,30 @@ const R = z(
|
|
|
193
205
|
]
|
|
194
206
|
}
|
|
195
207
|
),
|
|
196
|
-
(
|
|
208
|
+
(u || m) && /* @__PURE__ */ o(
|
|
197
209
|
"div",
|
|
198
210
|
{
|
|
199
211
|
className: i("flex flex-col", !t && "cursor-pointer"),
|
|
200
212
|
onClick: () => !t && x({ target: { checked: !e } }),
|
|
201
213
|
children: [
|
|
202
|
-
|
|
214
|
+
u && /* @__PURE__ */ n(
|
|
203
215
|
"span",
|
|
204
216
|
{
|
|
205
217
|
className: i(
|
|
206
218
|
"text-sm font-medium select-none",
|
|
207
219
|
t ? "text-on-surface/38" : "text-on-surface"
|
|
208
220
|
),
|
|
209
|
-
children:
|
|
221
|
+
children: u
|
|
210
222
|
}
|
|
211
223
|
),
|
|
212
|
-
|
|
224
|
+
m && /* @__PURE__ */ n(
|
|
213
225
|
"span",
|
|
214
226
|
{
|
|
215
227
|
className: i(
|
|
216
228
|
"text-xs select-none",
|
|
217
229
|
t ? "text-on-surface-variant/38" : "text-on-surface-variant"
|
|
218
230
|
),
|
|
219
|
-
children:
|
|
231
|
+
children: m
|
|
220
232
|
}
|
|
221
233
|
)
|
|
222
234
|
]
|
|
@@ -225,7 +237,7 @@ const R = z(
|
|
|
225
237
|
] });
|
|
226
238
|
}
|
|
227
239
|
);
|
|
228
|
-
|
|
240
|
+
q.displayName = "Switch";
|
|
229
241
|
export {
|
|
230
|
-
|
|
242
|
+
q as Switch
|
|
231
243
|
};
|
package/package.json
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chesai-ui",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.16.
|
|
5
|
-
"packageManager": "pnpm@10.12.1",
|
|
4
|
+
"version": "0.16.8",
|
|
6
5
|
"repository": {
|
|
7
6
|
"type": "git",
|
|
8
7
|
"url": "https://github.com/ayhamdev/chesai-ui"
|
|
@@ -25,19 +24,6 @@
|
|
|
25
24
|
"engines": {
|
|
26
25
|
"node": ">=22"
|
|
27
26
|
},
|
|
28
|
-
"scripts": {
|
|
29
|
-
"dev": "bunx storybook dev -p 8000",
|
|
30
|
-
"build": "storybook build",
|
|
31
|
-
"build:lib": "tsc && vite build",
|
|
32
|
-
"build:docs": "npx ts-node ./scripts/generate-llm.ts",
|
|
33
|
-
"lint": "npx @biomejs/biome lint --write ./src",
|
|
34
|
-
"format": "npx @biomejs/biome check --write --organize-imports-enabled=true ./src",
|
|
35
|
-
"test": "vitest",
|
|
36
|
-
"test:cov": "vitest run --coverage",
|
|
37
|
-
"gen:context": "bun run ./scripts/context.ts",
|
|
38
|
-
"git:diff-merge": "git diff --unified=2000 $(git merge-base main HEAD)...HEAD",
|
|
39
|
-
"git:diff": "git diff --unified=2000 > git-changes.txt"
|
|
40
|
-
},
|
|
41
27
|
"dependencies": {
|
|
42
28
|
"@capacitor/app": "^8.0.0",
|
|
43
29
|
"@capacitor/core": "^8.0.1",
|
|
@@ -168,5 +154,18 @@
|
|
|
168
154
|
"biome lint --write --no-errors-on-unmatched --files-ignore-unknown=true",
|
|
169
155
|
"biome format --write --no-errors-on-unmatched"
|
|
170
156
|
]
|
|
157
|
+
},
|
|
158
|
+
"scripts": {
|
|
159
|
+
"dev": "bunx storybook dev -p 8000",
|
|
160
|
+
"build": "storybook build",
|
|
161
|
+
"build:lib": "tsc && vite build",
|
|
162
|
+
"build:docs": "npx ts-node ./scripts/generate-llm.ts",
|
|
163
|
+
"lint": "npx @biomejs/biome lint --write ./src",
|
|
164
|
+
"format": "npx @biomejs/biome check --write --organize-imports-enabled=true ./src",
|
|
165
|
+
"test": "vitest",
|
|
166
|
+
"test:cov": "vitest run --coverage",
|
|
167
|
+
"gen:context": "bun run ./scripts/context.ts",
|
|
168
|
+
"git:diff-merge": "git diff --unified=2000 $(git merge-base main HEAD)...HEAD",
|
|
169
|
+
"git:diff": "git diff --unified=2000 > git-changes.txt"
|
|
171
170
|
}
|
|
172
|
-
}
|
|
171
|
+
}
|