@minutemailer/kit 1.2.4 → 1.3.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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { Cell, Label, Pie, PieChart } from 'recharts';
|
|
3
|
-
import { ChartContainer
|
|
3
|
+
import { ChartContainer } from '../components/ui/chart.js';
|
|
4
4
|
export function DonutChart({ percentage, size = 120 }) {
|
|
5
5
|
const COLORS = {
|
|
6
6
|
filled: 'oklch(0.683 0.178 158.484)', // Primary green
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import { Area, AreaChart, CartesianGrid, XAxis, YAxis,
|
|
2
|
+
import { Area, AreaChart, CartesianGrid, Tooltip, XAxis, YAxis, } from 'recharts';
|
|
3
3
|
import { ChartContainer, ChartTooltipContent, } from '../components/ui/chart.js';
|
|
4
4
|
const defaultData = [
|
|
5
5
|
{ hour: '0h', opens: 245, clicks: 12 },
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { cn } from '../../utils/utils.js';
|
|
3
|
+
function Textarea({ className, ...props }) {
|
|
4
|
+
return (_jsx("textarea", { "data-slot": "textarea", className: cn('placeholder:text-muted-foreground/70 selection:bg-primary selection:text-primary-foreground dark:bg-input/30 border-input flex field-sizing-content min-h-16 w-full min-w-0 rounded-md border bg-muted px-4 py-2 text-base shadow-xs transition-all outline-none disabled:pointer-events-none disabled:cursor-not-allowed disabled:opacity-50 md:text-sm hover:border-muted-foreground/30 hover:bg-muted/30', 'focus-visible:border-secondary focus-visible:ring-secondary/50 focus-visible:ring-[3px]', 'aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive', className), ...props }));
|
|
5
|
+
}
|
|
6
|
+
export { Textarea };
|