@deepnoid/ui 0.1.41 → 0.1.43
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 +176 -161
- package/dist/chunk-3YMMVZDL.mjs +1 -0
- package/dist/{chunk-4LOREVB7.mjs → chunk-42LXAL5Y.mjs} +3 -4
- package/dist/{chunk-ECMBAKSJ.mjs → chunk-D7XSWNZ7.mjs} +4 -4
- package/dist/chunk-IET623ED.mjs +106 -0
- package/dist/{chunk-MFRYYZPY.mjs → chunk-KJMJIFPS.mjs} +22 -19
- package/dist/chunk-LTXJKWHO.mjs +107 -0
- package/dist/{chunk-QJJKJYNR.mjs → chunk-NR7MGDUE.mjs} +3 -3
- package/dist/components/breadcrumb/breadcrumb.mjs +3 -3
- package/dist/components/breadcrumb/index.mjs +3 -3
- package/dist/components/button/button.mjs +1 -1
- package/dist/components/button/icon-button.mjs +1 -1
- package/dist/components/button/index.mjs +3 -3
- package/dist/components/charts/areaCharts.d.mts +66 -0
- package/dist/components/charts/areaCharts.d.ts +66 -0
- package/dist/components/charts/areaCharts.js +441 -0
- package/dist/components/charts/areaCharts.mjs +10 -0
- package/dist/components/charts/circularProgress.d.mts +92 -0
- package/dist/components/charts/circularProgress.d.ts +92 -0
- package/dist/components/charts/circularProgress.js +441 -0
- package/dist/components/charts/circularProgress.mjs +11 -0
- package/dist/components/charts/index.d.mts +5 -0
- package/dist/components/charts/index.d.ts +5 -0
- package/dist/components/charts/index.js +543 -0
- package/dist/components/charts/index.mjs +15 -0
- package/dist/components/chip/chip.mjs +1 -1
- package/dist/components/chip/index.mjs +1 -1
- package/dist/components/dateTimePicker/calendar.mjs +1 -1
- package/dist/components/dateTimePicker/dateTimePicker.mjs +7 -7
- package/dist/components/dateTimePicker/index.mjs +7 -7
- package/dist/components/dateTimePicker/timePicker.mjs +4 -4
- package/dist/components/fileUpload/fileUpload.mjs +2 -2
- package/dist/components/fileUpload/index.mjs +2 -2
- package/dist/components/input/index.mjs +1 -1
- package/dist/components/input/input.mjs +1 -1
- package/dist/components/list/index.mjs +5 -5
- package/dist/components/list/listItem.mjs +3 -3
- package/dist/components/modal/index.mjs +2 -2
- package/dist/components/modal/modal.mjs +2 -2
- package/dist/components/pagination/index.mjs +1 -1
- package/dist/components/pagination/pagination.mjs +1 -1
- package/dist/components/select/index.mjs +1 -1
- package/dist/components/select/select.mjs +1 -1
- package/dist/components/table/index.js +24 -22
- package/dist/components/table/index.mjs +6 -6
- package/dist/components/table/table-body.d.mts +1 -2
- package/dist/components/table/table-body.d.ts +1 -2
- package/dist/components/table/table-body.js +22 -19
- package/dist/components/table/table-body.mjs +1 -1
- package/dist/components/table/table.d.mts +0 -1
- package/dist/components/table/table.d.ts +0 -1
- package/dist/components/table/table.js +24 -22
- package/dist/components/table/table.mjs +3 -3
- package/dist/components/toast/index.mjs +1 -1
- package/dist/components/toast/toast.mjs +1 -1
- package/dist/components/toast/use-toast.mjs +1 -1
- package/dist/components/tree/index.mjs +1 -1
- package/dist/components/tree/tree.mjs +1 -1
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +219 -22
- package/dist/index.mjs +62 -53
- package/package.json +4 -3
- package/dist/{chunk-III2QUWF.mjs → chunk-L2VA3ACH.mjs} +3 -3
- package/dist/{chunk-W45H2ZMW.mjs → chunk-QWIURBUH.mjs} +3 -3
package/dist/index.js
CHANGED
|
@@ -102,6 +102,7 @@ var require_plugin = __commonJS({
|
|
|
102
102
|
// src/index.ts
|
|
103
103
|
var index_exports = {};
|
|
104
104
|
__export(index_exports, {
|
|
105
|
+
AreaChart: () => areaCharts_default,
|
|
105
106
|
Avatar: () => avatar_default,
|
|
106
107
|
Backdrop: () => backdrop_default,
|
|
107
108
|
Breadcrumb: () => breadcrumb_default,
|
|
@@ -109,6 +110,7 @@ __export(index_exports, {
|
|
|
109
110
|
ButtonGroup: () => button_group_default,
|
|
110
111
|
CheckBox: () => checkbox_default,
|
|
111
112
|
Chip: () => chip_default,
|
|
113
|
+
CircularProgress: () => circularProgress_default,
|
|
112
114
|
DateTimePicker: () => dateTimePicker_default,
|
|
113
115
|
DefinitionTable: () => definition_table_default,
|
|
114
116
|
FileUpload: () => fileUpload_default,
|
|
@@ -7059,7 +7061,7 @@ var TableBody = ({
|
|
|
7059
7061
|
rowCheckbox = false,
|
|
7060
7062
|
checkedRows,
|
|
7061
7063
|
onCheckRow,
|
|
7062
|
-
onRowClick,
|
|
7064
|
+
// onRowClick,
|
|
7063
7065
|
isLoading = false,
|
|
7064
7066
|
emptyContent,
|
|
7065
7067
|
skeletonRow,
|
|
@@ -7087,24 +7089,27 @@ var TableBody = ({
|
|
|
7087
7089
|
rowCheckbox && renderTdSkeleton(`skeleton-checkbox-${rowIndex}`)
|
|
7088
7090
|
] }, `skeleton-${rowIndex}`);
|
|
7089
7091
|
const renderEmptyRow = () => /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("tr", { className: slots.tr({ class: classNames == null ? void 0 : classNames.tr }), children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("td", { colSpan: columns.length + (rowCheckbox ? 1 : 0), className: slots.empty({ class: classNames == null ? void 0 : classNames.empty }), children: emptyContent }) });
|
|
7090
|
-
const renderDataRow = (row, rowIndex) =>
|
|
7091
|
-
|
|
7092
|
-
|
|
7093
|
-
|
|
7094
|
-
|
|
7095
|
-
|
|
7096
|
-
|
|
7097
|
-
|
|
7098
|
-
|
|
7099
|
-
|
|
7100
|
-
|
|
7101
|
-
|
|
7102
|
-
|
|
7103
|
-
|
|
7104
|
-
|
|
7105
|
-
|
|
7106
|
-
|
|
7107
|
-
|
|
7092
|
+
const renderDataRow = (row, rowIndex) => (
|
|
7093
|
+
// <tr key={rowIndex} className={slots.tr({ class: classNames?.tr })} onClick={() => onRowClick?.(row)}>
|
|
7094
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("tr", { className: slots.tr({ class: classNames == null ? void 0 : classNames.tr }), children: [
|
|
7095
|
+
columns.map((column, colIdx) => {
|
|
7096
|
+
var _a;
|
|
7097
|
+
const value = row[column.field];
|
|
7098
|
+
const formattedValue = ((_a = column.valueFormatter) == null ? void 0 : _a.call(column, { value, field: column.field })) || value;
|
|
7099
|
+
const content = column.renderCell ? column.renderCell({ id: row.id, field: column.field, value, formattedValue, row }) : formattedValue;
|
|
7100
|
+
return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
7101
|
+
"td",
|
|
7102
|
+
{
|
|
7103
|
+
className: clsx(slots.td({ class: classNames == null ? void 0 : classNames.td }), column.className),
|
|
7104
|
+
style: getCellStyle(column),
|
|
7105
|
+
children: content
|
|
7106
|
+
},
|
|
7107
|
+
`${rowIndex}-${colIdx}`
|
|
7108
|
+
);
|
|
7109
|
+
}),
|
|
7110
|
+
rowCheckbox && renderCheckboxCell(rowIndex)
|
|
7111
|
+
] }, rowIndex)
|
|
7112
|
+
);
|
|
7108
7113
|
const renderRows = () => {
|
|
7109
7114
|
if (isLoading) return skeletonRow ? Array.from({ length: skeletonRow }, (_, idx) => renderSkeletonRow(idx)) : /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(import_jsx_runtime17.Fragment, {});
|
|
7110
7115
|
if (!rows.length && emptyContent) return renderEmptyRow();
|
|
@@ -7444,7 +7449,7 @@ var Table = (0, import_react15.forwardRef)((originalProps, ref) => {
|
|
|
7444
7449
|
rows,
|
|
7445
7450
|
columns,
|
|
7446
7451
|
rowCheckbox = false,
|
|
7447
|
-
onRowClick,
|
|
7452
|
+
// onRowClick,
|
|
7448
7453
|
totalData = 0,
|
|
7449
7454
|
pagination,
|
|
7450
7455
|
onPageChange,
|
|
@@ -7515,7 +7520,6 @@ var Table = (0, import_react15.forwardRef)((originalProps, ref) => {
|
|
|
7515
7520
|
color,
|
|
7516
7521
|
rowCheckbox,
|
|
7517
7522
|
checkedRows,
|
|
7518
|
-
onRowClick,
|
|
7519
7523
|
onCheckRow: handleRowCheck,
|
|
7520
7524
|
emptyContent,
|
|
7521
7525
|
isLoading,
|
|
@@ -7548,7 +7552,7 @@ var tableStyle = (0, import_tailwind_variants16.tv)({
|
|
|
7548
7552
|
table: ["w-full", "h-auto"],
|
|
7549
7553
|
thead: ["w-full"],
|
|
7550
7554
|
tbody: ["w-full"],
|
|
7551
|
-
tr: ["group", "outline-none", "w-full", "h-full"],
|
|
7555
|
+
tr: ["group/tr", "outline-none", "w-full", "h-full"],
|
|
7552
7556
|
th: [
|
|
7553
7557
|
"text-body-foreground",
|
|
7554
7558
|
"font-bold",
|
|
@@ -10512,8 +10516,200 @@ var fileUploadStyle = (0, import_tailwind_variants30.tv)({
|
|
|
10512
10516
|
helperMessage: ["text-neutral-main", "text-sm"]
|
|
10513
10517
|
}
|
|
10514
10518
|
});
|
|
10519
|
+
|
|
10520
|
+
// src/components/charts/circularProgress.tsx
|
|
10521
|
+
var import_recharts = require("recharts");
|
|
10522
|
+
var import_react34 = require("react");
|
|
10523
|
+
var import_jsx_runtime37 = require("react/jsx-runtime");
|
|
10524
|
+
var CircularProgress = (0, import_react34.forwardRef)((originalProps, ref) => {
|
|
10525
|
+
const [props, variantProps] = mapPropsVariants(originalProps, circularProgressStyle.variantKeys);
|
|
10526
|
+
const { title, size = 150, color, percentage, unit, classNames } = { ...props, ...variantProps };
|
|
10527
|
+
const slots = (0, import_react34.useMemo)(() => circularProgressStyle({ ...variantProps }), [variantProps]);
|
|
10528
|
+
const data = [
|
|
10529
|
+
{
|
|
10530
|
+
name: title,
|
|
10531
|
+
value: percentage
|
|
10532
|
+
}
|
|
10533
|
+
];
|
|
10534
|
+
const BAR_SIZE = 24;
|
|
10535
|
+
const OUTER_RADIUS = 88;
|
|
10536
|
+
const INNER_RADIUS = OUTER_RADIUS - BAR_SIZE;
|
|
10537
|
+
return /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)("div", { ref, className: slots.base({ class: classNames == null ? void 0 : classNames.base }), children: [
|
|
10538
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsxs)("div", { className: `relative h-[${size}px] w-[${size}px]`, children: [
|
|
10539
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsxs)(
|
|
10540
|
+
import_recharts.RadialBarChart,
|
|
10541
|
+
{
|
|
10542
|
+
width: size,
|
|
10543
|
+
height: size,
|
|
10544
|
+
innerRadius: INNER_RADIUS,
|
|
10545
|
+
outerRadius: OUTER_RADIUS,
|
|
10546
|
+
barSize: BAR_SIZE,
|
|
10547
|
+
data,
|
|
10548
|
+
startAngle: 90,
|
|
10549
|
+
endAngle: -270,
|
|
10550
|
+
children: [
|
|
10551
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
10552
|
+
"circle",
|
|
10553
|
+
{
|
|
10554
|
+
cx: size / 2,
|
|
10555
|
+
cy: size / 2,
|
|
10556
|
+
r: INNER_RADIUS + BAR_SIZE / 2,
|
|
10557
|
+
className: slots.background({ class: classNames == null ? void 0 : classNames.background }),
|
|
10558
|
+
fill: "currentColor"
|
|
10559
|
+
}
|
|
10560
|
+
),
|
|
10561
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)(import_recharts.PolarAngleAxis, { type: "number", domain: [0, 100], angleAxisId: 0, tick: false }),
|
|
10562
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
10563
|
+
import_recharts.RadialBar,
|
|
10564
|
+
{
|
|
10565
|
+
dataKey: "value",
|
|
10566
|
+
cornerRadius: 12,
|
|
10567
|
+
animationDuration: 1e3,
|
|
10568
|
+
className: slots.progress({ class: classNames == null ? void 0 : classNames.progress })
|
|
10569
|
+
}
|
|
10570
|
+
)
|
|
10571
|
+
]
|
|
10572
|
+
}
|
|
10573
|
+
),
|
|
10574
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("div", { className: "absolute inset-0 flex items-center justify-center", children: /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)("span", { className: slots.text({ class: classNames == null ? void 0 : classNames.text }), children: [
|
|
10575
|
+
percentage,
|
|
10576
|
+
unit
|
|
10577
|
+
] }) })
|
|
10578
|
+
] }),
|
|
10579
|
+
title && /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("p", { className: slots.title({ class: classNames == null ? void 0 : classNames.title }), children: title })
|
|
10580
|
+
] });
|
|
10581
|
+
});
|
|
10582
|
+
CircularProgress.displayName = "CircularProgress";
|
|
10583
|
+
var circularProgress_default = CircularProgress;
|
|
10584
|
+
var circularProgressStyle = tv({
|
|
10585
|
+
slots: {
|
|
10586
|
+
base: ["flex", "flex-col", "items-center", "gap-[20px]"],
|
|
10587
|
+
background: [],
|
|
10588
|
+
progress: ["transition-all", "duration-1000 ease-out"],
|
|
10589
|
+
text: ["text-xl", "font-bold"],
|
|
10590
|
+
title: ["text-md", "font-bold", "text-center", "text-body-foreground"]
|
|
10591
|
+
},
|
|
10592
|
+
variants: {
|
|
10593
|
+
color: {
|
|
10594
|
+
primary: {
|
|
10595
|
+
background: ["fill-primary-soft"],
|
|
10596
|
+
progress: ["fill-primary-main"],
|
|
10597
|
+
text: ["text-primary-dark"]
|
|
10598
|
+
},
|
|
10599
|
+
secondary: {
|
|
10600
|
+
background: ["fill-secondary-soft"],
|
|
10601
|
+
progress: ["fill-secondary-main"],
|
|
10602
|
+
text: ["text-secondary-dark"]
|
|
10603
|
+
},
|
|
10604
|
+
warning: {
|
|
10605
|
+
background: ["fill-warning-soft"],
|
|
10606
|
+
progress: ["fill-warning-main"],
|
|
10607
|
+
text: ["text-warning-dark"]
|
|
10608
|
+
}
|
|
10609
|
+
}
|
|
10610
|
+
},
|
|
10611
|
+
defaultVariants: {
|
|
10612
|
+
color: "primary"
|
|
10613
|
+
}
|
|
10614
|
+
});
|
|
10615
|
+
|
|
10616
|
+
// src/components/charts/areaCharts.tsx
|
|
10617
|
+
var import_react35 = require("react");
|
|
10618
|
+
var import_recharts2 = require("recharts");
|
|
10619
|
+
var import_jsx_runtime38 = require("react/jsx-runtime");
|
|
10620
|
+
var AreaChartComponent = (0, import_react35.forwardRef)((originalProps, ref) => {
|
|
10621
|
+
var _a, _b;
|
|
10622
|
+
const [props, variantProps] = mapPropsVariants(originalProps, areaChartStyle.variantKeys);
|
|
10623
|
+
const { areaData, color, classNames } = { ...props, ...variantProps };
|
|
10624
|
+
const slots = (0, import_react35.useMemo)(() => areaChartStyle({ ...variantProps }), [variantProps]);
|
|
10625
|
+
const colorHex = (_b = (_a = areaChartStyle.variants.color) == null ? void 0 : _a[color || "primary"]) == null ? void 0 : _b._colorValue;
|
|
10626
|
+
const CustomDotWithShadow = (props2) => {
|
|
10627
|
+
const { cx, cy, fill, stroke } = props2;
|
|
10628
|
+
if (cx === void 0 || cy === void 0) return null;
|
|
10629
|
+
return /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)(import_jsx_runtime38.Fragment, { children: [
|
|
10630
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)("circle", { cx, cy, r: 8, fill, opacity: 0.2 }),
|
|
10631
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)("circle", { cx, cy, r: 3.5, fill, stroke, strokeWidth: 2 })
|
|
10632
|
+
] });
|
|
10633
|
+
};
|
|
10634
|
+
return /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("div", { ref, className: slots.base({ class: classNames == null ? void 0 : classNames.base }), children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(import_recharts2.ResponsiveContainer, { width: "100%", height: "100%", children: /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)(
|
|
10635
|
+
import_recharts2.AreaChart,
|
|
10636
|
+
{
|
|
10637
|
+
data: areaData,
|
|
10638
|
+
margin: {
|
|
10639
|
+
top: 20,
|
|
10640
|
+
right: 30,
|
|
10641
|
+
left: 20,
|
|
10642
|
+
bottom: 20
|
|
10643
|
+
},
|
|
10644
|
+
children: [
|
|
10645
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)("linearGradient", { id: "colorGradient", x1: "0", y1: "0", x2: "0", y2: "1", children: [
|
|
10646
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)("stop", { offset: "5%", stopColor: colorHex, stopOpacity: 0.3 }),
|
|
10647
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)("stop", { offset: "95%", stopColor: colorHex, stopOpacity: 0 })
|
|
10648
|
+
] }) }),
|
|
10649
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)(import_recharts2.CartesianGrid, { vertical: true, horizontal: false, strokeDasharray: "3 3", className: "stroke-neutral-light" }),
|
|
10650
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
10651
|
+
import_recharts2.XAxis,
|
|
10652
|
+
{
|
|
10653
|
+
dataKey: "name",
|
|
10654
|
+
axisLine: { stroke: "#DFE2E7", strokeWidth: 1 },
|
|
10655
|
+
tickLine: false,
|
|
10656
|
+
tick: { fontSize: 12, fontWeight: 700, fill: "text-body-foreground" },
|
|
10657
|
+
padding: { left: 35.5, right: 35.5 }
|
|
10658
|
+
}
|
|
10659
|
+
),
|
|
10660
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
10661
|
+
import_recharts2.YAxis,
|
|
10662
|
+
{
|
|
10663
|
+
axisLine: { stroke: "#DFE2E7", strokeWidth: 1 },
|
|
10664
|
+
tickLine: false,
|
|
10665
|
+
tick: { fontSize: 12, fontWeight: 700, fill: "text-body-foreground" },
|
|
10666
|
+
ticks: [0, 20, 40, 60, 80, 100],
|
|
10667
|
+
domain: [0, 100]
|
|
10668
|
+
}
|
|
10669
|
+
),
|
|
10670
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
10671
|
+
import_recharts2.Area,
|
|
10672
|
+
{
|
|
10673
|
+
type: "monotone",
|
|
10674
|
+
dataKey: "value",
|
|
10675
|
+
stroke: colorHex,
|
|
10676
|
+
strokeWidth: 2,
|
|
10677
|
+
fill: "url(#colorGradient)",
|
|
10678
|
+
dot: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(CustomDotWithShadow, { stroke: colorHex, fill: colorHex }),
|
|
10679
|
+
activeDot: { r: 7, fill: colorHex }
|
|
10680
|
+
}
|
|
10681
|
+
)
|
|
10682
|
+
]
|
|
10683
|
+
}
|
|
10684
|
+
) }) });
|
|
10685
|
+
});
|
|
10686
|
+
AreaChartComponent.displayName = "AreaChart";
|
|
10687
|
+
var areaCharts_default = AreaChartComponent;
|
|
10688
|
+
var areaChartStyle = tv({
|
|
10689
|
+
slots: {
|
|
10690
|
+
base: [],
|
|
10691
|
+
color: [],
|
|
10692
|
+
axis: ["text-sm", "font-bold", "text-center", "text-body-foreground"]
|
|
10693
|
+
},
|
|
10694
|
+
variants: {
|
|
10695
|
+
color: {
|
|
10696
|
+
primary: {
|
|
10697
|
+
color: ["text-primary-main"],
|
|
10698
|
+
_colorValue: "#3F9CF2"
|
|
10699
|
+
},
|
|
10700
|
+
danger: {
|
|
10701
|
+
color: ["text-danger-main"],
|
|
10702
|
+
_colorValue: "#FF4684"
|
|
10703
|
+
}
|
|
10704
|
+
}
|
|
10705
|
+
},
|
|
10706
|
+
defaultVariants: {
|
|
10707
|
+
color: "primary"
|
|
10708
|
+
}
|
|
10709
|
+
});
|
|
10515
10710
|
// Annotate the CommonJS export names for ESM import in node:
|
|
10516
10711
|
0 && (module.exports = {
|
|
10712
|
+
AreaChart,
|
|
10517
10713
|
Avatar,
|
|
10518
10714
|
Backdrop,
|
|
10519
10715
|
Breadcrumb,
|
|
@@ -10521,6 +10717,7 @@ var fileUploadStyle = (0, import_tailwind_variants30.tv)({
|
|
|
10521
10717
|
ButtonGroup,
|
|
10522
10718
|
CheckBox,
|
|
10523
10719
|
Chip,
|
|
10720
|
+
CircularProgress,
|
|
10524
10721
|
DateTimePicker,
|
|
10525
10722
|
DefinitionTable,
|
|
10526
10723
|
FileUpload,
|
package/dist/index.mjs
CHANGED
|
@@ -1,18 +1,8 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import "./chunk-HIE2YRGA.mjs";
|
|
3
|
-
import {
|
|
4
|
-
tooltip_default
|
|
5
|
-
} from "./chunk-IL5ENWCR.mjs";
|
|
6
|
-
import "./chunk-ZMOAFSYE.mjs";
|
|
7
|
-
import "./chunk-WSIADHVC.mjs";
|
|
8
2
|
import "./chunk-MBLZYQCN.mjs";
|
|
9
3
|
import {
|
|
10
4
|
tree_default
|
|
11
5
|
} from "./chunk-WPIFIRCJ.mjs";
|
|
12
|
-
import "./chunk-RRAZM5D3.mjs";
|
|
13
|
-
import {
|
|
14
|
-
textarea_default
|
|
15
|
-
} from "./chunk-4EIGHKUO.mjs";
|
|
16
6
|
import "./chunk-LUWGOKLG.mjs";
|
|
17
7
|
import {
|
|
18
8
|
ToastProvider,
|
|
@@ -22,35 +12,49 @@ import "./chunk-ZOTHPHXA.mjs";
|
|
|
22
12
|
import {
|
|
23
13
|
toast_default
|
|
24
14
|
} from "./chunk-7W2ZI2DD.mjs";
|
|
25
|
-
import "./chunk-
|
|
15
|
+
import "./chunk-HIE2YRGA.mjs";
|
|
26
16
|
import {
|
|
27
|
-
|
|
28
|
-
} from "./chunk-
|
|
17
|
+
tooltip_default
|
|
18
|
+
} from "./chunk-IL5ENWCR.mjs";
|
|
19
|
+
import "./chunk-ZMOAFSYE.mjs";
|
|
20
|
+
import "./chunk-WSIADHVC.mjs";
|
|
29
21
|
import "./chunk-DX3KXNP6.mjs";
|
|
30
|
-
import {
|
|
31
|
-
table_default
|
|
32
|
-
} from "./chunk-4LOREVB7.mjs";
|
|
33
|
-
import "./chunk-MFRYYZPY.mjs";
|
|
34
|
-
import "./chunk-SBL6IHEW.mjs";
|
|
35
|
-
import "./chunk-MZ76AA76.mjs";
|
|
36
|
-
import {
|
|
37
|
-
skeleton_default
|
|
38
|
-
} from "./chunk-6PN3DGOE.mjs";
|
|
39
22
|
import {
|
|
40
23
|
definition_table_default
|
|
41
24
|
} from "./chunk-6TIIBU7J.mjs";
|
|
42
|
-
import "./chunk-DQRAFUDA.mjs";
|
|
43
25
|
import {
|
|
44
|
-
|
|
45
|
-
} from "./chunk-
|
|
26
|
+
table_default
|
|
27
|
+
} from "./chunk-42LXAL5Y.mjs";
|
|
28
|
+
import "./chunk-KJMJIFPS.mjs";
|
|
29
|
+
import "./chunk-SBL6IHEW.mjs";
|
|
30
|
+
import "./chunk-RRAZM5D3.mjs";
|
|
31
|
+
import {
|
|
32
|
+
textarea_default
|
|
33
|
+
} from "./chunk-4EIGHKUO.mjs";
|
|
46
34
|
import "./chunk-QCEKPS7U.mjs";
|
|
47
35
|
import {
|
|
48
36
|
select_default
|
|
49
37
|
} from "./chunk-HVKEPI7R.mjs";
|
|
38
|
+
import "./chunk-MZ76AA76.mjs";
|
|
39
|
+
import {
|
|
40
|
+
skeleton_default
|
|
41
|
+
} from "./chunk-6PN3DGOE.mjs";
|
|
50
42
|
import "./chunk-LVFI2NOH.mjs";
|
|
51
43
|
import {
|
|
52
44
|
switch_default
|
|
53
45
|
} from "./chunk-AJUQBMSV.mjs";
|
|
46
|
+
import "./chunk-3MY6LO7N.mjs";
|
|
47
|
+
import {
|
|
48
|
+
tabs_default
|
|
49
|
+
} from "./chunk-SSMMWMQC.mjs";
|
|
50
|
+
import "./chunk-TPFN22HR.mjs";
|
|
51
|
+
import {
|
|
52
|
+
radio_default
|
|
53
|
+
} from "./chunk-33LANVZV.mjs";
|
|
54
|
+
import "./chunk-DQRAFUDA.mjs";
|
|
55
|
+
import {
|
|
56
|
+
scrollArea_default
|
|
57
|
+
} from "./chunk-M37VBNB3.mjs";
|
|
54
58
|
import "./chunk-DJOG6Z35.mjs";
|
|
55
59
|
import {
|
|
56
60
|
modal_default
|
|
@@ -60,27 +64,7 @@ import {
|
|
|
60
64
|
pagination_default
|
|
61
65
|
} from "./chunk-ZSG4NGLK.mjs";
|
|
62
66
|
import "./chunk-F3HENRVM.mjs";
|
|
63
|
-
import "./chunk-TPFN22HR.mjs";
|
|
64
|
-
import {
|
|
65
|
-
radio_default
|
|
66
|
-
} from "./chunk-33LANVZV.mjs";
|
|
67
67
|
import "./chunk-RLXOHILK.mjs";
|
|
68
|
-
import "./chunk-MGEWSREV.mjs";
|
|
69
|
-
import "./chunk-75HLCORR.mjs";
|
|
70
|
-
import {
|
|
71
|
-
dateTimePicker_default
|
|
72
|
-
} from "./chunk-ECMBAKSJ.mjs";
|
|
73
|
-
import "./chunk-X6D7C7QZ.mjs";
|
|
74
|
-
import "./chunk-QJJKJYNR.mjs";
|
|
75
|
-
import "./chunk-7MVEAQ7Z.mjs";
|
|
76
|
-
import {
|
|
77
|
-
listItem_default
|
|
78
|
-
} from "./chunk-W45H2ZMW.mjs";
|
|
79
|
-
import {
|
|
80
|
-
list_default
|
|
81
|
-
} from "./chunk-UFVQPPPW.mjs";
|
|
82
|
-
import "./chunk-FWJ2ZKH6.mjs";
|
|
83
|
-
import "./chunk-P732YGHO.mjs";
|
|
84
68
|
import {
|
|
85
69
|
fileUpload_default
|
|
86
70
|
} from "./chunk-O6YBE7V3.mjs";
|
|
@@ -92,13 +76,32 @@ import "./chunk-QZ3LVYJW.mjs";
|
|
|
92
76
|
import {
|
|
93
77
|
checkbox_default
|
|
94
78
|
} from "./chunk-YLRYHUTW.mjs";
|
|
79
|
+
import "./chunk-MGEWSREV.mjs";
|
|
95
80
|
import {
|
|
96
81
|
chip_default
|
|
97
82
|
} from "./chunk-Y6XQTWB5.mjs";
|
|
98
|
-
import "./chunk-
|
|
83
|
+
import "./chunk-75HLCORR.mjs";
|
|
99
84
|
import {
|
|
100
|
-
|
|
101
|
-
} from "./chunk-
|
|
85
|
+
dateTimePicker_default
|
|
86
|
+
} from "./chunk-D7XSWNZ7.mjs";
|
|
87
|
+
import "./chunk-FWJ2ZKH6.mjs";
|
|
88
|
+
import "./chunk-X6D7C7QZ.mjs";
|
|
89
|
+
import "./chunk-P732YGHO.mjs";
|
|
90
|
+
import "./chunk-NR7MGDUE.mjs";
|
|
91
|
+
import "./chunk-7MVEAQ7Z.mjs";
|
|
92
|
+
import {
|
|
93
|
+
list_default
|
|
94
|
+
} from "./chunk-UFVQPPPW.mjs";
|
|
95
|
+
import {
|
|
96
|
+
listItem_default
|
|
97
|
+
} from "./chunk-QWIURBUH.mjs";
|
|
98
|
+
import "./chunk-3YMMVZDL.mjs";
|
|
99
|
+
import {
|
|
100
|
+
areaCharts_default
|
|
101
|
+
} from "./chunk-IET623ED.mjs";
|
|
102
|
+
import {
|
|
103
|
+
circularProgress_default
|
|
104
|
+
} from "./chunk-LTXJKWHO.mjs";
|
|
102
105
|
import "./chunk-SE5TU755.mjs";
|
|
103
106
|
import {
|
|
104
107
|
backdrop_default
|
|
@@ -106,7 +109,7 @@ import {
|
|
|
106
109
|
import "./chunk-KYIODWXL.mjs";
|
|
107
110
|
import {
|
|
108
111
|
breadcrumb_default
|
|
109
|
-
} from "./chunk-
|
|
112
|
+
} from "./chunk-L2VA3ACH.mjs";
|
|
110
113
|
import "./chunk-MY5U63QO.mjs";
|
|
111
114
|
import {
|
|
112
115
|
button_group_default
|
|
@@ -120,23 +123,28 @@ import {
|
|
|
120
123
|
import "./chunk-6WSACUIB.mjs";
|
|
121
124
|
import "./chunk-LXHUO6VM.mjs";
|
|
122
125
|
import "./chunk-6PNKRBUT.mjs";
|
|
123
|
-
import {
|
|
124
|
-
text_button_default
|
|
125
|
-
} from "./chunk-2PKM7SLZ.mjs";
|
|
126
126
|
import "./chunk-ZYIIXWVY.mjs";
|
|
127
127
|
import {
|
|
128
128
|
Icon_default,
|
|
129
129
|
iconTemplate
|
|
130
130
|
} from "./chunk-2TKEWFGH.mjs";
|
|
131
|
-
import
|
|
131
|
+
import {
|
|
132
|
+
text_button_default
|
|
133
|
+
} from "./chunk-2PKM7SLZ.mjs";
|
|
132
134
|
import "./chunk-27Y6K5NK.mjs";
|
|
133
135
|
import "./chunk-E3G5QXSH.mjs";
|
|
136
|
+
import "./chunk-7DLOYKVC.mjs";
|
|
137
|
+
import {
|
|
138
|
+
avatar_default
|
|
139
|
+
} from "./chunk-SP3JVQY3.mjs";
|
|
140
|
+
import "./chunk-2SDYFOZL.mjs";
|
|
134
141
|
import {
|
|
135
142
|
deepnoidUi,
|
|
136
143
|
tv
|
|
137
144
|
} from "./chunk-4ZJFD3L3.mjs";
|
|
138
145
|
import "./chunk-AC6TWLRT.mjs";
|
|
139
146
|
export {
|
|
147
|
+
areaCharts_default as AreaChart,
|
|
140
148
|
avatar_default as Avatar,
|
|
141
149
|
backdrop_default as Backdrop,
|
|
142
150
|
breadcrumb_default as Breadcrumb,
|
|
@@ -144,6 +152,7 @@ export {
|
|
|
144
152
|
button_group_default as ButtonGroup,
|
|
145
153
|
checkbox_default as CheckBox,
|
|
146
154
|
chip_default as Chip,
|
|
155
|
+
circularProgress_default as CircularProgress,
|
|
147
156
|
dateTimePicker_default as DateTimePicker,
|
|
148
157
|
definition_table_default as DefinitionTable,
|
|
149
158
|
fileUpload_default as FileUpload,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deepnoid/ui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.43",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"exports": {
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
"framer-motion": "^12.10.0",
|
|
29
29
|
"react": "^19.1.0",
|
|
30
30
|
"react-dom": "^19.1.0",
|
|
31
|
+
"recharts": "^2.15.3",
|
|
31
32
|
"tailwind-variants": "^1.0.0"
|
|
32
33
|
},
|
|
33
34
|
"devDependencies": {
|
|
@@ -47,9 +48,9 @@
|
|
|
47
48
|
"typescript": "^5.8.2"
|
|
48
49
|
},
|
|
49
50
|
"peerDependencies": {
|
|
51
|
+
"framer-motion": ">=12.10.0",
|
|
50
52
|
"react": ">=19.1.0",
|
|
51
|
-
"react-dom": ">=19.1.0"
|
|
52
|
-
"framer-motion": ">=12.10.0"
|
|
53
|
+
"react-dom": ">=19.1.0"
|
|
53
54
|
},
|
|
54
55
|
"publishConfig": {
|
|
55
56
|
"access": "public",
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import {
|
|
3
|
-
text_button_default
|
|
4
|
-
} from "./chunk-2PKM7SLZ.mjs";
|
|
5
2
|
import {
|
|
6
3
|
Icon_default
|
|
7
4
|
} from "./chunk-2TKEWFGH.mjs";
|
|
5
|
+
import {
|
|
6
|
+
text_button_default
|
|
7
|
+
} from "./chunk-2PKM7SLZ.mjs";
|
|
8
8
|
import {
|
|
9
9
|
tv
|
|
10
10
|
} from "./chunk-4ZJFD3L3.mjs";
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import {
|
|
3
|
-
avatar_default
|
|
4
|
-
} from "./chunk-SP3JVQY3.mjs";
|
|
5
2
|
import {
|
|
6
3
|
Icon_default
|
|
7
4
|
} from "./chunk-2TKEWFGH.mjs";
|
|
8
5
|
import {
|
|
9
6
|
mapPropsVariants
|
|
10
7
|
} from "./chunk-E3G5QXSH.mjs";
|
|
8
|
+
import {
|
|
9
|
+
avatar_default
|
|
10
|
+
} from "./chunk-SP3JVQY3.mjs";
|
|
11
11
|
import {
|
|
12
12
|
tv
|
|
13
13
|
} from "./chunk-4ZJFD3L3.mjs";
|