neatkit 0.3.1 → 0.4.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/dist/components/Button/Button.d.ts +9 -0
- package/dist/components/Popover/Popover.d.ts +18 -4
- package/dist/components/Portal/utils/focus-restoration.d.ts +14 -0
- package/dist/components/Table/Table.d.ts +287 -0
- package/dist/components/Table/index.d.ts +2 -0
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1689 -1263
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -43,6 +43,15 @@ type ButtonOwnProps = {
|
|
|
43
43
|
type ButtonReference<Component extends ElementType> = ComponentPropsWithRef<Component>["ref"];
|
|
44
44
|
/** A type representing properties for a polymorphic Button element. */
|
|
45
45
|
export type ButtonProps<Component extends ElementType = "button"> = ButtonOwnProps & {
|
|
46
|
+
/**
|
|
47
|
+
* The intrinsic element or custom component used as the outer control.
|
|
48
|
+
*
|
|
49
|
+
* Intrinsic elements without native interactivity receive Button
|
|
50
|
+
* semantics. Custom components own their native semantics and complete
|
|
51
|
+
* unavailable behavior, including suppressing persistent navigation
|
|
52
|
+
* targets. They must forward the class name, reference, event handlers,
|
|
53
|
+
* ARIA properties, and tab index to their interactive root.
|
|
54
|
+
*/
|
|
46
55
|
as?: Component;
|
|
47
56
|
} & Omit<ComponentPropsWithoutRef<Component>, keyof ButtonOwnProps | "as">;
|
|
48
57
|
/** A type representing the public polymorphic Button component. */
|
|
@@ -17,7 +17,10 @@ export type PopoverProps = Omit<HTMLAttributes<HTMLDivElement>, "children" | "de
|
|
|
17
17
|
closeOnEscape?: boolean;
|
|
18
18
|
/** Whether an uncontrolled Popover is initially open. */
|
|
19
19
|
defaultOpen?: boolean;
|
|
20
|
-
/**
|
|
20
|
+
/**
|
|
21
|
+
* Whether Popover behavior is disabled while leaving the supplied trigger's
|
|
22
|
+
* semantics and interaction unchanged.
|
|
23
|
+
*/
|
|
21
24
|
disabled?: boolean;
|
|
22
25
|
/** The preferred element focused when the Popover opens. */
|
|
23
26
|
initialFocusReference?: RefObject<HTMLElement | null>;
|
|
@@ -40,7 +43,11 @@ export type PopoverProps = Omit<HTMLAttributes<HTMLDivElement>, "children" | "de
|
|
|
40
43
|
/**
|
|
41
44
|
* The single element that receives Popover trigger behavior.
|
|
42
45
|
*
|
|
43
|
-
*
|
|
46
|
+
* Intrinsic elements without native interactivity receive Button semantics.
|
|
47
|
+
* Custom components own their native semantics, keyboard behavior, and
|
|
48
|
+
* complete unavailable state, including suppressing persistent navigation
|
|
49
|
+
* targets. They must forward standard DOM properties, composed event
|
|
50
|
+
* handlers, and a reference to their interactive root.
|
|
44
51
|
*/
|
|
45
52
|
trigger: ReactElement;
|
|
46
53
|
};
|
|
@@ -63,7 +70,10 @@ declare const Popover: import("react").ForwardRefExoticComponent<Omit<HTMLAttrib
|
|
|
63
70
|
closeOnEscape?: boolean;
|
|
64
71
|
/** Whether an uncontrolled Popover is initially open. */
|
|
65
72
|
defaultOpen?: boolean;
|
|
66
|
-
/**
|
|
73
|
+
/**
|
|
74
|
+
* Whether Popover behavior is disabled while leaving the supplied trigger's
|
|
75
|
+
* semantics and interaction unchanged.
|
|
76
|
+
*/
|
|
67
77
|
disabled?: boolean;
|
|
68
78
|
/** The preferred element focused when the Popover opens. */
|
|
69
79
|
initialFocusReference?: RefObject<HTMLElement | null>;
|
|
@@ -86,7 +96,11 @@ declare const Popover: import("react").ForwardRefExoticComponent<Omit<HTMLAttrib
|
|
|
86
96
|
/**
|
|
87
97
|
* The single element that receives Popover trigger behavior.
|
|
88
98
|
*
|
|
89
|
-
*
|
|
99
|
+
* Intrinsic elements without native interactivity receive Button semantics.
|
|
100
|
+
* Custom components own their native semantics, keyboard behavior, and
|
|
101
|
+
* complete unavailable state, including suppressing persistent navigation
|
|
102
|
+
* targets. They must forward standard DOM properties, composed event
|
|
103
|
+
* handlers, and a reference to their interactive root.
|
|
90
104
|
*/
|
|
91
105
|
trigger: ReactElement;
|
|
92
106
|
} & import("react").RefAttributes<HTMLDivElement>>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Restores focus while exposing the restoration to synchronous focus handlers.
|
|
3
|
+
*
|
|
4
|
+
* @param element - The element that owned focus before an overlay opened.
|
|
5
|
+
*/
|
|
6
|
+
export declare function restoreElementFocus(element: HTMLElement): void;
|
|
7
|
+
/**
|
|
8
|
+
* Determines whether an element is receiving restored overlay focus.
|
|
9
|
+
*
|
|
10
|
+
* @param element - The focus event target being inspected.
|
|
11
|
+
*
|
|
12
|
+
* @returns Whether focus is currently being restored to the element.
|
|
13
|
+
*/
|
|
14
|
+
export declare function isElementFocusRestoration(element: HTMLElement): boolean;
|
|
@@ -0,0 +1,287 @@
|
|
|
1
|
+
import { type HTMLAttributeAnchorTarget, type HTMLAttributes, type MouseEventHandler, type ReactNode, type TableHTMLAttributes, type TdHTMLAttributes, type ThHTMLAttributes } from "react";
|
|
2
|
+
import { type ButtonProps } from "../Button";
|
|
3
|
+
import { type IconType } from "../Icon";
|
|
4
|
+
import "./styles/table.css";
|
|
5
|
+
/** A value rendered directly or formatted by a Table cell. */
|
|
6
|
+
export type TableCellValue = boolean | Date | number | string;
|
|
7
|
+
/** The horizontal alignment applied to Table cell content. */
|
|
8
|
+
export type TableCellAlignment = "left" | "center" | "right";
|
|
9
|
+
/** A type representing properties for the Table component. */
|
|
10
|
+
export type TableProps = TableHTMLAttributes<HTMLTableElement> & {
|
|
11
|
+
/** The table sections, rows, and cells rendered inside the Table. */
|
|
12
|
+
children: ReactNode;
|
|
13
|
+
/** The additional class name applied to the horizontal scroll container. */
|
|
14
|
+
containerClassName?: string;
|
|
15
|
+
/** The accessible label announced for the horizontal scroll container. */
|
|
16
|
+
scrollContainerLabel?: string;
|
|
17
|
+
};
|
|
18
|
+
/** A type representing properties for the Table.Head component. */
|
|
19
|
+
export type TableHeadProps = HTMLAttributes<HTMLTableSectionElement> & {
|
|
20
|
+
/** The rows rendered inside the Table head. */
|
|
21
|
+
children: ReactNode;
|
|
22
|
+
};
|
|
23
|
+
/** A type representing properties for the Table.Body component. */
|
|
24
|
+
export type TableBodyProps = HTMLAttributes<HTMLTableSectionElement> & {
|
|
25
|
+
/** The rows rendered inside the Table body. */
|
|
26
|
+
children?: ReactNode;
|
|
27
|
+
/** The number of columns occupied by the generated empty-state cell. */
|
|
28
|
+
emptyColumnCount?: number;
|
|
29
|
+
/** The content displayed when children contain no explicit content. */
|
|
30
|
+
emptyMessage?: ReactNode;
|
|
31
|
+
};
|
|
32
|
+
/** A type representing properties for the Table.Foot component. */
|
|
33
|
+
export type TableFootProps = HTMLAttributes<HTMLTableSectionElement> & {
|
|
34
|
+
/** The rows rendered inside the Table foot. */
|
|
35
|
+
children: ReactNode;
|
|
36
|
+
};
|
|
37
|
+
/** Shared native properties for every Table.Row configuration. */
|
|
38
|
+
type TableRowBaseProps = Omit<HTMLAttributes<HTMLTableRowElement>, "children" | "onClick"> & {
|
|
39
|
+
/** The cells rendered inside the Table row. */
|
|
40
|
+
children: ReactNode;
|
|
41
|
+
};
|
|
42
|
+
/** A type representing a static Table.Row configuration. */
|
|
43
|
+
type TableStaticRowProps = {
|
|
44
|
+
/** Static rows do not expose download behavior. */
|
|
45
|
+
download?: never;
|
|
46
|
+
/** Static rows do not expose a navigation destination. */
|
|
47
|
+
href?: never;
|
|
48
|
+
/** Static rows do not describe a linked resource language. */
|
|
49
|
+
hrefLang?: never;
|
|
50
|
+
/** Static rows do not require an action label. */
|
|
51
|
+
label?: never;
|
|
52
|
+
/** Static rows do not expose whole-row activation. */
|
|
53
|
+
onClick?: never;
|
|
54
|
+
/** Static rows do not expose navigation interception. */
|
|
55
|
+
onNavigate?: never;
|
|
56
|
+
/** Static rows do not target a browsing context. */
|
|
57
|
+
target?: never;
|
|
58
|
+
};
|
|
59
|
+
/** A type representing a button-backed Table.Row configuration. */
|
|
60
|
+
type TableButtonRowProps = {
|
|
61
|
+
/** Button-backed rows do not expose download behavior. */
|
|
62
|
+
download?: never;
|
|
63
|
+
/** Button-backed rows do not expose a navigation destination. */
|
|
64
|
+
href?: never;
|
|
65
|
+
/** Button-backed rows do not describe a linked resource language. */
|
|
66
|
+
hrefLang?: never;
|
|
67
|
+
/** The accessible name describing the whole-row action. */
|
|
68
|
+
label: string;
|
|
69
|
+
/** The callback invoked when the row's button is activated. */
|
|
70
|
+
onClick: MouseEventHandler<HTMLButtonElement>;
|
|
71
|
+
/** Button-backed rows do not expose navigation interception. */
|
|
72
|
+
onNavigate?: never;
|
|
73
|
+
/** Button-backed rows do not target a browsing context. */
|
|
74
|
+
target?: never;
|
|
75
|
+
};
|
|
76
|
+
/** A type representing a link-backed Table.Row configuration. */
|
|
77
|
+
type TableLinkRowProps = {
|
|
78
|
+
/** Whether the linked resource should be downloaded. */
|
|
79
|
+
download?: boolean | string;
|
|
80
|
+
/** The destination opened by whole-row activation. */
|
|
81
|
+
href: string;
|
|
82
|
+
/** The language of the linked resource. */
|
|
83
|
+
hrefLang?: string;
|
|
84
|
+
/** The accessible name describing the whole-row link. */
|
|
85
|
+
label: string;
|
|
86
|
+
/** Link-backed rows do not expose button activation. */
|
|
87
|
+
onClick?: never;
|
|
88
|
+
/** The callback invoked when the row's link is activated. */
|
|
89
|
+
onNavigate?: MouseEventHandler<HTMLAnchorElement>;
|
|
90
|
+
/** The relationship between the table and linked resource. */
|
|
91
|
+
rel?: string;
|
|
92
|
+
/** The browsing context used to open the linked resource. */
|
|
93
|
+
target?: HTMLAttributeAnchorTarget;
|
|
94
|
+
};
|
|
95
|
+
/** A type representing properties for the Table.Row component. */
|
|
96
|
+
export type TableRowProps = TableRowBaseProps & (TableButtonRowProps | TableLinkRowProps | TableStaticRowProps);
|
|
97
|
+
/** Shared properties configuring a Table header cell. */
|
|
98
|
+
type TableHeaderCellOwnProps = {
|
|
99
|
+
/** The horizontal alignment applied to the header content. */
|
|
100
|
+
align?: TableCellAlignment;
|
|
101
|
+
/** The content rendered inside the header cell. */
|
|
102
|
+
children?: ReactNode;
|
|
103
|
+
/** Whether the header pins its supported edge column during scrolling. */
|
|
104
|
+
sticky?: boolean;
|
|
105
|
+
};
|
|
106
|
+
/** A type representing properties for the Table.HeaderCell component. */
|
|
107
|
+
export type TableHeaderCellProps = Omit<ThHTMLAttributes<HTMLTableCellElement>, "align" | "children"> & TableHeaderCellOwnProps;
|
|
108
|
+
/** A type representing properties for the Table.ActionHeaderCell component. */
|
|
109
|
+
export type TableActionHeaderCellProps = Omit<TableHeaderCellProps, "align">;
|
|
110
|
+
/** A type representing properties for the Table.Cell component. */
|
|
111
|
+
export type TableCellProps = Omit<TdHTMLAttributes<HTMLTableCellElement>, "align" | "children"> & {
|
|
112
|
+
/** The horizontal alignment applied to the cell content. */
|
|
113
|
+
align?: TableCellAlignment;
|
|
114
|
+
/** Content rendered when no value is supplied. */
|
|
115
|
+
children?: ReactNode;
|
|
116
|
+
/** A function transforming the supplied value into displayed content. */
|
|
117
|
+
format?: (value: TableCellValue) => ReactNode;
|
|
118
|
+
/** The maximum CSS width used to truncate overflowing content. */
|
|
119
|
+
truncate?: string;
|
|
120
|
+
/** The primitive value displayed or passed to the format function. */
|
|
121
|
+
value?: TableCellValue;
|
|
122
|
+
};
|
|
123
|
+
/** A type representing properties for the Table.Action component. */
|
|
124
|
+
export type TableActionProps = Omit<ButtonProps<"button">, "as" | "children" | "className" | "fullWidth" | "icon" | "iconAlignment" | "shape" | "style" | "textAlignment" | "type" | "variant"> & {
|
|
125
|
+
/** The icon identifying the row action. */
|
|
126
|
+
icon: IconType;
|
|
127
|
+
/** The short Tooltip label and base accessible name for the row action. */
|
|
128
|
+
label: string;
|
|
129
|
+
};
|
|
130
|
+
/** A type representing properties for the Table.ActionCell component. */
|
|
131
|
+
export type TableActionCellProps = Omit<TdHTMLAttributes<HTMLTableCellElement>, "align" | "children"> & {
|
|
132
|
+
/** The consistently styled row actions rendered inside the cell. */
|
|
133
|
+
children?: ReactNode;
|
|
134
|
+
};
|
|
135
|
+
/** A type representing the complete compound Table component. */
|
|
136
|
+
type TableComponent = typeof TableRoot & {
|
|
137
|
+
/** A consistently styled control operating on one Table row. */
|
|
138
|
+
Action: typeof TableAction;
|
|
139
|
+
/** The cell containing persistent row-level actions. */
|
|
140
|
+
ActionCell: typeof TableActionCell;
|
|
141
|
+
/** The header cell labelling the row-actions column. */
|
|
142
|
+
ActionHeaderCell: typeof TableActionHeaderCell;
|
|
143
|
+
/** The body section containing Table data rows. */
|
|
144
|
+
Body: typeof TableBody;
|
|
145
|
+
/** A standard Table data cell. */
|
|
146
|
+
Cell: typeof TableCell;
|
|
147
|
+
/** The footer section containing Table summary rows. */
|
|
148
|
+
Foot: typeof TableFoot;
|
|
149
|
+
/** The header cell identifying a Table column. */
|
|
150
|
+
HeaderCell: typeof TableHeaderCell;
|
|
151
|
+
/** The head section containing Table column labels. */
|
|
152
|
+
Head: typeof TableHead;
|
|
153
|
+
/** A Table row. */
|
|
154
|
+
Row: typeof TableRow;
|
|
155
|
+
};
|
|
156
|
+
/**
|
|
157
|
+
* Renders the Table head section.
|
|
158
|
+
*
|
|
159
|
+
* @param props - The native section properties and header rows.
|
|
160
|
+
* @param forwardedReference - The reference assigned to the head element.
|
|
161
|
+
*
|
|
162
|
+
* @returns The rendered Table head section.
|
|
163
|
+
*/
|
|
164
|
+
declare const TableHead: import("react").ForwardRefExoticComponent<HTMLAttributes<HTMLTableSectionElement> & {
|
|
165
|
+
/** The rows rendered inside the Table head. */
|
|
166
|
+
children: ReactNode;
|
|
167
|
+
} & import("react").RefAttributes<HTMLTableSectionElement>>;
|
|
168
|
+
/**
|
|
169
|
+
* Renders the Table body and its optional empty state.
|
|
170
|
+
*
|
|
171
|
+
* @param props - The native section, row, and empty-state properties.
|
|
172
|
+
* @param forwardedReference - The reference assigned to the body element.
|
|
173
|
+
*
|
|
174
|
+
* @returns The rendered Table body section.
|
|
175
|
+
*/
|
|
176
|
+
declare const TableBody: import("react").ForwardRefExoticComponent<HTMLAttributes<HTMLTableSectionElement> & {
|
|
177
|
+
/** The rows rendered inside the Table body. */
|
|
178
|
+
children?: ReactNode;
|
|
179
|
+
/** The number of columns occupied by the generated empty-state cell. */
|
|
180
|
+
emptyColumnCount?: number;
|
|
181
|
+
/** The content displayed when children contain no explicit content. */
|
|
182
|
+
emptyMessage?: ReactNode;
|
|
183
|
+
} & import("react").RefAttributes<HTMLTableSectionElement>>;
|
|
184
|
+
/**
|
|
185
|
+
* Renders the Table foot section.
|
|
186
|
+
*
|
|
187
|
+
* @param props - The native section properties and footer rows.
|
|
188
|
+
* @param forwardedReference - The reference assigned to the foot element.
|
|
189
|
+
*
|
|
190
|
+
* @returns The rendered Table foot section.
|
|
191
|
+
*/
|
|
192
|
+
declare const TableFoot: import("react").ForwardRefExoticComponent<HTMLAttributes<HTMLTableSectionElement> & {
|
|
193
|
+
/** The rows rendered inside the Table foot. */
|
|
194
|
+
children: ReactNode;
|
|
195
|
+
} & import("react").RefAttributes<HTMLTableSectionElement>>;
|
|
196
|
+
/**
|
|
197
|
+
* Renders a native Table row without replacing its table semantics.
|
|
198
|
+
*
|
|
199
|
+
* @param props - The native row properties and cells.
|
|
200
|
+
* @param forwardedReference - The reference assigned to the row element.
|
|
201
|
+
*
|
|
202
|
+
* @returns The rendered Table row.
|
|
203
|
+
*/
|
|
204
|
+
declare const TableRow: import("react").ForwardRefExoticComponent<TableRowProps & import("react").RefAttributes<HTMLTableRowElement>>;
|
|
205
|
+
/**
|
|
206
|
+
* Renders a column header cell.
|
|
207
|
+
*
|
|
208
|
+
* @param props - The native header properties and displayed label.
|
|
209
|
+
* @param forwardedReference - The reference assigned to the header cell.
|
|
210
|
+
*
|
|
211
|
+
* @returns The rendered Table column header.
|
|
212
|
+
*/
|
|
213
|
+
declare const TableHeaderCell: import("react").ForwardRefExoticComponent<Omit<ThHTMLAttributes<HTMLTableCellElement>, "children" | "align"> & TableHeaderCellOwnProps & import("react").RefAttributes<HTMLTableCellElement>>;
|
|
214
|
+
/**
|
|
215
|
+
* Renders the header for a row-actions column.
|
|
216
|
+
*
|
|
217
|
+
* @param props - The native header properties and optional visible label.
|
|
218
|
+
* @param forwardedReference - The reference assigned to the header cell.
|
|
219
|
+
*
|
|
220
|
+
* @returns The rendered Table actions header.
|
|
221
|
+
*/
|
|
222
|
+
declare const TableActionHeaderCell: import("react").ForwardRefExoticComponent<TableActionHeaderCellProps & import("react").RefAttributes<HTMLTableCellElement>>;
|
|
223
|
+
/**
|
|
224
|
+
* Renders a data cell with optional value formatting and truncation.
|
|
225
|
+
*
|
|
226
|
+
* @param props - The native cell, content, and display properties.
|
|
227
|
+
* @param forwardedReference - The reference assigned to the data cell.
|
|
228
|
+
*
|
|
229
|
+
* @returns The rendered Table data cell.
|
|
230
|
+
*/
|
|
231
|
+
declare const TableCell: import("react").ForwardRefExoticComponent<Omit<TdHTMLAttributes<HTMLTableCellElement>, "children" | "align"> & {
|
|
232
|
+
/** The horizontal alignment applied to the cell content. */
|
|
233
|
+
align?: TableCellAlignment;
|
|
234
|
+
/** Content rendered when no value is supplied. */
|
|
235
|
+
children?: ReactNode;
|
|
236
|
+
/** A function transforming the supplied value into displayed content. */
|
|
237
|
+
format?: (value: TableCellValue) => ReactNode;
|
|
238
|
+
/** The maximum CSS width used to truncate overflowing content. */
|
|
239
|
+
truncate?: string;
|
|
240
|
+
/** The primitive value displayed or passed to the format function. */
|
|
241
|
+
value?: TableCellValue;
|
|
242
|
+
} & import("react").RefAttributes<HTMLTableCellElement>>;
|
|
243
|
+
/**
|
|
244
|
+
* Renders one consistently styled control operating on a Table row.
|
|
245
|
+
*
|
|
246
|
+
* @param props - The short label, icon, and native button properties.
|
|
247
|
+
* @param forwardedReference - The reference assigned to the action button.
|
|
248
|
+
*
|
|
249
|
+
* @returns The rendered Table row action.
|
|
250
|
+
*/
|
|
251
|
+
declare const TableAction: import("react").ForwardRefExoticComponent<Omit<ButtonProps<"button">, "className" | "style" | "children" | "icon" | "variant" | "type" | "as" | "shape" | "fullWidth" | "iconAlignment" | "textAlignment"> & {
|
|
252
|
+
/** The icon identifying the row action. */
|
|
253
|
+
icon: IconType;
|
|
254
|
+
/** The short Tooltip label and base accessible name for the row action. */
|
|
255
|
+
label: string;
|
|
256
|
+
} & import("react").RefAttributes<HTMLButtonElement>>;
|
|
257
|
+
/**
|
|
258
|
+
* Renders the cell containing controls for one Table row.
|
|
259
|
+
*
|
|
260
|
+
* @param props - The native cell properties and composed Table actions.
|
|
261
|
+
* @param forwardedReference - The reference assigned to the action cell.
|
|
262
|
+
*
|
|
263
|
+
* @returns The rendered Table action cell.
|
|
264
|
+
*/
|
|
265
|
+
declare const TableActionCell: import("react").ForwardRefExoticComponent<Omit<TdHTMLAttributes<HTMLTableCellElement>, "children" | "align"> & {
|
|
266
|
+
/** The consistently styled row actions rendered inside the cell. */
|
|
267
|
+
children?: ReactNode;
|
|
268
|
+
} & import("react").RefAttributes<HTMLTableCellElement>>;
|
|
269
|
+
/**
|
|
270
|
+
* Renders a semantic Table inside a keyboard-scrollable surface.
|
|
271
|
+
*
|
|
272
|
+
* @param props - The native table and presentation properties.
|
|
273
|
+
* @param forwardedReference - The reference assigned to the table element.
|
|
274
|
+
*
|
|
275
|
+
* @returns The rendered Table and its horizontal scroll container.
|
|
276
|
+
*/
|
|
277
|
+
declare const TableRoot: import("react").ForwardRefExoticComponent<TableHTMLAttributes<HTMLTableElement> & {
|
|
278
|
+
/** The table sections, rows, and cells rendered inside the Table. */
|
|
279
|
+
children: ReactNode;
|
|
280
|
+
/** The additional class name applied to the horizontal scroll container. */
|
|
281
|
+
containerClassName?: string;
|
|
282
|
+
/** The accessible label announced for the horizontal scroll container. */
|
|
283
|
+
scrollContainerLabel?: string;
|
|
284
|
+
} & import("react").RefAttributes<HTMLTableElement>>;
|
|
285
|
+
/** The compound Table component and its semantic subcomponents. */
|
|
286
|
+
declare const Table: TableComponent;
|
|
287
|
+
export default Table;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export { default as Table } from "./Table";
|
|
2
|
+
export type { TableActionCellProps, TableActionHeaderCellProps, TableActionProps, TableBodyProps, TableCellAlignment, TableCellProps, TableCellValue, TableFootProps, TableHeaderCellProps, TableHeadProps, TableProps, TableRowProps, } from "./Table";
|