@deepnoid/ui 0.1.136 → 0.1.138
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 -176
- package/dist/{chunk-4URRLVNR.mjs → chunk-4JOD47VZ.mjs} +1 -1
- package/dist/{chunk-IUNZZ77V.mjs → chunk-VRSRT4DM.mjs} +22 -39
- package/dist/components/pagination/index.js +1 -1
- package/dist/components/pagination/index.mjs +1 -1
- package/dist/components/pagination/pagination.js +1 -1
- package/dist/components/pagination/pagination.mjs +1 -1
- package/dist/components/table/index.d.mts +1 -1
- package/dist/components/table/index.d.ts +1 -1
- package/dist/components/table/index.js +607 -690
- package/dist/components/table/index.mjs +2 -4
- 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 +598 -681
- package/dist/components/table/table-body.mjs +2 -4
- package/dist/components/table/table-head.d.mts +1 -2
- package/dist/components/table/table-head.d.ts +1 -2
- package/dist/components/table/table-head.js +598 -681
- package/dist/components/table/table-head.mjs +2 -4
- package/dist/components/table/table.d.mts +8 -2
- package/dist/components/table/table.d.ts +8 -2
- package/dist/components/table/table.js +598 -681
- package/dist/components/table/table.mjs +2 -4
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +271 -285
- package/dist/index.mjs +24 -24
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -7847,7 +7847,7 @@ var textareaStyle = (0, import_tailwind_variants13.tv)({
|
|
|
7847
7847
|
|
|
7848
7848
|
// src/components/table/table.tsx
|
|
7849
7849
|
var import_react17 = require("react");
|
|
7850
|
-
var
|
|
7850
|
+
var import_tailwind_variants17 = require("tailwind-variants");
|
|
7851
7851
|
|
|
7852
7852
|
// src/components/checkbox/checkbox.tsx
|
|
7853
7853
|
var import_react14 = require("react");
|
|
@@ -8056,77 +8056,8 @@ var checkboxStyle = tv({
|
|
|
8056
8056
|
}
|
|
8057
8057
|
});
|
|
8058
8058
|
|
|
8059
|
-
// src/components/skeleton/skeleton.tsx
|
|
8060
|
-
var import_tailwind_variants15 = require("tailwind-variants");
|
|
8061
|
-
var import_jsx_runtime17 = require("react/jsx-runtime");
|
|
8062
|
-
var Skeleton = ({ color = "primary", className, speed = "normal", rounded = "md" }) => {
|
|
8063
|
-
const speedMap = {
|
|
8064
|
-
fast: "0.7s",
|
|
8065
|
-
normal: "1.2s",
|
|
8066
|
-
slow: "2s"
|
|
8067
|
-
};
|
|
8068
|
-
const slots = skeletonStyle();
|
|
8069
|
-
return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
8070
|
-
"div",
|
|
8071
|
-
{
|
|
8072
|
-
className: clsx(slots.base({ color, rounded }), className),
|
|
8073
|
-
style: {
|
|
8074
|
-
"--shimmer-duration": speedMap[speed]
|
|
8075
|
-
},
|
|
8076
|
-
children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("style", { children: `@keyframes shimmer {
|
|
8077
|
-
100% {
|
|
8078
|
-
transform: translateX(100%);
|
|
8079
|
-
}
|
|
8080
|
-
}
|
|
8081
|
-
.skeleton-shimmer::before {
|
|
8082
|
-
animation: shimmer var(--shimmer-duration) infinite linear;
|
|
8083
|
-
}
|
|
8084
|
-
` })
|
|
8085
|
-
}
|
|
8086
|
-
);
|
|
8087
|
-
};
|
|
8088
|
-
Skeleton.displayName = "Skeleton";
|
|
8089
|
-
var skeleton_default = Skeleton;
|
|
8090
|
-
var skeletonStyle = (0, import_tailwind_variants15.tv)({
|
|
8091
|
-
slots: {
|
|
8092
|
-
base: [
|
|
8093
|
-
"relative",
|
|
8094
|
-
"overflow-hidden",
|
|
8095
|
-
"w-full",
|
|
8096
|
-
"h-[18px]",
|
|
8097
|
-
"skeleton-shimmer",
|
|
8098
|
-
"before:absolute",
|
|
8099
|
-
"before:inset-0",
|
|
8100
|
-
"before:-translate-x-full",
|
|
8101
|
-
"before:bg-gradient-to-r",
|
|
8102
|
-
"before:from-transparent",
|
|
8103
|
-
"before:via-white/40",
|
|
8104
|
-
"before:to-transparent",
|
|
8105
|
-
"before:content-['']"
|
|
8106
|
-
]
|
|
8107
|
-
},
|
|
8108
|
-
variants: {
|
|
8109
|
-
color: {
|
|
8110
|
-
primary: { base: "bg-primary-soft" },
|
|
8111
|
-
secondary: { base: "bg-secondary-soft" },
|
|
8112
|
-
neutral: { base: "bg-neutral-soft" }
|
|
8113
|
-
},
|
|
8114
|
-
rounded: {
|
|
8115
|
-
sm: { base: "rounded-sm" },
|
|
8116
|
-
md: { base: "rounded-md" },
|
|
8117
|
-
lg: { base: "rounded-lg" },
|
|
8118
|
-
xl: { base: "rounded-xl" },
|
|
8119
|
-
full: { base: "rounded-full" }
|
|
8120
|
-
}
|
|
8121
|
-
},
|
|
8122
|
-
defaultVariants: {
|
|
8123
|
-
color: "primary",
|
|
8124
|
-
rounded: "md"
|
|
8125
|
-
}
|
|
8126
|
-
});
|
|
8127
|
-
|
|
8128
8059
|
// src/components/table/table-head.tsx
|
|
8129
|
-
var
|
|
8060
|
+
var import_jsx_runtime17 = require("react/jsx-runtime");
|
|
8130
8061
|
var TableHead = ({
|
|
8131
8062
|
slots,
|
|
8132
8063
|
columns,
|
|
@@ -8134,11 +8065,10 @@ var TableHead = ({
|
|
|
8134
8065
|
size,
|
|
8135
8066
|
rowCheckbox = false,
|
|
8136
8067
|
hasCheckedRows,
|
|
8137
|
-
isLoading = false,
|
|
8138
8068
|
classNames,
|
|
8139
8069
|
onCheckAll
|
|
8140
8070
|
}) => {
|
|
8141
|
-
const renderTh = (content, key, column, isCheckbox) => /* @__PURE__ */ (0,
|
|
8071
|
+
const renderTh = (content, key, column, isCheckbox) => /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
8142
8072
|
"th",
|
|
8143
8073
|
{
|
|
8144
8074
|
className: clsx(slots.th({ class: classNames == null ? void 0 : classNames.th }), column == null ? void 0 : column.className),
|
|
@@ -8154,16 +8084,10 @@ var TableHead = ({
|
|
|
8154
8084
|
},
|
|
8155
8085
|
key
|
|
8156
8086
|
);
|
|
8157
|
-
|
|
8158
|
-
columns.map(
|
|
8159
|
-
(column, idx) => renderTh(/* @__PURE__ */ (0, import_jsx_runtime18.jsx)(skeleton_default, { color, rounded: "lg", speed: "fast" }), `skeleton-${idx}`, column)
|
|
8160
|
-
),
|
|
8161
|
-
rowCheckbox && renderTh(/* @__PURE__ */ (0, import_jsx_runtime18.jsx)(skeleton_default, { color, rounded: "lg", speed: "fast" }), "checkbox-skeleton", void 0, true)
|
|
8162
|
-
] }) });
|
|
8163
|
-
const renderContentRow = () => /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("thead", { className: slots.thead({ class: classNames == null ? void 0 : classNames.thead }), children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("tr", { className: slots.tr({ class: classNames == null ? void 0 : classNames.tr }), children: [
|
|
8087
|
+
return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("thead", { className: slots.thead({ class: classNames == null ? void 0 : classNames.thead }), children: /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("tr", { className: slots.tr({ class: classNames == null ? void 0 : classNames.tr }), children: [
|
|
8164
8088
|
columns.map((column, idx) => renderTh(column.headerName, `${column.field}-${idx}`, column)),
|
|
8165
8089
|
rowCheckbox && renderTh(
|
|
8166
|
-
/* @__PURE__ */ (0,
|
|
8090
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { "data-checkbox": true, children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
8167
8091
|
checkbox_default,
|
|
8168
8092
|
{
|
|
8169
8093
|
size,
|
|
@@ -8176,12 +8100,11 @@ var TableHead = ({
|
|
|
8176
8100
|
true
|
|
8177
8101
|
)
|
|
8178
8102
|
] }) });
|
|
8179
|
-
return isLoading ? renderSkeletonRow() : renderContentRow();
|
|
8180
8103
|
};
|
|
8181
8104
|
var table_head_default = TableHead;
|
|
8182
8105
|
|
|
8183
8106
|
// src/components/table/table-body.tsx
|
|
8184
|
-
var
|
|
8107
|
+
var import_jsx_runtime18 = require("react/jsx-runtime");
|
|
8185
8108
|
var TableBody = ({
|
|
8186
8109
|
slots,
|
|
8187
8110
|
rows,
|
|
@@ -8194,28 +8117,20 @@ var TableBody = ({
|
|
|
8194
8117
|
onRowClick,
|
|
8195
8118
|
isLoading = false,
|
|
8196
8119
|
emptyContent,
|
|
8197
|
-
skeletonRow,
|
|
8198
8120
|
classNames,
|
|
8199
8121
|
className
|
|
8200
8122
|
}) => {
|
|
8201
|
-
const
|
|
8202
|
-
return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("td", { className: slots.td({ class: classNames == null ? void 0 : classNames.td }), style: column ? getCellStyle(column) : {}, children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(skeleton_default, { color, className: "h-full w-full", rounded: "lg", speed: "fast" }) }, key);
|
|
8203
|
-
};
|
|
8204
|
-
const renderCheckboxCell = (rowId, rowIndex) => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
8123
|
+
const renderCheckboxCell = (rowId, rowIndex) => /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
8205
8124
|
"td",
|
|
8206
8125
|
{
|
|
8207
8126
|
className: clsx(slots.td({ class: classNames == null ? void 0 : classNames.td }), "text-center"),
|
|
8208
8127
|
style: { width: "40px", minWidth: "40px", textAlign: "center" },
|
|
8209
|
-
children: /* @__PURE__ */ (0,
|
|
8128
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { "data-checkbox": true, children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(checkbox_default, { size, checked: checkedRows.has(rowId), onChange: (e) => onCheckRow(rowId, e.target.checked) }) })
|
|
8210
8129
|
},
|
|
8211
8130
|
`checkbox-${rowId}-${rowIndex}`
|
|
8212
8131
|
);
|
|
8213
|
-
const
|
|
8214
|
-
|
|
8215
|
-
rowCheckbox && renderTdSkeleton(`skeleton-checkbox-${rowIndex}`)
|
|
8216
|
-
] }, `skeleton-${rowIndex}`);
|
|
8217
|
-
const renderEmptyRow = () => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("tr", { className: slots.tr({ class: classNames == null ? void 0 : classNames.tr }), children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("td", { colSpan: columns.length + (rowCheckbox ? 1 : 0), className: slots.empty({ class: classNames == null ? void 0 : classNames.empty }), children: emptyContent }) });
|
|
8218
|
-
const renderDataRow = (row, rowIndex) => /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(
|
|
8132
|
+
const renderEmptyRow = () => /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("tr", { className: slots.tr({ class: classNames == null ? void 0 : classNames.tr }), children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("td", { colSpan: columns.length + (rowCheckbox ? 1 : 0), className: slots.empty({ class: classNames == null ? void 0 : classNames.empty }), children: emptyContent }) });
|
|
8133
|
+
const renderDataRow = (row, rowIndex) => /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(
|
|
8219
8134
|
"tr",
|
|
8220
8135
|
{
|
|
8221
8136
|
className: slots.tr({ class: classNames == null ? void 0 : classNames.tr }),
|
|
@@ -8226,7 +8141,7 @@ var TableBody = ({
|
|
|
8226
8141
|
const value = row[column.field];
|
|
8227
8142
|
const formattedValue = ((_a = column.valueFormatter) == null ? void 0 : _a.call(column, { value, field: column.field })) || value;
|
|
8228
8143
|
const content = column.renderCell ? column.renderCell({ id: row.id, field: column.field, value, formattedValue, row }) : formattedValue;
|
|
8229
|
-
return /* @__PURE__ */ (0,
|
|
8144
|
+
return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
8230
8145
|
"td",
|
|
8231
8146
|
{
|
|
8232
8147
|
className: clsx(slots.td(), classNames == null ? void 0 : classNames.td, column.className),
|
|
@@ -8241,12 +8156,18 @@ var TableBody = ({
|
|
|
8241
8156
|
},
|
|
8242
8157
|
`${row.id}-${rowIndex}`
|
|
8243
8158
|
);
|
|
8244
|
-
|
|
8245
|
-
|
|
8246
|
-
|
|
8247
|
-
|
|
8248
|
-
|
|
8249
|
-
|
|
8159
|
+
return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
8160
|
+
"tbody",
|
|
8161
|
+
{
|
|
8162
|
+
className: clsx(
|
|
8163
|
+
slots.tbody({ class: classNames == null ? void 0 : classNames.tbody }),
|
|
8164
|
+
className,
|
|
8165
|
+
"transition-all duration-200 ease-in-out",
|
|
8166
|
+
isLoading && slots.tbodyLoading({ class: classNames == null ? void 0 : classNames.tbodyLoading })
|
|
8167
|
+
),
|
|
8168
|
+
children: !rows.length && emptyContent ? renderEmptyRow() : rows.map((row, index) => renderDataRow(row, index))
|
|
8169
|
+
}
|
|
8170
|
+
);
|
|
8250
8171
|
};
|
|
8251
8172
|
var table_body_default = TableBody;
|
|
8252
8173
|
|
|
@@ -8279,7 +8200,7 @@ var usePagination = ({ currentPage, totalPage, groupSize, handleChangePage }) =>
|
|
|
8279
8200
|
var usePagination_default = usePagination;
|
|
8280
8201
|
|
|
8281
8202
|
// src/components/pagination/pagination.tsx
|
|
8282
|
-
var
|
|
8203
|
+
var import_jsx_runtime19 = require("react/jsx-runtime");
|
|
8283
8204
|
var Pagination = (0, import_react16.forwardRef)((originalProps, ref) => {
|
|
8284
8205
|
const [props, variantProps] = mapPropsVariants(originalProps, paginationStyle.variantKeys);
|
|
8285
8206
|
const {
|
|
@@ -8289,7 +8210,7 @@ var Pagination = (0, import_react16.forwardRef)((originalProps, ref) => {
|
|
|
8289
8210
|
totalPage,
|
|
8290
8211
|
showPageNumber = true,
|
|
8291
8212
|
showPageLabel,
|
|
8292
|
-
showFirstLastButtons,
|
|
8213
|
+
showFirstLastButtons = true,
|
|
8293
8214
|
handleChangePage,
|
|
8294
8215
|
variant,
|
|
8295
8216
|
size
|
|
@@ -8310,29 +8231,29 @@ var Pagination = (0, import_react16.forwardRef)((originalProps, ref) => {
|
|
|
8310
8231
|
}
|
|
8311
8232
|
}
|
|
8312
8233
|
};
|
|
8313
|
-
return /* @__PURE__ */ (0,
|
|
8314
|
-
/* @__PURE__ */ (0,
|
|
8315
|
-
showFirstLastButtons && /* @__PURE__ */ (0,
|
|
8234
|
+
return /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: slots.base({ class: classNames == null ? void 0 : classNames.base }), ref, children: [
|
|
8235
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: slots.wrapper({ class: classNames == null ? void 0 : classNames.wrapper }), children: [
|
|
8236
|
+
showFirstLastButtons && /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
8316
8237
|
"div",
|
|
8317
8238
|
{
|
|
8318
8239
|
"aria-label": "firstPage",
|
|
8319
8240
|
"data-is-active": currentPage > 1,
|
|
8320
8241
|
className: slots.icon({ class: classNames == null ? void 0 : classNames.icon }),
|
|
8321
8242
|
onClick: currentPage > 1 ? handleClickMovePage(1) : void 0,
|
|
8322
|
-
children: /* @__PURE__ */ (0,
|
|
8243
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(Icon_default, { name: "left-double-chevron", size })
|
|
8323
8244
|
}
|
|
8324
8245
|
),
|
|
8325
|
-
/* @__PURE__ */ (0,
|
|
8246
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
8326
8247
|
"div",
|
|
8327
8248
|
{
|
|
8328
8249
|
"aria-label": "prevPage",
|
|
8329
8250
|
"data-is-active": currentPage > 1,
|
|
8330
8251
|
className: slots.icon({ class: classNames == null ? void 0 : classNames.icon }),
|
|
8331
8252
|
onClick: currentPage > 1 ? handleClickMovePage(currentPage - 1) : void 0,
|
|
8332
|
-
children: /* @__PURE__ */ (0,
|
|
8253
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(Icon_default, { name: "left-chevron", size })
|
|
8333
8254
|
}
|
|
8334
8255
|
),
|
|
8335
|
-
showPageNumber && pageList.map((page, index) => /* @__PURE__ */ (0,
|
|
8256
|
+
showPageNumber && pageList.map((page, index) => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
8336
8257
|
"div",
|
|
8337
8258
|
{
|
|
8338
8259
|
className: slots.button({ class: classNames == null ? void 0 : classNames.button }),
|
|
@@ -8342,29 +8263,29 @@ var Pagination = (0, import_react16.forwardRef)((originalProps, ref) => {
|
|
|
8342
8263
|
},
|
|
8343
8264
|
index
|
|
8344
8265
|
)),
|
|
8345
|
-
/* @__PURE__ */ (0,
|
|
8266
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
8346
8267
|
"div",
|
|
8347
8268
|
{
|
|
8348
8269
|
"aria-label": "nextPage",
|
|
8349
8270
|
"data-is-active": currentPage < totalPage,
|
|
8350
8271
|
className: slots.icon({ class: classNames == null ? void 0 : classNames.icon }),
|
|
8351
8272
|
onClick: currentPage < totalPage ? handleClickMovePage(currentPage + 1) : void 0,
|
|
8352
|
-
children: /* @__PURE__ */ (0,
|
|
8273
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(Icon_default, { name: "right-chevron", size })
|
|
8353
8274
|
}
|
|
8354
8275
|
),
|
|
8355
|
-
showFirstLastButtons && /* @__PURE__ */ (0,
|
|
8276
|
+
showFirstLastButtons && /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
8356
8277
|
"div",
|
|
8357
8278
|
{
|
|
8358
8279
|
"aria-label": "lastPage",
|
|
8359
8280
|
"data-is-active": currentPage < totalPage,
|
|
8360
8281
|
className: slots.icon({ class: classNames == null ? void 0 : classNames.icon }),
|
|
8361
8282
|
onClick: currentPage < totalPage ? handleClickMovePage(totalPage) : void 0,
|
|
8362
|
-
children: /* @__PURE__ */ (0,
|
|
8283
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(Icon_default, { name: "right-double-chevron", size })
|
|
8363
8284
|
}
|
|
8364
8285
|
)
|
|
8365
8286
|
] }),
|
|
8366
|
-
showPageLabel && /* @__PURE__ */ (0,
|
|
8367
|
-
/* @__PURE__ */ (0,
|
|
8287
|
+
showPageLabel && /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("span", { className: slots.label({ class: classNames == null ? void 0 : classNames.label }), children: [
|
|
8288
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
8368
8289
|
input_default,
|
|
8369
8290
|
{
|
|
8370
8291
|
variant: variant === "underline" ? "outline" : variant,
|
|
@@ -8619,14 +8540,14 @@ var paginationStyle = tv(
|
|
|
8619
8540
|
);
|
|
8620
8541
|
|
|
8621
8542
|
// src/components/scroll/scrollArea.tsx
|
|
8622
|
-
var
|
|
8623
|
-
var
|
|
8543
|
+
var import_tailwind_variants16 = require("tailwind-variants");
|
|
8544
|
+
var import_jsx_runtime20 = require("react/jsx-runtime");
|
|
8624
8545
|
var ScrollArea = ({ children, className, direction, size }) => {
|
|
8625
|
-
return /* @__PURE__ */ (0,
|
|
8546
|
+
return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: clsx(scrollAreaStyle({ direction, size }), className), children });
|
|
8626
8547
|
};
|
|
8627
8548
|
ScrollArea.displayName = "ScrollArea";
|
|
8628
8549
|
var scrollArea_default = ScrollArea;
|
|
8629
|
-
var scrollAreaStyle = (0,
|
|
8550
|
+
var scrollAreaStyle = (0, import_tailwind_variants16.tv)({
|
|
8630
8551
|
base: [
|
|
8631
8552
|
"h-full",
|
|
8632
8553
|
"x-full",
|
|
@@ -8655,7 +8576,7 @@ var scrollAreaStyle = (0, import_tailwind_variants17.tv)({
|
|
|
8655
8576
|
});
|
|
8656
8577
|
|
|
8657
8578
|
// src/components/table/table.tsx
|
|
8658
|
-
var
|
|
8579
|
+
var import_jsx_runtime21 = require("react/jsx-runtime");
|
|
8659
8580
|
var Table = (0, import_react17.forwardRef)((originalProps, ref) => {
|
|
8660
8581
|
const [props, variantProps] = mapPropsVariants(originalProps, tableStyle.variantKeys);
|
|
8661
8582
|
const {
|
|
@@ -8671,13 +8592,12 @@ var Table = (0, import_react17.forwardRef)((originalProps, ref) => {
|
|
|
8671
8592
|
variant,
|
|
8672
8593
|
color,
|
|
8673
8594
|
size,
|
|
8674
|
-
skeletonRow,
|
|
8675
8595
|
checkedRows,
|
|
8676
8596
|
onCheckedRowsChange,
|
|
8677
8597
|
onRowClick
|
|
8678
8598
|
} = { ...props, ...variantProps };
|
|
8679
8599
|
const { page = 1, perPage = 15 } = pagination || {};
|
|
8680
|
-
const showPagination = pagination && totalData > 0
|
|
8600
|
+
const showPagination = pagination && totalData > 0;
|
|
8681
8601
|
const [checkedRowIds, setCheckedRowIds] = (0, import_react17.useState)(new Set(checkedRows == null ? void 0 : checkedRows.map((row) => row.id)));
|
|
8682
8602
|
const tableMinWidth = (0, import_react17.useMemo)(() => {
|
|
8683
8603
|
const columnsWidth = columns.reduce((total, column) => {
|
|
@@ -8730,8 +8650,8 @@ var Table = (0, import_react17.forwardRef)((originalProps, ref) => {
|
|
|
8730
8650
|
() => tableStyle({ ...variantProps, rowClickable: typeof onRowClick === "function" }),
|
|
8731
8651
|
[variantProps, onRowClick]
|
|
8732
8652
|
);
|
|
8733
|
-
return /* @__PURE__ */ (0,
|
|
8734
|
-
/* @__PURE__ */ (0,
|
|
8653
|
+
return /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { "data-table": "base", className: slots.base({ class: classNames == null ? void 0 : classNames.base }), children: [
|
|
8654
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)(scrollArea_default, { direction: "x", size: size === "xl" ? "lg" : size, children: /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(
|
|
8735
8655
|
"table",
|
|
8736
8656
|
{
|
|
8737
8657
|
className: slots.table({ class: classNames == null ? void 0 : classNames.table }),
|
|
@@ -8741,7 +8661,7 @@ var Table = (0, import_react17.forwardRef)((originalProps, ref) => {
|
|
|
8741
8661
|
minWidth: `${tableMinWidth}px`
|
|
8742
8662
|
},
|
|
8743
8663
|
children: [
|
|
8744
|
-
/* @__PURE__ */ (0,
|
|
8664
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
8745
8665
|
table_head_default,
|
|
8746
8666
|
{
|
|
8747
8667
|
columns,
|
|
@@ -8750,12 +8670,11 @@ var Table = (0, import_react17.forwardRef)((originalProps, ref) => {
|
|
|
8750
8670
|
rowCheckbox,
|
|
8751
8671
|
hasCheckedRows: rows.length > 0 && rows.every((row) => checkedRowIds.has(row.id)),
|
|
8752
8672
|
onCheckAll: handleAllRowCheck,
|
|
8753
|
-
isLoading,
|
|
8754
8673
|
classNames,
|
|
8755
8674
|
slots
|
|
8756
8675
|
}
|
|
8757
8676
|
),
|
|
8758
|
-
/* @__PURE__ */ (0,
|
|
8677
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
8759
8678
|
table_body_default,
|
|
8760
8679
|
{
|
|
8761
8680
|
slots,
|
|
@@ -8769,18 +8688,14 @@ var Table = (0, import_react17.forwardRef)((originalProps, ref) => {
|
|
|
8769
8688
|
onRowClick: handleRowClick,
|
|
8770
8689
|
isLoading,
|
|
8771
8690
|
emptyContent,
|
|
8772
|
-
|
|
8773
|
-
className: clsx(
|
|
8774
|
-
"transition-all duration-150 ease-out",
|
|
8775
|
-
isLoading ? "-translate-y-2 opacity-0" : "translate-y-0 opacity-100",
|
|
8776
|
-
classNames
|
|
8777
|
-
)
|
|
8691
|
+
classNames
|
|
8778
8692
|
}
|
|
8779
|
-
)
|
|
8693
|
+
),
|
|
8694
|
+
isLoading && /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: slots.overlay({ class: classNames == null ? void 0 : classNames.overlay }) })
|
|
8780
8695
|
]
|
|
8781
8696
|
}
|
|
8782
8697
|
) }),
|
|
8783
|
-
showPagination && /* @__PURE__ */ (0,
|
|
8698
|
+
showPagination && /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "flex justify-center", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
8784
8699
|
pagination_default,
|
|
8785
8700
|
{
|
|
8786
8701
|
variant: variant === "outline" ? "solid" : variant,
|
|
@@ -8796,7 +8711,7 @@ var Table = (0, import_react17.forwardRef)((originalProps, ref) => {
|
|
|
8796
8711
|
});
|
|
8797
8712
|
Table.displayName = "Table";
|
|
8798
8713
|
var table_default = Table;
|
|
8799
|
-
var tableStyle = (0,
|
|
8714
|
+
var tableStyle = (0, import_tailwind_variants17.tv)({
|
|
8800
8715
|
slots: {
|
|
8801
8716
|
base: ["flex", "flex-col", "relative", "select-none", "gap-[20px]"],
|
|
8802
8717
|
table: ["w-full", "h-auto"],
|
|
@@ -8834,7 +8749,9 @@ var tableStyle = (0, import_tailwind_variants18.tv)({
|
|
|
8834
8749
|
"[&>*]:z-1",
|
|
8835
8750
|
"[&>*]:relative",
|
|
8836
8751
|
"align-middle"
|
|
8837
|
-
]
|
|
8752
|
+
],
|
|
8753
|
+
tbodyLoading: [],
|
|
8754
|
+
overlay: []
|
|
8838
8755
|
},
|
|
8839
8756
|
variants: {
|
|
8840
8757
|
variant: {
|
|
@@ -9035,7 +8952,7 @@ var getCellStyle = (column) => {
|
|
|
9035
8952
|
|
|
9036
8953
|
// src/components/table/definition-table.tsx
|
|
9037
8954
|
var import_react18 = require("react");
|
|
9038
|
-
var
|
|
8955
|
+
var import_jsx_runtime22 = require("react/jsx-runtime");
|
|
9039
8956
|
var DEFAULT_CELL_CLASSES = "px-[10px] py-[8px] text-md border-r border-neutral-light h-[50px]";
|
|
9040
8957
|
var FIRST_CELL_WIDTH_CLASS = "w-[120px] font-bold text-md text-body-foreground";
|
|
9041
8958
|
var renderColGroup = (rows) => {
|
|
@@ -9061,9 +8978,9 @@ var renderColGroup = (rows) => {
|
|
|
9061
8978
|
});
|
|
9062
8979
|
const cols = [];
|
|
9063
8980
|
for (let i = 0; i < maxCols; i++) {
|
|
9064
|
-
cols.push(/* @__PURE__ */ (0,
|
|
8981
|
+
cols.push(/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("col", { style: { width: colWidths[i] || "auto" } }, i));
|
|
9065
8982
|
}
|
|
9066
|
-
return /* @__PURE__ */ (0,
|
|
8983
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("colgroup", { children: cols });
|
|
9067
8984
|
};
|
|
9068
8985
|
var getHighlightColumnIndex = (rows, key) => {
|
|
9069
8986
|
if (!key) return null;
|
|
@@ -9083,7 +9000,7 @@ var DefinitionTableRow = ({
|
|
|
9083
9000
|
rowIndex = 0,
|
|
9084
9001
|
rowCount = 0,
|
|
9085
9002
|
highlightColumnIndex
|
|
9086
|
-
}) => /* @__PURE__ */ (0,
|
|
9003
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("tr", { className: clsx("border-neutral-light border-b", className), children: cells.map((cell, colIndex) => {
|
|
9087
9004
|
const isFirstCell = colIndex === 0;
|
|
9088
9005
|
const isHighlighted = colIndex === highlightColumnIndex;
|
|
9089
9006
|
const isFirstRow = rowIndex === 0;
|
|
@@ -9115,7 +9032,7 @@ var DefinitionTableRow = ({
|
|
|
9115
9032
|
} else {
|
|
9116
9033
|
cellStyle = { width: "100%" };
|
|
9117
9034
|
}
|
|
9118
|
-
return /* @__PURE__ */ (0,
|
|
9035
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
9119
9036
|
"td",
|
|
9120
9037
|
{
|
|
9121
9038
|
className: combinedClassName,
|
|
@@ -9134,10 +9051,10 @@ var DefinitionTable = (0, import_react18.forwardRef)(
|
|
|
9134
9051
|
() => getHighlightColumnIndex(rows, highlightColumnKey),
|
|
9135
9052
|
[rows, highlightColumnKey]
|
|
9136
9053
|
);
|
|
9137
|
-
return /* @__PURE__ */ (0,
|
|
9138
|
-
/* @__PURE__ */ (0,
|
|
9054
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)("div", { ref, className: clsx(slots.base(), classNames == null ? void 0 : classNames.base), children: [
|
|
9055
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsxs)("table", { className: clsx(slots.table(), classNames == null ? void 0 : classNames.table), children: [
|
|
9139
9056
|
renderColGroup(rows),
|
|
9140
|
-
/* @__PURE__ */ (0,
|
|
9057
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("tbody", { children: rows.map((row, i) => /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
9141
9058
|
DefinitionTableRow,
|
|
9142
9059
|
{
|
|
9143
9060
|
...row,
|
|
@@ -9149,7 +9066,7 @@ var DefinitionTable = (0, import_react18.forwardRef)(
|
|
|
9149
9066
|
i
|
|
9150
9067
|
)) })
|
|
9151
9068
|
] }),
|
|
9152
|
-
footer && /* @__PURE__ */ (0,
|
|
9069
|
+
footer && /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("div", { children: footer })
|
|
9153
9070
|
] });
|
|
9154
9071
|
}
|
|
9155
9072
|
);
|
|
@@ -9165,7 +9082,7 @@ var DefinitionTableStyle = tv({
|
|
|
9165
9082
|
// src/components/select/select.tsx
|
|
9166
9083
|
var import_react19 = require("react");
|
|
9167
9084
|
var import_react_dom = require("react-dom");
|
|
9168
|
-
var
|
|
9085
|
+
var import_jsx_runtime23 = require("react/jsx-runtime");
|
|
9169
9086
|
var Select = (0, import_react19.forwardRef)((originalProps, ref) => {
|
|
9170
9087
|
var _a, _b;
|
|
9171
9088
|
const [props, variantProps] = mapPropsVariants(originalProps, select.variantKeys);
|
|
@@ -9261,7 +9178,7 @@ var Select = (0, import_react19.forwardRef)((originalProps, ref) => {
|
|
|
9261
9178
|
const renderOptions = () => {
|
|
9262
9179
|
if (!isVisible) return null;
|
|
9263
9180
|
return (0, import_react_dom.createPortal)(
|
|
9264
|
-
/* @__PURE__ */ (0,
|
|
9181
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
9265
9182
|
"div",
|
|
9266
9183
|
{
|
|
9267
9184
|
ref: optionWrapperRef,
|
|
@@ -9279,7 +9196,7 @@ var Select = (0, import_react19.forwardRef)((originalProps, ref) => {
|
|
|
9279
9196
|
},
|
|
9280
9197
|
children: options.map((option) => {
|
|
9281
9198
|
const isSelected = selectedOptions.some((o) => o.value === option.value);
|
|
9282
|
-
return /* @__PURE__ */ (0,
|
|
9199
|
+
return /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(
|
|
9283
9200
|
"div",
|
|
9284
9201
|
{
|
|
9285
9202
|
role: "option",
|
|
@@ -9289,9 +9206,9 @@ var Select = (0, import_react19.forwardRef)((originalProps, ref) => {
|
|
|
9289
9206
|
optionIconPlacement === "end" ? "justify-between" : ""
|
|
9290
9207
|
),
|
|
9291
9208
|
children: [
|
|
9292
|
-
optionIconName && optionIconPlacement === "start" && /* @__PURE__ */ (0,
|
|
9209
|
+
optionIconName && optionIconPlacement === "start" && /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(Icon_default, { name: optionIconName, size: originalProps.size }),
|
|
9293
9210
|
option.label,
|
|
9294
|
-
optionIconName && optionIconPlacement === "end" && /* @__PURE__ */ (0,
|
|
9211
|
+
optionIconName && optionIconPlacement === "end" && /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(Icon_default, { name: optionIconName, size: originalProps.size })
|
|
9295
9212
|
]
|
|
9296
9213
|
},
|
|
9297
9214
|
option.value
|
|
@@ -9302,8 +9219,8 @@ var Select = (0, import_react19.forwardRef)((originalProps, ref) => {
|
|
|
9302
9219
|
document.body
|
|
9303
9220
|
);
|
|
9304
9221
|
};
|
|
9305
|
-
return /* @__PURE__ */ (0,
|
|
9306
|
-
/* @__PURE__ */ (0,
|
|
9222
|
+
return /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(import_jsx_runtime23.Fragment, { children: [
|
|
9223
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(
|
|
9307
9224
|
"div",
|
|
9308
9225
|
{
|
|
9309
9226
|
className: clsx(
|
|
@@ -9311,9 +9228,9 @@ var Select = (0, import_react19.forwardRef)((originalProps, ref) => {
|
|
|
9311
9228
|
variantProps.direction === "horizon" ? slots.horizon({ class: classNames == null ? void 0 : classNames.horizon }) : slots.vertical({ class: classNames == null ? void 0 : classNames.vertical })
|
|
9312
9229
|
),
|
|
9313
9230
|
children: [
|
|
9314
|
-
label && /* @__PURE__ */ (0,
|
|
9315
|
-
/* @__PURE__ */ (0,
|
|
9316
|
-
/* @__PURE__ */ (0,
|
|
9231
|
+
label && /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("label", { className: slots.label({ class: classNames == null ? void 0 : classNames.label }), children: label }),
|
|
9232
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsxs)("div", { className: slots.wrapper({ class: classNames == null ? void 0 : classNames.wrapper }), children: [
|
|
9233
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(
|
|
9317
9234
|
"div",
|
|
9318
9235
|
{
|
|
9319
9236
|
"data-expanded": isOpen,
|
|
@@ -9324,7 +9241,7 @@ var Select = (0, import_react19.forwardRef)((originalProps, ref) => {
|
|
|
9324
9241
|
ref: selectWrapperRef,
|
|
9325
9242
|
onClick: handleToggleSelect,
|
|
9326
9243
|
children: [
|
|
9327
|
-
/* @__PURE__ */ (0,
|
|
9244
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
9328
9245
|
"input",
|
|
9329
9246
|
{
|
|
9330
9247
|
...inputProps,
|
|
@@ -9339,8 +9256,8 @@ var Select = (0, import_react19.forwardRef)((originalProps, ref) => {
|
|
|
9339
9256
|
size: 0
|
|
9340
9257
|
}
|
|
9341
9258
|
),
|
|
9342
|
-
/* @__PURE__ */ (0,
|
|
9343
|
-
/* @__PURE__ */ (0,
|
|
9259
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)("input", { type: "hidden", name: inputProps.name, value: selectedValue }),
|
|
9260
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
9344
9261
|
Icon_default,
|
|
9345
9262
|
{
|
|
9346
9263
|
name: dropdownIconName,
|
|
@@ -9351,8 +9268,8 @@ var Select = (0, import_react19.forwardRef)((originalProps, ref) => {
|
|
|
9351
9268
|
]
|
|
9352
9269
|
}
|
|
9353
9270
|
),
|
|
9354
|
-
helperMessage && !errorMessage && /* @__PURE__ */ (0,
|
|
9355
|
-
errorMessage && /* @__PURE__ */ (0,
|
|
9271
|
+
helperMessage && !errorMessage && /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("p", { className: slots.helperMessage({ class: classNames == null ? void 0 : classNames.helperMessage }), children: helperMessage }),
|
|
9272
|
+
errorMessage && /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("p", { className: clsx("error", slots.errorMessage({ class: classNames == null ? void 0 : classNames.errorMessage })), children: errorMessage })
|
|
9356
9273
|
] })
|
|
9357
9274
|
]
|
|
9358
9275
|
}
|
|
@@ -9617,15 +9534,15 @@ var select = tv({
|
|
|
9617
9534
|
|
|
9618
9535
|
// src/components/chip/chip.tsx
|
|
9619
9536
|
var import_react20 = require("react");
|
|
9620
|
-
var
|
|
9537
|
+
var import_jsx_runtime24 = require("react/jsx-runtime");
|
|
9621
9538
|
var Chip = (0, import_react20.forwardRef)((originalProps, ref) => {
|
|
9622
9539
|
var _a;
|
|
9623
9540
|
const [rawProps, variantProps] = mapPropsVariants(originalProps, chipStyle.variantKeys);
|
|
9624
9541
|
const props = { ...rawProps, ...variantProps };
|
|
9625
9542
|
const Component = props.onClick ? "button" : "div";
|
|
9626
9543
|
const slots = (0, import_react20.useMemo)(() => chipStyle({ ...variantProps }), [variantProps]);
|
|
9627
|
-
const renderIcon = (name) => name ? /* @__PURE__ */ (0,
|
|
9628
|
-
return /* @__PURE__ */ (0,
|
|
9544
|
+
const renderIcon = (name) => name ? /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(Icon_default, { name, fill: true, size: props.size, className: slots.icon() }) : null;
|
|
9545
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(
|
|
9629
9546
|
Component,
|
|
9630
9547
|
{
|
|
9631
9548
|
ref,
|
|
@@ -9802,12 +9719,12 @@ var chipStyle = tv({
|
|
|
9802
9719
|
|
|
9803
9720
|
// src/components/radio/radio.tsx
|
|
9804
9721
|
var import_react21 = require("react");
|
|
9805
|
-
var
|
|
9722
|
+
var import_jsx_runtime25 = require("react/jsx-runtime");
|
|
9806
9723
|
var Radio = (0, import_react21.forwardRef)((originalProps, ref) => {
|
|
9807
9724
|
const [props, variantProps] = mapPropsVariants(originalProps, radioStyle.variantKeys);
|
|
9808
9725
|
const { children, classNames, labelPosition = "end", ...inputProps } = props;
|
|
9809
9726
|
const slots = (0, import_react21.useMemo)(() => radioStyle({ ...variantProps }), [variantProps]);
|
|
9810
|
-
return /* @__PURE__ */ (0,
|
|
9727
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
|
|
9811
9728
|
"label",
|
|
9812
9729
|
{
|
|
9813
9730
|
className: clsx(
|
|
@@ -9815,9 +9732,9 @@ var Radio = (0, import_react21.forwardRef)((originalProps, ref) => {
|
|
|
9815
9732
|
labelPosition === "start" && slots.labelReverse({ class: classNames == null ? void 0 : classNames.labelReverse })
|
|
9816
9733
|
),
|
|
9817
9734
|
children: [
|
|
9818
|
-
/* @__PURE__ */ (0,
|
|
9819
|
-
/* @__PURE__ */ (0,
|
|
9820
|
-
/* @__PURE__ */ (0,
|
|
9735
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("div", { className: "hidden", children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("input", { ...inputProps, type: "radio", ref }) }),
|
|
9736
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("span", { className: slots.outerDot({ class: classNames == null ? void 0 : classNames.outerDot }), children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("span", { className: slots.innerDot({ class: classNames == null ? void 0 : classNames.innerDot }) }) }),
|
|
9737
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("div", { className: slots.labelWrapper({ class: classNames == null ? void 0 : classNames.labelWrapper }), children: children && /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("span", { className: slots.label({ class: classNames == null ? void 0 : classNames.label }), children }) })
|
|
9821
9738
|
]
|
|
9822
9739
|
}
|
|
9823
9740
|
);
|
|
@@ -9966,8 +9883,8 @@ var radioStyle = tv({
|
|
|
9966
9883
|
|
|
9967
9884
|
// src/components/switch/switch.tsx
|
|
9968
9885
|
var import_react22 = require("react");
|
|
9969
|
-
var
|
|
9970
|
-
var
|
|
9886
|
+
var import_tailwind_variants22 = require("tailwind-variants");
|
|
9887
|
+
var import_jsx_runtime26 = require("react/jsx-runtime");
|
|
9971
9888
|
var Switch = (0, import_react22.forwardRef)((originalProps, ref) => {
|
|
9972
9889
|
const [rawProps, variantProps] = mapPropsVariants(originalProps, switchStyle.variantKeys);
|
|
9973
9890
|
const { size, color, disabled, disableAnimation, id, checked, onChange, classNames, ...inputProps } = {
|
|
@@ -9975,8 +9892,8 @@ var Switch = (0, import_react22.forwardRef)((originalProps, ref) => {
|
|
|
9975
9892
|
...variantProps
|
|
9976
9893
|
};
|
|
9977
9894
|
const slots = (0, import_react22.useMemo)(() => switchStyle({ ...variantProps }), [variantProps]);
|
|
9978
|
-
return /* @__PURE__ */ (0,
|
|
9979
|
-
/* @__PURE__ */ (0,
|
|
9895
|
+
return /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)("label", { className: slots.base({ class: classNames == null ? void 0 : classNames.base }), children: [
|
|
9896
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
9980
9897
|
"input",
|
|
9981
9898
|
{
|
|
9982
9899
|
...inputProps,
|
|
@@ -9989,12 +9906,12 @@ var Switch = (0, import_react22.forwardRef)((originalProps, ref) => {
|
|
|
9989
9906
|
onChange
|
|
9990
9907
|
}
|
|
9991
9908
|
),
|
|
9992
|
-
/* @__PURE__ */ (0,
|
|
9909
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)("span", { className: slots.outerWrapper({ class: classNames == null ? void 0 : classNames.outerWrapper }), children: /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("span", { className: slots.wrapper({ class: classNames == null ? void 0 : classNames.wrapper }), children: /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("span", { className: slots.thumb({ class: classNames == null ? void 0 : classNames.thumb }) }) }) })
|
|
9993
9910
|
] });
|
|
9994
9911
|
});
|
|
9995
9912
|
Switch.displayName = "Switch";
|
|
9996
9913
|
var switch_default = Switch;
|
|
9997
|
-
var switchStyle = (0,
|
|
9914
|
+
var switchStyle = (0, import_tailwind_variants22.tv)({
|
|
9998
9915
|
slots: {
|
|
9999
9916
|
base: ["group/switch", "relative", "max-w-fit", "inline-flex", "items-center", "justify-start", "cursor-pointer"],
|
|
10000
9917
|
outerWrapper: [
|
|
@@ -10256,7 +10173,7 @@ var useTooltip = ({ placement, offset, targetRect }) => {
|
|
|
10256
10173
|
};
|
|
10257
10174
|
|
|
10258
10175
|
// src/components/tooltip/tooltip.tsx
|
|
10259
|
-
var
|
|
10176
|
+
var import_jsx_runtime27 = require("react/jsx-runtime");
|
|
10260
10177
|
var Tooltip = (0, import_react24.forwardRef)((originalProps, ref) => {
|
|
10261
10178
|
const [props, variantProps] = mapPropsVariants(originalProps, tooltipStyle.variantKeys);
|
|
10262
10179
|
const { placement = "top", offset = 5, delay = 100, persistent = false, classNames, noTouchContent } = props;
|
|
@@ -10299,8 +10216,8 @@ var Tooltip = (0, import_react24.forwardRef)((originalProps, ref) => {
|
|
|
10299
10216
|
(0, import_react24.useEffect)(() => {
|
|
10300
10217
|
if (persistent) showTooltip();
|
|
10301
10218
|
}, [persistent, showTooltip]);
|
|
10302
|
-
return /* @__PURE__ */ (0,
|
|
10303
|
-
/* @__PURE__ */ (0,
|
|
10219
|
+
return /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(import_jsx_runtime27.Fragment, { children: [
|
|
10220
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
10304
10221
|
"div",
|
|
10305
10222
|
{
|
|
10306
10223
|
ref: (node) => {
|
|
@@ -10317,7 +10234,7 @@ var Tooltip = (0, import_react24.forwardRef)((originalProps, ref) => {
|
|
|
10317
10234
|
}
|
|
10318
10235
|
),
|
|
10319
10236
|
targetRect && (0, import_react_dom2.createPortal)(
|
|
10320
|
-
/* @__PURE__ */ (0,
|
|
10237
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(
|
|
10321
10238
|
"div",
|
|
10322
10239
|
{
|
|
10323
10240
|
ref: tooltipRef,
|
|
@@ -10330,7 +10247,7 @@ var Tooltip = (0, import_react24.forwardRef)((originalProps, ref) => {
|
|
|
10330
10247
|
},
|
|
10331
10248
|
children: [
|
|
10332
10249
|
props.content,
|
|
10333
|
-
variantProps.tail && /* @__PURE__ */ (0,
|
|
10250
|
+
variantProps.tail && /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
10334
10251
|
"div",
|
|
10335
10252
|
{
|
|
10336
10253
|
className: `absolute h-2 w-2 rotate-45 bg-inherit ${getTailClassName(placement)}`,
|
|
@@ -10383,7 +10300,7 @@ var tooltipStyle = tv({
|
|
|
10383
10300
|
// src/components/modal/modal.tsx
|
|
10384
10301
|
var import_react25 = require("react");
|
|
10385
10302
|
var import_react_dom3 = require("react-dom");
|
|
10386
|
-
var
|
|
10303
|
+
var import_jsx_runtime28 = require("react/jsx-runtime");
|
|
10387
10304
|
var Modal = (0, import_react25.forwardRef)((props, ref) => {
|
|
10388
10305
|
const [localProps, variantProps] = mapPropsVariants(props, modal.variantKeys);
|
|
10389
10306
|
const {
|
|
@@ -10414,10 +10331,10 @@ var Modal = (0, import_react25.forwardRef)((props, ref) => {
|
|
|
10414
10331
|
}, [isOpen, isKeyboardDismissDisabled, onCancel]);
|
|
10415
10332
|
if (!isOpen) return null;
|
|
10416
10333
|
return (0, import_react_dom3.createPortal)(
|
|
10417
|
-
/* @__PURE__ */ (0,
|
|
10418
|
-
/* @__PURE__ */ (0,
|
|
10419
|
-
/* @__PURE__ */ (0,
|
|
10420
|
-
showCloseButton && /* @__PURE__ */ (0,
|
|
10334
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(import_jsx_runtime28.Fragment, { children: [
|
|
10335
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)(backdrop_default, { open: true }),
|
|
10336
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)("div", { ref, className: slots.base({ class: classNames == null ? void 0 : classNames.base }), children: /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)("div", { className: slots.modalWrapper({ class: classNames == null ? void 0 : classNames.modalWrapper }), children: [
|
|
10337
|
+
showCloseButton && /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
|
|
10421
10338
|
Icon_default,
|
|
10422
10339
|
{
|
|
10423
10340
|
size: "xl",
|
|
@@ -10426,13 +10343,13 @@ var Modal = (0, import_react25.forwardRef)((props, ref) => {
|
|
|
10426
10343
|
onClick: onCancel
|
|
10427
10344
|
}
|
|
10428
10345
|
),
|
|
10429
|
-
/* @__PURE__ */ (0,
|
|
10430
|
-
title && /* @__PURE__ */ (0,
|
|
10431
|
-
typeof content === "string" ? /* @__PURE__ */ (0,
|
|
10432
|
-
(cancelButtonText || confirmButtonText) && /* @__PURE__ */ (0,
|
|
10433
|
-
/* @__PURE__ */ (0,
|
|
10434
|
-
cancelButtonText && /* @__PURE__ */ (0,
|
|
10435
|
-
confirmButtonText && /* @__PURE__ */ (0,
|
|
10346
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsxs)("div", { className: slots.wrapper({ class: classNames == null ? void 0 : classNames.wrapper }), children: [
|
|
10347
|
+
title && /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("div", { className: slots.title({ class: classNames == null ? void 0 : classNames.title }), children: title }),
|
|
10348
|
+
typeof content === "string" ? /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("div", { className: slots.content({ class: classNames == null ? void 0 : classNames.content }), children: content }) : content,
|
|
10349
|
+
(cancelButtonText || confirmButtonText) && /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)("div", { className: slots.footerWrapper({ class: classNames == null ? void 0 : classNames.footerWrapper }), children: [
|
|
10350
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsxs)("div", { className: slots.footer({ class: classNames == null ? void 0 : classNames.footer }), children: [
|
|
10351
|
+
cancelButtonText && /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(button_default, { variant: "soft", color: "neutral", full: true, onClick: onCancel, children: cancelButtonText }),
|
|
10352
|
+
confirmButtonText && /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(button_default, { color: props.color, full: true, onClick: onConfirm, children: confirmButtonText })
|
|
10436
10353
|
] }),
|
|
10437
10354
|
extraFooter
|
|
10438
10355
|
] })
|
|
@@ -10504,7 +10421,7 @@ var modal = tv({
|
|
|
10504
10421
|
// src/components/drawer/drawer.tsx
|
|
10505
10422
|
var import_react26 = require("react");
|
|
10506
10423
|
var import_react_dom4 = require("react-dom");
|
|
10507
|
-
var
|
|
10424
|
+
var import_jsx_runtime29 = require("react/jsx-runtime");
|
|
10508
10425
|
var Drawer = (0, import_react26.forwardRef)((props, ref) => {
|
|
10509
10426
|
const [localProps, variantProps] = mapPropsVariants(props, drawer.variantKeys);
|
|
10510
10427
|
const { classNames, isOpen, content, isKeyboardDismissDisabled = false, onClose, backdrop = true } = localProps;
|
|
@@ -10566,7 +10483,7 @@ var Drawer = (0, import_react26.forwardRef)((props, ref) => {
|
|
|
10566
10483
|
};
|
|
10567
10484
|
if (!shouldRender) return null;
|
|
10568
10485
|
return (0, import_react_dom4.createPortal)(
|
|
10569
|
-
/* @__PURE__ */ (0,
|
|
10486
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsxs)(
|
|
10570
10487
|
"div",
|
|
10571
10488
|
{
|
|
10572
10489
|
ref,
|
|
@@ -10581,15 +10498,15 @@ var Drawer = (0, import_react26.forwardRef)((props, ref) => {
|
|
|
10581
10498
|
role: "dialog",
|
|
10582
10499
|
"aria-modal": "true",
|
|
10583
10500
|
children: [
|
|
10584
|
-
backdrop && /* @__PURE__ */ (0,
|
|
10585
|
-
/* @__PURE__ */ (0,
|
|
10501
|
+
backdrop && /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("div", { className: "absolute inset-0 bg-black/50 backdrop-blur-sm", onClick: onClose }),
|
|
10502
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
10586
10503
|
"div",
|
|
10587
10504
|
{
|
|
10588
10505
|
className: slots.drawerWrapper({
|
|
10589
10506
|
class: clsx(classNames == null ? void 0 : classNames.drawerWrapper, getAnimationClasses())
|
|
10590
10507
|
}),
|
|
10591
10508
|
onClick: (e) => e.stopPropagation(),
|
|
10592
|
-
children: /* @__PURE__ */ (0,
|
|
10509
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("div", { className: slots.wrapper({ class: classNames == null ? void 0 : classNames.wrapper }), children: content })
|
|
10593
10510
|
}
|
|
10594
10511
|
)
|
|
10595
10512
|
]
|
|
@@ -10663,12 +10580,12 @@ var drawer_default = Drawer;
|
|
|
10663
10580
|
|
|
10664
10581
|
// src/components/list/list.tsx
|
|
10665
10582
|
var import_react27 = require("react");
|
|
10666
|
-
var
|
|
10583
|
+
var import_jsx_runtime30 = require("react/jsx-runtime");
|
|
10667
10584
|
var List = (0, import_react27.forwardRef)((originalProps, ref) => {
|
|
10668
10585
|
const [props, variantProps] = mapPropsVariants(originalProps, listStyle.variantKeys);
|
|
10669
10586
|
const { children, classNames } = props;
|
|
10670
10587
|
const slots = (0, import_react27.useMemo)(() => listStyle(variantProps), [variantProps]);
|
|
10671
|
-
return /* @__PURE__ */ (0,
|
|
10588
|
+
return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("div", { ref, className: slots.base({ class: classNames == null ? void 0 : classNames.base }), children: import_react27.Children.map(children, (child) => {
|
|
10672
10589
|
if (!(0, import_react27.isValidElement)(child)) return child;
|
|
10673
10590
|
return (0, import_react27.cloneElement)(child, {
|
|
10674
10591
|
...variantProps,
|
|
@@ -10708,7 +10625,7 @@ var listStyle = tv({
|
|
|
10708
10625
|
|
|
10709
10626
|
// src/components/list/listItem.tsx
|
|
10710
10627
|
var import_react28 = require("react");
|
|
10711
|
-
var
|
|
10628
|
+
var import_jsx_runtime31 = require("react/jsx-runtime");
|
|
10712
10629
|
var ListItem = (0, import_react28.forwardRef)((props, ref) => {
|
|
10713
10630
|
const [rawProps, variantProps] = mapPropsVariants(props, listItemStyle.variantKeys);
|
|
10714
10631
|
const {
|
|
@@ -10724,16 +10641,16 @@ var ListItem = (0, import_react28.forwardRef)((props, ref) => {
|
|
|
10724
10641
|
const slots = (0, import_react28.useMemo)(() => listItemStyle(variantProps), [variantProps]);
|
|
10725
10642
|
const iconSize = ["lg", "xl"].includes(size) ? "lg" : "md";
|
|
10726
10643
|
const avatarSize = iconSize;
|
|
10727
|
-
return /* @__PURE__ */ (0,
|
|
10728
|
-
/* @__PURE__ */ (0,
|
|
10729
|
-
avatar && /* @__PURE__ */ (0,
|
|
10730
|
-
startIconName && /* @__PURE__ */ (0,
|
|
10731
|
-
/* @__PURE__ */ (0,
|
|
10732
|
-
/* @__PURE__ */ (0,
|
|
10733
|
-
subTitle && /* @__PURE__ */ (0,
|
|
10644
|
+
return /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)("div", { ref, className: slots.base({ class: classNames == null ? void 0 : classNames.base }), "data-selected": selected, onClick, children: [
|
|
10645
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsxs)("div", { className: slots.wrapper({ class: classNames == null ? void 0 : classNames.wrapper }), children: [
|
|
10646
|
+
avatar && /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(avatar_default, { ...avatar, variant: "round", size: avatarSize }),
|
|
10647
|
+
startIconName && /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(Icon_default, { name: startIconName, fill: true, size, className: slots.startIcon({ class: classNames == null ? void 0 : classNames.startIcon }) }),
|
|
10648
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsxs)("div", { className: slots.titleWrapper({ class: classNames == null ? void 0 : classNames.titleWrapper }), children: [
|
|
10649
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)("span", { className: slots.title({ class: classNames == null ? void 0 : classNames.title }), children: title }),
|
|
10650
|
+
subTitle && /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("span", { className: slots.subTitle({ class: classNames == null ? void 0 : classNames.subTitle }), children: subTitle })
|
|
10734
10651
|
] })
|
|
10735
10652
|
] }),
|
|
10736
|
-
/* @__PURE__ */ (0,
|
|
10653
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)(Icon_default, { name: "right-chevron", size: iconSize, className: slots.icon({ class: classNames == null ? void 0 : classNames.icon }) })
|
|
10737
10654
|
] });
|
|
10738
10655
|
});
|
|
10739
10656
|
ListItem.displayName = "ListItem";
|
|
@@ -10902,7 +10819,7 @@ var listItemStyle = tv({
|
|
|
10902
10819
|
|
|
10903
10820
|
// src/components/toast/toast.tsx
|
|
10904
10821
|
var import_react29 = require("react");
|
|
10905
|
-
var
|
|
10822
|
+
var import_jsx_runtime32 = require("react/jsx-runtime");
|
|
10906
10823
|
var Toast = (0, import_react29.forwardRef)((originalProps, ref) => {
|
|
10907
10824
|
const [props, variantProps] = mapPropsVariants(originalProps, toast.variantKeys);
|
|
10908
10825
|
const {
|
|
@@ -10930,7 +10847,7 @@ var Toast = (0, import_react29.forwardRef)((originalProps, ref) => {
|
|
|
10930
10847
|
[]
|
|
10931
10848
|
);
|
|
10932
10849
|
const animationClass = (placement == null ? void 0 : placement.includes("top")) ? "animate-slideInFromTop" : "animate-slideInFromBottom";
|
|
10933
|
-
return /* @__PURE__ */ (0,
|
|
10850
|
+
return /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)(
|
|
10934
10851
|
"div",
|
|
10935
10852
|
{
|
|
10936
10853
|
ref: toastRef,
|
|
@@ -10942,12 +10859,12 @@ var Toast = (0, import_react29.forwardRef)((originalProps, ref) => {
|
|
|
10942
10859
|
),
|
|
10943
10860
|
style: hasShadow ? { boxShadow: "0px 6px 18px rgba(0, 0, 0, 0.10)" } : {},
|
|
10944
10861
|
children: [
|
|
10945
|
-
/* @__PURE__ */ (0,
|
|
10946
|
-
showIcon && /* @__PURE__ */ (0,
|
|
10947
|
-
/* @__PURE__ */ (0,
|
|
10948
|
-
showCloseButton && /* @__PURE__ */ (0,
|
|
10862
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsxs)("div", { className: slots.wrapper({ class: classNames == null ? void 0 : classNames.wrapper }), children: [
|
|
10863
|
+
showIcon && /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(Icon_default, { name: originalProps.icon || "info-circle", fill: true, className: "mt-[2px]" }),
|
|
10864
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)("div", { className: slots.title({ class: classNames == null ? void 0 : classNames.title }), children: title }),
|
|
10865
|
+
showCloseButton && /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(Icon_default, { name: "close", className: "cursor-pointer", onClick: onClose })
|
|
10949
10866
|
] }),
|
|
10950
|
-
content && /* @__PURE__ */ (0,
|
|
10867
|
+
content && /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("div", { children: content })
|
|
10951
10868
|
]
|
|
10952
10869
|
}
|
|
10953
10870
|
);
|
|
@@ -11091,7 +11008,7 @@ var getToastPosition = (placement, width, offset) => {
|
|
|
11091
11008
|
};
|
|
11092
11009
|
|
|
11093
11010
|
// src/components/toast/use-toast.tsx
|
|
11094
|
-
var
|
|
11011
|
+
var import_jsx_runtime33 = require("react/jsx-runtime");
|
|
11095
11012
|
var ToastContext = (0, import_react30.createContext)(null);
|
|
11096
11013
|
var useToast = () => {
|
|
11097
11014
|
const context = (0, import_react30.useContext)(ToastContext);
|
|
@@ -11142,20 +11059,20 @@ var ToastProvider = ({
|
|
|
11142
11059
|
right: right !== void 0 ? `${right}px` : void 0
|
|
11143
11060
|
});
|
|
11144
11061
|
}, [globalOptions == null ? void 0 : globalOptions.placement, globalOptions == null ? void 0 : globalOptions.width]);
|
|
11145
|
-
return /* @__PURE__ */ (0,
|
|
11062
|
+
return /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)(ToastContext.Provider, { value: contextValue, children: [
|
|
11146
11063
|
children,
|
|
11147
|
-
/* @__PURE__ */ (0,
|
|
11064
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("div", { id: "deepnoid-toast-container", className: "flex flex-col gap-[10px]", style: containerStyle, children: toasts.map((toast2) => /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(toast_default, { ref: toastRef, onClose: () => removeToast(toast2.id), ...toast2 }, toast2.id)) })
|
|
11148
11065
|
] });
|
|
11149
11066
|
};
|
|
11150
11067
|
|
|
11151
11068
|
// src/components/picker/day.tsx
|
|
11152
11069
|
var import_react31 = require("react");
|
|
11153
|
-
var
|
|
11070
|
+
var import_jsx_runtime34 = require("react/jsx-runtime");
|
|
11154
11071
|
var Day = (0, import_react31.forwardRef)((originalProps, ref) => {
|
|
11155
11072
|
const [props, variantProps] = mapPropsVariants(originalProps, dayStyle.variantKeys);
|
|
11156
11073
|
const { classNames, children, ...divProps } = props;
|
|
11157
11074
|
const slots = (0, import_react31.useMemo)(() => dayStyle({ ...variantProps }), [variantProps]);
|
|
11158
|
-
return /* @__PURE__ */ (0,
|
|
11075
|
+
return /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("div", { ref, className: slots.base({ class: classNames == null ? void 0 : classNames.base }), ...divProps, children });
|
|
11159
11076
|
});
|
|
11160
11077
|
Day.displayName = "Day";
|
|
11161
11078
|
var day_default = Day;
|
|
@@ -11207,7 +11124,7 @@ var formatStringToDate = (date) => {
|
|
|
11207
11124
|
};
|
|
11208
11125
|
|
|
11209
11126
|
// src/components/picker/datePicker.tsx
|
|
11210
|
-
var
|
|
11127
|
+
var import_jsx_runtime35 = require("react/jsx-runtime");
|
|
11211
11128
|
var DatePicker = (0, import_react32.forwardRef)((originalProps, ref) => {
|
|
11212
11129
|
const [props, variantProps] = mapPropsVariants(originalProps, datePickerStyle.variantKeys);
|
|
11213
11130
|
const {
|
|
@@ -11346,9 +11263,9 @@ var DatePicker = (0, import_react32.forwardRef)((originalProps, ref) => {
|
|
|
11346
11263
|
if (value) setCurrentDate(new Date(value));
|
|
11347
11264
|
}, [value]);
|
|
11348
11265
|
const slots = (0, import_react32.useMemo)(() => datePickerStyle({ ...variantProps }), [variantProps]);
|
|
11349
|
-
const endContent = /* @__PURE__ */ (0,
|
|
11350
|
-
return /* @__PURE__ */ (0,
|
|
11351
|
-
/* @__PURE__ */ (0,
|
|
11266
|
+
const endContent = /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(Icon_default, { name: "calendar", size, className: "cursor-pointer", fill: true, onClick: handleCalendarIconClick });
|
|
11267
|
+
return /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)(import_jsx_runtime35.Fragment, { children: [
|
|
11268
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)("div", { ref: inputWrapperRef, className: slots.base({ class: classNames == null ? void 0 : classNames.base }), onClick: handleFocusInput, children: /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
11352
11269
|
input_default,
|
|
11353
11270
|
{
|
|
11354
11271
|
...inputProps,
|
|
@@ -11380,7 +11297,7 @@ var DatePicker = (0, import_react32.forwardRef)((originalProps, ref) => {
|
|
|
11380
11297
|
}
|
|
11381
11298
|
) }),
|
|
11382
11299
|
isPanelOpen && (0, import_react_dom5.createPortal)(
|
|
11383
|
-
/* @__PURE__ */ (0,
|
|
11300
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsxs)(
|
|
11384
11301
|
"div",
|
|
11385
11302
|
{
|
|
11386
11303
|
ref: calendarWrapperRef,
|
|
@@ -11388,13 +11305,13 @@ var DatePicker = (0, import_react32.forwardRef)((originalProps, ref) => {
|
|
|
11388
11305
|
style: { position: "absolute", top: panelPos.top, left: panelPos.left, zIndex: 1e3 },
|
|
11389
11306
|
onMouseDown: handleCalendarMouseDown,
|
|
11390
11307
|
children: [
|
|
11391
|
-
/* @__PURE__ */ (0,
|
|
11392
|
-
/* @__PURE__ */ (0,
|
|
11393
|
-
/* @__PURE__ */ (0,
|
|
11394
|
-
/* @__PURE__ */ (0,
|
|
11308
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsxs)("div", { className: slots.calendarHead({ class: classNames == null ? void 0 : classNames.calendarHead }), children: [
|
|
11309
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)(icon_button_default, { name: "left", variant: "soft", color: "neutral", onClick: handlePrevMonth }),
|
|
11310
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)("span", { className: "text-xl font-extrabold", children: monthYearFormat(currentDate.getFullYear(), currentDate.getMonth()) }),
|
|
11311
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)(icon_button_default, { name: "right", variant: "soft", color: "neutral", onClick: handleNextMonth })
|
|
11395
11312
|
] }),
|
|
11396
|
-
/* @__PURE__ */ (0,
|
|
11397
|
-
/* @__PURE__ */ (0,
|
|
11313
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)("div", { className: "grid grid-cols-7", children: daysOfWeek.map((day, index) => /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(day_default, { variant: "text", children: day }, `${day}-${index}`)) }),
|
|
11314
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)("div", { className: "grid grid-cols-7 gap-[5px] text-center", children: getCalendarDates().map((week, weekIndex) => /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(import_react32.Fragment, { children: week.map((dateObj, index) => /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
11398
11315
|
day_default,
|
|
11399
11316
|
{
|
|
11400
11317
|
variant: getDayProps(dateObj),
|
|
@@ -11403,8 +11320,8 @@ var DatePicker = (0, import_react32.forwardRef)((originalProps, ref) => {
|
|
|
11403
11320
|
},
|
|
11404
11321
|
index
|
|
11405
11322
|
)) }, weekIndex)) }),
|
|
11406
|
-
/* @__PURE__ */ (0,
|
|
11407
|
-
/* @__PURE__ */ (0,
|
|
11323
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsxs)("div", { className: "flex justify-between px-[10px]", children: [
|
|
11324
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
11408
11325
|
text_button_default,
|
|
11409
11326
|
{
|
|
11410
11327
|
variant: "underline",
|
|
@@ -11415,10 +11332,10 @@ var DatePicker = (0, import_react32.forwardRef)((originalProps, ref) => {
|
|
|
11415
11332
|
children: resetTitle
|
|
11416
11333
|
}
|
|
11417
11334
|
),
|
|
11418
|
-
/* @__PURE__ */ (0,
|
|
11335
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)(text_button_default, { variant: "underline", size: "sm", classNames: { base: "font-bold" }, onClick: handleSetToday, children: todayTitle })
|
|
11419
11336
|
] }),
|
|
11420
|
-
/* @__PURE__ */ (0,
|
|
11421
|
-
/* @__PURE__ */ (0,
|
|
11337
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsxs)("div", { className: "flex gap-[10px]", children: [
|
|
11338
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
11422
11339
|
button_default,
|
|
11423
11340
|
{
|
|
11424
11341
|
variant: "soft",
|
|
@@ -11429,7 +11346,7 @@ var DatePicker = (0, import_react32.forwardRef)((originalProps, ref) => {
|
|
|
11429
11346
|
children: cancelTitle
|
|
11430
11347
|
}
|
|
11431
11348
|
),
|
|
11432
|
-
/* @__PURE__ */ (0,
|
|
11349
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)(button_default, { size: "sm", classNames: { base: "flex flex-1" }, onClick: handleConfirmDate, children: confirmTitle })
|
|
11433
11350
|
] })
|
|
11434
11351
|
]
|
|
11435
11352
|
}
|
|
@@ -11480,7 +11397,7 @@ var datePickerStyle = tv({
|
|
|
11480
11397
|
// src/components/picker/timePicker.tsx
|
|
11481
11398
|
var import_react33 = require("react");
|
|
11482
11399
|
var import_react_dom6 = require("react-dom");
|
|
11483
|
-
var
|
|
11400
|
+
var import_jsx_runtime36 = require("react/jsx-runtime");
|
|
11484
11401
|
var TimePicker = (0, import_react33.forwardRef)((originalProps, ref) => {
|
|
11485
11402
|
const [props, variantProps] = mapPropsVariants(originalProps, timePickerStyle.variantKeys);
|
|
11486
11403
|
const {
|
|
@@ -11574,12 +11491,12 @@ var TimePicker = (0, import_react33.forwardRef)((originalProps, ref) => {
|
|
|
11574
11491
|
setSelectedRange(emptyRange);
|
|
11575
11492
|
onChangeRange == null ? void 0 : onChangeRange(emptyRange);
|
|
11576
11493
|
};
|
|
11577
|
-
return /* @__PURE__ */ (0,
|
|
11578
|
-
/* @__PURE__ */ (0,
|
|
11579
|
-
label && /* @__PURE__ */ (0,
|
|
11580
|
-
/* @__PURE__ */ (0,
|
|
11581
|
-
/* @__PURE__ */ (0,
|
|
11582
|
-
/* @__PURE__ */ (0,
|
|
11494
|
+
return /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)(import_jsx_runtime36.Fragment, { children: [
|
|
11495
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsxs)("div", { className: slots.base({ class: classNames == null ? void 0 : classNames.base }), children: [
|
|
11496
|
+
label && /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("label", { className: slots.label({ class: classNames == null ? void 0 : classNames.label }), children: label }),
|
|
11497
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsxs)("div", { className: slots.wrapper({ class: classNames == null ? void 0 : classNames.wrapper }), children: [
|
|
11498
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsxs)("div", { ref: inputWrapperRef, className: slots.inputWrapper({ class: classNames == null ? void 0 : classNames.inputWrapper }), children: [
|
|
11499
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
11583
11500
|
"input",
|
|
11584
11501
|
{
|
|
11585
11502
|
...inputProps,
|
|
@@ -11594,8 +11511,8 @@ var TimePicker = (0, import_react33.forwardRef)((originalProps, ref) => {
|
|
|
11594
11511
|
onKeyDown: handleInputKeyDown
|
|
11595
11512
|
}
|
|
11596
11513
|
),
|
|
11597
|
-
/* @__PURE__ */ (0,
|
|
11598
|
-
displayValue && /* @__PURE__ */ (0,
|
|
11514
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsxs)("div", { className: slots.icon({ class: classNames == null ? void 0 : classNames.icon }), children: [
|
|
11515
|
+
displayValue && /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
11599
11516
|
Icon_default,
|
|
11600
11517
|
{
|
|
11601
11518
|
name: "close",
|
|
@@ -11606,7 +11523,7 @@ var TimePicker = (0, import_react33.forwardRef)((originalProps, ref) => {
|
|
|
11606
11523
|
}
|
|
11607
11524
|
}
|
|
11608
11525
|
),
|
|
11609
|
-
/* @__PURE__ */ (0,
|
|
11526
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
11610
11527
|
Icon_default,
|
|
11611
11528
|
{
|
|
11612
11529
|
name: "clock",
|
|
@@ -11619,11 +11536,11 @@ var TimePicker = (0, import_react33.forwardRef)((originalProps, ref) => {
|
|
|
11619
11536
|
)
|
|
11620
11537
|
] })
|
|
11621
11538
|
] }),
|
|
11622
|
-
errorMessage && /* @__PURE__ */ (0,
|
|
11539
|
+
errorMessage && /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("p", { className: clsx("error", slots.errorMessage({ class: classNames == null ? void 0 : classNames.errorMessage })), children: errorMessage })
|
|
11623
11540
|
] })
|
|
11624
11541
|
] }),
|
|
11625
11542
|
isPanelOpen && (0, import_react_dom6.createPortal)(
|
|
11626
|
-
/* @__PURE__ */ (0,
|
|
11543
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
11627
11544
|
"div",
|
|
11628
11545
|
{
|
|
11629
11546
|
ref: panelWrapperRef,
|
|
@@ -11635,9 +11552,9 @@ var TimePicker = (0, import_react33.forwardRef)((originalProps, ref) => {
|
|
|
11635
11552
|
zIndex: 1e3
|
|
11636
11553
|
},
|
|
11637
11554
|
onMouseDown: (e) => e.preventDefault(),
|
|
11638
|
-
children: /* @__PURE__ */ (0,
|
|
11639
|
-
/* @__PURE__ */ (0,
|
|
11640
|
-
/* @__PURE__ */ (0,
|
|
11555
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)("div", { className: "bg-body-background text-neutral-main flex items-center gap-[5px] p-[10px]", children: [
|
|
11556
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsxs)("div", { className: "flex items-center gap-[5px]", children: [
|
|
11557
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
11641
11558
|
select_default,
|
|
11642
11559
|
{
|
|
11643
11560
|
options: renderHourOptions(),
|
|
@@ -11648,8 +11565,8 @@ var TimePicker = (0, import_react33.forwardRef)((originalProps, ref) => {
|
|
|
11648
11565
|
classNames: mergedSelectClassNames
|
|
11649
11566
|
}
|
|
11650
11567
|
),
|
|
11651
|
-
/* @__PURE__ */ (0,
|
|
11652
|
-
/* @__PURE__ */ (0,
|
|
11568
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)("span", { children: ":" }),
|
|
11569
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
11653
11570
|
select_default,
|
|
11654
11571
|
{
|
|
11655
11572
|
options: renderMinuteOptions(),
|
|
@@ -11661,9 +11578,9 @@ var TimePicker = (0, import_react33.forwardRef)((originalProps, ref) => {
|
|
|
11661
11578
|
}
|
|
11662
11579
|
)
|
|
11663
11580
|
] }),
|
|
11664
|
-
/* @__PURE__ */ (0,
|
|
11665
|
-
/* @__PURE__ */ (0,
|
|
11666
|
-
/* @__PURE__ */ (0,
|
|
11581
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)("span", { children: "~" }),
|
|
11582
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsxs)("div", { className: "flex items-center gap-[5px]", children: [
|
|
11583
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
11667
11584
|
select_default,
|
|
11668
11585
|
{
|
|
11669
11586
|
options: renderHourOptions(),
|
|
@@ -11674,8 +11591,8 @@ var TimePicker = (0, import_react33.forwardRef)((originalProps, ref) => {
|
|
|
11674
11591
|
classNames: mergedSelectClassNames
|
|
11675
11592
|
}
|
|
11676
11593
|
),
|
|
11677
|
-
/* @__PURE__ */ (0,
|
|
11678
|
-
/* @__PURE__ */ (0,
|
|
11594
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)("span", { children: ":" }),
|
|
11595
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
11679
11596
|
select_default,
|
|
11680
11597
|
{
|
|
11681
11598
|
options: renderMinuteOptions(),
|
|
@@ -11823,7 +11740,7 @@ var timePickerStyle = tv({
|
|
|
11823
11740
|
|
|
11824
11741
|
// src/components/tree/tree.tsx
|
|
11825
11742
|
var import_react34 = require("react");
|
|
11826
|
-
var
|
|
11743
|
+
var import_jsx_runtime37 = require("react/jsx-runtime");
|
|
11827
11744
|
var TreeNodeItem = (0, import_react34.forwardRef)(
|
|
11828
11745
|
({ node, depth, fileIcon, selectedName, classNames, onExpand }, ref) => {
|
|
11829
11746
|
const [isOpen, setIsOpen] = (0, import_react34.useState)(false);
|
|
@@ -11856,7 +11773,7 @@ var TreeNodeItem = (0, import_react34.forwardRef)(
|
|
|
11856
11773
|
e.preventDefault();
|
|
11857
11774
|
(_a = node.onRightClick) == null ? void 0 : _a.call(node, e);
|
|
11858
11775
|
};
|
|
11859
|
-
return /* @__PURE__ */ (0,
|
|
11776
|
+
return /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)(
|
|
11860
11777
|
"div",
|
|
11861
11778
|
{
|
|
11862
11779
|
ref,
|
|
@@ -11865,7 +11782,7 @@ var TreeNodeItem = (0, import_react34.forwardRef)(
|
|
|
11865
11782
|
slots.gap({ class: classNames == null ? void 0 : classNames.gap })
|
|
11866
11783
|
),
|
|
11867
11784
|
children: [
|
|
11868
|
-
/* @__PURE__ */ (0,
|
|
11785
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsxs)(
|
|
11869
11786
|
"div",
|
|
11870
11787
|
{
|
|
11871
11788
|
className: clsx(
|
|
@@ -11876,7 +11793,7 @@ var TreeNodeItem = (0, import_react34.forwardRef)(
|
|
|
11876
11793
|
onClick: handleClick,
|
|
11877
11794
|
onContextMenu: handleRightClick,
|
|
11878
11795
|
children: [
|
|
11879
|
-
hasMore && /* @__PURE__ */ (0,
|
|
11796
|
+
hasMore && /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
11880
11797
|
Icon_default,
|
|
11881
11798
|
{
|
|
11882
11799
|
name: "right-chevron",
|
|
@@ -11891,7 +11808,7 @@ var TreeNodeItem = (0, import_react34.forwardRef)(
|
|
|
11891
11808
|
]
|
|
11892
11809
|
}
|
|
11893
11810
|
),
|
|
11894
|
-
isOpen && hasMore && /* @__PURE__ */ (0,
|
|
11811
|
+
isOpen && hasMore && /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("div", { className: slots.gap({ class: classNames == null ? void 0 : classNames.gap }), children: children == null ? void 0 : children.map((child) => /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
11895
11812
|
TreeNodeItem,
|
|
11896
11813
|
{
|
|
11897
11814
|
node: child,
|
|
@@ -11920,10 +11837,10 @@ var Tree = ({ headerContent, group, groupIcon, fileIcon, selectedName, className
|
|
|
11920
11837
|
e.preventDefault();
|
|
11921
11838
|
(_a = group.onRightClick) == null ? void 0 : _a.call(group, e);
|
|
11922
11839
|
};
|
|
11923
|
-
return /* @__PURE__ */ (0,
|
|
11924
|
-
headerContent && /* @__PURE__ */ (0,
|
|
11925
|
-
/* @__PURE__ */ (0,
|
|
11926
|
-
/* @__PURE__ */ (0,
|
|
11840
|
+
return /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)("div", { className: slots.base({ class: classNames == null ? void 0 : classNames.base }), children: [
|
|
11841
|
+
headerContent && /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("div", { children: headerContent }),
|
|
11842
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsxs)("div", { className: slots.wrapper({ class: classNames == null ? void 0 : classNames.wrapper }), children: [
|
|
11843
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsxs)(
|
|
11927
11844
|
"div",
|
|
11928
11845
|
{
|
|
11929
11846
|
className: clsx(
|
|
@@ -11939,7 +11856,7 @@ var Tree = ({ headerContent, group, groupIcon, fileIcon, selectedName, className
|
|
|
11939
11856
|
]
|
|
11940
11857
|
}
|
|
11941
11858
|
),
|
|
11942
|
-
/* @__PURE__ */ (0,
|
|
11859
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("div", { className: slots.itemWrapper({ class: classNames == null ? void 0 : classNames.itemWrapper }), children: group.data.map((node) => /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
11943
11860
|
TreeNodeItem,
|
|
11944
11861
|
{
|
|
11945
11862
|
node,
|
|
@@ -11979,7 +11896,7 @@ var treeStyle = tv({
|
|
|
11979
11896
|
|
|
11980
11897
|
// src/components/fileUpload/fileUpload.tsx
|
|
11981
11898
|
var import_react37 = require("react");
|
|
11982
|
-
var
|
|
11899
|
+
var import_tailwind_variants34 = require("tailwind-variants");
|
|
11983
11900
|
|
|
11984
11901
|
// src/components/progress/progress.tsx
|
|
11985
11902
|
var import_react36 = require("react");
|
|
@@ -12016,7 +11933,7 @@ function useIsMounted(props = {}) {
|
|
|
12016
11933
|
}
|
|
12017
11934
|
|
|
12018
11935
|
// src/components/progress/progress.tsx
|
|
12019
|
-
var
|
|
11936
|
+
var import_jsx_runtime38 = require("react/jsx-runtime");
|
|
12020
11937
|
var Progress = (originalProps) => {
|
|
12021
11938
|
const [props, variantProps] = mapPropsVariants(originalProps, progressStyle.variantKeys);
|
|
12022
11939
|
const { children, classNames, value = 0, minValue = 0, maxValue = 100, ...progressProps } = props;
|
|
@@ -12031,7 +11948,7 @@ var Progress = (originalProps) => {
|
|
|
12031
11948
|
[selfMounted, isIndeterminate, value, minValue, maxValue]
|
|
12032
11949
|
);
|
|
12033
11950
|
const slots = (0, import_react36.useMemo)(() => progressStyle({ ...variantProps }), [variantProps]);
|
|
12034
|
-
return /* @__PURE__ */ (0,
|
|
11951
|
+
return /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("div", { className: slots.base({ class: classNames == null ? void 0 : classNames.base }), children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("div", { className: slots.track({ class: classNames == null ? void 0 : classNames.track }), children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
12035
11952
|
"div",
|
|
12036
11953
|
{
|
|
12037
11954
|
className: slots.indicator({ class: classNames == null ? void 0 : classNames.indicator }),
|
|
@@ -12130,7 +12047,7 @@ var clampPercentage = (value) => {
|
|
|
12130
12047
|
};
|
|
12131
12048
|
|
|
12132
12049
|
// src/components/fileUpload/fileUpload.tsx
|
|
12133
|
-
var
|
|
12050
|
+
var import_jsx_runtime39 = require("react/jsx-runtime");
|
|
12134
12051
|
function FileUpload({
|
|
12135
12052
|
buttonText,
|
|
12136
12053
|
maxSizeMB = 10,
|
|
@@ -12211,10 +12128,10 @@ function FileUpload({
|
|
|
12211
12128
|
(0, import_react37.useEffect)(() => {
|
|
12212
12129
|
setMessage(errorMessage);
|
|
12213
12130
|
}, [setMessage, errorMessage]);
|
|
12214
|
-
return /* @__PURE__ */ (0,
|
|
12215
|
-
/* @__PURE__ */ (0,
|
|
12216
|
-
/* @__PURE__ */ (0,
|
|
12217
|
-
/* @__PURE__ */ (0,
|
|
12131
|
+
return /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)("div", { className: slots.base({ class: classNames == null ? void 0 : classNames.base }), children: [
|
|
12132
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsxs)("div", { className: slots.container({ class: classNames == null ? void 0 : classNames.container }), children: [
|
|
12133
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsxs)("div", { className: slots.inputWrapper(), children: [
|
|
12134
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
12218
12135
|
input_default,
|
|
12219
12136
|
{
|
|
12220
12137
|
name,
|
|
@@ -12226,7 +12143,7 @@ function FileUpload({
|
|
|
12226
12143
|
errorMessage: message
|
|
12227
12144
|
}
|
|
12228
12145
|
),
|
|
12229
|
-
file && /* @__PURE__ */ (0,
|
|
12146
|
+
file && /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
12230
12147
|
icon_button_default,
|
|
12231
12148
|
{
|
|
12232
12149
|
name: "close",
|
|
@@ -12238,16 +12155,16 @@ function FileUpload({
|
|
|
12238
12155
|
}
|
|
12239
12156
|
)
|
|
12240
12157
|
] }),
|
|
12241
|
-
/* @__PURE__ */ (0,
|
|
12242
|
-
/* @__PURE__ */ (0,
|
|
12158
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)(button_default, { type: "button", variant: "outline", onClick: handleButtonClick, disabled: !!file, children: buttonText }),
|
|
12159
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("input", { ref: fileInputRef, type: "file", hidden: true, accept: accept.join(","), onChange: handleFileChange })
|
|
12243
12160
|
] }),
|
|
12244
|
-
showProgress && file && uploadProgress < 100 && /* @__PURE__ */ (0,
|
|
12245
|
-
!message && helperMessage && /* @__PURE__ */ (0,
|
|
12161
|
+
showProgress && file && uploadProgress < 100 && /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(progress_default, { value: uploadProgress }),
|
|
12162
|
+
!message && helperMessage && /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("p", { className: slots.helperMessage(), children: helperMessage })
|
|
12246
12163
|
] });
|
|
12247
12164
|
}
|
|
12248
12165
|
FileUpload.displayName = "FileUpload";
|
|
12249
12166
|
var fileUpload_default = FileUpload;
|
|
12250
|
-
var fileUploadStyle = (0,
|
|
12167
|
+
var fileUploadStyle = (0, import_tailwind_variants34.tv)({
|
|
12251
12168
|
slots: {
|
|
12252
12169
|
base: ["flex", "flex-col", "gap-[5px]"],
|
|
12253
12170
|
container: ["flex", "gap-[10px]"],
|
|
@@ -12258,6 +12175,75 @@ var fileUploadStyle = (0, import_tailwind_variants35.tv)({
|
|
|
12258
12175
|
}
|
|
12259
12176
|
});
|
|
12260
12177
|
|
|
12178
|
+
// src/components/skeleton/skeleton.tsx
|
|
12179
|
+
var import_tailwind_variants35 = require("tailwind-variants");
|
|
12180
|
+
var import_jsx_runtime40 = require("react/jsx-runtime");
|
|
12181
|
+
var Skeleton = ({ color = "primary", className, speed = "normal", rounded = "md" }) => {
|
|
12182
|
+
const speedMap = {
|
|
12183
|
+
fast: "0.7s",
|
|
12184
|
+
normal: "1.2s",
|
|
12185
|
+
slow: "2s"
|
|
12186
|
+
};
|
|
12187
|
+
const slots = skeletonStyle();
|
|
12188
|
+
return /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
12189
|
+
"div",
|
|
12190
|
+
{
|
|
12191
|
+
className: clsx(slots.base({ color, rounded }), className),
|
|
12192
|
+
style: {
|
|
12193
|
+
"--shimmer-duration": speedMap[speed]
|
|
12194
|
+
},
|
|
12195
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("style", { children: `@keyframes shimmer {
|
|
12196
|
+
100% {
|
|
12197
|
+
transform: translateX(100%);
|
|
12198
|
+
}
|
|
12199
|
+
}
|
|
12200
|
+
.skeleton-shimmer::before {
|
|
12201
|
+
animation: shimmer var(--shimmer-duration) infinite linear;
|
|
12202
|
+
}
|
|
12203
|
+
` })
|
|
12204
|
+
}
|
|
12205
|
+
);
|
|
12206
|
+
};
|
|
12207
|
+
Skeleton.displayName = "Skeleton";
|
|
12208
|
+
var skeleton_default = Skeleton;
|
|
12209
|
+
var skeletonStyle = (0, import_tailwind_variants35.tv)({
|
|
12210
|
+
slots: {
|
|
12211
|
+
base: [
|
|
12212
|
+
"relative",
|
|
12213
|
+
"overflow-hidden",
|
|
12214
|
+
"w-full",
|
|
12215
|
+
"h-[18px]",
|
|
12216
|
+
"skeleton-shimmer",
|
|
12217
|
+
"before:absolute",
|
|
12218
|
+
"before:inset-0",
|
|
12219
|
+
"before:-translate-x-full",
|
|
12220
|
+
"before:bg-gradient-to-r",
|
|
12221
|
+
"before:from-transparent",
|
|
12222
|
+
"before:via-white/40",
|
|
12223
|
+
"before:to-transparent",
|
|
12224
|
+
"before:content-['']"
|
|
12225
|
+
]
|
|
12226
|
+
},
|
|
12227
|
+
variants: {
|
|
12228
|
+
color: {
|
|
12229
|
+
primary: { base: "bg-primary-soft" },
|
|
12230
|
+
secondary: { base: "bg-secondary-soft" },
|
|
12231
|
+
neutral: { base: "bg-neutral-soft" }
|
|
12232
|
+
},
|
|
12233
|
+
rounded: {
|
|
12234
|
+
sm: { base: "rounded-sm" },
|
|
12235
|
+
md: { base: "rounded-md" },
|
|
12236
|
+
lg: { base: "rounded-lg" },
|
|
12237
|
+
xl: { base: "rounded-xl" },
|
|
12238
|
+
full: { base: "rounded-full" }
|
|
12239
|
+
}
|
|
12240
|
+
},
|
|
12241
|
+
defaultVariants: {
|
|
12242
|
+
color: "primary",
|
|
12243
|
+
rounded: "md"
|
|
12244
|
+
}
|
|
12245
|
+
});
|
|
12246
|
+
|
|
12261
12247
|
// src/components/charts/circularProgress.tsx
|
|
12262
12248
|
var import_recharts = require("recharts");
|
|
12263
12249
|
var import_react38 = require("react");
|