@ztwoint/z-ui 0.1.75 → 0.1.76
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/dist/components/table/components/index.d.ts +1 -1
- package/dist/components/table/components/table-message-state.d.ts +8 -0
- package/dist/components/table/components/table-message-state.js +9 -0
- package/dist/components/table/index.d.ts +1 -1
- package/dist/components/table/table.const.d.ts +1 -0
- package/dist/components/table/table.const.js +1 -0
- package/dist/components/table/table.d.ts +1 -0
- package/dist/components/table/table.js +49 -28
- package/dist/components/table-card/table-card.js +13 -11
- package/dist/components/table-card/table-card.type.d.ts +1 -0
- package/dist/index.js +11 -11
- package/dist/types/components/table/components/index.d.ts +1 -1
- package/dist/types/components/table/components/table-message-state.d.ts +8 -0
- package/dist/types/components/table/index.d.ts +1 -1
- package/dist/types/components/table/table.const.d.ts +1 -0
- package/dist/types/components/table/table.d.ts +1 -0
- package/dist/types/components/table-card/table-card.type.d.ts +1 -0
- package/package.json +1 -1
- package/dist/components/table/components/table-empty-state.d.ts +0 -7
- package/dist/components/table/components/table-empty-state.js +0 -6
- package/dist/types/components/table/components/table-empty-state.d.ts +0 -7
|
@@ -2,7 +2,7 @@ export { TableCell } from './table-cell';
|
|
|
2
2
|
export { NumberCell, BooleanCell, AvatarCell, DescriptionCell, LabelCell, LinkCell } from './cell';
|
|
3
3
|
export { TableHeader } from './table-header';
|
|
4
4
|
export { TableRow } from './table-row';
|
|
5
|
-
export {
|
|
5
|
+
export { TableMessageState } from './table-message-state';
|
|
6
6
|
export { TableLoadingState } from './table-loading-state';
|
|
7
7
|
export { Pagination as TablePagination } from './pagination/pagination';
|
|
8
8
|
export { TableHeaderWrapper } from './table-header-wrapper';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
+
const o = ({
|
|
3
|
+
colSpan: r,
|
|
4
|
+
message: t,
|
|
5
|
+
className: d
|
|
6
|
+
}) => /* @__PURE__ */ e("tbody", { children: /* @__PURE__ */ e("tr", { children: /* @__PURE__ */ e("td", { colSpan: r, className: d, children: t }) }) });
|
|
7
|
+
export {
|
|
8
|
+
o as TableMessageState
|
|
9
|
+
};
|
|
@@ -4,6 +4,6 @@ export type { TableProps, TableSchema, TableSchemaColumn, CellType, CellValue, C
|
|
|
4
4
|
export { extractCellValue } from './table.utils';
|
|
5
5
|
export { DEFAULT_EMPTY_MESSAGE, TABLE_CSS_CLASSES } from './table.const';
|
|
6
6
|
export { TableContext, useTableContext } from './table.context';
|
|
7
|
-
export { TableCell, TableHeader, TableRow,
|
|
7
|
+
export { TableCell, TableHeader, TableRow, TableMessageState, TableLoadingState, TablePagination, NumberCell, BooleanCell, TableHeaderWrapper, TableHeaderContent, TableFooter, TableFooterContent, } from './components';
|
|
8
8
|
export { PaginationInfo, PaginationQuickJumper } from './components/pagination/components';
|
|
9
9
|
export * from './components/cell';
|
|
@@ -26,5 +26,6 @@ export declare const TABLE_CSS_CLASSES: {
|
|
|
26
26
|
readonly sortIconActive: "ml-2 w-4 h-4 text-gray-600";
|
|
27
27
|
readonly row: " transition-colors duration-200 text-text-neutral-primary";
|
|
28
28
|
readonly emptyState: "px-4 py-8 text-center text-gray-500";
|
|
29
|
+
readonly dataErrorState: "px-4 py-8 text-center text-text-danger-primary";
|
|
29
30
|
readonly loading: "px-4 py-8 text-center text-gray-500";
|
|
30
31
|
};
|
|
@@ -25,6 +25,7 @@ const e = "No data available", t = {
|
|
|
25
25
|
sortIconActive: "ml-2 w-4 h-4 text-gray-600",
|
|
26
26
|
row: " transition-colors duration-200 text-text-neutral-primary",
|
|
27
27
|
emptyState: "px-4 py-8 text-center text-gray-500",
|
|
28
|
+
dataErrorState: "px-4 py-8 text-center text-text-danger-primary",
|
|
28
29
|
loading: "px-4 py-8 text-center text-gray-500"
|
|
29
30
|
};
|
|
30
31
|
export {
|
|
@@ -1,43 +1,64 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
import * as
|
|
3
|
-
import { DEFAULT_EMPTY_MESSAGE as
|
|
4
|
-
import { TableHeader as
|
|
5
|
-
import { TableRow as
|
|
6
|
-
import {
|
|
1
|
+
import { jsxs as n, jsx as e } from "react/jsx-runtime";
|
|
2
|
+
import * as S from "react";
|
|
3
|
+
import { DEFAULT_EMPTY_MESSAGE as T, TABLE_CSS_CLASSES as o } from "./table.const.js";
|
|
4
|
+
import { TableHeader as N } from "./components/table-header/table-header.js";
|
|
5
|
+
import { TableRow as v } from "./components/table-row.js";
|
|
6
|
+
import { TableMessageState as i } from "./components/table-message-state.js";
|
|
7
7
|
import { TableContext as w } from "./table.context.js";
|
|
8
|
-
import { cn as
|
|
9
|
-
const j = ({
|
|
10
|
-
|
|
8
|
+
import { cn as d } from "../../lib/utils.js";
|
|
9
|
+
const j = ({
|
|
10
|
+
cell: s = { hasBorder: !0 },
|
|
11
|
+
sort: c,
|
|
12
|
+
className: f,
|
|
13
|
+
stickyHeader: p = !1,
|
|
14
|
+
dataSourceError: l,
|
|
15
|
+
...u
|
|
16
|
+
}) => {
|
|
17
|
+
const h = S.useContext(w), {
|
|
11
18
|
dataSource: t = [],
|
|
12
|
-
schema:
|
|
19
|
+
schema: a = [],
|
|
13
20
|
loading: r = !1,
|
|
14
|
-
emptyMessage:
|
|
15
|
-
customCells:
|
|
16
|
-
} =
|
|
17
|
-
|
|
21
|
+
emptyMessage: b = T,
|
|
22
|
+
customCells: g
|
|
23
|
+
} = h || u, x = () => l ? /* @__PURE__ */ e(
|
|
24
|
+
i,
|
|
18
25
|
{
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
26
|
+
colSpan: a.length,
|
|
27
|
+
message: typeof l == "string" ? l : "Error loading data",
|
|
28
|
+
className: o.dataErrorState
|
|
29
|
+
}
|
|
30
|
+
) : !t || t.length === 0 && !r ? /* @__PURE__ */ e(
|
|
31
|
+
i,
|
|
32
|
+
{
|
|
33
|
+
colSpan: a.length,
|
|
34
|
+
message: b,
|
|
35
|
+
className: o.emptyState
|
|
36
|
+
}
|
|
37
|
+
) : /* @__PURE__ */ e("tbody", { children: t.map((y, m) => /* @__PURE__ */ e(
|
|
38
|
+
v,
|
|
39
|
+
{
|
|
40
|
+
record: y,
|
|
41
|
+
index: m,
|
|
42
|
+
schema: a,
|
|
43
|
+
customCells: g,
|
|
44
|
+
cell: s
|
|
24
45
|
},
|
|
25
|
-
|
|
46
|
+
m
|
|
26
47
|
)) });
|
|
27
|
-
return /* @__PURE__ */
|
|
48
|
+
return /* @__PURE__ */ n(
|
|
28
49
|
"div",
|
|
29
50
|
{
|
|
30
|
-
className:
|
|
51
|
+
className: d(
|
|
31
52
|
r ? "overflow-y-hidden relative" : "overflow-y-auto",
|
|
32
|
-
|
|
33
|
-
|
|
53
|
+
o.bordered[s.hasBorder && !r && t.length > 0 ? "true" : "false"],
|
|
54
|
+
f
|
|
34
55
|
),
|
|
35
56
|
children: [
|
|
36
|
-
/* @__PURE__ */
|
|
37
|
-
|
|
38
|
-
/* @__PURE__ */ e(
|
|
57
|
+
/* @__PURE__ */ n("table", { className: d(o.table, "w-full"), children: [
|
|
58
|
+
x(),
|
|
59
|
+
/* @__PURE__ */ e(N, { schema: a, sort: c, cell: s, stickyHeader: p })
|
|
39
60
|
] }),
|
|
40
|
-
r && /* @__PURE__ */ e("div", { className: "absolute top-0 inset-0 w-full h-full bg-white/80 flex items-center justify-center", children: /* @__PURE__ */
|
|
61
|
+
r && /* @__PURE__ */ e("div", { className: "absolute top-0 inset-0 w-full h-full bg-white/80 flex items-center justify-center", children: /* @__PURE__ */ n("div", { className: "flex flex-col items-center gap-3", children: [
|
|
41
62
|
/* @__PURE__ */ e("div", { className: "animate-spin rounded-full h-8 w-8 border-b-2 border-text-brand-secondary" }),
|
|
42
63
|
/* @__PURE__ */ e("p", { className: "text-text-neutral-primary font-medium", children: "Loading..." })
|
|
43
64
|
] }) })
|
|
@@ -31,7 +31,7 @@ import "../stepper-item/stepper-item.js";
|
|
|
31
31
|
import "@radix-ui/react-tabs";
|
|
32
32
|
import "../tooltip/tooltip.js";
|
|
33
33
|
import { Filter as p } from "../table-filter/index.js";
|
|
34
|
-
import
|
|
34
|
+
import q from "../assets/icons/octagon-warning-Copy.js";
|
|
35
35
|
import "../badge/badge.js";
|
|
36
36
|
import "../avatar/avatar.js";
|
|
37
37
|
import "../text-preset/text-preset.js";
|
|
@@ -39,9 +39,9 @@ import "react-dom";
|
|
|
39
39
|
import "../../node_modules/@atlaskit/pragmatic-drag-and-drop/dist/esm/util/changing-window/count-events-for-safari.js";
|
|
40
40
|
import "../../node_modules/@atlaskit/pragmatic-drag-and-drop/dist/esm/ledger/dispatch-consumer-event.js";
|
|
41
41
|
import "../table/table.context.js";
|
|
42
|
-
const
|
|
43
|
-
dataSource:
|
|
44
|
-
schema:
|
|
42
|
+
const we = ({
|
|
43
|
+
dataSource: f,
|
|
44
|
+
schema: B,
|
|
45
45
|
loading: H,
|
|
46
46
|
emptyMessage: k,
|
|
47
47
|
className: T,
|
|
@@ -64,22 +64,23 @@ const Fe = ({
|
|
|
64
64
|
paginationInfo: c,
|
|
65
65
|
paginationQuickJumper: s,
|
|
66
66
|
error: x = !1,
|
|
67
|
-
|
|
67
|
+
dataSourceError: R = !1,
|
|
68
|
+
freeze: S = !1
|
|
68
69
|
}) => {
|
|
69
70
|
var F;
|
|
70
71
|
if (x)
|
|
71
72
|
return /* @__PURE__ */ e("div", { className: "flex flex-col items-center justify-center h-64 bg-background-error-subtle rounded-lg text-text-warning-secondary", children: /* @__PURE__ */ a("div", { className: "flex gap-2", children: [
|
|
72
|
-
/* @__PURE__ */ e(
|
|
73
|
+
/* @__PURE__ */ e(q, { className: "mt-1.5" }),
|
|
73
74
|
/* @__PURE__ */ a("div", { className: "flex flex-col gap-2", children: [
|
|
74
75
|
/* @__PURE__ */ e("div", { className: "text-text-error-primary text-lg font-medium", children: "Error loading data" }),
|
|
75
76
|
/* @__PURE__ */ e("div", { className: "text-sm", children: "Please try again later" }),
|
|
76
77
|
typeof x == "string" && /* @__PURE__ */ e("div", { className: "text-text-warning-secondary text-sm", children: x })
|
|
77
78
|
] })
|
|
78
79
|
] }) });
|
|
79
|
-
const C = s && s.totalPage && s.totalPage >= 2, N = o && o.totalPage && o.totalPage >= 2 || !!c || C, v = m || t || h || u,
|
|
80
|
+
const C = s && s.totalPage && s.totalPage >= 2, N = o && o.totalPage && o.totalPage >= 2 || !!c || C, v = m || t || h || u, b = typeof (t == null ? void 0 : t.showFilterButton) > "u" ? !0 : t == null ? void 0 : t.showFilterButton;
|
|
80
81
|
return /* @__PURE__ */ a("div", { className: d("flex flex-col overflow-hidden relative", T), children: [
|
|
81
|
-
|
|
82
|
-
/* @__PURE__ */ a(r, { dataSource:
|
|
82
|
+
S && /* @__PURE__ */ e("div", { className: "absolute top-0 inset-0 w-full h-full cursor-not-allowed bg-white/50" }),
|
|
83
|
+
/* @__PURE__ */ a(r, { dataSource: f, schema: B, loading: H, emptyMessage: k, children: [
|
|
83
84
|
P && v && /* @__PURE__ */ a(
|
|
84
85
|
r.Header,
|
|
85
86
|
{
|
|
@@ -114,7 +115,7 @@ const Fe = ({
|
|
|
114
115
|
})
|
|
115
116
|
},
|
|
116
117
|
children: [
|
|
117
|
-
|
|
118
|
+
b && /* @__PURE__ */ e(p.FilterButton, {}),
|
|
118
119
|
(F = t == null ? void 0 : t.quickFilters) == null ? void 0 : F.map((w) => /* @__PURE__ */ e(p.FilterColumnButton, { filterName: w }, w))
|
|
119
120
|
]
|
|
120
121
|
}
|
|
@@ -127,6 +128,7 @@ const Fe = ({
|
|
|
127
128
|
/* @__PURE__ */ e(
|
|
128
129
|
r.Body,
|
|
129
130
|
{
|
|
131
|
+
dataSourceError: R,
|
|
130
132
|
cell: l == null ? void 0 : l.cell,
|
|
131
133
|
sort: l == null ? void 0 : l.sort,
|
|
132
134
|
className: d(
|
|
@@ -189,5 +191,5 @@ const Fe = ({
|
|
|
189
191
|
] });
|
|
190
192
|
};
|
|
191
193
|
export {
|
|
192
|
-
|
|
194
|
+
we as default
|
|
193
195
|
};
|
package/dist/index.js
CHANGED
|
@@ -8,7 +8,7 @@ import { Z2SideNavBarHeader as T } from "./components/collapsible-side-nav-bar/s
|
|
|
8
8
|
import { Z2SideNavBarContent as c } from "./components/collapsible-side-nav-bar/side-nav-bar-content.js";
|
|
9
9
|
import { Z2SideNavBarFooter as w } from "./components/collapsible-side-nav-bar/side-nav-bar-footer.js";
|
|
10
10
|
import { Z2SideNavBarGroup as v } from "./components/collapsible-side-nav-bar/side-nav-bar-group.js";
|
|
11
|
-
import { Z2SideNavBarItem as
|
|
11
|
+
import { Z2SideNavBarItem as B } from "./components/collapsible-side-nav-bar/side-nav-bar-item.js";
|
|
12
12
|
import { Z2SideNavBarSeparator as L } from "./components/collapsible-side-nav-bar/side-nav-bar-separator.js";
|
|
13
13
|
import { useZ2SideNavBar as N } from "./components/collapsible-side-nav-bar/context.js";
|
|
14
14
|
import { Z2Popover as h } from "./components/collapsible-side-nav-bar/popover/popover.js";
|
|
@@ -23,7 +23,7 @@ import { CountryFlags as z } from "./components/country-flags/country-flags.js";
|
|
|
23
23
|
import { Z2Checkbox as X } from "./components/checkbox/checkbox.js";
|
|
24
24
|
import { Z2Dialog as oo, Z2DialogClose as eo, Z2DialogContent as ro, Z2DialogDescription as to, Z2DialogFooter as ao, Z2DialogHeader as po, Z2DialogOverlay as no, Z2DialogPortal as lo, Z2DialogTitle as mo, Z2DialogTrigger as fo } from "./components/dialog/dialog.js";
|
|
25
25
|
import { DropdownContext as io, Z2Dropdown as Zo, Z2DropdownContent as uo, Z2DropdownInput as So, Z2DropdownItem as Do, Z2DropdownSub as bo, Z2DropdownSubContent as Co, Z2DropdownSubItem as To, Z2DropdownSubTrigger as go } from "./components/dropdown/z2-dropdown.js";
|
|
26
|
-
import { Z2DropdownMenu as so, Z2DropdownMenuCheckboxItem as wo, Z2DropdownMenuContent as Io, Z2DropdownMenuGroup as vo, Z2DropdownMenuItem as
|
|
26
|
+
import { Z2DropdownMenu as so, Z2DropdownMenuCheckboxItem as wo, Z2DropdownMenuContent as Io, Z2DropdownMenuGroup as vo, Z2DropdownMenuItem as Mo, Z2DropdownMenuLabel as Bo, Z2DropdownMenuPortal as Ao, Z2DropdownMenuRadioGroup as Lo, Z2DropdownMenuRadioItem as Po, Z2DropdownMenuSeparator as No, Z2DropdownMenuShortcut as Eo, Z2DropdownMenuSub as ho, Z2DropdownMenuSubContent as Fo, Z2DropdownMenuSubTrigger as Ho, Z2DropdownMenuTrigger as _o } from "./components/dropdown-menu/z2-dropdown-menu.js";
|
|
27
27
|
import { FileUploadArea as Ro } from "./components/file-upload-area/file-upload-area.js";
|
|
28
28
|
import { DEFAULT_ACCEPT as Go } from "./components/file-upload-area/file-upload-area.const.js";
|
|
29
29
|
import { Input as Vo } from "./components/input/input.js";
|
|
@@ -38,7 +38,7 @@ import { TableBody as be } from "./components/table/table.js";
|
|
|
38
38
|
import { extractCellValue as Te } from "./components/table/table.utils.js";
|
|
39
39
|
import { DEFAULT_EMPTY_MESSAGE as ce, TABLE_CSS_CLASSES as se } from "./components/table/table.const.js";
|
|
40
40
|
import { TableContext as Ie, useTableContext as ve } from "./components/table/table.context.js";
|
|
41
|
-
import { TableCell as
|
|
41
|
+
import { TableCell as Be } from "./components/table/components/table-cell.js";
|
|
42
42
|
import { NumberCell as Le } from "./components/table/components/cell/number-cell.js";
|
|
43
43
|
import { BooleanCell as Ne } from "./components/table/components/cell/boolean-cell.js";
|
|
44
44
|
import { LinkCell as he } from "./components/table/components/cell/link-cell.js";
|
|
@@ -48,7 +48,7 @@ import { LabelCell as ke } from "./components/table/components/cell/label-cell.j
|
|
|
48
48
|
import { TableHeader as Ue } from "./components/table/components/table-header/table-header.js";
|
|
49
49
|
import "react/jsx-runtime";
|
|
50
50
|
import { TableRow as We } from "./components/table/components/table-row.js";
|
|
51
|
-
import {
|
|
51
|
+
import { TableMessageState as Je } from "./components/table/components/table-message-state.js";
|
|
52
52
|
import { TableLoadingState as Ye } from "./components/table/components/table-loading-state.js";
|
|
53
53
|
import { Pagination as qe } from "./components/table/components/pagination/pagination.js";
|
|
54
54
|
import { TableHeaderWrapper as Ke } from "./components/table/components/table-header-wrapper.js";
|
|
@@ -66,7 +66,7 @@ import { Avatar as Cr, AvatarWithLabel as Tr } from "./components/avatar/avatar.
|
|
|
66
66
|
import { Z2TextPreset as cr } from "./components/text-preset/text-preset.js";
|
|
67
67
|
import { ColumnReOrder as wr } from "./components/column-reorder/column-reorder.js";
|
|
68
68
|
import { default as vr } from "./components/tree-checkbox-select/TreeCheckboxSelect.js";
|
|
69
|
-
import { InfoIcon as
|
|
69
|
+
import { InfoIcon as Br } from "./components/assets/icons/info-icon.js";
|
|
70
70
|
import { useTheme as Lr } from "./lib/theme.hook.js";
|
|
71
71
|
import { cn as Nr } from "./lib/utils.js";
|
|
72
72
|
import { Z2PopoverTrigger as hr } from "./components/collapsible-side-nav-bar/popover/popover-trigger.js";
|
|
@@ -92,7 +92,7 @@ export {
|
|
|
92
92
|
He as DescriptionCell,
|
|
93
93
|
io as DropdownContext,
|
|
94
94
|
Ro as FileUploadArea,
|
|
95
|
-
|
|
95
|
+
Br as InfoIcon,
|
|
96
96
|
Vo as Input,
|
|
97
97
|
ke as LabelCell,
|
|
98
98
|
he as LinkCell,
|
|
@@ -110,15 +110,15 @@ export {
|
|
|
110
110
|
ue as Table,
|
|
111
111
|
be as TableBody,
|
|
112
112
|
dr as TableCard,
|
|
113
|
-
|
|
113
|
+
Be as TableCell,
|
|
114
114
|
Ie as TableContext,
|
|
115
|
-
Je as TableEmptyState,
|
|
116
115
|
er as TableFooter,
|
|
117
116
|
tr as TableFooterContent,
|
|
118
117
|
Ue as TableHeader,
|
|
119
118
|
$e as TableHeaderContent,
|
|
120
119
|
Ke as TableHeaderWrapper,
|
|
121
120
|
Ye as TableLoadingState,
|
|
121
|
+
Je as TableMessageState,
|
|
122
122
|
qe as TablePagination,
|
|
123
123
|
Se as TableProvider,
|
|
124
124
|
We as TableRow,
|
|
@@ -143,8 +143,8 @@ export {
|
|
|
143
143
|
wo as Z2DropdownMenuCheckboxItem,
|
|
144
144
|
Io as Z2DropdownMenuContent,
|
|
145
145
|
vo as Z2DropdownMenuGroup,
|
|
146
|
-
|
|
147
|
-
|
|
146
|
+
Mo as Z2DropdownMenuItem,
|
|
147
|
+
Bo as Z2DropdownMenuLabel,
|
|
148
148
|
Ao as Z2DropdownMenuPortal,
|
|
149
149
|
Lo as Z2DropdownMenuRadioGroup,
|
|
150
150
|
Po as Z2DropdownMenuRadioItem,
|
|
@@ -176,7 +176,7 @@ export {
|
|
|
176
176
|
w as Z2SideNavBarFooter,
|
|
177
177
|
v as Z2SideNavBarGroup,
|
|
178
178
|
T as Z2SideNavBarHeader,
|
|
179
|
-
|
|
179
|
+
B as Z2SideNavBarItem,
|
|
180
180
|
u as Z2SideNavBarProvider,
|
|
181
181
|
L as Z2SideNavBarSeparator,
|
|
182
182
|
b as Z2SidebarVariants,
|
|
@@ -2,7 +2,7 @@ export { TableCell } from './table-cell';
|
|
|
2
2
|
export { NumberCell, BooleanCell, AvatarCell, DescriptionCell, LabelCell, LinkCell } from './cell';
|
|
3
3
|
export { TableHeader } from './table-header';
|
|
4
4
|
export { TableRow } from './table-row';
|
|
5
|
-
export {
|
|
5
|
+
export { TableMessageState } from './table-message-state';
|
|
6
6
|
export { TableLoadingState } from './table-loading-state';
|
|
7
7
|
export { Pagination as TablePagination } from './pagination/pagination';
|
|
8
8
|
export { TableHeaderWrapper } from './table-header-wrapper';
|
|
@@ -4,6 +4,6 @@ export type { TableProps, TableSchema, TableSchemaColumn, CellType, CellValue, C
|
|
|
4
4
|
export { extractCellValue } from './table.utils';
|
|
5
5
|
export { DEFAULT_EMPTY_MESSAGE, TABLE_CSS_CLASSES } from './table.const';
|
|
6
6
|
export { TableContext, useTableContext } from './table.context';
|
|
7
|
-
export { TableCell, TableHeader, TableRow,
|
|
7
|
+
export { TableCell, TableHeader, TableRow, TableMessageState, TableLoadingState, TablePagination, NumberCell, BooleanCell, TableHeaderWrapper, TableHeaderContent, TableFooter, TableFooterContent, } from './components';
|
|
8
8
|
export { PaginationInfo, PaginationQuickJumper } from './components/pagination/components';
|
|
9
9
|
export * from './components/cell';
|
|
@@ -26,5 +26,6 @@ export declare const TABLE_CSS_CLASSES: {
|
|
|
26
26
|
readonly sortIconActive: "ml-2 w-4 h-4 text-gray-600";
|
|
27
27
|
readonly row: " transition-colors duration-200 text-text-neutral-primary";
|
|
28
28
|
readonly emptyState: "px-4 py-8 text-center text-gray-500";
|
|
29
|
+
readonly dataErrorState: "px-4 py-8 text-center text-text-danger-primary";
|
|
29
30
|
readonly loading: "px-4 py-8 text-center text-gray-500";
|
|
30
31
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { jsx as t } from "react/jsx-runtime";
|
|
2
|
-
import { TABLE_CSS_CLASSES as m } from "../table.const.js";
|
|
3
|
-
const a = ({ colSpan: r, message: e }) => /* @__PURE__ */ t("tbody", { children: /* @__PURE__ */ t("tr", { children: /* @__PURE__ */ t("td", { colSpan: r, className: m.emptyState, children: e }) }) });
|
|
4
|
-
export {
|
|
5
|
-
a as TableEmptyState
|
|
6
|
-
};
|