@adapttable/mantine 0.1.1 → 0.2.0
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/CHANGELOG.md +34 -0
- package/dist/index.cjs +1902 -1932
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +197 -151
- package/dist/index.d.cts.map +1 -0
- package/dist/index.d.ts +197 -150
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +1848 -1900
- package/dist/index.js.map +1 -1
- package/package.json +17 -15
package/dist/index.d.cts
CHANGED
|
@@ -1,86 +1,85 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { ReactNode, RefObject
|
|
3
|
-
|
|
4
|
-
export { ActionConfirm, ActiveFilterChip, BulkAction, CellProps, ColorScheme, ColumnDef, ConfirmHandler, ConfirmRequest, Direction, ExtraFilters, FilterDef, FilterOption, FilterType, FilterValue, InfiniteQueryLike, PageSelector, PaginatedResponse, PaginationMode, RowAction, SavedView, SortByOption, SortDirection, SortableValue, TableLabels, TableQuery, TableQueryParams, TableSource, UrlStateAdapter, UseBackendDataOptions, UseDataTableResult, UseFrontendDataOptions, UseSavedViewsOptions, UseSavedViewsResult, UseTableUrlStateOptions, UseTableUrlStateResult, createHistoryAdapter, createMemoryAdapter, defaultConfirm, defaultLabels, deriveSortByOptions, getHistoryAdapter, useBackendData, useDataTable, useFrontendData, useSavedViews, useTableUrlState } from '@adapttable/core';
|
|
5
|
-
|
|
1
|
+
import { ActionConfirm, ActiveFilterChip, ActiveFilterChip as ActiveFilterChip$1, BaseDataTableProps, BulkAction, CellProps, ColorScheme, ColumnDef, ConfirmHandler, ConfirmRequest, Direction, ExtraFilters, FilterDef, FilterDef as FilterDef$1, FilterOption, FilterType, FilterValue, InfiniteQueryLike, PageSelector, PaginatedResponse, PaginationMode, RowAction, SavedView, SortByOption, SortDirection, SortableValue, TableLabels, TableLabels as TableLabels$1, TableQuery, TableQueryParams, TableSource, TableSource as TableSource$1, UrlStateAdapter, UrlStateAdapter as UrlStateAdapter$1, UseBackendDataOptions, UseDataTableResult, UseFrontendDataOptions, UseSavedViewsOptions, UseSavedViewsOptions as UseSavedViewsOptions$1, UseSavedViewsResult, UseSavedViewsResult as UseSavedViewsResult$1, UseServerDataOptions, UseTableUrlStateOptions, UseTableUrlStateResult, createHistoryAdapter, createMemoryAdapter, defaultConfirm, defaultLabels, deriveSortByOptions, getHistoryAdapter, useBackendData, useDataTable, useFrontendData, useSavedViews, useTableUrlState } from "@adapttable/core";
|
|
2
|
+
import { DependencyList, ReactNode, RefObject } from "react";
|
|
3
|
+
//#region src/types.d.ts
|
|
6
4
|
/** Overridable sub-components. Each defaults to a styled Mantine part. */
|
|
7
5
|
interface DataTableSlots {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
6
|
+
/** Replace the loading skeleton. */
|
|
7
|
+
skeleton?: ReactNode;
|
|
8
|
+
/** Replace the empty-state. */
|
|
9
|
+
empty?: ReactNode;
|
|
12
10
|
}
|
|
13
11
|
/** Per-part class name overrides. */
|
|
14
12
|
interface DataTableClassNames {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
13
|
+
root?: string;
|
|
14
|
+
toolbar?: string;
|
|
15
|
+
table?: string;
|
|
16
|
+
card?: string;
|
|
17
|
+
footer?: string;
|
|
20
18
|
}
|
|
21
19
|
/** Props for the Mantine `<DataTable>`. */
|
|
22
20
|
interface DataTableProps<TRow> extends Omit<BaseDataTableProps<TRow>, "source"> {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
21
|
+
/**
|
|
22
|
+
* Full-control tier: a prebuilt source (`useFrontendData` /
|
|
23
|
+
* `useBackendData`). Omit it and pass `data` for the zero-ceremony tiers.
|
|
24
|
+
*/
|
|
25
|
+
source?: TableSource$1<TRow>;
|
|
26
|
+
/**
|
|
27
|
+
* Frontend tier: the raw rows — the table filters, sorts and pages them.
|
|
28
|
+
* Combined with `onQueryChange` it becomes the server tier: `data` is the
|
|
29
|
+
* current page, rendered as-is.
|
|
30
|
+
*/
|
|
31
|
+
data?: readonly TRow[];
|
|
32
|
+
/** Server tier: total row count across all pages (drives the pager). */
|
|
33
|
+
total?: number;
|
|
34
|
+
/** Server tier: a request is in flight. */
|
|
35
|
+
loading?: boolean;
|
|
36
|
+
/**
|
|
37
|
+
* Server tier: fired with the consolidated query (page, limit, search,
|
|
38
|
+
* sort, filters) whenever it changes — including once on mount with the
|
|
39
|
+
* URL-restored values. Fetch in response and hand back `data` + `total`.
|
|
40
|
+
*/
|
|
41
|
+
onQueryChange?: UseServerDataOptions<TRow>["onQueryChange"];
|
|
42
|
+
/**
|
|
43
|
+
* Namespace for this table's URL params (`urlKey="left"` → `left.q`,
|
|
44
|
+
* `left.page`, …) so multiple tables can share one URL. Applies to the
|
|
45
|
+
* `data` / `onQueryChange` tiers; a prebuilt `source` owns its own state.
|
|
46
|
+
*/
|
|
47
|
+
urlKey?: string;
|
|
48
|
+
/**
|
|
49
|
+
* URL-state backend for the `data` / `onQueryChange` tiers. Defaults to
|
|
50
|
+
* the browser History API; supply a router adapter (react-router,
|
|
51
|
+
* Next.js) — or `createMemoryAdapter()` in tests — to integrate with an
|
|
52
|
+
* existing navigation stack.
|
|
53
|
+
*/
|
|
54
|
+
urlAdapter?: UrlStateAdapter$1;
|
|
55
|
+
/**
|
|
56
|
+
* Sync table state (search, sort, page, filters) to the URL. `false`
|
|
57
|
+
* keeps everything in memory — the table works identically, the address
|
|
58
|
+
* bar never changes, and any `urlAdapter` is ignored.
|
|
59
|
+
*
|
|
60
|
+
* @default true
|
|
61
|
+
*/
|
|
62
|
+
urlSync?: boolean;
|
|
63
|
+
/**
|
|
64
|
+
* Saved views: capture the table's current URL state (search, sort, page,
|
|
65
|
+
* filters, column layout) under a name and re-apply it on demand. Setting
|
|
66
|
+
* this renders a Saved-views menu in the toolbar next to the Columns
|
|
67
|
+
* button. `adapter` / `urlKey` default to the table's own `urlAdapter` /
|
|
68
|
+
* `urlKey`, so usually only `storageKey` is needed.
|
|
69
|
+
*/
|
|
70
|
+
savedViews?: UseSavedViewsOptions$1;
|
|
71
|
+
/** Replace sub-components (skeleton, empty-state). */
|
|
72
|
+
slots?: DataTableSlots;
|
|
73
|
+
/** Per-part class name overrides. */
|
|
74
|
+
classNames?: DataTableClassNames;
|
|
75
|
+
/**
|
|
76
|
+
* Animate rows/cards on mount (dependency-free; honors reduced motion).
|
|
77
|
+
* Off by default.
|
|
78
|
+
*/
|
|
79
|
+
animate?: boolean;
|
|
82
80
|
}
|
|
83
|
-
|
|
81
|
+
//#endregion
|
|
82
|
+
//#region src/DataTable.d.ts
|
|
84
83
|
/**
|
|
85
84
|
* Batteries-included Mantine data table. Drop in `columns`, a `rowKey`,
|
|
86
85
|
* and a data tier — raw `data` (frontend), `data` + `onQueryChange`
|
|
@@ -90,30 +89,37 @@ interface DataTableProps<TRow> extends Omit<BaseDataTableProps<TRow>, "source">
|
|
|
90
89
|
*
|
|
91
90
|
* @typeParam TRow - The row type.
|
|
92
91
|
*/
|
|
93
|
-
declare function DataTable<TRow>(props: Readonly<DataTableProps<TRow>>): react.JSX.Element;
|
|
94
|
-
|
|
92
|
+
declare function DataTable<TRow>(props: Readonly<DataTableProps<TRow>>): import("react").JSX.Element;
|
|
93
|
+
//#endregion
|
|
94
|
+
//#region src/components/ActiveFilterChips.d.ts
|
|
95
95
|
/** Props for {@link ActiveFilterChips}. */
|
|
96
96
|
interface ActiveFilterChipsProps {
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
97
|
+
/** The chips to render. */
|
|
98
|
+
chips: readonly ActiveFilterChip$1[];
|
|
99
|
+
/** Optional clear-all handler; the link is hidden when omitted. */
|
|
100
|
+
onClearAll?: () => void;
|
|
101
|
+
/** Accessible label for the strip. */
|
|
102
|
+
label: string;
|
|
103
|
+
/** Clear-all link text. */
|
|
104
|
+
clearAllLabel: string;
|
|
105
105
|
}
|
|
106
106
|
/** A wrapping strip of removable filter chips. Renders nothing when empty. */
|
|
107
|
-
declare function ActiveFilterChips({
|
|
108
|
-
|
|
107
|
+
declare function ActiveFilterChips({
|
|
108
|
+
chips,
|
|
109
|
+
onClearAll,
|
|
110
|
+
label,
|
|
111
|
+
clearAllLabel
|
|
112
|
+
}: Readonly<ActiveFilterChipsProps>): import("react").JSX.Element | null;
|
|
113
|
+
//#endregion
|
|
114
|
+
//#region src/components/AutoFilterForm.d.ts
|
|
109
115
|
/** Props for {@link AutoFilterForm}. */
|
|
110
116
|
interface AutoFilterFormProps<TRow> {
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
+
/** The resolved declarative definitions, in render order. */
|
|
118
|
+
defs: readonly FilterDef$1<TRow>[];
|
|
119
|
+
/** The resolved source whose `extra` bag the controls read and write. */
|
|
120
|
+
source: TableSource$1<TRow>;
|
|
121
|
+
/** Resolved labels — the range widgets read the operator/value strings. */
|
|
122
|
+
labels: Required<TableLabels$1>;
|
|
117
123
|
}
|
|
118
124
|
/**
|
|
119
125
|
* The auto-built filter form: one labeled, Mantine-native control per
|
|
@@ -125,61 +131,91 @@ interface AutoFilterFormProps<TRow> {
|
|
|
125
131
|
*
|
|
126
132
|
* @typeParam TRow - The row type.
|
|
127
133
|
*/
|
|
128
|
-
declare function AutoFilterForm<TRow>({
|
|
129
|
-
|
|
134
|
+
declare function AutoFilterForm<TRow>({
|
|
135
|
+
defs,
|
|
136
|
+
source,
|
|
137
|
+
labels
|
|
138
|
+
}: Readonly<AutoFilterFormProps<TRow>>): import("react").JSX.Element;
|
|
139
|
+
//#endregion
|
|
140
|
+
//#region src/components/EmptyState.d.ts
|
|
130
141
|
/** Props for {@link EmptyState}. */
|
|
131
142
|
interface EmptyStateProps {
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
143
|
+
/** Headline text. */
|
|
144
|
+
title: string;
|
|
145
|
+
/** Optional supporting description. */
|
|
146
|
+
description?: string;
|
|
147
|
+
/** Optional custom icon (defaults to an inbox glyph). */
|
|
148
|
+
icon?: ReactNode;
|
|
149
|
+
/** Optional call-to-action (e.g. a clear-filters button). */
|
|
150
|
+
action?: ReactNode;
|
|
140
151
|
}
|
|
141
152
|
/** Centred "nothing to show" placeholder. */
|
|
142
|
-
declare function EmptyState({
|
|
143
|
-
|
|
153
|
+
declare function EmptyState({
|
|
154
|
+
title,
|
|
155
|
+
description,
|
|
156
|
+
icon,
|
|
157
|
+
action
|
|
158
|
+
}: Readonly<EmptyStateProps>): import("react").JSX.Element;
|
|
159
|
+
//#endregion
|
|
160
|
+
//#region src/components/ErrorState.d.ts
|
|
144
161
|
/** Props for {@link ErrorState}. */
|
|
145
162
|
interface ErrorStateProps {
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
163
|
+
/** The error to surface. */
|
|
164
|
+
error: Error;
|
|
165
|
+
/** Title line. */
|
|
166
|
+
title: string;
|
|
167
|
+
/** Supporting message. */
|
|
168
|
+
message: string;
|
|
169
|
+
/** Retry button label. */
|
|
170
|
+
retryLabel: string;
|
|
171
|
+
/** Optional retry handler; the button is hidden when omitted. */
|
|
172
|
+
onRetry?: () => void;
|
|
173
|
+
/** Whether a retry is in flight. */
|
|
174
|
+
isRetrying?: boolean;
|
|
158
175
|
}
|
|
159
176
|
/** Inline error alert with an optional retry button. */
|
|
160
|
-
declare function ErrorState({
|
|
161
|
-
|
|
177
|
+
declare function ErrorState({
|
|
178
|
+
error,
|
|
179
|
+
title,
|
|
180
|
+
message,
|
|
181
|
+
retryLabel,
|
|
182
|
+
onRetry,
|
|
183
|
+
isRetrying
|
|
184
|
+
}: Readonly<ErrorStateProps>): import("react").JSX.Element;
|
|
185
|
+
//#endregion
|
|
186
|
+
//#region src/components/PaginationFooter.d.ts
|
|
162
187
|
/** Props for {@link PaginationFooter}. */
|
|
163
188
|
interface PaginationFooterProps {
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
189
|
+
page: number;
|
|
190
|
+
totalPages: number;
|
|
191
|
+
limit: number;
|
|
192
|
+
total: number;
|
|
193
|
+
fromIndex: number;
|
|
194
|
+
toIndex: number;
|
|
195
|
+
onPageChange: (page: number) => void;
|
|
196
|
+
onLimitChange: (limit: number) => void;
|
|
197
|
+
labels: Required<TableLabels$1>;
|
|
173
198
|
}
|
|
174
199
|
/** Desktop pagination bar: page-size + range on the left, pager on the right. */
|
|
175
|
-
declare function PaginationFooter({
|
|
176
|
-
|
|
200
|
+
declare function PaginationFooter({
|
|
201
|
+
page,
|
|
202
|
+
totalPages,
|
|
203
|
+
limit,
|
|
204
|
+
total,
|
|
205
|
+
fromIndex,
|
|
206
|
+
toIndex,
|
|
207
|
+
onPageChange,
|
|
208
|
+
onLimitChange,
|
|
209
|
+
labels
|
|
210
|
+
}: Readonly<PaginationFooterProps>): import("react").JSX.Element;
|
|
211
|
+
//#endregion
|
|
212
|
+
//#region src/components/SavedViewsMenu.d.ts
|
|
177
213
|
/** Props for {@link SavedViewsMenu}. */
|
|
178
214
|
interface SavedViewsMenuProps {
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
215
|
+
/** The saved-views state from core's `useSavedViews`. */
|
|
216
|
+
views: UseSavedViewsResult$1;
|
|
217
|
+
/** Resolved table labels (e.g. `table.labels` from `useDataTable`). */
|
|
218
|
+
labels: Required<TableLabels$1>;
|
|
183
219
|
}
|
|
184
220
|
/**
|
|
185
221
|
* Saved-views menu: lists every captured view (click a name to apply it, the
|
|
@@ -188,28 +224,37 @@ interface SavedViewsMenuProps {
|
|
|
188
224
|
* and composes into the `toolbar` slot — or let `<DataTable savedViews>`
|
|
189
225
|
* mount it for you next to the Columns menu.
|
|
190
226
|
*/
|
|
191
|
-
declare function SavedViewsMenu({
|
|
192
|
-
|
|
227
|
+
declare function SavedViewsMenu({
|
|
228
|
+
views,
|
|
229
|
+
labels
|
|
230
|
+
}: Readonly<SavedViewsMenuProps>): import("react").JSX.Element;
|
|
231
|
+
//#endregion
|
|
232
|
+
//#region src/components/TableSkeleton.d.ts
|
|
193
233
|
/** Props for {@link TableSkeleton}. */
|
|
194
234
|
interface TableSkeletonProps {
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
235
|
+
/** Number of placeholder columns. */
|
|
236
|
+
columns: number;
|
|
237
|
+
/** Number of placeholder rows. Defaults to 5. */
|
|
238
|
+
rows?: number;
|
|
239
|
+
/** Screen-reader text announcing the loading state. */
|
|
240
|
+
loadingLabel?: string;
|
|
201
241
|
}
|
|
202
242
|
/** Loading placeholder that mirrors the table shape to avoid layout shift. */
|
|
203
|
-
declare function TableSkeleton({
|
|
204
|
-
|
|
243
|
+
declare function TableSkeleton({
|
|
244
|
+
columns,
|
|
245
|
+
rows,
|
|
246
|
+
loadingLabel
|
|
247
|
+
}: Readonly<TableSkeletonProps>): import("react").JSX.Element;
|
|
248
|
+
//#endregion
|
|
249
|
+
//#region src/animation/useMountStagger.d.ts
|
|
205
250
|
/** Tuning for the mount stagger. */
|
|
206
251
|
interface MountStaggerOptions {
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
252
|
+
/** Master switch. When `false`, the hook is a no-op. */
|
|
253
|
+
enabled: boolean;
|
|
254
|
+
/** Per-item delay in ms. Defaults to 40. */
|
|
255
|
+
step?: number;
|
|
256
|
+
/** Tween duration in ms. Defaults to 320. */
|
|
257
|
+
duration?: number;
|
|
213
258
|
}
|
|
214
259
|
/**
|
|
215
260
|
* Dependency-free entrance stagger using the Web Animations API. Animates
|
|
@@ -222,5 +267,6 @@ interface MountStaggerOptions {
|
|
|
222
267
|
* @param options - See {@link MountStaggerOptions}.
|
|
223
268
|
*/
|
|
224
269
|
declare function useMountStagger(ref: RefObject<HTMLElement | null>, deps: DependencyList, options: MountStaggerOptions): void;
|
|
225
|
-
|
|
226
|
-
export { ActiveFilterChips, type ActiveFilterChipsProps, AutoFilterForm, type AutoFilterFormProps, DataTable, type DataTableClassNames, type DataTableProps, type DataTableSlots, EmptyState, type EmptyStateProps, ErrorState, type ErrorStateProps, type MountStaggerOptions, PaginationFooter, type PaginationFooterProps, SavedViewsMenu, type SavedViewsMenuProps, TableSkeleton, type TableSkeletonProps, useMountStagger };
|
|
270
|
+
//#endregion
|
|
271
|
+
export { type ActionConfirm, type ActiveFilterChip, ActiveFilterChips, type ActiveFilterChipsProps, AutoFilterForm, type AutoFilterFormProps, type BulkAction, type CellProps, type ColorScheme, type ColumnDef, type ConfirmHandler, type ConfirmRequest, DataTable, type DataTableClassNames, type DataTableProps, type DataTableSlots, type Direction, EmptyState, type EmptyStateProps, ErrorState, type ErrorStateProps, type ExtraFilters, type FilterDef, type FilterOption, type FilterType, type FilterValue, type InfiniteQueryLike, type MountStaggerOptions, type PageSelector, type PaginatedResponse, PaginationFooter, type PaginationFooterProps, type PaginationMode, type RowAction, type SavedView, SavedViewsMenu, type SavedViewsMenuProps, type SortByOption, type SortDirection, type SortableValue, type TableLabels, type TableQuery, type TableQueryParams, TableSkeleton, type TableSkeletonProps, type TableSource, type UrlStateAdapter, type UseBackendDataOptions, type UseDataTableResult, type UseFrontendDataOptions, type UseSavedViewsOptions, type UseSavedViewsResult, type UseTableUrlStateOptions, type UseTableUrlStateResult, createHistoryAdapter, createMemoryAdapter, defaultConfirm, defaultLabels, deriveSortByOptions, getHistoryAdapter, useBackendData, useDataTable, useFrontendData, useMountStagger, useSavedViews, useTableUrlState };
|
|
272
|
+
//# sourceMappingURL=index.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.cts","names":[],"sources":["../src/types.ts","../src/DataTable.tsx","../src/components/ActiveFilterChips.tsx","../src/components/AutoFilterForm.tsx","../src/components/EmptyState.tsx","../src/components/ErrorState.tsx","../src/components/PaginationFooter.tsx","../src/components/SavedViewsMenu.tsx","../src/components/TableSkeleton.tsx","../src/animation/useMountStagger.ts"],"mappings":"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"}
|