@deepnoid/ui 0.1.172 → 0.1.174
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 +181 -181
- package/dist/{chunk-WLTBJF4I.mjs → chunk-D4YI5HF2.mjs} +32 -20
- package/dist/{chunk-CPFFP7L6.mjs → chunk-JGG3ZUNG.mjs} +3 -3
- package/dist/{chunk-DU7L4GA7.mjs → chunk-NTNF5T5I.mjs} +11 -9
- package/dist/{chunk-PX4RCHOE.mjs → chunk-QXVGMVCG.mjs} +4 -4
- package/dist/components/accordion/accordion.d.mts +3 -2
- package/dist/components/accordion/accordion.d.ts +3 -2
- package/dist/components/accordion/accordion.js +3 -3
- package/dist/components/accordion/accordion.mjs +1 -1
- package/dist/components/accordion/accordionItem.js +11 -9
- package/dist/components/accordion/accordionItem.mjs +1 -1
- package/dist/components/accordion/index.js +14 -12
- package/dist/components/accordion/index.mjs +2 -2
- package/dist/components/charts/index.mjs +3 -3
- package/dist/components/pagination/index.js +32 -20
- package/dist/components/pagination/index.mjs +1 -1
- package/dist/components/pagination/pagination.js +32 -20
- package/dist/components/pagination/pagination.mjs +1 -1
- package/dist/components/table/index.js +32 -20
- package/dist/components/table/index.mjs +4 -4
- package/dist/components/table/table-body.js +32 -20
- package/dist/components/table/table-body.mjs +4 -4
- package/dist/components/table/table-head.js +32 -20
- package/dist/components/table/table-head.mjs +4 -4
- package/dist/components/table/table.js +32 -20
- package/dist/components/table/table.mjs +4 -4
- package/dist/index.js +46 -32
- package/dist/index.mjs +36 -36
- package/package.json +1 -1
|
@@ -5993,6 +5993,10 @@ var Pagination = (0, import_react4.forwardRef)((originalProps, ref) => {
|
|
|
5993
5993
|
size
|
|
5994
5994
|
} = { ...props, ...variantProps };
|
|
5995
5995
|
const [inputPage, setInputPage] = (0, import_react4.useState)(currentPage);
|
|
5996
|
+
const isFirstPageDisabled = currentPage <= 1;
|
|
5997
|
+
const isPrevPageDisabled = currentPage <= 1;
|
|
5998
|
+
const isNextPageDisabled = currentPage >= totalPage;
|
|
5999
|
+
const isLastPageDisabled = currentPage >= totalPage;
|
|
5996
6000
|
const slots = (0, import_react4.useMemo)(() => paginationStyle(variantProps), [variantProps]);
|
|
5997
6001
|
const { pageList, handleClickMovePage } = usePagination_default({
|
|
5998
6002
|
currentPage,
|
|
@@ -6014,9 +6018,11 @@ var Pagination = (0, import_react4.forwardRef)((originalProps, ref) => {
|
|
|
6014
6018
|
"div",
|
|
6015
6019
|
{
|
|
6016
6020
|
"aria-label": "firstPage",
|
|
6017
|
-
"data-
|
|
6018
|
-
className: slots.icon({
|
|
6019
|
-
|
|
6021
|
+
"data-disabled": isFirstPageDisabled,
|
|
6022
|
+
className: slots.icon({
|
|
6023
|
+
class: clsx(classNames == null ? void 0 : classNames.icon, isFirstPageDisabled && "!text-neutral-light !cursor-default")
|
|
6024
|
+
}),
|
|
6025
|
+
onClick: !isFirstPageDisabled ? handleClickMovePage(1) : void 0,
|
|
6020
6026
|
children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(Icon_default, { name: "left-double-chevron", size })
|
|
6021
6027
|
}
|
|
6022
6028
|
),
|
|
@@ -6024,9 +6030,11 @@ var Pagination = (0, import_react4.forwardRef)((originalProps, ref) => {
|
|
|
6024
6030
|
"div",
|
|
6025
6031
|
{
|
|
6026
6032
|
"aria-label": "prevPage",
|
|
6027
|
-
"data-
|
|
6028
|
-
className: slots.icon({
|
|
6029
|
-
|
|
6033
|
+
"data-disabled": isPrevPageDisabled,
|
|
6034
|
+
className: slots.icon({
|
|
6035
|
+
class: clsx(classNames == null ? void 0 : classNames.icon, isPrevPageDisabled && "!text-neutral-light !cursor-default")
|
|
6036
|
+
}),
|
|
6037
|
+
onClick: !isPrevPageDisabled ? handleClickMovePage(currentPage - 1) : void 0,
|
|
6030
6038
|
children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(Icon_default, { name: "left-chevron", size })
|
|
6031
6039
|
}
|
|
6032
6040
|
),
|
|
@@ -6044,9 +6052,11 @@ var Pagination = (0, import_react4.forwardRef)((originalProps, ref) => {
|
|
|
6044
6052
|
"div",
|
|
6045
6053
|
{
|
|
6046
6054
|
"aria-label": "nextPage",
|
|
6047
|
-
"data-
|
|
6048
|
-
className: slots.icon({
|
|
6049
|
-
|
|
6055
|
+
"data-disabled": isNextPageDisabled,
|
|
6056
|
+
className: slots.icon({
|
|
6057
|
+
class: clsx(classNames == null ? void 0 : classNames.icon, isNextPageDisabled && "!text-neutral-light !cursor-default")
|
|
6058
|
+
}),
|
|
6059
|
+
onClick: !isNextPageDisabled ? handleClickMovePage(currentPage + 1) : void 0,
|
|
6050
6060
|
children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(Icon_default, { name: "right-chevron", size })
|
|
6051
6061
|
}
|
|
6052
6062
|
),
|
|
@@ -6054,9 +6064,11 @@ var Pagination = (0, import_react4.forwardRef)((originalProps, ref) => {
|
|
|
6054
6064
|
"div",
|
|
6055
6065
|
{
|
|
6056
6066
|
"aria-label": "lastPage",
|
|
6057
|
-
"data-
|
|
6058
|
-
className: slots.icon({
|
|
6059
|
-
|
|
6067
|
+
"data-disabled": isLastPageDisabled,
|
|
6068
|
+
className: slots.icon({
|
|
6069
|
+
class: clsx(classNames == null ? void 0 : classNames.icon, isLastPageDisabled && "!text-neutral-light !cursor-default")
|
|
6070
|
+
}),
|
|
6071
|
+
onClick: !isLastPageDisabled ? handleClickMovePage(totalPage) : void 0,
|
|
6060
6072
|
children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(Icon_default, { name: "right-double-chevron", size })
|
|
6061
6073
|
}
|
|
6062
6074
|
)
|
|
@@ -6094,8 +6106,8 @@ var paginationStyle = tv(
|
|
|
6094
6106
|
"justify-center",
|
|
6095
6107
|
"cursor-pointer",
|
|
6096
6108
|
"text-neutral-main",
|
|
6097
|
-
"data-[
|
|
6098
|
-
"data-[
|
|
6109
|
+
"data-[disabled=true]:text-neutral-light",
|
|
6110
|
+
"data-[disabled=true]:cursor-default"
|
|
6099
6111
|
],
|
|
6100
6112
|
button: [
|
|
6101
6113
|
"flex",
|
|
@@ -6156,7 +6168,7 @@ var paginationStyle = tv(
|
|
|
6156
6168
|
"data-[selected=true]:text-primary-main",
|
|
6157
6169
|
"data-[selected=true]:bg-primary-soft"
|
|
6158
6170
|
],
|
|
6159
|
-
icon: ["hover:text-primary-main"]
|
|
6171
|
+
icon: ["hover:text-primary-main", "data-[disabled=true]:hover:text-neutral-light"]
|
|
6160
6172
|
}
|
|
6161
6173
|
},
|
|
6162
6174
|
{
|
|
@@ -6168,7 +6180,7 @@ var paginationStyle = tv(
|
|
|
6168
6180
|
"data-[selected=true]:text-secondary-main",
|
|
6169
6181
|
"data-[selected=true]:bg-secondary-soft"
|
|
6170
6182
|
],
|
|
6171
|
-
icon: ["hover:text-secondary-main"]
|
|
6183
|
+
icon: ["hover:text-secondary-main", "data-[disabled=true]:hover:text-neutral-light"]
|
|
6172
6184
|
}
|
|
6173
6185
|
},
|
|
6174
6186
|
{
|
|
@@ -6180,7 +6192,7 @@ var paginationStyle = tv(
|
|
|
6180
6192
|
"data-[selected=true]:text-neutral-dark",
|
|
6181
6193
|
"data-[selected=true]:bg-neutral-soft"
|
|
6182
6194
|
],
|
|
6183
|
-
icon: ["hover:text-neutral-dark"]
|
|
6195
|
+
icon: ["hover:text-neutral-dark", "data-[disabled=true]:hover:text-neutral-light"]
|
|
6184
6196
|
}
|
|
6185
6197
|
},
|
|
6186
6198
|
{
|
|
@@ -6188,7 +6200,7 @@ var paginationStyle = tv(
|
|
|
6188
6200
|
color: "primary",
|
|
6189
6201
|
class: {
|
|
6190
6202
|
button: ["hover:text-primary-main", "data-[selected=true]:text-primary-main"],
|
|
6191
|
-
icon: ["hover:text-primary-main"]
|
|
6203
|
+
icon: ["hover:text-primary-main", "data-[disabled=true]:hover:text-neutral-light"]
|
|
6192
6204
|
}
|
|
6193
6205
|
},
|
|
6194
6206
|
{
|
|
@@ -6228,7 +6240,7 @@ var paginationStyle = tv(
|
|
|
6228
6240
|
color: "secondary",
|
|
6229
6241
|
class: {
|
|
6230
6242
|
button: ["hover:text-secondary-main", "data-[selected=true]:text-secondary-main"],
|
|
6231
|
-
icon: ["hover:text-secondary-main"]
|
|
6243
|
+
icon: ["hover:text-secondary-main", "data-[disabled=true]:hover:text-neutral-light"]
|
|
6232
6244
|
}
|
|
6233
6245
|
},
|
|
6234
6246
|
{
|
|
@@ -6268,7 +6280,7 @@ var paginationStyle = tv(
|
|
|
6268
6280
|
color: "neutral",
|
|
6269
6281
|
class: {
|
|
6270
6282
|
button: ["hover:text-neutral-dark", "data-[selected=true]:text-neutral-dark"],
|
|
6271
|
-
icon: ["hover:text-neutral-dark"]
|
|
6283
|
+
icon: ["hover:text-neutral-dark", "data-[disabled=true]:hover:text-neutral-light"]
|
|
6272
6284
|
}
|
|
6273
6285
|
},
|
|
6274
6286
|
{
|
|
@@ -2,16 +2,16 @@
|
|
|
2
2
|
import {
|
|
3
3
|
getCellStyle,
|
|
4
4
|
table_default
|
|
5
|
-
} from "../../chunk-
|
|
5
|
+
} from "../../chunk-QXVGMVCG.mjs";
|
|
6
6
|
import "../../chunk-7B7LRG5J.mjs";
|
|
7
|
-
import "../../chunk-
|
|
7
|
+
import "../../chunk-D4YI5HF2.mjs";
|
|
8
8
|
import "../../chunk-F3HENRVM.mjs";
|
|
9
|
-
import "../../chunk-QZ3LVYJW.mjs";
|
|
10
9
|
import "../../chunk-2GCSFWHD.mjs";
|
|
11
10
|
import "../../chunk-VNRGOOSY.mjs";
|
|
11
|
+
import "../../chunk-QZ3LVYJW.mjs";
|
|
12
|
+
import "../../chunk-OEIEALIP.mjs";
|
|
12
13
|
import "../../chunk-DQRAFUDA.mjs";
|
|
13
14
|
import "../../chunk-EWS3FESG.mjs";
|
|
14
|
-
import "../../chunk-OEIEALIP.mjs";
|
|
15
15
|
import "../../chunk-ZYIIXWVY.mjs";
|
|
16
16
|
import "../../chunk-R7KUEH3N.mjs";
|
|
17
17
|
import "../../chunk-E3G5QXSH.mjs";
|
package/dist/index.js
CHANGED
|
@@ -153,7 +153,7 @@ __export(index_exports, {
|
|
|
153
153
|
module.exports = __toCommonJS(index_exports);
|
|
154
154
|
|
|
155
155
|
// src/components/accordion/accordion.tsx
|
|
156
|
-
var import_react =
|
|
156
|
+
var import_react = require("react");
|
|
157
157
|
|
|
158
158
|
// src/utils/tailwind-variants.ts
|
|
159
159
|
var import_tailwind_variants = require("tailwind-variants");
|
|
@@ -781,8 +781,8 @@ var Accordion = (0, import_react.forwardRef)((originalProps, ref) => {
|
|
|
781
781
|
}
|
|
782
782
|
});
|
|
783
783
|
};
|
|
784
|
-
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", { ref, className: slots.base({ class: classNames == null ? void 0 : classNames.base }), children: import_react.
|
|
785
|
-
return import_react.
|
|
784
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", { ref, className: slots.base({ class: classNames == null ? void 0 : classNames.base }), children: import_react.Children.map(children, (child, index) => {
|
|
785
|
+
return (0, import_react.cloneElement)(child, {
|
|
786
786
|
...variantProps,
|
|
787
787
|
...child.props,
|
|
788
788
|
isInGroup: true,
|
|
@@ -894,8 +894,8 @@ var AccordionItem = (0, import_react2.forwardRef)((originalProps, ref) => {
|
|
|
894
894
|
}
|
|
895
895
|
};
|
|
896
896
|
}, [slots, classNames == null ? void 0 : classNames.content, contentHeight, isOpen, disableAnimation]);
|
|
897
|
-
return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)("div", { ref, className: slots.base({ class: classNames == null ? void 0 : classNames.base }), children: [
|
|
898
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsxs)("div", { "data-isopen": isOpen, className: slots.header({ class: classNames == null ? void 0 : classNames.header }),
|
|
897
|
+
return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)("div", { ref, className: slots.base({ class: classNames == null ? void 0 : classNames.base }), onClick: handleToggle, children: [
|
|
898
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsxs)("div", { "data-isopen": isOpen, className: slots.header({ class: classNames == null ? void 0 : classNames.header }), children: [
|
|
899
899
|
startContent && renderContent(startContent),
|
|
900
900
|
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("span", { className: slots.headerTitle({ class: classNames == null ? void 0 : classNames.headerTitle }), children: title }),
|
|
901
901
|
endContent && renderContent(endContent)
|
|
@@ -907,16 +907,18 @@ AccordionItem.displayName = "AccordionItem";
|
|
|
907
907
|
var accordionItem_default = AccordionItem;
|
|
908
908
|
var accordionItem = tv({
|
|
909
909
|
slots: {
|
|
910
|
-
base: [
|
|
911
|
-
|
|
910
|
+
base: [
|
|
911
|
+
"group/accordion",
|
|
912
|
+
"w-full",
|
|
912
913
|
"flex",
|
|
913
|
-
"
|
|
914
|
-
"
|
|
915
|
-
"
|
|
914
|
+
"flex-col",
|
|
915
|
+
"gap-[12px]",
|
|
916
|
+
"p-[12px]",
|
|
917
|
+
"bg-body-background",
|
|
916
918
|
"cursor-pointer",
|
|
917
|
-
"select-none"
|
|
918
|
-
"gap-[8px]"
|
|
919
|
+
"select-none"
|
|
919
920
|
],
|
|
921
|
+
header: ["flex", "justify-between", "items-center", "text-foreground", "gap-[8px]"],
|
|
920
922
|
headerTitle: ["w-full", "font-bold", "text-body-foreground"],
|
|
921
923
|
content: [
|
|
922
924
|
"overflow-hidden",
|
|
@@ -8341,6 +8343,10 @@ var Pagination = (0, import_react16.forwardRef)((originalProps, ref) => {
|
|
|
8341
8343
|
size
|
|
8342
8344
|
} = { ...props, ...variantProps };
|
|
8343
8345
|
const [inputPage, setInputPage] = (0, import_react16.useState)(currentPage);
|
|
8346
|
+
const isFirstPageDisabled = currentPage <= 1;
|
|
8347
|
+
const isPrevPageDisabled = currentPage <= 1;
|
|
8348
|
+
const isNextPageDisabled = currentPage >= totalPage;
|
|
8349
|
+
const isLastPageDisabled = currentPage >= totalPage;
|
|
8344
8350
|
const slots = (0, import_react16.useMemo)(() => paginationStyle(variantProps), [variantProps]);
|
|
8345
8351
|
const { pageList, handleClickMovePage } = usePagination_default({
|
|
8346
8352
|
currentPage,
|
|
@@ -8362,9 +8368,11 @@ var Pagination = (0, import_react16.forwardRef)((originalProps, ref) => {
|
|
|
8362
8368
|
"div",
|
|
8363
8369
|
{
|
|
8364
8370
|
"aria-label": "firstPage",
|
|
8365
|
-
"data-
|
|
8366
|
-
className: slots.icon({
|
|
8367
|
-
|
|
8371
|
+
"data-disabled": isFirstPageDisabled,
|
|
8372
|
+
className: slots.icon({
|
|
8373
|
+
class: clsx(classNames == null ? void 0 : classNames.icon, isFirstPageDisabled && "!text-neutral-light !cursor-default")
|
|
8374
|
+
}),
|
|
8375
|
+
onClick: !isFirstPageDisabled ? handleClickMovePage(1) : void 0,
|
|
8368
8376
|
children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(Icon_default, { name: "left-double-chevron", size })
|
|
8369
8377
|
}
|
|
8370
8378
|
),
|
|
@@ -8372,9 +8380,11 @@ var Pagination = (0, import_react16.forwardRef)((originalProps, ref) => {
|
|
|
8372
8380
|
"div",
|
|
8373
8381
|
{
|
|
8374
8382
|
"aria-label": "prevPage",
|
|
8375
|
-
"data-
|
|
8376
|
-
className: slots.icon({
|
|
8377
|
-
|
|
8383
|
+
"data-disabled": isPrevPageDisabled,
|
|
8384
|
+
className: slots.icon({
|
|
8385
|
+
class: clsx(classNames == null ? void 0 : classNames.icon, isPrevPageDisabled && "!text-neutral-light !cursor-default")
|
|
8386
|
+
}),
|
|
8387
|
+
onClick: !isPrevPageDisabled ? handleClickMovePage(currentPage - 1) : void 0,
|
|
8378
8388
|
children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(Icon_default, { name: "left-chevron", size })
|
|
8379
8389
|
}
|
|
8380
8390
|
),
|
|
@@ -8392,9 +8402,11 @@ var Pagination = (0, import_react16.forwardRef)((originalProps, ref) => {
|
|
|
8392
8402
|
"div",
|
|
8393
8403
|
{
|
|
8394
8404
|
"aria-label": "nextPage",
|
|
8395
|
-
"data-
|
|
8396
|
-
className: slots.icon({
|
|
8397
|
-
|
|
8405
|
+
"data-disabled": isNextPageDisabled,
|
|
8406
|
+
className: slots.icon({
|
|
8407
|
+
class: clsx(classNames == null ? void 0 : classNames.icon, isNextPageDisabled && "!text-neutral-light !cursor-default")
|
|
8408
|
+
}),
|
|
8409
|
+
onClick: !isNextPageDisabled ? handleClickMovePage(currentPage + 1) : void 0,
|
|
8398
8410
|
children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(Icon_default, { name: "right-chevron", size })
|
|
8399
8411
|
}
|
|
8400
8412
|
),
|
|
@@ -8402,9 +8414,11 @@ var Pagination = (0, import_react16.forwardRef)((originalProps, ref) => {
|
|
|
8402
8414
|
"div",
|
|
8403
8415
|
{
|
|
8404
8416
|
"aria-label": "lastPage",
|
|
8405
|
-
"data-
|
|
8406
|
-
className: slots.icon({
|
|
8407
|
-
|
|
8417
|
+
"data-disabled": isLastPageDisabled,
|
|
8418
|
+
className: slots.icon({
|
|
8419
|
+
class: clsx(classNames == null ? void 0 : classNames.icon, isLastPageDisabled && "!text-neutral-light !cursor-default")
|
|
8420
|
+
}),
|
|
8421
|
+
onClick: !isLastPageDisabled ? handleClickMovePage(totalPage) : void 0,
|
|
8408
8422
|
children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(Icon_default, { name: "right-double-chevron", size })
|
|
8409
8423
|
}
|
|
8410
8424
|
)
|
|
@@ -8442,8 +8456,8 @@ var paginationStyle = tv(
|
|
|
8442
8456
|
"justify-center",
|
|
8443
8457
|
"cursor-pointer",
|
|
8444
8458
|
"text-neutral-main",
|
|
8445
|
-
"data-[
|
|
8446
|
-
"data-[
|
|
8459
|
+
"data-[disabled=true]:text-neutral-light",
|
|
8460
|
+
"data-[disabled=true]:cursor-default"
|
|
8447
8461
|
],
|
|
8448
8462
|
button: [
|
|
8449
8463
|
"flex",
|
|
@@ -8504,7 +8518,7 @@ var paginationStyle = tv(
|
|
|
8504
8518
|
"data-[selected=true]:text-primary-main",
|
|
8505
8519
|
"data-[selected=true]:bg-primary-soft"
|
|
8506
8520
|
],
|
|
8507
|
-
icon: ["hover:text-primary-main"]
|
|
8521
|
+
icon: ["hover:text-primary-main", "data-[disabled=true]:hover:text-neutral-light"]
|
|
8508
8522
|
}
|
|
8509
8523
|
},
|
|
8510
8524
|
{
|
|
@@ -8516,7 +8530,7 @@ var paginationStyle = tv(
|
|
|
8516
8530
|
"data-[selected=true]:text-secondary-main",
|
|
8517
8531
|
"data-[selected=true]:bg-secondary-soft"
|
|
8518
8532
|
],
|
|
8519
|
-
icon: ["hover:text-secondary-main"]
|
|
8533
|
+
icon: ["hover:text-secondary-main", "data-[disabled=true]:hover:text-neutral-light"]
|
|
8520
8534
|
}
|
|
8521
8535
|
},
|
|
8522
8536
|
{
|
|
@@ -8528,7 +8542,7 @@ var paginationStyle = tv(
|
|
|
8528
8542
|
"data-[selected=true]:text-neutral-dark",
|
|
8529
8543
|
"data-[selected=true]:bg-neutral-soft"
|
|
8530
8544
|
],
|
|
8531
|
-
icon: ["hover:text-neutral-dark"]
|
|
8545
|
+
icon: ["hover:text-neutral-dark", "data-[disabled=true]:hover:text-neutral-light"]
|
|
8532
8546
|
}
|
|
8533
8547
|
},
|
|
8534
8548
|
{
|
|
@@ -8536,7 +8550,7 @@ var paginationStyle = tv(
|
|
|
8536
8550
|
color: "primary",
|
|
8537
8551
|
class: {
|
|
8538
8552
|
button: ["hover:text-primary-main", "data-[selected=true]:text-primary-main"],
|
|
8539
|
-
icon: ["hover:text-primary-main"]
|
|
8553
|
+
icon: ["hover:text-primary-main", "data-[disabled=true]:hover:text-neutral-light"]
|
|
8540
8554
|
}
|
|
8541
8555
|
},
|
|
8542
8556
|
{
|
|
@@ -8576,7 +8590,7 @@ var paginationStyle = tv(
|
|
|
8576
8590
|
color: "secondary",
|
|
8577
8591
|
class: {
|
|
8578
8592
|
button: ["hover:text-secondary-main", "data-[selected=true]:text-secondary-main"],
|
|
8579
|
-
icon: ["hover:text-secondary-main"]
|
|
8593
|
+
icon: ["hover:text-secondary-main", "data-[disabled=true]:hover:text-neutral-light"]
|
|
8580
8594
|
}
|
|
8581
8595
|
},
|
|
8582
8596
|
{
|
|
@@ -8616,7 +8630,7 @@ var paginationStyle = tv(
|
|
|
8616
8630
|
color: "neutral",
|
|
8617
8631
|
class: {
|
|
8618
8632
|
button: ["hover:text-neutral-dark", "data-[selected=true]:text-neutral-dark"],
|
|
8619
|
-
icon: ["hover:text-neutral-dark"]
|
|
8633
|
+
icon: ["hover:text-neutral-dark", "data-[disabled=true]:hover:text-neutral-light"]
|
|
8620
8634
|
}
|
|
8621
8635
|
},
|
|
8622
8636
|
{
|
package/dist/index.mjs
CHANGED
|
@@ -1,18 +1,14 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import "./chunk-MBLZYQCN.mjs";
|
|
3
|
-
import {
|
|
4
|
-
tree_default
|
|
5
|
-
} from "./chunk-WSBUOY2M.mjs";
|
|
6
2
|
import "./chunk-HIE2YRGA.mjs";
|
|
7
3
|
import {
|
|
8
4
|
tooltip_default
|
|
9
5
|
} from "./chunk-5KC3IFNR.mjs";
|
|
10
6
|
import "./chunk-ZMOAFSYE.mjs";
|
|
11
7
|
import "./chunk-WSIADHVC.mjs";
|
|
12
|
-
import "./chunk-
|
|
8
|
+
import "./chunk-MBLZYQCN.mjs";
|
|
13
9
|
import {
|
|
14
|
-
|
|
15
|
-
} from "./chunk-
|
|
10
|
+
tree_default
|
|
11
|
+
} from "./chunk-WSBUOY2M.mjs";
|
|
16
12
|
import "./chunk-RRAZM5D3.mjs";
|
|
17
13
|
import {
|
|
18
14
|
textarea_default
|
|
@@ -30,13 +26,17 @@ import "./chunk-LVFI2NOH.mjs";
|
|
|
30
26
|
import {
|
|
31
27
|
switch_default
|
|
32
28
|
} from "./chunk-AGE57VDD.mjs";
|
|
29
|
+
import "./chunk-3MY6LO7N.mjs";
|
|
30
|
+
import {
|
|
31
|
+
tabs_default
|
|
32
|
+
} from "./chunk-DW3BX4M2.mjs";
|
|
33
33
|
import "./chunk-DX3KXNP6.mjs";
|
|
34
34
|
import {
|
|
35
35
|
definition_table_default
|
|
36
36
|
} from "./chunk-DS5CGU2X.mjs";
|
|
37
37
|
import {
|
|
38
38
|
table_default
|
|
39
|
-
} from "./chunk-
|
|
39
|
+
} from "./chunk-QXVGMVCG.mjs";
|
|
40
40
|
import "./chunk-MZ76AA76.mjs";
|
|
41
41
|
import {
|
|
42
42
|
skeleton_default
|
|
@@ -53,15 +53,15 @@ import "./chunk-QCEKPS7U.mjs";
|
|
|
53
53
|
import {
|
|
54
54
|
select_default
|
|
55
55
|
} from "./chunk-5G6CCE55.mjs";
|
|
56
|
-
import "./chunk-TPFN22HR.mjs";
|
|
57
|
-
import {
|
|
58
|
-
radio_default
|
|
59
|
-
} from "./chunk-PRNE3U26.mjs";
|
|
60
56
|
import "./chunk-7B7LRG5J.mjs";
|
|
61
57
|
import {
|
|
62
58
|
pagination_default
|
|
63
|
-
} from "./chunk-
|
|
59
|
+
} from "./chunk-D4YI5HF2.mjs";
|
|
64
60
|
import "./chunk-F3HENRVM.mjs";
|
|
61
|
+
import "./chunk-TPFN22HR.mjs";
|
|
62
|
+
import {
|
|
63
|
+
radio_default
|
|
64
|
+
} from "./chunk-PRNE3U26.mjs";
|
|
65
65
|
import {
|
|
66
66
|
datePicker_default
|
|
67
67
|
} from "./chunk-52VX5MC2.mjs";
|
|
@@ -69,10 +69,18 @@ import "./chunk-FWFEKWWD.mjs";
|
|
|
69
69
|
import {
|
|
70
70
|
day_default
|
|
71
71
|
} from "./chunk-XZYQFBCT.mjs";
|
|
72
|
-
import "./chunk-
|
|
72
|
+
import "./chunk-RLXOHILK.mjs";
|
|
73
73
|
import {
|
|
74
|
-
|
|
75
|
-
} from "./chunk-
|
|
74
|
+
fileUpload_default
|
|
75
|
+
} from "./chunk-4XEZQMLU.mjs";
|
|
76
|
+
import "./chunk-7VOQKIIK.mjs";
|
|
77
|
+
import {
|
|
78
|
+
progress_default
|
|
79
|
+
} from "./chunk-KH63CD55.mjs";
|
|
80
|
+
import "./chunk-2GCSFWHD.mjs";
|
|
81
|
+
import {
|
|
82
|
+
input_default
|
|
83
|
+
} from "./chunk-VNRGOOSY.mjs";
|
|
76
84
|
import "./chunk-7MVEAQ7Z.mjs";
|
|
77
85
|
import {
|
|
78
86
|
list_default
|
|
@@ -84,24 +92,22 @@ import "./chunk-DJOG6Z35.mjs";
|
|
|
84
92
|
import {
|
|
85
93
|
modal_default
|
|
86
94
|
} from "./chunk-SCQCMQDP.mjs";
|
|
87
|
-
import "./chunk-
|
|
95
|
+
import "./chunk-MGEWSREV.mjs";
|
|
96
|
+
import {
|
|
97
|
+
chip_default
|
|
98
|
+
} from "./chunk-2B3HDC26.mjs";
|
|
88
99
|
import "./chunk-32GA3YW4.mjs";
|
|
89
100
|
import {
|
|
90
101
|
drawer_default
|
|
91
102
|
} from "./chunk-45Y7ANPK.mjs";
|
|
92
|
-
import "./chunk-
|
|
93
|
-
import {
|
|
94
|
-
fileUpload_default
|
|
95
|
-
} from "./chunk-4XEZQMLU.mjs";
|
|
96
|
-
import "./chunk-7VOQKIIK.mjs";
|
|
97
|
-
import {
|
|
98
|
-
progress_default
|
|
99
|
-
} from "./chunk-KH63CD55.mjs";
|
|
100
|
-
import "./chunk-2GCSFWHD.mjs";
|
|
103
|
+
import "./chunk-QZ3LVYJW.mjs";
|
|
101
104
|
import {
|
|
102
|
-
|
|
103
|
-
} from "./chunk-
|
|
105
|
+
checkbox_default
|
|
106
|
+
} from "./chunk-OEIEALIP.mjs";
|
|
104
107
|
import "./chunk-3OCNT22V.mjs";
|
|
108
|
+
import {
|
|
109
|
+
simpleBarChart_default
|
|
110
|
+
} from "./chunk-GWHUQUKA.mjs";
|
|
105
111
|
import {
|
|
106
112
|
areaChart_default
|
|
107
113
|
} from "./chunk-LH6Z7SDZ.mjs";
|
|
@@ -119,12 +125,6 @@ import {
|
|
|
119
125
|
import {
|
|
120
126
|
radarChart_default
|
|
121
127
|
} from "./chunk-U7SYKG2C.mjs";
|
|
122
|
-
import {
|
|
123
|
-
simpleBarChart_default
|
|
124
|
-
} from "./chunk-GWHUQUKA.mjs";
|
|
125
|
-
import {
|
|
126
|
-
checkbox_default
|
|
127
|
-
} from "./chunk-OEIEALIP.mjs";
|
|
128
128
|
import "./chunk-SE5TU755.mjs";
|
|
129
129
|
import {
|
|
130
130
|
backdrop_default
|
|
@@ -157,10 +157,10 @@ import {
|
|
|
157
157
|
import "./chunk-NMSDSEBD.mjs";
|
|
158
158
|
import {
|
|
159
159
|
accordion_default
|
|
160
|
-
} from "./chunk-
|
|
160
|
+
} from "./chunk-JGG3ZUNG.mjs";
|
|
161
161
|
import {
|
|
162
162
|
accordionItem_default
|
|
163
|
-
} from "./chunk-
|
|
163
|
+
} from "./chunk-NTNF5T5I.mjs";
|
|
164
164
|
import "./chunk-E3G5QXSH.mjs";
|
|
165
165
|
import "./chunk-7DLOYKVC.mjs";
|
|
166
166
|
import {
|