@deepnoid/ui 0.0.97 → 0.0.99

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.
Files changed (32) hide show
  1. package/dist/{chunk-P6AZMYVR.mjs → chunk-FY5YCQL5.mjs} +1 -1
  2. package/dist/{chunk-PNFR2J4Q.mjs → chunk-JMXQYSKY.mjs} +71 -43
  3. package/dist/{chunk-B4KZBOGT.mjs → chunk-UGBBOYHB.mjs} +1 -1
  4. package/dist/components/pagination/index.js +1 -1
  5. package/dist/components/pagination/index.mjs +1 -1
  6. package/dist/components/pagination/pagination.js +1 -1
  7. package/dist/components/pagination/pagination.mjs +1 -1
  8. package/dist/components/pagination/pagination.test.js +1 -1
  9. package/dist/components/pagination/pagination.test.mjs +1 -1
  10. package/dist/components/select/index.mjs +2 -2
  11. package/dist/components/select/select.mjs +2 -2
  12. package/dist/components/select/select.test.mjs +2 -2
  13. package/dist/components/table/index.js +71 -43
  14. package/dist/components/table/index.mjs +1 -1
  15. package/dist/components/table/table-body.d.mts +0 -1
  16. package/dist/components/table/table-body.d.ts +0 -1
  17. package/dist/components/table/table.d.mts +60 -3
  18. package/dist/components/table/table.d.ts +60 -3
  19. package/dist/components/table/table.js +71 -43
  20. package/dist/components/table/table.mjs +1 -1
  21. package/dist/components/table/table.test.js +71 -43
  22. package/dist/components/table/table.test.mjs +1 -1
  23. package/dist/components/tooltip/index.js +1 -1
  24. package/dist/components/tooltip/index.mjs +1 -1
  25. package/dist/components/tooltip/tooltip.js +1 -1
  26. package/dist/components/tooltip/tooltip.mjs +1 -1
  27. package/dist/components/tooltip/tooltip.test.js +1 -1
  28. package/dist/components/tooltip/tooltip.test.mjs +1 -1
  29. package/dist/index.js +73 -45
  30. package/dist/index.mjs +24 -24
  31. package/package.json +1 -1
  32. package/dist/{chunk-2BCJZILI.mjs → chunk-JN7EGKJL.mjs} +3 -3
@@ -76,7 +76,7 @@ Tooltip.displayName = "Tooltip";
76
76
  var tooltip_default = Tooltip;
77
77
  var tooltip = tv({
78
78
  slots: {
79
- base: ["z-0", "relative", "inline-flex", "bg-transparent"],
79
+ base: ["z-0", "relative", "bg-transparent"],
80
80
  content: [
81
81
  "absolute",
82
82
  "top-0",
@@ -18,7 +18,7 @@ import { tv } from "tailwind-variants";
18
18
  import { jsx, jsxs } from "react/jsx-runtime";
19
19
  var Table = forwardRef((originalProps, ref) => {
20
20
  const [props, variantProps] = mapPropsVariants(originalProps, table.variantKeys);
21
- const { classNames, rows, columns, isLoading, className, emptyContent, onRowAction, ...tableComponentsProps } = props;
21
+ const { classNames, rows, columns, className, emptyContent, loadingContent, onRowAction, ...tableComponentsProps } = props;
22
22
  const [checkedRows, setCheckedRows] = useState(/* @__PURE__ */ new Set());
23
23
  const [selectedRows, setSelectedRows] = useState(/* @__PURE__ */ new Set());
24
24
  useEffect(() => {
@@ -38,10 +38,17 @@ var Table = forwardRef((originalProps, ref) => {
38
38
  const getTableProps = useCallback(
39
39
  (props2) => ({
40
40
  ...props2,
41
- className: slots.table({ class: clsx(classNames == null ? void 0 : classNames.table, className) })
41
+ className: slots.table({ class: clsx(classNames == null ? void 0 : classNames.table) })
42
42
  }),
43
43
  [classNames == null ? void 0 : classNames.table, slots]
44
44
  );
45
+ const getLoadingWrapperProps = useCallback(
46
+ (props2) => ({
47
+ ...props2,
48
+ className: slots.loadingWrapper({ class: clsx(classNames == null ? void 0 : classNames.loadingWrapper) })
49
+ }),
50
+ [classNames == null ? void 0 : classNames.loadingWrapper, slots]
51
+ );
45
52
  const handleCheckAll = (isChecked) => {
46
53
  const newCheckedRows = isChecked ? new Set(rows.map((_, index) => index)) : /* @__PURE__ */ new Set();
47
54
  setCheckedRows(newCheckedRows);
@@ -79,53 +86,55 @@ var Table = forwardRef((originalProps, ref) => {
79
86
  setCheckedRows,
80
87
  setSelectedRows
81
88
  }));
82
- return /* @__PURE__ */ jsx("div", { ref, "data-table": "base", ...getBaseProps(), children: /* @__PURE__ */ jsxs("table", { ...getTableProps(tableComponentsProps), children: [
83
- /* @__PURE__ */ jsx(
84
- table_head_default,
85
- {
86
- classNames,
87
- slots,
88
- columns,
89
- size: originalProps.size,
90
- color: originalProps.color === "neutral" ? "primary" : originalProps.color,
91
- isChecked: originalProps.isChecked,
92
- isExpanded: originalProps.isExpanded,
93
- onCheckAll: handleCheckAll,
94
- isCheckedAll: checkedRows.size === rows.length
95
- }
96
- ),
97
- /* @__PURE__ */ jsx(
98
- table_body_default,
99
- {
100
- rows,
101
- columns,
102
- slots,
103
- size: originalProps.size,
104
- color: originalProps.color === "neutral" ? "primary" : originalProps.color,
105
- isSelected: originalProps.isSelected,
106
- isChecked: originalProps.isChecked,
107
- isCheckedRow: originalProps.isCheckedRow,
108
- isExpanded: originalProps.isExpanded,
109
- isLoading,
110
- classNames,
111
- emptyContent,
112
- selectedRows,
113
- checkedRows,
114
- onCheckedRow: handleCheckRow,
115
- onSelectedRow: handleSelectRow,
116
- onRowAction
117
- }
118
- )
119
- ] }) });
89
+ return /* @__PURE__ */ jsxs("div", { ref, "data-table": "base", ...getBaseProps(), children: [
90
+ /* @__PURE__ */ jsxs("table", { ...getTableProps(tableComponentsProps), children: [
91
+ /* @__PURE__ */ jsx(
92
+ table_head_default,
93
+ {
94
+ classNames,
95
+ slots,
96
+ columns,
97
+ size: originalProps.size,
98
+ color: originalProps.color === "neutral" ? "primary" : originalProps.color,
99
+ isChecked: originalProps.isChecked,
100
+ isExpanded: originalProps.isExpanded,
101
+ onCheckAll: handleCheckAll,
102
+ isCheckedAll: checkedRows.size === rows.length
103
+ }
104
+ ),
105
+ /* @__PURE__ */ jsx(
106
+ table_body_default,
107
+ {
108
+ rows,
109
+ columns,
110
+ slots,
111
+ size: originalProps.size,
112
+ color: originalProps.color === "neutral" ? "primary" : originalProps.color,
113
+ isSelected: originalProps.isSelected,
114
+ isChecked: originalProps.isChecked,
115
+ isCheckedRow: originalProps.isCheckedRow,
116
+ isExpanded: originalProps.isExpanded,
117
+ classNames,
118
+ emptyContent,
119
+ selectedRows,
120
+ checkedRows,
121
+ onCheckedRow: handleCheckRow,
122
+ onSelectedRow: handleSelectRow,
123
+ onRowAction
124
+ }
125
+ )
126
+ ] }),
127
+ /* @__PURE__ */ jsx("div", { ...getLoadingWrapperProps(), children: loadingContent || "Loading..." })
128
+ ] });
120
129
  });
121
130
  Table.displayName = "Table";
122
131
  var table_default = Table;
123
132
  var table = tv({
124
133
  slots: {
125
- base: "flex flex-col relative gap-4",
134
+ base: "flex flex-col relative gap-4 select-none",
126
135
  table: "w-full h-auto",
127
136
  thead: "[&>tr]:first:rounded-lg",
128
- tbody: "w-full",
137
+ tbody: "",
129
138
  tr: ["group", "outline-none", "w-full"],
130
139
  th: [
131
140
  "text-foreground",
@@ -164,7 +173,18 @@ var table = tv({
164
173
  "data-[direction=ascending]:rotate-180"
165
174
  ],
166
175
  emptyWrapper: "text-neutral-light align-middle text-center h-40",
167
- loadingWrapper: "absolute inset-0 flex items-center justify-center"
176
+ loadingWrapper: [
177
+ "absolute",
178
+ "inset-0",
179
+ "flex",
180
+ "items-center",
181
+ "justify-center",
182
+ "bg-black/40",
183
+ "text-white",
184
+ "transition-opacity",
185
+ "duration-300",
186
+ "ease-in-out"
187
+ ]
168
188
  },
169
189
  variants: {
170
190
  variant: {
@@ -210,6 +230,14 @@ var table = tv({
210
230
  expandedTr: "border-trans-light"
211
231
  }
212
232
  },
233
+ isLoading: {
234
+ true: {
235
+ loadingWrapper: "visible opacity-100"
236
+ },
237
+ false: {
238
+ loadingWrapper: "invisible opacity-0"
239
+ }
240
+ },
213
241
  isSelected: {
214
242
  true: {}
215
243
  },
@@ -19,7 +19,7 @@ var Pagination = forwardRef((originalProps, ref) => {
19
19
  currentPage,
20
20
  groupSize,
21
21
  totalPage,
22
- showPageNumber,
22
+ showPageNumber = true,
23
23
  showPageLabel,
24
24
  showFirstLastButtons,
25
25
  handleChangePage
@@ -101,7 +101,7 @@ var Pagination = (0, import_react2.forwardRef)((originalProps, ref) => {
101
101
  currentPage,
102
102
  groupSize,
103
103
  totalPage,
104
- showPageNumber,
104
+ showPageNumber = true,
105
105
  showPageLabel,
106
106
  showFirstLastButtons,
107
107
  handleChangePage
@@ -2,7 +2,7 @@
2
2
  import "../../chunk-7B7LRG5J.mjs";
3
3
  import {
4
4
  pagination_default
5
- } from "../../chunk-B4KZBOGT.mjs";
5
+ } from "../../chunk-UGBBOYHB.mjs";
6
6
  import "../../chunk-F3HENRVM.mjs";
7
7
  import "../../chunk-E3G5QXSH.mjs";
8
8
  import "../../chunk-J725QONZ.mjs";
@@ -101,7 +101,7 @@ var Pagination = (0, import_react2.forwardRef)((originalProps, ref) => {
101
101
  currentPage,
102
102
  groupSize,
103
103
  totalPage,
104
- showPageNumber,
104
+ showPageNumber = true,
105
105
  showPageLabel,
106
106
  showFirstLastButtons,
107
107
  handleChangePage
@@ -3,7 +3,7 @@ import {
3
3
  Pagination,
4
4
  pagination,
5
5
  pagination_default
6
- } from "../../chunk-B4KZBOGT.mjs";
6
+ } from "../../chunk-UGBBOYHB.mjs";
7
7
  import "../../chunk-F3HENRVM.mjs";
8
8
  import "../../chunk-E3G5QXSH.mjs";
9
9
  import "../../chunk-J725QONZ.mjs";
@@ -12946,7 +12946,7 @@ var Pagination = (0, import_react2.forwardRef)((originalProps, ref) => {
12946
12946
  currentPage,
12947
12947
  groupSize,
12948
12948
  totalPage,
12949
- showPageNumber,
12949
+ showPageNumber = true,
12950
12950
  showPageLabel,
12951
12951
  showFirstLastButtons,
12952
12952
  handleChangePage
@@ -1,7 +1,7 @@
1
1
  "use client";
2
2
  import {
3
3
  pagination_default
4
- } from "../../chunk-B4KZBOGT.mjs";
4
+ } from "../../chunk-UGBBOYHB.mjs";
5
5
  import "../../chunk-F3HENRVM.mjs";
6
6
  import {
7
7
  render
@@ -2,9 +2,9 @@
2
2
  import "../../chunk-QCEKPS7U.mjs";
3
3
  import {
4
4
  select_default
5
- } from "../../chunk-2BCJZILI.mjs";
6
- import "../../chunk-S3QS5B7F.mjs";
5
+ } from "../../chunk-JN7EGKJL.mjs";
7
6
  import "../../chunk-RZZWHI6O.mjs";
7
+ import "../../chunk-S3QS5B7F.mjs";
8
8
  import "../../chunk-ZYIIXWVY.mjs";
9
9
  import "../../chunk-LCI6RPWE.mjs";
10
10
  import "../../chunk-IOCRFIQF.mjs";
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  select_default
4
- } from "../../chunk-2BCJZILI.mjs";
5
- import "../../chunk-S3QS5B7F.mjs";
4
+ } from "../../chunk-JN7EGKJL.mjs";
6
5
  import "../../chunk-RZZWHI6O.mjs";
6
+ import "../../chunk-S3QS5B7F.mjs";
7
7
  import "../../chunk-ZYIIXWVY.mjs";
8
8
  import "../../chunk-LCI6RPWE.mjs";
9
9
  import "../../chunk-IOCRFIQF.mjs";
@@ -4,9 +4,9 @@ import {
4
4
  } from "../../chunk-S4DTK5GI.mjs";
5
5
  import {
6
6
  select_default
7
- } from "../../chunk-2BCJZILI.mjs";
8
- import "../../chunk-S3QS5B7F.mjs";
7
+ } from "../../chunk-JN7EGKJL.mjs";
9
8
  import "../../chunk-RZZWHI6O.mjs";
9
+ import "../../chunk-S3QS5B7F.mjs";
10
10
  import {
11
11
  act,
12
12
  render
@@ -4052,7 +4052,7 @@ var import_tailwind_variants3 = require("tailwind-variants");
4052
4052
  var import_jsx_runtime6 = require("react/jsx-runtime");
4053
4053
  var Table = (0, import_react6.forwardRef)((originalProps, ref) => {
4054
4054
  const [props, variantProps] = mapPropsVariants(originalProps, table.variantKeys);
4055
- const { classNames, rows, columns, isLoading, className, emptyContent, onRowAction, ...tableComponentsProps } = props;
4055
+ const { classNames, rows, columns, className, emptyContent, loadingContent, onRowAction, ...tableComponentsProps } = props;
4056
4056
  const [checkedRows, setCheckedRows] = (0, import_react6.useState)(/* @__PURE__ */ new Set());
4057
4057
  const [selectedRows, setSelectedRows] = (0, import_react6.useState)(/* @__PURE__ */ new Set());
4058
4058
  (0, import_react6.useEffect)(() => {
@@ -4072,10 +4072,17 @@ var Table = (0, import_react6.forwardRef)((originalProps, ref) => {
4072
4072
  const getTableProps = (0, import_react6.useCallback)(
4073
4073
  (props2) => ({
4074
4074
  ...props2,
4075
- className: slots.table({ class: clsx(classNames == null ? void 0 : classNames.table, className) })
4075
+ className: slots.table({ class: clsx(classNames == null ? void 0 : classNames.table) })
4076
4076
  }),
4077
4077
  [classNames == null ? void 0 : classNames.table, slots]
4078
4078
  );
4079
+ const getLoadingWrapperProps = (0, import_react6.useCallback)(
4080
+ (props2) => ({
4081
+ ...props2,
4082
+ className: slots.loadingWrapper({ class: clsx(classNames == null ? void 0 : classNames.loadingWrapper) })
4083
+ }),
4084
+ [classNames == null ? void 0 : classNames.loadingWrapper, slots]
4085
+ );
4079
4086
  const handleCheckAll = (isChecked) => {
4080
4087
  const newCheckedRows = isChecked ? new Set(rows.map((_, index) => index)) : /* @__PURE__ */ new Set();
4081
4088
  setCheckedRows(newCheckedRows);
@@ -4113,53 +4120,55 @@ var Table = (0, import_react6.forwardRef)((originalProps, ref) => {
4113
4120
  setCheckedRows,
4114
4121
  setSelectedRows
4115
4122
  }));
4116
- return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("div", { ref, "data-table": "base", ...getBaseProps(), children: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("table", { ...getTableProps(tableComponentsProps), children: [
4117
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
4118
- table_head_default,
4119
- {
4120
- classNames,
4121
- slots,
4122
- columns,
4123
- size: originalProps.size,
4124
- color: originalProps.color === "neutral" ? "primary" : originalProps.color,
4125
- isChecked: originalProps.isChecked,
4126
- isExpanded: originalProps.isExpanded,
4127
- onCheckAll: handleCheckAll,
4128
- isCheckedAll: checkedRows.size === rows.length
4129
- }
4130
- ),
4131
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
4132
- table_body_default,
4133
- {
4134
- rows,
4135
- columns,
4136
- slots,
4137
- size: originalProps.size,
4138
- color: originalProps.color === "neutral" ? "primary" : originalProps.color,
4139
- isSelected: originalProps.isSelected,
4140
- isChecked: originalProps.isChecked,
4141
- isCheckedRow: originalProps.isCheckedRow,
4142
- isExpanded: originalProps.isExpanded,
4143
- isLoading,
4144
- classNames,
4145
- emptyContent,
4146
- selectedRows,
4147
- checkedRows,
4148
- onCheckedRow: handleCheckRow,
4149
- onSelectedRow: handleSelectRow,
4150
- onRowAction
4151
- }
4152
- )
4153
- ] }) });
4123
+ return /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("div", { ref, "data-table": "base", ...getBaseProps(), children: [
4124
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("table", { ...getTableProps(tableComponentsProps), children: [
4125
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
4126
+ table_head_default,
4127
+ {
4128
+ classNames,
4129
+ slots,
4130
+ columns,
4131
+ size: originalProps.size,
4132
+ color: originalProps.color === "neutral" ? "primary" : originalProps.color,
4133
+ isChecked: originalProps.isChecked,
4134
+ isExpanded: originalProps.isExpanded,
4135
+ onCheckAll: handleCheckAll,
4136
+ isCheckedAll: checkedRows.size === rows.length
4137
+ }
4138
+ ),
4139
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
4140
+ table_body_default,
4141
+ {
4142
+ rows,
4143
+ columns,
4144
+ slots,
4145
+ size: originalProps.size,
4146
+ color: originalProps.color === "neutral" ? "primary" : originalProps.color,
4147
+ isSelected: originalProps.isSelected,
4148
+ isChecked: originalProps.isChecked,
4149
+ isCheckedRow: originalProps.isCheckedRow,
4150
+ isExpanded: originalProps.isExpanded,
4151
+ classNames,
4152
+ emptyContent,
4153
+ selectedRows,
4154
+ checkedRows,
4155
+ onCheckedRow: handleCheckRow,
4156
+ onSelectedRow: handleSelectRow,
4157
+ onRowAction
4158
+ }
4159
+ )
4160
+ ] }),
4161
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("div", { ...getLoadingWrapperProps(), children: loadingContent || "Loading..." })
4162
+ ] });
4154
4163
  });
4155
4164
  Table.displayName = "Table";
4156
4165
  var table_default = Table;
4157
4166
  var table = (0, import_tailwind_variants3.tv)({
4158
4167
  slots: {
4159
- base: "flex flex-col relative gap-4",
4168
+ base: "flex flex-col relative gap-4 select-none",
4160
4169
  table: "w-full h-auto",
4161
4170
  thead: "[&>tr]:first:rounded-lg",
4162
- tbody: "w-full",
4171
+ tbody: "",
4163
4172
  tr: ["group", "outline-none", "w-full"],
4164
4173
  th: [
4165
4174
  "text-foreground",
@@ -4198,7 +4207,18 @@ var table = (0, import_tailwind_variants3.tv)({
4198
4207
  "data-[direction=ascending]:rotate-180"
4199
4208
  ],
4200
4209
  emptyWrapper: "text-neutral-light align-middle text-center h-40",
4201
- loadingWrapper: "absolute inset-0 flex items-center justify-center"
4210
+ loadingWrapper: [
4211
+ "absolute",
4212
+ "inset-0",
4213
+ "flex",
4214
+ "items-center",
4215
+ "justify-center",
4216
+ "bg-black/40",
4217
+ "text-white",
4218
+ "transition-opacity",
4219
+ "duration-300",
4220
+ "ease-in-out"
4221
+ ]
4202
4222
  },
4203
4223
  variants: {
4204
4224
  variant: {
@@ -4244,6 +4264,14 @@ var table = (0, import_tailwind_variants3.tv)({
4244
4264
  expandedTr: "border-trans-light"
4245
4265
  }
4246
4266
  },
4267
+ isLoading: {
4268
+ true: {
4269
+ loadingWrapper: "visible opacity-100"
4270
+ },
4271
+ false: {
4272
+ loadingWrapper: "invisible opacity-0"
4273
+ }
4274
+ },
4247
4275
  isSelected: {
4248
4276
  true: {}
4249
4277
  },
@@ -2,7 +2,7 @@
2
2
  import "../../chunk-2UUH2MBF.mjs";
3
3
  import {
4
4
  table_default
5
- } from "../../chunk-PNFR2J4Q.mjs";
5
+ } from "../../chunk-JMXQYSKY.mjs";
6
6
  import "../../chunk-QDDEQY63.mjs";
7
7
  import "../../chunk-PO3ADNA5.mjs";
8
8
  import "../../chunk-QZ3LVYJW.mjs";
@@ -12,7 +12,6 @@ type TableBodyProps = {
12
12
  slots: TableReturnType;
13
13
  rows: TableRow[];
14
14
  columns: TableColumn[];
15
- isLoading?: boolean;
16
15
  isExpanded?: boolean;
17
16
  isSelected?: boolean;
18
17
  isChecked?: boolean;
@@ -12,7 +12,6 @@ type TableBodyProps = {
12
12
  slots: TableReturnType;
13
13
  rows: TableRow[];
14
14
  columns: TableColumn[];
15
- isLoading?: boolean;
16
15
  isExpanded?: boolean;
17
16
  isSelected?: boolean;
18
17
  isChecked?: boolean;
@@ -9,6 +9,7 @@ interface Props extends Omit<React__default.ComponentPropsWithRef<"table">, "ref
9
9
  columns: TableColumn[];
10
10
  isLoading?: boolean;
11
11
  emptyContent?: ReactElement;
12
+ loadingContent?: ReactElement;
12
13
  classNames?: SlotsToClasses<TableSlots>;
13
14
  onRowAction?: (e: React__default.MouseEvent, params: TableRow) => void;
14
15
  }
@@ -64,6 +65,14 @@ declare const table: tailwind_variants.TVReturnType<{
64
65
  expandedTr: string;
65
66
  };
66
67
  };
68
+ isLoading: {
69
+ true: {
70
+ loadingWrapper: string;
71
+ };
72
+ false: {
73
+ loadingWrapper: string;
74
+ };
75
+ };
67
76
  isSelected: {
68
77
  true: {};
69
78
  };
@@ -111,7 +120,7 @@ declare const table: tailwind_variants.TVReturnType<{
111
120
  expandedTr: string;
112
121
  sortIcon: string[];
113
122
  emptyWrapper: string;
114
- loadingWrapper: string;
123
+ loadingWrapper: string[];
115
124
  }, undefined, tailwind_variants_dist_config.TVConfig<{
116
125
  variant: {
117
126
  solid: {
@@ -156,6 +165,14 @@ declare const table: tailwind_variants.TVReturnType<{
156
165
  expandedTr: string;
157
166
  };
158
167
  };
168
+ isLoading: {
169
+ true: {
170
+ loadingWrapper: string;
171
+ };
172
+ false: {
173
+ loadingWrapper: string;
174
+ };
175
+ };
159
176
  isSelected: {
160
177
  true: {};
161
178
  };
@@ -235,6 +252,14 @@ declare const table: tailwind_variants.TVReturnType<{
235
252
  expandedTr: string;
236
253
  };
237
254
  };
255
+ isLoading: {
256
+ true: {
257
+ loadingWrapper: string;
258
+ };
259
+ false: {
260
+ loadingWrapper: string;
261
+ };
262
+ };
238
263
  isSelected: {
239
264
  true: {};
240
265
  };
@@ -314,6 +339,14 @@ declare const table: tailwind_variants.TVReturnType<{
314
339
  expandedTr: string;
315
340
  };
316
341
  };
342
+ isLoading: {
343
+ true: {
344
+ loadingWrapper: string;
345
+ };
346
+ false: {
347
+ loadingWrapper: string;
348
+ };
349
+ };
317
350
  isSelected: {
318
351
  true: {};
319
352
  };
@@ -361,7 +394,7 @@ declare const table: tailwind_variants.TVReturnType<{
361
394
  expandedTr: string;
362
395
  sortIcon: string[];
363
396
  emptyWrapper: string;
364
- loadingWrapper: string;
397
+ loadingWrapper: string[];
365
398
  }, tailwind_variants.TVReturnType<{
366
399
  variant: {
367
400
  solid: {
@@ -406,6 +439,14 @@ declare const table: tailwind_variants.TVReturnType<{
406
439
  expandedTr: string;
407
440
  };
408
441
  };
442
+ isLoading: {
443
+ true: {
444
+ loadingWrapper: string;
445
+ };
446
+ false: {
447
+ loadingWrapper: string;
448
+ };
449
+ };
409
450
  isSelected: {
410
451
  true: {};
411
452
  };
@@ -453,7 +494,7 @@ declare const table: tailwind_variants.TVReturnType<{
453
494
  expandedTr: string;
454
495
  sortIcon: string[];
455
496
  emptyWrapper: string;
456
- loadingWrapper: string;
497
+ loadingWrapper: string[];
457
498
  }, undefined, tailwind_variants_dist_config.TVConfig<{
458
499
  variant: {
459
500
  solid: {
@@ -498,6 +539,14 @@ declare const table: tailwind_variants.TVReturnType<{
498
539
  expandedTr: string;
499
540
  };
500
541
  };
542
+ isLoading: {
543
+ true: {
544
+ loadingWrapper: string;
545
+ };
546
+ false: {
547
+ loadingWrapper: string;
548
+ };
549
+ };
501
550
  isSelected: {
502
551
  true: {};
503
552
  };
@@ -577,6 +626,14 @@ declare const table: tailwind_variants.TVReturnType<{
577
626
  expandedTr: string;
578
627
  };
579
628
  };
629
+ isLoading: {
630
+ true: {
631
+ loadingWrapper: string;
632
+ };
633
+ false: {
634
+ loadingWrapper: string;
635
+ };
636
+ };
580
637
  isSelected: {
581
638
  true: {};
582
639
  };