@moontra/moonui-pro 2.26.12 → 2.26.13
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/index.d.ts +5 -1
- package/dist/index.global.js +31 -31
- package/dist/index.global.js.map +1 -1
- package/dist/index.mjs +15 -10
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3180,7 +3180,11 @@ interface DataTableProps<TData, TValue> {
|
|
|
3180
3180
|
onRowExpandChange?: (expandedRows: Set<string>) => void;
|
|
3181
3181
|
bulkActions?: BulkAction<TData>[];
|
|
3182
3182
|
quickFilters?: QuickFilterOption[];
|
|
3183
|
-
facetedFilters?: string
|
|
3183
|
+
facetedFilters?: (string | {
|
|
3184
|
+
column: string;
|
|
3185
|
+
label?: string;
|
|
3186
|
+
})[];
|
|
3187
|
+
enableFaceting?: boolean;
|
|
3184
3188
|
enableSorting?: boolean;
|
|
3185
3189
|
enableFiltering?: boolean;
|
|
3186
3190
|
enablePagination?: boolean;
|