@wealthx/shadcn 1.0.1 → 1.1.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.
- package/.turbo/turbo-build.log +154 -135
- package/CHANGELOG.md +12 -0
- package/README.md +82 -0
- package/dist/chunk-3EQP72AW.mjs +58 -0
- package/dist/{chunk-2WZVSBAY.mjs → chunk-3NQGYJEZ.mjs} +1 -1
- package/dist/{chunk-ZN2QKLF6.mjs → chunk-46OFHMQA.mjs} +1 -1
- package/dist/{chunk-IAOOZCUY.mjs → chunk-4AJ5HWHD.mjs} +4 -1
- package/dist/chunk-5JGQAAQV.mjs +212 -0
- package/dist/{chunk-MKFL5MNH.mjs → chunk-CJ46PDXE.mjs} +6 -6
- package/dist/{chunk-7LDIMXGM.mjs → chunk-DKZRJOMF.mjs} +1 -1
- package/dist/{chunk-AMJ23O53.mjs → chunk-FHNT55I5.mjs} +2 -2
- package/dist/chunk-GLW2UO6O.mjs +212 -0
- package/dist/{chunk-NGYG2EA6.mjs → chunk-I64K754C.mjs} +1 -1
- package/dist/chunk-K74JRTJR.mjs +105 -0
- package/dist/{chunk-NWZ46DJL.mjs → chunk-KQDD5MU3.mjs} +1 -1
- package/dist/chunk-RN67642N.mjs +171 -0
- package/dist/chunk-UEL4RD5P.mjs +272 -0
- package/dist/chunk-YBXCIF5Q.mjs +198 -0
- package/dist/components/ui/alert-dialog.js +4 -1
- package/dist/components/ui/alert-dialog.mjs +2 -2
- package/dist/components/ui/button.js +4 -1
- package/dist/components/ui/button.mjs +1 -1
- package/dist/components/ui/calendar.js +4 -1
- package/dist/components/ui/calendar.mjs +2 -2
- package/dist/components/ui/cashflow-bar-chart.js +596 -0
- package/dist/components/ui/cashflow-bar-chart.mjs +16 -0
- package/dist/components/ui/combobox.js +261 -0
- package/dist/components/ui/combobox.mjs +28 -0
- package/dist/components/ui/data-table.js +4 -1
- package/dist/components/ui/data-table.mjs +4 -4
- package/dist/components/ui/date-picker.js +4 -1
- package/dist/components/ui/date-picker.mjs +3 -3
- package/dist/components/ui/dialog.js +4 -1
- package/dist/components/ui/dialog.mjs +2 -2
- package/dist/components/ui/expense-bar-chart.js +543 -0
- package/dist/components/ui/expense-bar-chart.mjs +16 -0
- package/dist/components/ui/field.mjs +2 -2
- package/dist/components/ui/income-bar-chart.js +543 -0
- package/dist/components/ui/income-bar-chart.mjs +16 -0
- package/dist/components/ui/input-group.js +4 -1
- package/dist/components/ui/input-group.mjs +2 -2
- package/dist/components/ui/pagination.js +4 -1
- package/dist/components/ui/pagination.mjs +2 -2
- package/dist/components/ui/slider.js +166 -0
- package/dist/components/ui/slider.mjs +8 -0
- package/dist/components/ui/transactions-income-expense-bar-chart.js +478 -0
- package/dist/components/ui/transactions-income-expense-bar-chart.mjs +16 -0
- package/dist/index.js +1757 -698
- package/dist/index.mjs +160 -115
- package/dist/styles.css +1 -1
- package/package.json +35 -2
- package/src/components/index.tsx +59 -0
- package/src/components/ui/button.tsx +2 -0
- package/src/components/ui/cashflow-bar-chart.tsx +336 -0
- package/src/components/ui/chart-shared.tsx +100 -0
- package/src/components/ui/combobox.tsx +217 -0
- package/src/components/ui/expense-bar-chart.tsx +278 -0
- package/src/components/ui/income-bar-chart.tsx +278 -0
- package/src/components/ui/slider.tsx +107 -0
- package/src/components/ui/transactions-income-expense-bar-chart.tsx +198 -0
- package/src/styles/styles-css.ts +1 -1
- package/tsup.config.ts +6 -0
- package/dist/{chunk-HUVTPUV2.mjs → chunk-NLLKTU4B.mjs} +3 -3
|
@@ -162,6 +162,7 @@ var Button = (0, import_react.forwardRef)(function Button2(_a, ref) {
|
|
|
162
162
|
asChild = false,
|
|
163
163
|
loading = false,
|
|
164
164
|
disabled,
|
|
165
|
+
type = "button",
|
|
165
166
|
children
|
|
166
167
|
} = _b, props = __objRest(_b, [
|
|
167
168
|
"className",
|
|
@@ -170,6 +171,7 @@ var Button = (0, import_react.forwardRef)(function Button2(_a, ref) {
|
|
|
170
171
|
"asChild",
|
|
171
172
|
"loading",
|
|
172
173
|
"disabled",
|
|
174
|
+
"type",
|
|
173
175
|
"children"
|
|
174
176
|
]);
|
|
175
177
|
const Comp = asChild ? Slot : "button";
|
|
@@ -182,7 +184,8 @@ var Button = (0, import_react.forwardRef)(function Button2(_a, ref) {
|
|
|
182
184
|
"data-slot": "button",
|
|
183
185
|
"data-variant": variant,
|
|
184
186
|
disabled: loading || disabled,
|
|
185
|
-
ref
|
|
187
|
+
ref,
|
|
188
|
+
type
|
|
186
189
|
}, props), {
|
|
187
190
|
children: loading ? /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
188
191
|
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_lucide_react.Loader2, { "aria-hidden": "true", className: "animate-spin" }),
|
|
@@ -167,6 +167,7 @@ var Button = (0, import_react.forwardRef)(function Button2(_a, ref) {
|
|
|
167
167
|
asChild = false,
|
|
168
168
|
loading = false,
|
|
169
169
|
disabled,
|
|
170
|
+
type = "button",
|
|
170
171
|
children
|
|
171
172
|
} = _b, props = __objRest(_b, [
|
|
172
173
|
"className",
|
|
@@ -175,6 +176,7 @@ var Button = (0, import_react.forwardRef)(function Button2(_a, ref) {
|
|
|
175
176
|
"asChild",
|
|
176
177
|
"loading",
|
|
177
178
|
"disabled",
|
|
179
|
+
"type",
|
|
178
180
|
"children"
|
|
179
181
|
]);
|
|
180
182
|
const Comp = asChild ? Slot : "button";
|
|
@@ -187,7 +189,8 @@ var Button = (0, import_react.forwardRef)(function Button2(_a, ref) {
|
|
|
187
189
|
"data-slot": "button",
|
|
188
190
|
"data-variant": variant,
|
|
189
191
|
disabled: loading || disabled,
|
|
190
|
-
ref
|
|
192
|
+
ref,
|
|
193
|
+
type
|
|
191
194
|
}, props), {
|
|
192
195
|
children: loading ? /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
193
196
|
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_lucide_react.Loader2, { "aria-hidden": "true", className: "animate-spin" }),
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
Calendar,
|
|
3
3
|
CalendarDayButton
|
|
4
|
-
} from "../../chunk-
|
|
5
|
-
import "../../chunk-
|
|
4
|
+
} from "../../chunk-3NQGYJEZ.mjs";
|
|
5
|
+
import "../../chunk-4AJ5HWHD.mjs";
|
|
6
6
|
import "../../chunk-DBHJ5KC3.mjs";
|
|
7
7
|
import "../../chunk-V7CNWJT3.mjs";
|
|
8
8
|
import "../../chunk-FWCSY2DS.mjs";
|
|
@@ -0,0 +1,596 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __defProps = Object.defineProperties;
|
|
5
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
6
|
+
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
|
7
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
8
|
+
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
9
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
10
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
11
|
+
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
|
12
|
+
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
13
|
+
var __spreadValues = (a, b) => {
|
|
14
|
+
for (var prop in b || (b = {}))
|
|
15
|
+
if (__hasOwnProp.call(b, prop))
|
|
16
|
+
__defNormalProp(a, prop, b[prop]);
|
|
17
|
+
if (__getOwnPropSymbols)
|
|
18
|
+
for (var prop of __getOwnPropSymbols(b)) {
|
|
19
|
+
if (__propIsEnum.call(b, prop))
|
|
20
|
+
__defNormalProp(a, prop, b[prop]);
|
|
21
|
+
}
|
|
22
|
+
return a;
|
|
23
|
+
};
|
|
24
|
+
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
|
25
|
+
var __objRest = (source, exclude) => {
|
|
26
|
+
var target = {};
|
|
27
|
+
for (var prop in source)
|
|
28
|
+
if (__hasOwnProp.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
29
|
+
target[prop] = source[prop];
|
|
30
|
+
if (source != null && __getOwnPropSymbols)
|
|
31
|
+
for (var prop of __getOwnPropSymbols(source)) {
|
|
32
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum.call(source, prop))
|
|
33
|
+
target[prop] = source[prop];
|
|
34
|
+
}
|
|
35
|
+
return target;
|
|
36
|
+
};
|
|
37
|
+
var __export = (target, all) => {
|
|
38
|
+
for (var name in all)
|
|
39
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
40
|
+
};
|
|
41
|
+
var __copyProps = (to, from, except, desc) => {
|
|
42
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
43
|
+
for (let key of __getOwnPropNames(from))
|
|
44
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
45
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
46
|
+
}
|
|
47
|
+
return to;
|
|
48
|
+
};
|
|
49
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
50
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
51
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
52
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
53
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
54
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
55
|
+
mod
|
|
56
|
+
));
|
|
57
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
58
|
+
|
|
59
|
+
// src/components/ui/cashflow-bar-chart.tsx
|
|
60
|
+
var cashflow_bar_chart_exports = {};
|
|
61
|
+
__export(cashflow_bar_chart_exports, {
|
|
62
|
+
CashflowBarChart: () => CashflowBarChart
|
|
63
|
+
});
|
|
64
|
+
module.exports = __toCommonJS(cashflow_bar_chart_exports);
|
|
65
|
+
var import_react3 = require("react");
|
|
66
|
+
var import_chart = require("chart.js");
|
|
67
|
+
var import_react_chartjs_2 = require("react-chartjs-2");
|
|
68
|
+
|
|
69
|
+
// src/lib/theme-provider.tsx
|
|
70
|
+
var import_react = require("react");
|
|
71
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
72
|
+
var ThemeVarsContext = (0, import_react.createContext)({});
|
|
73
|
+
function useThemeVars() {
|
|
74
|
+
return (0, import_react.useContext)(ThemeVarsContext);
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
// src/lib/utils.ts
|
|
78
|
+
var import_clsx = require("clsx");
|
|
79
|
+
var import_tailwind_merge = require("tailwind-merge");
|
|
80
|
+
function cn(...inputs) {
|
|
81
|
+
return (0, import_tailwind_merge.twMerge)((0, import_clsx.clsx)(inputs));
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
// src/components/ui/card.tsx
|
|
85
|
+
var import_jsx_runtime2 = require("react/jsx-runtime");
|
|
86
|
+
function Card(_a) {
|
|
87
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
88
|
+
return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
89
|
+
"div",
|
|
90
|
+
__spreadValues({
|
|
91
|
+
className: cn(
|
|
92
|
+
"flex flex-col gap-6 border bg-card py-6 text-card-foreground shadow-sm",
|
|
93
|
+
className
|
|
94
|
+
),
|
|
95
|
+
"data-slot": "card"
|
|
96
|
+
}, props)
|
|
97
|
+
);
|
|
98
|
+
}
|
|
99
|
+
function CardHeader(_a) {
|
|
100
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
101
|
+
return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
102
|
+
"div",
|
|
103
|
+
__spreadValues({
|
|
104
|
+
className: cn(
|
|
105
|
+
"@container/card-header grid auto-rows-min grid-rows-[auto_auto] items-start gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6",
|
|
106
|
+
className
|
|
107
|
+
),
|
|
108
|
+
"data-slot": "card-header"
|
|
109
|
+
}, props)
|
|
110
|
+
);
|
|
111
|
+
}
|
|
112
|
+
function CardTitle(_a) {
|
|
113
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
114
|
+
return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
115
|
+
"div",
|
|
116
|
+
__spreadValues({
|
|
117
|
+
className: cn("leading-none font-semibold", className),
|
|
118
|
+
"data-slot": "card-title"
|
|
119
|
+
}, props)
|
|
120
|
+
);
|
|
121
|
+
}
|
|
122
|
+
function CardAction(_a) {
|
|
123
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
124
|
+
return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
125
|
+
"div",
|
|
126
|
+
__spreadValues({
|
|
127
|
+
className: cn(
|
|
128
|
+
"col-start-2 row-span-2 row-start-1 self-start justify-self-end",
|
|
129
|
+
className
|
|
130
|
+
),
|
|
131
|
+
"data-slot": "card-action"
|
|
132
|
+
}, props)
|
|
133
|
+
);
|
|
134
|
+
}
|
|
135
|
+
function CardContent(_a) {
|
|
136
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
137
|
+
return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
138
|
+
"div",
|
|
139
|
+
__spreadValues({
|
|
140
|
+
className: cn("px-6", className),
|
|
141
|
+
"data-slot": "card-content"
|
|
142
|
+
}, props)
|
|
143
|
+
);
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
// src/components/ui/empty.tsx
|
|
147
|
+
var import_class_variance_authority = require("class-variance-authority");
|
|
148
|
+
var import_jsx_runtime3 = require("react/jsx-runtime");
|
|
149
|
+
function Empty(_a) {
|
|
150
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
151
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
152
|
+
"div",
|
|
153
|
+
__spreadValues({
|
|
154
|
+
className: cn(
|
|
155
|
+
"flex min-w-0 flex-1 flex-col items-center justify-center gap-6 border border-dashed p-6 text-center text-balance md:p-12",
|
|
156
|
+
className
|
|
157
|
+
),
|
|
158
|
+
"data-slot": "empty"
|
|
159
|
+
}, props)
|
|
160
|
+
);
|
|
161
|
+
}
|
|
162
|
+
var emptyMediaVariants = (0, import_class_variance_authority.cva)(
|
|
163
|
+
"mb-2 flex shrink-0 items-center justify-center [&_svg]:pointer-events-none [&_svg]:shrink-0",
|
|
164
|
+
{
|
|
165
|
+
variants: {
|
|
166
|
+
variant: {
|
|
167
|
+
default: "[&_svg:not([class*='size-'])]:size-10",
|
|
168
|
+
icon: "flex size-10 shrink-0 items-center justify-center text-muted-foreground [&_svg:not([class*='size-'])]:size-6"
|
|
169
|
+
}
|
|
170
|
+
},
|
|
171
|
+
defaultVariants: {
|
|
172
|
+
variant: "default"
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
);
|
|
176
|
+
function EmptyDescription(_a) {
|
|
177
|
+
var _b = _a, {
|
|
178
|
+
className
|
|
179
|
+
} = _b, props = __objRest(_b, [
|
|
180
|
+
"className"
|
|
181
|
+
]);
|
|
182
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
183
|
+
"div",
|
|
184
|
+
__spreadValues({
|
|
185
|
+
className: cn(
|
|
186
|
+
"text-sm/relaxed text-muted-foreground [&>a]:underline [&>a]:underline-offset-4 [&>a:hover]:text-primary",
|
|
187
|
+
className
|
|
188
|
+
),
|
|
189
|
+
"data-slot": "empty-description"
|
|
190
|
+
}, props)
|
|
191
|
+
);
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
// src/components/ui/skeleton.tsx
|
|
195
|
+
var import_jsx_runtime4 = require("react/jsx-runtime");
|
|
196
|
+
function Skeleton(_a) {
|
|
197
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
198
|
+
return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
199
|
+
"div",
|
|
200
|
+
__spreadValues({
|
|
201
|
+
className: cn("animate-pulse bg-muted", className),
|
|
202
|
+
"data-slot": "skeleton"
|
|
203
|
+
}, props)
|
|
204
|
+
);
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
// src/components/ui/button.tsx
|
|
208
|
+
var import_react2 = require("react");
|
|
209
|
+
var import_class_variance_authority2 = require("class-variance-authority");
|
|
210
|
+
var import_lucide_react = require("lucide-react");
|
|
211
|
+
|
|
212
|
+
// src/lib/slot.tsx
|
|
213
|
+
var React2 = __toESM(require("react"));
|
|
214
|
+
function mergeRefs(...refs) {
|
|
215
|
+
return (value) => {
|
|
216
|
+
for (const ref of refs) {
|
|
217
|
+
if (typeof ref === "function") ref(value);
|
|
218
|
+
else if (ref !== null)
|
|
219
|
+
ref.current = value;
|
|
220
|
+
}
|
|
221
|
+
};
|
|
222
|
+
}
|
|
223
|
+
var Slot = React2.forwardRef(
|
|
224
|
+
(_a, forwardedRef) => {
|
|
225
|
+
var _b = _a, { children } = _b, props = __objRest(_b, ["children"]);
|
|
226
|
+
const child = React2.Children.only(children);
|
|
227
|
+
if (!React2.isValidElement(child)) return null;
|
|
228
|
+
const childProps = child.props;
|
|
229
|
+
const merged = __spreadValues({}, props);
|
|
230
|
+
for (const key of Object.keys(childProps)) {
|
|
231
|
+
if (key === "className") {
|
|
232
|
+
merged.className = [props.className, childProps.className].filter(Boolean).join(" ");
|
|
233
|
+
} else if (key === "style") {
|
|
234
|
+
merged.style = __spreadValues(__spreadValues({}, props.style), childProps.style);
|
|
235
|
+
} else if (key.startsWith("on") && typeof childProps[key] === "function") {
|
|
236
|
+
const parentHandler = props[key];
|
|
237
|
+
if (typeof parentHandler === "function") {
|
|
238
|
+
merged[key] = (...args) => {
|
|
239
|
+
childProps[key](...args);
|
|
240
|
+
parentHandler(...args);
|
|
241
|
+
};
|
|
242
|
+
} else {
|
|
243
|
+
merged[key] = childProps[key];
|
|
244
|
+
}
|
|
245
|
+
} else {
|
|
246
|
+
merged[key] = childProps[key];
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
const childRef = child.ref;
|
|
250
|
+
merged.ref = forwardedRef ? mergeRefs(forwardedRef, childRef) : childRef;
|
|
251
|
+
return React2.cloneElement(
|
|
252
|
+
child,
|
|
253
|
+
merged
|
|
254
|
+
);
|
|
255
|
+
}
|
|
256
|
+
);
|
|
257
|
+
Slot.displayName = "Slot";
|
|
258
|
+
|
|
259
|
+
// src/components/ui/button.tsx
|
|
260
|
+
var import_jsx_runtime5 = require("react/jsx-runtime");
|
|
261
|
+
var buttonVariants = (0, import_class_variance_authority2.cva)(
|
|
262
|
+
"inline-flex shrink-0 cursor-pointer items-center justify-center gap-2 font-sans text-sm font-medium whitespace-nowrap transition-all active:scale-[0.98] outline-none focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4",
|
|
263
|
+
{
|
|
264
|
+
variants: {
|
|
265
|
+
variant: {
|
|
266
|
+
default: "bg-primary text-primary-foreground shadow-xs hover:bg-primary/90",
|
|
267
|
+
secondary: "bg-brand-secondary text-brand-secondary-foreground shadow-xs hover:bg-brand-secondary/80 focus-visible:ring-brand-secondary/30",
|
|
268
|
+
destructive: "bg-destructive text-destructive-foreground shadow-xs hover:bg-destructive/90 focus-visible:ring-destructive/20 dark:bg-destructive/60 dark:focus-visible:ring-destructive/40",
|
|
269
|
+
outline: "border border-input bg-background shadow-xs hover:bg-accent hover:text-accent-foreground dark:bg-input/30 dark:border-input dark:hover:bg-input/50",
|
|
270
|
+
"outline-primary": "border border-primary text-foreground bg-transparent shadow-xs hover:bg-primary/5 focus-visible:ring-primary/50",
|
|
271
|
+
"outline-secondary": "border border-brand-secondary text-brand-secondary bg-transparent shadow-xs hover:bg-brand-secondary/10 focus-visible:ring-brand-secondary/30",
|
|
272
|
+
ghost: "hover:bg-accent hover:text-accent-foreground hover:shadow-xs dark:hover:bg-accent/50",
|
|
273
|
+
link: "text-primary underline-offset-4 hover:underline"
|
|
274
|
+
},
|
|
275
|
+
size: {
|
|
276
|
+
default: "h-9 px-4 py-2 has-[>svg]:px-3",
|
|
277
|
+
xs: "h-6 gap-1 px-2 text-xs has-[>svg]:px-1.5 [&_svg:not([class*='size-'])]:size-3",
|
|
278
|
+
sm: "h-8 gap-1.5 px-3 has-[>svg]:px-2.5",
|
|
279
|
+
lg: "h-10 px-6 has-[>svg]:px-4",
|
|
280
|
+
icon: "size-9",
|
|
281
|
+
"icon-xs": "size-6 [&_svg:not([class*='size-'])]:size-3",
|
|
282
|
+
"icon-sm": "size-8",
|
|
283
|
+
"icon-lg": "size-10"
|
|
284
|
+
}
|
|
285
|
+
},
|
|
286
|
+
defaultVariants: {
|
|
287
|
+
variant: "default",
|
|
288
|
+
size: "default"
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
);
|
|
292
|
+
var Button = (0, import_react2.forwardRef)(function Button2(_a, ref) {
|
|
293
|
+
var _b = _a, {
|
|
294
|
+
className,
|
|
295
|
+
variant,
|
|
296
|
+
size,
|
|
297
|
+
asChild = false,
|
|
298
|
+
loading = false,
|
|
299
|
+
disabled,
|
|
300
|
+
type = "button",
|
|
301
|
+
children
|
|
302
|
+
} = _b, props = __objRest(_b, [
|
|
303
|
+
"className",
|
|
304
|
+
"variant",
|
|
305
|
+
"size",
|
|
306
|
+
"asChild",
|
|
307
|
+
"loading",
|
|
308
|
+
"disabled",
|
|
309
|
+
"type",
|
|
310
|
+
"children"
|
|
311
|
+
]);
|
|
312
|
+
const Comp = asChild ? Slot : "button";
|
|
313
|
+
const isIconOnly = size === "icon" || size === "icon-xs" || size === "icon-sm" || size === "icon-lg";
|
|
314
|
+
return /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
315
|
+
Comp,
|
|
316
|
+
__spreadProps(__spreadValues({
|
|
317
|
+
className: cn(buttonVariants({ variant, size, className })),
|
|
318
|
+
"data-size": size,
|
|
319
|
+
"data-slot": "button",
|
|
320
|
+
"data-variant": variant,
|
|
321
|
+
disabled: loading || disabled,
|
|
322
|
+
ref,
|
|
323
|
+
type
|
|
324
|
+
}, props), {
|
|
325
|
+
children: loading ? /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
|
|
326
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)(import_lucide_react.Loader2, { "aria-hidden": "true", className: "animate-spin" }),
|
|
327
|
+
!isIconOnly && children
|
|
328
|
+
] }) : children
|
|
329
|
+
})
|
|
330
|
+
);
|
|
331
|
+
});
|
|
332
|
+
|
|
333
|
+
// src/components/ui/chart-shared.tsx
|
|
334
|
+
var import_jsx_runtime6 = require("react/jsx-runtime");
|
|
335
|
+
function hexToRgba(hex, alpha) {
|
|
336
|
+
const clean = hex.replace("#", "");
|
|
337
|
+
const full = clean.length === 3 ? clean.split("").map((c) => c + c).join("") : clean;
|
|
338
|
+
const r = parseInt(full.slice(0, 2), 16);
|
|
339
|
+
const g = parseInt(full.slice(2, 4), 16);
|
|
340
|
+
const b = parseInt(full.slice(4, 6), 16);
|
|
341
|
+
return `rgba(${r},${g},${b},${alpha})`;
|
|
342
|
+
}
|
|
343
|
+
var FALLBACK_TICK = "#9EAAB5";
|
|
344
|
+
function formatTooltipDate(iso, granularity) {
|
|
345
|
+
const d = new Date(iso);
|
|
346
|
+
return d.toLocaleDateString(
|
|
347
|
+
"en-US",
|
|
348
|
+
granularity === "daily" ? { month: "short", day: "numeric", year: "numeric" } : { month: "short", year: "numeric" }
|
|
349
|
+
);
|
|
350
|
+
}
|
|
351
|
+
function ChartPeriodButton({
|
|
352
|
+
period,
|
|
353
|
+
active,
|
|
354
|
+
onClick
|
|
355
|
+
}) {
|
|
356
|
+
return /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(Button, { variant: active ? "default" : "outline", size: "xs", onClick, children: [
|
|
357
|
+
period,
|
|
358
|
+
"M"
|
|
359
|
+
] });
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
// src/components/ui/cashflow-bar-chart.tsx
|
|
363
|
+
var import_jsx_runtime7 = require("react/jsx-runtime");
|
|
364
|
+
import_chart.Chart.register(import_chart.CategoryScale, import_chart.LinearScale, import_chart.BarElement, import_chart.Tooltip, import_chart.Legend);
|
|
365
|
+
function LegendItem({ label, fillColor, strokeColor, strokeWidth = 1.5 }) {
|
|
366
|
+
return /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { className: "flex items-center gap-1.5", children: [
|
|
367
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
368
|
+
"div",
|
|
369
|
+
{
|
|
370
|
+
style: {
|
|
371
|
+
width: 10,
|
|
372
|
+
height: 10,
|
|
373
|
+
backgroundColor: fillColor,
|
|
374
|
+
border: strokeWidth > 0 ? `${strokeWidth}px solid ${strokeColor}` : "none",
|
|
375
|
+
flexShrink: 0
|
|
376
|
+
}
|
|
377
|
+
}
|
|
378
|
+
),
|
|
379
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("span", { className: "text-[11px] text-muted-foreground leading-none", children: label })
|
|
380
|
+
] });
|
|
381
|
+
}
|
|
382
|
+
function ChartLegend({ primary, secondary }) {
|
|
383
|
+
return /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { className: "flex flex-wrap gap-x-3 gap-y-1.5 pb-2", children: [
|
|
384
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
385
|
+
LegendItem,
|
|
386
|
+
{
|
|
387
|
+
label: "Income",
|
|
388
|
+
fillColor: hexToRgba(primary, 0.2),
|
|
389
|
+
strokeColor: primary
|
|
390
|
+
}
|
|
391
|
+
),
|
|
392
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
393
|
+
LegendItem,
|
|
394
|
+
{
|
|
395
|
+
label: "Expenses and Liabilities",
|
|
396
|
+
fillColor: hexToRgba(secondary, 0.2),
|
|
397
|
+
strokeColor: secondary
|
|
398
|
+
}
|
|
399
|
+
),
|
|
400
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
401
|
+
LegendItem,
|
|
402
|
+
{
|
|
403
|
+
label: "Surplus Income",
|
|
404
|
+
fillColor: primary,
|
|
405
|
+
strokeColor: primary,
|
|
406
|
+
strokeWidth: 0
|
|
407
|
+
}
|
|
408
|
+
),
|
|
409
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
410
|
+
LegendItem,
|
|
411
|
+
{
|
|
412
|
+
label: "Over Spending",
|
|
413
|
+
fillColor: secondary,
|
|
414
|
+
strokeColor: secondary,
|
|
415
|
+
strokeWidth: 0
|
|
416
|
+
}
|
|
417
|
+
)
|
|
418
|
+
] });
|
|
419
|
+
}
|
|
420
|
+
var PERIODS = [3, 6, 12];
|
|
421
|
+
var FALLBACK_PRIMARY = "#33FF99";
|
|
422
|
+
var FALLBACK_SECONDARY = "#162029";
|
|
423
|
+
function CashflowBarChart({
|
|
424
|
+
cashflowData,
|
|
425
|
+
title = "Cashflow",
|
|
426
|
+
showLegend = true,
|
|
427
|
+
showXAxis = true,
|
|
428
|
+
showYAxis = true,
|
|
429
|
+
legendPosition = "top",
|
|
430
|
+
defaultPeriod = 6,
|
|
431
|
+
height = 280,
|
|
432
|
+
width = "100%",
|
|
433
|
+
className,
|
|
434
|
+
isLoading = false
|
|
435
|
+
}) {
|
|
436
|
+
const [period, setPeriod] = (0, import_react3.useState)(defaultPeriod);
|
|
437
|
+
const themeVars = useThemeVars();
|
|
438
|
+
const brandPrimary = themeVars["--theme-primary"] || FALLBACK_PRIMARY;
|
|
439
|
+
const brandSecondary = themeVars["--theme-secondary"] || FALLBACK_SECONDARY;
|
|
440
|
+
const sliced = (0, import_react3.useMemo)(() => {
|
|
441
|
+
var _a;
|
|
442
|
+
if (!((_a = cashflowData == null ? void 0 : cashflowData.data) == null ? void 0 : _a.length)) return null;
|
|
443
|
+
const count = Math.min(period, cashflowData.data.length);
|
|
444
|
+
const start = cashflowData.data.length - count;
|
|
445
|
+
return {
|
|
446
|
+
months: cashflowData.months.slice(start),
|
|
447
|
+
data: cashflowData.data.slice(start)
|
|
448
|
+
};
|
|
449
|
+
}, [cashflowData, period]);
|
|
450
|
+
const chartData = (0, import_react3.useMemo)(() => {
|
|
451
|
+
if (!sliced) return { labels: [], datasets: [] };
|
|
452
|
+
return {
|
|
453
|
+
labels: sliced.months,
|
|
454
|
+
datasets: [
|
|
455
|
+
{
|
|
456
|
+
label: "Income",
|
|
457
|
+
data: sliced.data.map((d) => d.income),
|
|
458
|
+
backgroundColor: hexToRgba(brandPrimary, 0.2),
|
|
459
|
+
hoverBackgroundColor: hexToRgba(brandPrimary, 0.35),
|
|
460
|
+
borderColor: brandPrimary,
|
|
461
|
+
borderWidth: 1.5,
|
|
462
|
+
borderRadius: 0,
|
|
463
|
+
borderSkipped: false,
|
|
464
|
+
barPercentage: 0.75,
|
|
465
|
+
categoryPercentage: 0.7
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
label: "Expenses and Liabilities",
|
|
469
|
+
data: sliced.data.map((d) => d.expenses),
|
|
470
|
+
backgroundColor: hexToRgba(brandSecondary, 0.2),
|
|
471
|
+
hoverBackgroundColor: hexToRgba(brandSecondary, 0.35),
|
|
472
|
+
borderColor: brandSecondary,
|
|
473
|
+
borderWidth: 1.5,
|
|
474
|
+
borderRadius: 0,
|
|
475
|
+
borderSkipped: false,
|
|
476
|
+
barPercentage: 0.75,
|
|
477
|
+
categoryPercentage: 0.7
|
|
478
|
+
},
|
|
479
|
+
{
|
|
480
|
+
label: "_thirdBar",
|
|
481
|
+
data: sliced.data.map(
|
|
482
|
+
(d) => d.overspending > 0 ? d.overspending : d.surplus
|
|
483
|
+
),
|
|
484
|
+
backgroundColor: sliced.data.map(
|
|
485
|
+
(d) => d.overspending > 0 ? brandSecondary : brandPrimary
|
|
486
|
+
),
|
|
487
|
+
hoverBackgroundColor: sliced.data.map(
|
|
488
|
+
(d) => d.overspending > 0 ? hexToRgba(brandSecondary, 0.8) : hexToRgba(brandPrimary, 0.8)
|
|
489
|
+
),
|
|
490
|
+
borderWidth: 0,
|
|
491
|
+
borderRadius: 0,
|
|
492
|
+
borderSkipped: false,
|
|
493
|
+
barPercentage: 0.75,
|
|
494
|
+
categoryPercentage: 0.7
|
|
495
|
+
}
|
|
496
|
+
]
|
|
497
|
+
};
|
|
498
|
+
}, [sliced, brandPrimary, brandSecondary]);
|
|
499
|
+
const options = (0, import_react3.useMemo)(() => ({
|
|
500
|
+
responsive: true,
|
|
501
|
+
maintainAspectRatio: false,
|
|
502
|
+
animation: { duration: 800, easing: "easeOutQuart" },
|
|
503
|
+
layout: { padding: 0 },
|
|
504
|
+
plugins: {
|
|
505
|
+
legend: { display: false },
|
|
506
|
+
tooltip: {
|
|
507
|
+
mode: "index",
|
|
508
|
+
intersect: false,
|
|
509
|
+
padding: 12,
|
|
510
|
+
cornerRadius: 0,
|
|
511
|
+
titleFont: { size: 11, weight: "600" },
|
|
512
|
+
bodyFont: { size: 12, weight: "500" },
|
|
513
|
+
callbacks: {
|
|
514
|
+
title: (tooltipItems) => {
|
|
515
|
+
var _a, _b, _c, _d;
|
|
516
|
+
const idx = (_a = tooltipItems[0]) == null ? void 0 : _a.dataIndex;
|
|
517
|
+
if (idx != null && ((_b = sliced == null ? void 0 : sliced.data[idx]) == null ? void 0 : _b.date)) {
|
|
518
|
+
return formatTooltipDate(sliced.data[idx].date, "monthly");
|
|
519
|
+
}
|
|
520
|
+
return (_d = (_c = tooltipItems[0]) == null ? void 0 : _c.label) != null ? _d : "";
|
|
521
|
+
},
|
|
522
|
+
label: (ctx) => {
|
|
523
|
+
const val = ctx.raw;
|
|
524
|
+
if (val === 0) return null;
|
|
525
|
+
if (ctx.datasetIndex === 2) {
|
|
526
|
+
const d = sliced == null ? void 0 : sliced.data[ctx.dataIndex];
|
|
527
|
+
if (!d) return null;
|
|
528
|
+
const lbl = d.overspending > 0 ? "Over Spending" : "Surplus Income";
|
|
529
|
+
return ` ${lbl}: $${val.toLocaleString()}`;
|
|
530
|
+
}
|
|
531
|
+
return ` ${ctx.dataset.label}: $${val.toLocaleString()}`;
|
|
532
|
+
}
|
|
533
|
+
}
|
|
534
|
+
}
|
|
535
|
+
},
|
|
536
|
+
scales: {
|
|
537
|
+
x: {
|
|
538
|
+
display: showXAxis,
|
|
539
|
+
grid: { display: false },
|
|
540
|
+
border: { display: false },
|
|
541
|
+
ticks: { font: { size: 10 }, color: FALLBACK_TICK }
|
|
542
|
+
},
|
|
543
|
+
y: {
|
|
544
|
+
display: showYAxis,
|
|
545
|
+
grid: { display: false },
|
|
546
|
+
border: { display: false },
|
|
547
|
+
ticks: {
|
|
548
|
+
font: { size: 10 },
|
|
549
|
+
color: FALLBACK_TICK,
|
|
550
|
+
maxTicksLimit: 5,
|
|
551
|
+
padding: 8,
|
|
552
|
+
callback: (v) => `$${Number(v).toLocaleString()}`
|
|
553
|
+
}
|
|
554
|
+
}
|
|
555
|
+
}
|
|
556
|
+
}), [showXAxis, showYAxis, sliced]);
|
|
557
|
+
return /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
|
|
558
|
+
Card,
|
|
559
|
+
{
|
|
560
|
+
className: cn("w-full py-4 sm:py-6 gap-2", className),
|
|
561
|
+
style: { maxWidth: width },
|
|
562
|
+
children: [
|
|
563
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(CardHeader, { className: "px-3 sm:px-6", children: [
|
|
564
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)(CardTitle, { className: "text-sm sm:text-base", children: title }),
|
|
565
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)(CardAction, { children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("div", { className: "flex gap-0.5 sm:gap-1", children: PERIODS.map((p) => /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
566
|
+
ChartPeriodButton,
|
|
567
|
+
{
|
|
568
|
+
period: p,
|
|
569
|
+
active: period === p,
|
|
570
|
+
onClick: () => setPeriod(p)
|
|
571
|
+
},
|
|
572
|
+
p
|
|
573
|
+
)) }) })
|
|
574
|
+
] }),
|
|
575
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)(CardContent, { className: "px-3 sm:px-6", children: isLoading ? /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(Skeleton, { style: { height, width: "100%" } }) : !sliced ? /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(Empty, { className: "flex-none p-4", style: { height }, children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(EmptyDescription, { children: "No data available" }) }) : /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { className: "flex flex-col gap-2", children: [
|
|
576
|
+
showLegend && legendPosition === "top" && /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(ChartLegend, { primary: brandPrimary, secondary: brandSecondary }),
|
|
577
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("div", { style: { height, width: "100%", position: "relative" }, children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
578
|
+
import_react_chartjs_2.Chart,
|
|
579
|
+
{
|
|
580
|
+
type: "bar",
|
|
581
|
+
data: chartData,
|
|
582
|
+
options,
|
|
583
|
+
"aria-label": title
|
|
584
|
+
},
|
|
585
|
+
`${brandPrimary}__${brandSecondary}`
|
|
586
|
+
) }),
|
|
587
|
+
showLegend && legendPosition === "bottom" && /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(ChartLegend, { primary: brandPrimary, secondary: brandSecondary })
|
|
588
|
+
] }) })
|
|
589
|
+
]
|
|
590
|
+
}
|
|
591
|
+
);
|
|
592
|
+
}
|
|
593
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
594
|
+
0 && (module.exports = {
|
|
595
|
+
CashflowBarChart
|
|
596
|
+
});
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import {
|
|
2
|
+
CashflowBarChart
|
|
3
|
+
} from "../../chunk-UEL4RD5P.mjs";
|
|
4
|
+
import "../../chunk-3EQP72AW.mjs";
|
|
5
|
+
import "../../chunk-HS7TFG7V.mjs";
|
|
6
|
+
import "../../chunk-YN5SYTOO.mjs";
|
|
7
|
+
import "../../chunk-SLWCCURD.mjs";
|
|
8
|
+
import "../../chunk-4AJ5HWHD.mjs";
|
|
9
|
+
import "../../chunk-DBHJ5KC3.mjs";
|
|
10
|
+
import "../../chunk-OXQQNQZI.mjs";
|
|
11
|
+
import "../../chunk-QOJ2DQD6.mjs";
|
|
12
|
+
import "../../chunk-V7CNWJT3.mjs";
|
|
13
|
+
import "../../chunk-FWCSY2DS.mjs";
|
|
14
|
+
export {
|
|
15
|
+
CashflowBarChart
|
|
16
|
+
};
|