@dilipod/ui 0.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/README.md +226 -0
- package/dist/index.d.mts +133 -0
- package/dist/index.d.ts +133 -0
- package/dist/index.js +888 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +552 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +89 -0
- package/src/components/badge.stories.tsx +99 -0
- package/src/components/badge.tsx +86 -0
- package/src/components/button.stories.tsx +136 -0
- package/src/components/button.tsx +63 -0
- package/src/components/card.stories.tsx +107 -0
- package/src/components/card.tsx +80 -0
- package/src/components/icon-box.stories.tsx +99 -0
- package/src/components/icon-box.tsx +57 -0
- package/src/components/logo.stories.tsx +93 -0
- package/src/components/logo.tsx +91 -0
- package/src/components/progress.stories.tsx +99 -0
- package/src/components/progress.tsx +70 -0
- package/src/components/sheet.stories.tsx +109 -0
- package/src/components/sheet.tsx +140 -0
- package/src/components/stat.stories.tsx +127 -0
- package/src/components/stat.tsx +115 -0
- package/src/components/tag.stories.tsx +107 -0
- package/src/components/tag.tsx +53 -0
- package/src/icons.ts +107 -0
- package/src/index.ts +50 -0
- package/src/lib/utils.ts +6 -0
- package/src/styles/globals.css +187 -0
package/dist/index.js
ADDED
|
@@ -0,0 +1,888 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var React4 = require('react');
|
|
4
|
+
var reactSlot = require('@radix-ui/react-slot');
|
|
5
|
+
var classVarianceAuthority = require('class-variance-authority');
|
|
6
|
+
var clsx = require('clsx');
|
|
7
|
+
var tailwindMerge = require('tailwind-merge');
|
|
8
|
+
var jsxRuntime = require('react/jsx-runtime');
|
|
9
|
+
var SheetPrimitive = require('@radix-ui/react-dialog');
|
|
10
|
+
var react = require('@phosphor-icons/react');
|
|
11
|
+
|
|
12
|
+
function _interopNamespace(e) {
|
|
13
|
+
if (e && e.__esModule) return e;
|
|
14
|
+
var n = Object.create(null);
|
|
15
|
+
if (e) {
|
|
16
|
+
Object.keys(e).forEach(function (k) {
|
|
17
|
+
if (k !== 'default') {
|
|
18
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
19
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
20
|
+
enumerable: true,
|
|
21
|
+
get: function () { return e[k]; }
|
|
22
|
+
});
|
|
23
|
+
}
|
|
24
|
+
});
|
|
25
|
+
}
|
|
26
|
+
n.default = e;
|
|
27
|
+
return Object.freeze(n);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
var React4__namespace = /*#__PURE__*/_interopNamespace(React4);
|
|
31
|
+
var SheetPrimitive__namespace = /*#__PURE__*/_interopNamespace(SheetPrimitive);
|
|
32
|
+
|
|
33
|
+
// src/components/button.tsx
|
|
34
|
+
function cn(...inputs) {
|
|
35
|
+
return tailwindMerge.twMerge(clsx.clsx(inputs));
|
|
36
|
+
}
|
|
37
|
+
var buttonVariants = classVarianceAuthority.cva(
|
|
38
|
+
"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-full text-sm font-semibold ring-offset-background transition-all duration-200 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0 cursor-pointer",
|
|
39
|
+
{
|
|
40
|
+
variants: {
|
|
41
|
+
variant: {
|
|
42
|
+
default: "bg-[var(--black)] text-white border-2 border-[var(--black)] hover:bg-gray-800 hover:border-gray-800 active:scale-95",
|
|
43
|
+
primary: "bg-[var(--cyan)] text-[var(--black)] border-2 border-[var(--cyan)] hover:bg-[var(--cyan-dark)] hover:border-[var(--cyan-dark)] active:scale-95",
|
|
44
|
+
destructive: "bg-red-600 text-white border-2 border-red-600 hover:bg-red-700 hover:border-red-700 active:scale-95",
|
|
45
|
+
outline: "border-2 border-gray-300 bg-transparent hover:bg-gray-100 active:scale-95",
|
|
46
|
+
secondary: "bg-gray-100 text-[var(--black)] border-2 border-gray-100 hover:bg-gray-200 hover:border-gray-200 active:scale-95",
|
|
47
|
+
ghost: "hover:bg-gray-100 border-2 border-transparent",
|
|
48
|
+
link: "text-[var(--cyan)] underline-offset-4 hover:underline"
|
|
49
|
+
},
|
|
50
|
+
size: {
|
|
51
|
+
default: "h-10 px-6 py-2",
|
|
52
|
+
sm: "h-9 px-4 text-xs",
|
|
53
|
+
lg: "h-12 px-8 text-base",
|
|
54
|
+
icon: "h-10 w-10"
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
defaultVariants: {
|
|
58
|
+
variant: "default",
|
|
59
|
+
size: "default"
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
);
|
|
63
|
+
var Button = React4__namespace.forwardRef(
|
|
64
|
+
({ className, variant, size, asChild = false, ...props }, ref) => {
|
|
65
|
+
const Comp = asChild ? reactSlot.Slot : "button";
|
|
66
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
67
|
+
Comp,
|
|
68
|
+
{
|
|
69
|
+
className: cn(buttonVariants({ variant, size, className })),
|
|
70
|
+
ref,
|
|
71
|
+
...props
|
|
72
|
+
}
|
|
73
|
+
);
|
|
74
|
+
}
|
|
75
|
+
);
|
|
76
|
+
Button.displayName = "Button";
|
|
77
|
+
var Sheet = SheetPrimitive__namespace.Root;
|
|
78
|
+
var SheetTrigger = SheetPrimitive__namespace.Trigger;
|
|
79
|
+
var SheetClose = SheetPrimitive__namespace.Close;
|
|
80
|
+
var SheetPortal = SheetPrimitive__namespace.Portal;
|
|
81
|
+
var SheetOverlay = React4__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
82
|
+
SheetPrimitive__namespace.Overlay,
|
|
83
|
+
{
|
|
84
|
+
className: cn(
|
|
85
|
+
"fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",
|
|
86
|
+
className
|
|
87
|
+
),
|
|
88
|
+
...props,
|
|
89
|
+
ref
|
|
90
|
+
}
|
|
91
|
+
));
|
|
92
|
+
SheetOverlay.displayName = SheetPrimitive__namespace.Overlay.displayName;
|
|
93
|
+
var sheetVariants = classVarianceAuthority.cva(
|
|
94
|
+
"fixed z-50 gap-4 bg-white p-6 shadow-lg transition ease-in-out data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:duration-300 data-[state=open]:duration-500",
|
|
95
|
+
{
|
|
96
|
+
variants: {
|
|
97
|
+
side: {
|
|
98
|
+
top: "inset-x-0 top-0 border-b data-[state=closed]:slide-out-to-top data-[state=open]:slide-in-from-top",
|
|
99
|
+
bottom: "inset-x-0 bottom-0 border-t data-[state=closed]:slide-out-to-bottom data-[state=open]:slide-in-from-bottom",
|
|
100
|
+
left: "inset-y-0 left-0 h-full w-3/4 border-r data-[state=closed]:slide-out-to-left data-[state=open]:slide-in-from-left sm:max-w-sm",
|
|
101
|
+
right: "inset-y-0 right-0 h-full w-3/4 border-l data-[state=closed]:slide-out-to-right data-[state=open]:slide-in-from-right sm:max-w-sm"
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
defaultVariants: {
|
|
105
|
+
side: "right"
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
);
|
|
109
|
+
var SheetContent = React4__namespace.forwardRef(({ side = "right", className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(SheetPortal, { children: [
|
|
110
|
+
/* @__PURE__ */ jsxRuntime.jsx(SheetOverlay, {}),
|
|
111
|
+
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
112
|
+
SheetPrimitive__namespace.Content,
|
|
113
|
+
{
|
|
114
|
+
ref,
|
|
115
|
+
className: cn(sheetVariants({ side }), className),
|
|
116
|
+
...props,
|
|
117
|
+
children: [
|
|
118
|
+
children,
|
|
119
|
+
/* @__PURE__ */ jsxRuntime.jsxs(SheetPrimitive__namespace.Close, { className: "absolute right-4 top-4 rounded-sm opacity-70 ring-offset-white transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-[var(--cyan)] focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-gray-100", children: [
|
|
120
|
+
/* @__PURE__ */ jsxRuntime.jsx(react.X, { className: "h-4 w-4" }),
|
|
121
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "sr-only", children: "Close" })
|
|
122
|
+
] })
|
|
123
|
+
]
|
|
124
|
+
}
|
|
125
|
+
)
|
|
126
|
+
] }));
|
|
127
|
+
SheetContent.displayName = SheetPrimitive__namespace.Content.displayName;
|
|
128
|
+
var SheetHeader = ({
|
|
129
|
+
className,
|
|
130
|
+
...props
|
|
131
|
+
}) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
132
|
+
"div",
|
|
133
|
+
{
|
|
134
|
+
className: cn(
|
|
135
|
+
"flex flex-col space-y-2 text-center sm:text-left",
|
|
136
|
+
className
|
|
137
|
+
),
|
|
138
|
+
...props
|
|
139
|
+
}
|
|
140
|
+
);
|
|
141
|
+
SheetHeader.displayName = "SheetHeader";
|
|
142
|
+
var SheetFooter = ({
|
|
143
|
+
className,
|
|
144
|
+
...props
|
|
145
|
+
}) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
146
|
+
"div",
|
|
147
|
+
{
|
|
148
|
+
className: cn(
|
|
149
|
+
"flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2",
|
|
150
|
+
className
|
|
151
|
+
),
|
|
152
|
+
...props
|
|
153
|
+
}
|
|
154
|
+
);
|
|
155
|
+
SheetFooter.displayName = "SheetFooter";
|
|
156
|
+
var SheetTitle = React4__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
157
|
+
SheetPrimitive__namespace.Title,
|
|
158
|
+
{
|
|
159
|
+
ref,
|
|
160
|
+
className: cn("text-lg font-semibold text-[var(--black)]", className),
|
|
161
|
+
...props
|
|
162
|
+
}
|
|
163
|
+
));
|
|
164
|
+
SheetTitle.displayName = SheetPrimitive__namespace.Title.displayName;
|
|
165
|
+
var SheetDescription = React4__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
166
|
+
SheetPrimitive__namespace.Description,
|
|
167
|
+
{
|
|
168
|
+
ref,
|
|
169
|
+
className: cn("text-sm text-gray-500", className),
|
|
170
|
+
...props
|
|
171
|
+
}
|
|
172
|
+
));
|
|
173
|
+
SheetDescription.displayName = SheetPrimitive__namespace.Description.displayName;
|
|
174
|
+
var sizes = {
|
|
175
|
+
sm: { width: 100, height: 30 },
|
|
176
|
+
md: { width: 130, height: 40 },
|
|
177
|
+
lg: { width: 160, height: 50 }
|
|
178
|
+
};
|
|
179
|
+
function Logo({
|
|
180
|
+
variant = "dark",
|
|
181
|
+
size = "md",
|
|
182
|
+
href,
|
|
183
|
+
className
|
|
184
|
+
}) {
|
|
185
|
+
const s = sizes[size];
|
|
186
|
+
const textColor = variant === "light" ? "white" : "#0A0A0A";
|
|
187
|
+
const iconTextColor = variant === "light" ? "white" : "#0A0A0A";
|
|
188
|
+
const svgContent = /* @__PURE__ */ jsxRuntime.jsxs(
|
|
189
|
+
"svg",
|
|
190
|
+
{
|
|
191
|
+
width: s.width,
|
|
192
|
+
height: s.height,
|
|
193
|
+
viewBox: "0 0 130 40",
|
|
194
|
+
fill: "none",
|
|
195
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
196
|
+
className,
|
|
197
|
+
children: [
|
|
198
|
+
/* @__PURE__ */ jsxRuntime.jsx("defs", { children: /* @__PURE__ */ jsxRuntime.jsxs("linearGradient", { id: `gradient-${variant}`, x1: "0%", y1: "0%", x2: "100%", y2: "100%", children: [
|
|
199
|
+
/* @__PURE__ */ jsxRuntime.jsx("stop", { offset: "0%", stopColor: "#007A70" }),
|
|
200
|
+
/* @__PURE__ */ jsxRuntime.jsx("stop", { offset: "50%", stopColor: "#00B8A9" }),
|
|
201
|
+
/* @__PURE__ */ jsxRuntime.jsx("stop", { offset: "100%", stopColor: "#00E5D4" })
|
|
202
|
+
] }) }),
|
|
203
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { width: "40", height: "40", rx: "4", fill: `url(#gradient-${variant})` }),
|
|
204
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
205
|
+
"text",
|
|
206
|
+
{
|
|
207
|
+
x: "20",
|
|
208
|
+
y: "29",
|
|
209
|
+
textAnchor: "middle",
|
|
210
|
+
fontFamily: "system-ui, -apple-system, sans-serif",
|
|
211
|
+
fontSize: "24",
|
|
212
|
+
fontWeight: "700",
|
|
213
|
+
fill: iconTextColor,
|
|
214
|
+
children: "D"
|
|
215
|
+
}
|
|
216
|
+
),
|
|
217
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
218
|
+
"text",
|
|
219
|
+
{
|
|
220
|
+
x: "52",
|
|
221
|
+
y: "28",
|
|
222
|
+
fontFamily: "system-ui, -apple-system, sans-serif",
|
|
223
|
+
fontSize: "20",
|
|
224
|
+
fontWeight: "700",
|
|
225
|
+
letterSpacing: "1",
|
|
226
|
+
fill: textColor,
|
|
227
|
+
children: "Dilipod"
|
|
228
|
+
}
|
|
229
|
+
)
|
|
230
|
+
]
|
|
231
|
+
}
|
|
232
|
+
);
|
|
233
|
+
if (href) {
|
|
234
|
+
return /* @__PURE__ */ jsxRuntime.jsx("a", { href, className: "inline-flex items-center group", children: svgContent });
|
|
235
|
+
}
|
|
236
|
+
return /* @__PURE__ */ jsxRuntime.jsx("div", { className: "inline-flex items-center", children: svgContent });
|
|
237
|
+
}
|
|
238
|
+
var badgeVariants = classVarianceAuthority.cva(
|
|
239
|
+
"inline-flex items-center gap-1.5 rounded-full font-semibold transition-colors",
|
|
240
|
+
{
|
|
241
|
+
variants: {
|
|
242
|
+
variant: {
|
|
243
|
+
default: "bg-gray-100 text-gray-700",
|
|
244
|
+
primary: "bg-[var(--cyan)]/10 text-[var(--cyan)]",
|
|
245
|
+
success: "bg-green-100 text-green-700",
|
|
246
|
+
warning: "bg-amber-100 text-amber-700",
|
|
247
|
+
error: "bg-red-100 text-red-700",
|
|
248
|
+
outline: "border border-gray-200 text-gray-600 bg-white"
|
|
249
|
+
},
|
|
250
|
+
size: {
|
|
251
|
+
sm: "px-2 py-0.5 text-[10px]",
|
|
252
|
+
default: "px-2.5 py-1 text-xs",
|
|
253
|
+
lg: "px-3 py-1.5 text-sm"
|
|
254
|
+
}
|
|
255
|
+
},
|
|
256
|
+
defaultVariants: {
|
|
257
|
+
variant: "default",
|
|
258
|
+
size: "default"
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
);
|
|
262
|
+
var Badge = React4__namespace.forwardRef(
|
|
263
|
+
({ className, variant, size, pulse, pulseColor: pulseColorProp, children, ...props }, ref) => {
|
|
264
|
+
const pulseColorMap = {
|
|
265
|
+
default: "bg-gray-500",
|
|
266
|
+
primary: "bg-[var(--cyan)]",
|
|
267
|
+
success: "bg-green-500",
|
|
268
|
+
warning: "bg-amber-500",
|
|
269
|
+
error: "bg-red-500",
|
|
270
|
+
outline: "bg-gray-400"
|
|
271
|
+
};
|
|
272
|
+
const pulseColor = pulseColorProp ? pulseColorMap[pulseColorProp] : pulseColorMap[variant || "default"];
|
|
273
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
274
|
+
"span",
|
|
275
|
+
{
|
|
276
|
+
ref,
|
|
277
|
+
className: cn(badgeVariants({ variant, size }), className),
|
|
278
|
+
...props,
|
|
279
|
+
children: [
|
|
280
|
+
pulse && /* @__PURE__ */ jsxRuntime.jsxs("span", { className: "relative flex h-1.5 w-1.5", children: [
|
|
281
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
282
|
+
"span",
|
|
283
|
+
{
|
|
284
|
+
className: cn(
|
|
285
|
+
"absolute inline-flex h-full w-full animate-ping rounded-full opacity-75",
|
|
286
|
+
pulseColor
|
|
287
|
+
)
|
|
288
|
+
}
|
|
289
|
+
),
|
|
290
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
291
|
+
"span",
|
|
292
|
+
{
|
|
293
|
+
className: cn(
|
|
294
|
+
"relative inline-flex h-1.5 w-1.5 rounded-full",
|
|
295
|
+
pulseColor
|
|
296
|
+
)
|
|
297
|
+
}
|
|
298
|
+
)
|
|
299
|
+
] }),
|
|
300
|
+
children
|
|
301
|
+
]
|
|
302
|
+
}
|
|
303
|
+
);
|
|
304
|
+
}
|
|
305
|
+
);
|
|
306
|
+
Badge.displayName = "Badge";
|
|
307
|
+
var Card = React4__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
308
|
+
"div",
|
|
309
|
+
{
|
|
310
|
+
ref,
|
|
311
|
+
className: cn(
|
|
312
|
+
"rounded-sm border border-gray-200 bg-white shadow-sm",
|
|
313
|
+
className
|
|
314
|
+
),
|
|
315
|
+
...props
|
|
316
|
+
}
|
|
317
|
+
));
|
|
318
|
+
Card.displayName = "Card";
|
|
319
|
+
var CardHeader = React4__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
320
|
+
"div",
|
|
321
|
+
{
|
|
322
|
+
ref,
|
|
323
|
+
className: cn("flex flex-col space-y-1.5 p-6", className),
|
|
324
|
+
...props
|
|
325
|
+
}
|
|
326
|
+
));
|
|
327
|
+
CardHeader.displayName = "CardHeader";
|
|
328
|
+
var CardTitle = React4__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
329
|
+
"h3",
|
|
330
|
+
{
|
|
331
|
+
ref,
|
|
332
|
+
className: cn(
|
|
333
|
+
"text-lg font-bold leading-none tracking-tight text-[var(--black)]",
|
|
334
|
+
className
|
|
335
|
+
),
|
|
336
|
+
...props
|
|
337
|
+
}
|
|
338
|
+
));
|
|
339
|
+
CardTitle.displayName = "CardTitle";
|
|
340
|
+
var CardDescription = React4__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
341
|
+
"p",
|
|
342
|
+
{
|
|
343
|
+
ref,
|
|
344
|
+
className: cn("text-sm text-gray-500", className),
|
|
345
|
+
...props
|
|
346
|
+
}
|
|
347
|
+
));
|
|
348
|
+
CardDescription.displayName = "CardDescription";
|
|
349
|
+
var CardContent = React4__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("div", { ref, className: cn("p-6 pt-0", className), ...props }));
|
|
350
|
+
CardContent.displayName = "CardContent";
|
|
351
|
+
var CardFooter = React4__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
352
|
+
"div",
|
|
353
|
+
{
|
|
354
|
+
ref,
|
|
355
|
+
className: cn("flex items-center p-6 pt-0", className),
|
|
356
|
+
...props
|
|
357
|
+
}
|
|
358
|
+
));
|
|
359
|
+
CardFooter.displayName = "CardFooter";
|
|
360
|
+
var progressVariants = classVarianceAuthority.cva("h-full rounded-full transition-all duration-300", {
|
|
361
|
+
variants: {
|
|
362
|
+
variant: {
|
|
363
|
+
default: "bg-[var(--cyan)]",
|
|
364
|
+
success: "bg-green-500",
|
|
365
|
+
warning: "bg-amber-500",
|
|
366
|
+
error: "bg-red-500",
|
|
367
|
+
gradient: "bg-gradient-to-r from-[var(--cyan-dark)] to-[var(--cyan)]"
|
|
368
|
+
}
|
|
369
|
+
},
|
|
370
|
+
defaultVariants: {
|
|
371
|
+
variant: "default"
|
|
372
|
+
}
|
|
373
|
+
});
|
|
374
|
+
var Progress = React4__namespace.forwardRef(
|
|
375
|
+
({ className, value, variant, showLabel, label = "Progress", size = "default", ...props }, ref) => {
|
|
376
|
+
const clampedValue = Math.min(100, Math.max(0, value));
|
|
377
|
+
const heightClass = {
|
|
378
|
+
sm: "h-1",
|
|
379
|
+
default: "h-1.5",
|
|
380
|
+
lg: "h-2.5"
|
|
381
|
+
}[size];
|
|
382
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("w-full", className), ref, ...props, children: [
|
|
383
|
+
showLabel && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex justify-between text-xs mb-1", children: [
|
|
384
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-gray-500", children: label }),
|
|
385
|
+
/* @__PURE__ */ jsxRuntime.jsxs("span", { className: "font-semibold text-[var(--black)]", children: [
|
|
386
|
+
clampedValue,
|
|
387
|
+
"%"
|
|
388
|
+
] })
|
|
389
|
+
] }),
|
|
390
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
391
|
+
"div",
|
|
392
|
+
{
|
|
393
|
+
className: cn(
|
|
394
|
+
"w-full bg-gray-200 rounded-full overflow-hidden",
|
|
395
|
+
heightClass
|
|
396
|
+
),
|
|
397
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
398
|
+
"div",
|
|
399
|
+
{
|
|
400
|
+
className: cn(progressVariants({ variant })),
|
|
401
|
+
style: { width: `${clampedValue}%` }
|
|
402
|
+
}
|
|
403
|
+
)
|
|
404
|
+
}
|
|
405
|
+
)
|
|
406
|
+
] });
|
|
407
|
+
}
|
|
408
|
+
);
|
|
409
|
+
Progress.displayName = "Progress";
|
|
410
|
+
var iconBoxVariants = classVarianceAuthority.cva(
|
|
411
|
+
"inline-flex items-center justify-center shrink-0",
|
|
412
|
+
{
|
|
413
|
+
variants: {
|
|
414
|
+
variant: {
|
|
415
|
+
default: "bg-[var(--black)] text-white",
|
|
416
|
+
primary: "bg-[var(--cyan)] text-[var(--black)]",
|
|
417
|
+
outline: "border-2 border-gray-200 bg-white text-[var(--black)]",
|
|
418
|
+
ghost: "bg-gray-100 text-gray-600",
|
|
419
|
+
gradient: "bg-gradient-to-br from-[var(--black)] to-[var(--cyan-dark)] text-white"
|
|
420
|
+
},
|
|
421
|
+
size: {
|
|
422
|
+
sm: "w-8 h-8",
|
|
423
|
+
default: "w-10 h-10",
|
|
424
|
+
lg: "w-12 h-12",
|
|
425
|
+
xl: "w-14 h-14"
|
|
426
|
+
},
|
|
427
|
+
rounded: {
|
|
428
|
+
sm: "rounded-sm",
|
|
429
|
+
default: "rounded-md",
|
|
430
|
+
full: "rounded-full"
|
|
431
|
+
}
|
|
432
|
+
},
|
|
433
|
+
defaultVariants: {
|
|
434
|
+
variant: "default",
|
|
435
|
+
size: "default",
|
|
436
|
+
rounded: "sm"
|
|
437
|
+
}
|
|
438
|
+
}
|
|
439
|
+
);
|
|
440
|
+
var IconBox = React4__namespace.forwardRef(
|
|
441
|
+
({ className, variant, size, rounded, children, ...props }, ref) => {
|
|
442
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
443
|
+
"div",
|
|
444
|
+
{
|
|
445
|
+
ref,
|
|
446
|
+
className: cn(iconBoxVariants({ variant, size, rounded }), className),
|
|
447
|
+
...props,
|
|
448
|
+
children
|
|
449
|
+
}
|
|
450
|
+
);
|
|
451
|
+
}
|
|
452
|
+
);
|
|
453
|
+
IconBox.displayName = "IconBox";
|
|
454
|
+
var tagVariants = classVarianceAuthority.cva(
|
|
455
|
+
"inline-flex items-center gap-2 font-medium transition-colors cursor-pointer",
|
|
456
|
+
{
|
|
457
|
+
variants: {
|
|
458
|
+
variant: {
|
|
459
|
+
default: "bg-gray-100 text-[var(--black)]",
|
|
460
|
+
primary: "bg-[var(--cyan)]/10 text-[var(--cyan)]",
|
|
461
|
+
outline: "border border-gray-200 bg-white text-gray-700 hover:border-[var(--black)] hover:text-[var(--black)]",
|
|
462
|
+
dark: "bg-[var(--black)] text-white"
|
|
463
|
+
},
|
|
464
|
+
size: {
|
|
465
|
+
sm: "px-2 py-1 text-[10px] rounded",
|
|
466
|
+
default: "px-3 py-1.5 text-xs rounded-full",
|
|
467
|
+
lg: "px-4 py-2 text-sm rounded-full"
|
|
468
|
+
}
|
|
469
|
+
},
|
|
470
|
+
defaultVariants: {
|
|
471
|
+
variant: "default",
|
|
472
|
+
size: "default"
|
|
473
|
+
}
|
|
474
|
+
}
|
|
475
|
+
);
|
|
476
|
+
var Tag = React4__namespace.forwardRef(
|
|
477
|
+
({ className, variant, size, icon, children, ...props }, ref) => {
|
|
478
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
479
|
+
"span",
|
|
480
|
+
{
|
|
481
|
+
ref,
|
|
482
|
+
className: cn(tagVariants({ variant, size }), className),
|
|
483
|
+
...props,
|
|
484
|
+
children: [
|
|
485
|
+
icon && /* @__PURE__ */ jsxRuntime.jsx("span", { className: "shrink-0", children: icon }),
|
|
486
|
+
children
|
|
487
|
+
]
|
|
488
|
+
}
|
|
489
|
+
);
|
|
490
|
+
}
|
|
491
|
+
);
|
|
492
|
+
Tag.displayName = "Tag";
|
|
493
|
+
var statVariants = classVarianceAuthority.cva("", {
|
|
494
|
+
variants: {
|
|
495
|
+
variant: {
|
|
496
|
+
default: "",
|
|
497
|
+
card: "p-3 rounded-sm bg-gray-50 text-center"
|
|
498
|
+
},
|
|
499
|
+
align: {
|
|
500
|
+
left: "text-left",
|
|
501
|
+
center: "text-center",
|
|
502
|
+
right: "text-right"
|
|
503
|
+
}
|
|
504
|
+
},
|
|
505
|
+
defaultVariants: {
|
|
506
|
+
variant: "default",
|
|
507
|
+
align: "left"
|
|
508
|
+
}
|
|
509
|
+
});
|
|
510
|
+
var valueVariants = classVarianceAuthority.cva("font-bold", {
|
|
511
|
+
variants: {
|
|
512
|
+
size: {
|
|
513
|
+
sm: "text-xl",
|
|
514
|
+
default: "text-3xl md:text-4xl",
|
|
515
|
+
lg: "text-4xl md:text-5xl",
|
|
516
|
+
xl: "text-5xl md:text-6xl"
|
|
517
|
+
},
|
|
518
|
+
color: {
|
|
519
|
+
default: "text-[var(--black)]",
|
|
520
|
+
primary: "text-[var(--cyan)]",
|
|
521
|
+
white: "text-white",
|
|
522
|
+
gradient: "text-gradient"
|
|
523
|
+
}
|
|
524
|
+
},
|
|
525
|
+
defaultVariants: {
|
|
526
|
+
size: "default",
|
|
527
|
+
color: "default"
|
|
528
|
+
}
|
|
529
|
+
});
|
|
530
|
+
var Stat = React4__namespace.forwardRef(
|
|
531
|
+
({
|
|
532
|
+
className,
|
|
533
|
+
variant,
|
|
534
|
+
align,
|
|
535
|
+
value,
|
|
536
|
+
label,
|
|
537
|
+
suffix,
|
|
538
|
+
valueSize = "default",
|
|
539
|
+
valueColor = "default",
|
|
540
|
+
...props
|
|
541
|
+
}, ref) => {
|
|
542
|
+
const justifyClass = {
|
|
543
|
+
left: "justify-start",
|
|
544
|
+
center: "justify-center",
|
|
545
|
+
right: "justify-end"
|
|
546
|
+
}[align || "left"];
|
|
547
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
548
|
+
"div",
|
|
549
|
+
{
|
|
550
|
+
ref,
|
|
551
|
+
className: cn(statVariants({ variant, align }), className),
|
|
552
|
+
...props,
|
|
553
|
+
children: [
|
|
554
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("flex items-baseline gap-2", justifyClass), children: [
|
|
555
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: cn(valueVariants({ size: valueSize, color: valueColor })), children: value }),
|
|
556
|
+
suffix && /* @__PURE__ */ jsxRuntime.jsx("span", { className: cn(
|
|
557
|
+
"font-medium text-[var(--cyan)]",
|
|
558
|
+
valueSize === "lg" || valueSize === "xl" ? "text-lg md:text-xl" : "text-base md:text-lg"
|
|
559
|
+
), children: suffix })
|
|
560
|
+
] }),
|
|
561
|
+
label && /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn(
|
|
562
|
+
"font-medium mt-1",
|
|
563
|
+
valueColor === "white" ? "text-white/70 text-sm md:text-base" : "text-gray-500 text-xs md:text-sm"
|
|
564
|
+
), children: label })
|
|
565
|
+
]
|
|
566
|
+
}
|
|
567
|
+
);
|
|
568
|
+
}
|
|
569
|
+
);
|
|
570
|
+
Stat.displayName = "Stat";
|
|
571
|
+
|
|
572
|
+
Object.defineProperty(exports, "AddressBook", {
|
|
573
|
+
enumerable: true,
|
|
574
|
+
get: function () { return react.AddressBook; }
|
|
575
|
+
});
|
|
576
|
+
Object.defineProperty(exports, "ArrowLeft", {
|
|
577
|
+
enumerable: true,
|
|
578
|
+
get: function () { return react.ArrowLeft; }
|
|
579
|
+
});
|
|
580
|
+
Object.defineProperty(exports, "ArrowRight", {
|
|
581
|
+
enumerable: true,
|
|
582
|
+
get: function () { return react.ArrowRight; }
|
|
583
|
+
});
|
|
584
|
+
Object.defineProperty(exports, "ArrowSquareOut", {
|
|
585
|
+
enumerable: true,
|
|
586
|
+
get: function () { return react.ArrowSquareOut; }
|
|
587
|
+
});
|
|
588
|
+
Object.defineProperty(exports, "ArrowUpRight", {
|
|
589
|
+
enumerable: true,
|
|
590
|
+
get: function () { return react.ArrowUpRight; }
|
|
591
|
+
});
|
|
592
|
+
Object.defineProperty(exports, "Brain", {
|
|
593
|
+
enumerable: true,
|
|
594
|
+
get: function () { return react.Brain; }
|
|
595
|
+
});
|
|
596
|
+
Object.defineProperty(exports, "Briefcase", {
|
|
597
|
+
enumerable: true,
|
|
598
|
+
get: function () { return react.Briefcase; }
|
|
599
|
+
});
|
|
600
|
+
Object.defineProperty(exports, "Buildings", {
|
|
601
|
+
enumerable: true,
|
|
602
|
+
get: function () { return react.Buildings; }
|
|
603
|
+
});
|
|
604
|
+
Object.defineProperty(exports, "Calendar", {
|
|
605
|
+
enumerable: true,
|
|
606
|
+
get: function () { return react.Calendar; }
|
|
607
|
+
});
|
|
608
|
+
Object.defineProperty(exports, "CaretDown", {
|
|
609
|
+
enumerable: true,
|
|
610
|
+
get: function () { return react.CaretDown; }
|
|
611
|
+
});
|
|
612
|
+
Object.defineProperty(exports, "CaretRight", {
|
|
613
|
+
enumerable: true,
|
|
614
|
+
get: function () { return react.CaretRight; }
|
|
615
|
+
});
|
|
616
|
+
Object.defineProperty(exports, "CaretUp", {
|
|
617
|
+
enumerable: true,
|
|
618
|
+
get: function () { return react.CaretUp; }
|
|
619
|
+
});
|
|
620
|
+
Object.defineProperty(exports, "ChartBar", {
|
|
621
|
+
enumerable: true,
|
|
622
|
+
get: function () { return react.ChartBar; }
|
|
623
|
+
});
|
|
624
|
+
Object.defineProperty(exports, "ChartLineUp", {
|
|
625
|
+
enumerable: true,
|
|
626
|
+
get: function () { return react.ChartLineUp; }
|
|
627
|
+
});
|
|
628
|
+
Object.defineProperty(exports, "ChatCircle", {
|
|
629
|
+
enumerable: true,
|
|
630
|
+
get: function () { return react.ChatCircle; }
|
|
631
|
+
});
|
|
632
|
+
Object.defineProperty(exports, "Check", {
|
|
633
|
+
enumerable: true,
|
|
634
|
+
get: function () { return react.Check; }
|
|
635
|
+
});
|
|
636
|
+
Object.defineProperty(exports, "CheckCircle", {
|
|
637
|
+
enumerable: true,
|
|
638
|
+
get: function () { return react.CheckCircle; }
|
|
639
|
+
});
|
|
640
|
+
Object.defineProperty(exports, "CheckSquare", {
|
|
641
|
+
enumerable: true,
|
|
642
|
+
get: function () { return react.CheckSquare; }
|
|
643
|
+
});
|
|
644
|
+
Object.defineProperty(exports, "Circle", {
|
|
645
|
+
enumerable: true,
|
|
646
|
+
get: function () { return react.Circle; }
|
|
647
|
+
});
|
|
648
|
+
Object.defineProperty(exports, "Clock", {
|
|
649
|
+
enumerable: true,
|
|
650
|
+
get: function () { return react.Clock; }
|
|
651
|
+
});
|
|
652
|
+
Object.defineProperty(exports, "Copy", {
|
|
653
|
+
enumerable: true,
|
|
654
|
+
get: function () { return react.Copy; }
|
|
655
|
+
});
|
|
656
|
+
Object.defineProperty(exports, "Database", {
|
|
657
|
+
enumerable: true,
|
|
658
|
+
get: function () { return react.Database; }
|
|
659
|
+
});
|
|
660
|
+
Object.defineProperty(exports, "DotsThree", {
|
|
661
|
+
enumerable: true,
|
|
662
|
+
get: function () { return react.DotsThree; }
|
|
663
|
+
});
|
|
664
|
+
Object.defineProperty(exports, "DotsThreeVertical", {
|
|
665
|
+
enumerable: true,
|
|
666
|
+
get: function () { return react.DotsThreeVertical; }
|
|
667
|
+
});
|
|
668
|
+
Object.defineProperty(exports, "Download", {
|
|
669
|
+
enumerable: true,
|
|
670
|
+
get: function () { return react.Download; }
|
|
671
|
+
});
|
|
672
|
+
Object.defineProperty(exports, "Envelope", {
|
|
673
|
+
enumerable: true,
|
|
674
|
+
get: function () { return react.Envelope; }
|
|
675
|
+
});
|
|
676
|
+
Object.defineProperty(exports, "EnvelopeSimple", {
|
|
677
|
+
enumerable: true,
|
|
678
|
+
get: function () { return react.EnvelopeSimple; }
|
|
679
|
+
});
|
|
680
|
+
Object.defineProperty(exports, "Eye", {
|
|
681
|
+
enumerable: true,
|
|
682
|
+
get: function () { return react.Eye; }
|
|
683
|
+
});
|
|
684
|
+
Object.defineProperty(exports, "EyeSlash", {
|
|
685
|
+
enumerable: true,
|
|
686
|
+
get: function () { return react.EyeSlash; }
|
|
687
|
+
});
|
|
688
|
+
Object.defineProperty(exports, "File", {
|
|
689
|
+
enumerable: true,
|
|
690
|
+
get: function () { return react.File; }
|
|
691
|
+
});
|
|
692
|
+
Object.defineProperty(exports, "FileText", {
|
|
693
|
+
enumerable: true,
|
|
694
|
+
get: function () { return react.FileText; }
|
|
695
|
+
});
|
|
696
|
+
Object.defineProperty(exports, "Files", {
|
|
697
|
+
enumerable: true,
|
|
698
|
+
get: function () { return react.Files; }
|
|
699
|
+
});
|
|
700
|
+
Object.defineProperty(exports, "FirstAid", {
|
|
701
|
+
enumerable: true,
|
|
702
|
+
get: function () { return react.FirstAid; }
|
|
703
|
+
});
|
|
704
|
+
Object.defineProperty(exports, "Funnel", {
|
|
705
|
+
enumerable: true,
|
|
706
|
+
get: function () { return react.Funnel; }
|
|
707
|
+
});
|
|
708
|
+
Object.defineProperty(exports, "Gear", {
|
|
709
|
+
enumerable: true,
|
|
710
|
+
get: function () { return react.Gear; }
|
|
711
|
+
});
|
|
712
|
+
Object.defineProperty(exports, "GearSix", {
|
|
713
|
+
enumerable: true,
|
|
714
|
+
get: function () { return react.GearSix; }
|
|
715
|
+
});
|
|
716
|
+
Object.defineProperty(exports, "Globe", {
|
|
717
|
+
enumerable: true,
|
|
718
|
+
get: function () { return react.Globe; }
|
|
719
|
+
});
|
|
720
|
+
Object.defineProperty(exports, "Handshake", {
|
|
721
|
+
enumerable: true,
|
|
722
|
+
get: function () { return react.Handshake; }
|
|
723
|
+
});
|
|
724
|
+
Object.defineProperty(exports, "House", {
|
|
725
|
+
enumerable: true,
|
|
726
|
+
get: function () { return react.House; }
|
|
727
|
+
});
|
|
728
|
+
Object.defineProperty(exports, "Info", {
|
|
729
|
+
enumerable: true,
|
|
730
|
+
get: function () { return react.Info; }
|
|
731
|
+
});
|
|
732
|
+
Object.defineProperty(exports, "Link", {
|
|
733
|
+
enumerable: true,
|
|
734
|
+
get: function () { return react.Link; }
|
|
735
|
+
});
|
|
736
|
+
Object.defineProperty(exports, "LinkedinLogo", {
|
|
737
|
+
enumerable: true,
|
|
738
|
+
get: function () { return react.LinkedinLogo; }
|
|
739
|
+
});
|
|
740
|
+
Object.defineProperty(exports, "List", {
|
|
741
|
+
enumerable: true,
|
|
742
|
+
get: function () { return react.List; }
|
|
743
|
+
});
|
|
744
|
+
Object.defineProperty(exports, "MagnifyingGlass", {
|
|
745
|
+
enumerable: true,
|
|
746
|
+
get: function () { return react.MagnifyingGlass; }
|
|
747
|
+
});
|
|
748
|
+
Object.defineProperty(exports, "Minus", {
|
|
749
|
+
enumerable: true,
|
|
750
|
+
get: function () { return react.Minus; }
|
|
751
|
+
});
|
|
752
|
+
Object.defineProperty(exports, "Pause", {
|
|
753
|
+
enumerable: true,
|
|
754
|
+
get: function () { return react.Pause; }
|
|
755
|
+
});
|
|
756
|
+
Object.defineProperty(exports, "PencilSimple", {
|
|
757
|
+
enumerable: true,
|
|
758
|
+
get: function () { return react.PencilSimple; }
|
|
759
|
+
});
|
|
760
|
+
Object.defineProperty(exports, "Phone", {
|
|
761
|
+
enumerable: true,
|
|
762
|
+
get: function () { return react.Phone; }
|
|
763
|
+
});
|
|
764
|
+
Object.defineProperty(exports, "Play", {
|
|
765
|
+
enumerable: true,
|
|
766
|
+
get: function () { return react.Play; }
|
|
767
|
+
});
|
|
768
|
+
Object.defineProperty(exports, "Plus", {
|
|
769
|
+
enumerable: true,
|
|
770
|
+
get: function () { return react.Plus; }
|
|
771
|
+
});
|
|
772
|
+
Object.defineProperty(exports, "Question", {
|
|
773
|
+
enumerable: true,
|
|
774
|
+
get: function () { return react.Question; }
|
|
775
|
+
});
|
|
776
|
+
Object.defineProperty(exports, "Receipt", {
|
|
777
|
+
enumerable: true,
|
|
778
|
+
get: function () { return react.Receipt; }
|
|
779
|
+
});
|
|
780
|
+
Object.defineProperty(exports, "Robot", {
|
|
781
|
+
enumerable: true,
|
|
782
|
+
get: function () { return react.Robot; }
|
|
783
|
+
});
|
|
784
|
+
Object.defineProperty(exports, "ShoppingCart", {
|
|
785
|
+
enumerable: true,
|
|
786
|
+
get: function () { return react.ShoppingCart; }
|
|
787
|
+
});
|
|
788
|
+
Object.defineProperty(exports, "SignIn", {
|
|
789
|
+
enumerable: true,
|
|
790
|
+
get: function () { return react.SignIn; }
|
|
791
|
+
});
|
|
792
|
+
Object.defineProperty(exports, "SignOut", {
|
|
793
|
+
enumerable: true,
|
|
794
|
+
get: function () { return react.SignOut; }
|
|
795
|
+
});
|
|
796
|
+
Object.defineProperty(exports, "SortAscending", {
|
|
797
|
+
enumerable: true,
|
|
798
|
+
get: function () { return react.SortAscending; }
|
|
799
|
+
});
|
|
800
|
+
Object.defineProperty(exports, "SortDescending", {
|
|
801
|
+
enumerable: true,
|
|
802
|
+
get: function () { return react.SortDescending; }
|
|
803
|
+
});
|
|
804
|
+
Object.defineProperty(exports, "Stop", {
|
|
805
|
+
enumerable: true,
|
|
806
|
+
get: function () { return react.Stop; }
|
|
807
|
+
});
|
|
808
|
+
Object.defineProperty(exports, "Trash", {
|
|
809
|
+
enumerable: true,
|
|
810
|
+
get: function () { return react.Trash; }
|
|
811
|
+
});
|
|
812
|
+
Object.defineProperty(exports, "Upload", {
|
|
813
|
+
enumerable: true,
|
|
814
|
+
get: function () { return react.Upload; }
|
|
815
|
+
});
|
|
816
|
+
Object.defineProperty(exports, "User", {
|
|
817
|
+
enumerable: true,
|
|
818
|
+
get: function () { return react.User; }
|
|
819
|
+
});
|
|
820
|
+
Object.defineProperty(exports, "UserPlus", {
|
|
821
|
+
enumerable: true,
|
|
822
|
+
get: function () { return react.UserPlus; }
|
|
823
|
+
});
|
|
824
|
+
Object.defineProperty(exports, "Users", {
|
|
825
|
+
enumerable: true,
|
|
826
|
+
get: function () { return react.Users; }
|
|
827
|
+
});
|
|
828
|
+
Object.defineProperty(exports, "UsersThree", {
|
|
829
|
+
enumerable: true,
|
|
830
|
+
get: function () { return react.UsersThree; }
|
|
831
|
+
});
|
|
832
|
+
Object.defineProperty(exports, "VideoCamera", {
|
|
833
|
+
enumerable: true,
|
|
834
|
+
get: function () { return react.VideoCamera; }
|
|
835
|
+
});
|
|
836
|
+
Object.defineProperty(exports, "Wallet", {
|
|
837
|
+
enumerable: true,
|
|
838
|
+
get: function () { return react.Wallet; }
|
|
839
|
+
});
|
|
840
|
+
Object.defineProperty(exports, "Warning", {
|
|
841
|
+
enumerable: true,
|
|
842
|
+
get: function () { return react.Warning; }
|
|
843
|
+
});
|
|
844
|
+
Object.defineProperty(exports, "WarningCircle", {
|
|
845
|
+
enumerable: true,
|
|
846
|
+
get: function () { return react.WarningCircle; }
|
|
847
|
+
});
|
|
848
|
+
Object.defineProperty(exports, "X", {
|
|
849
|
+
enumerable: true,
|
|
850
|
+
get: function () { return react.X; }
|
|
851
|
+
});
|
|
852
|
+
Object.defineProperty(exports, "XLogo", {
|
|
853
|
+
enumerable: true,
|
|
854
|
+
get: function () { return react.XLogo; }
|
|
855
|
+
});
|
|
856
|
+
exports.Badge = Badge;
|
|
857
|
+
exports.Button = Button;
|
|
858
|
+
exports.Card = Card;
|
|
859
|
+
exports.CardContent = CardContent;
|
|
860
|
+
exports.CardDescription = CardDescription;
|
|
861
|
+
exports.CardFooter = CardFooter;
|
|
862
|
+
exports.CardHeader = CardHeader;
|
|
863
|
+
exports.CardTitle = CardTitle;
|
|
864
|
+
exports.IconBox = IconBox;
|
|
865
|
+
exports.Logo = Logo;
|
|
866
|
+
exports.Progress = Progress;
|
|
867
|
+
exports.Sheet = Sheet;
|
|
868
|
+
exports.SheetClose = SheetClose;
|
|
869
|
+
exports.SheetContent = SheetContent;
|
|
870
|
+
exports.SheetDescription = SheetDescription;
|
|
871
|
+
exports.SheetFooter = SheetFooter;
|
|
872
|
+
exports.SheetHeader = SheetHeader;
|
|
873
|
+
exports.SheetOverlay = SheetOverlay;
|
|
874
|
+
exports.SheetPortal = SheetPortal;
|
|
875
|
+
exports.SheetTitle = SheetTitle;
|
|
876
|
+
exports.SheetTrigger = SheetTrigger;
|
|
877
|
+
exports.Stat = Stat;
|
|
878
|
+
exports.Tag = Tag;
|
|
879
|
+
exports.badgeVariants = badgeVariants;
|
|
880
|
+
exports.buttonVariants = buttonVariants;
|
|
881
|
+
exports.cn = cn;
|
|
882
|
+
exports.iconBoxVariants = iconBoxVariants;
|
|
883
|
+
exports.progressVariants = progressVariants;
|
|
884
|
+
exports.statVariants = statVariants;
|
|
885
|
+
exports.tagVariants = tagVariants;
|
|
886
|
+
exports.valueVariants = valueVariants;
|
|
887
|
+
//# sourceMappingURL=index.js.map
|
|
888
|
+
//# sourceMappingURL=index.js.map
|