@mcurros2/microm 1.1.227-0 → 1.1.228-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/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +6 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2016,6 +2016,7 @@ export interface DataGridToolbarOptions {
|
|
|
2016
2016
|
setSearchText: Dispatch<SetStateAction<string[] | undefined>>;
|
|
2017
2017
|
searchData: SelectItem[];
|
|
2018
2018
|
setSearchData: Dispatch<SetStateAction<SelectItem[]>>;
|
|
2019
|
+
maxSearchTerms?: number;
|
|
2019
2020
|
FiltersEntity?: EntityConstructor;
|
|
2020
2021
|
filterTooltip?: string;
|
|
2021
2022
|
parentKeys?: ValuesObject;
|
|
@@ -2220,6 +2221,7 @@ export interface DataGridProps extends UseEntityUIProps {
|
|
|
2220
2221
|
showActions?: boolean;
|
|
2221
2222
|
setInitialFiltersFromColumns?: boolean;
|
|
2222
2223
|
visibleFilters?: string[];
|
|
2224
|
+
maxSearchTerms?: number;
|
|
2223
2225
|
columnBorders?: boolean;
|
|
2224
2226
|
rowBorders?: boolean;
|
|
2225
2227
|
withBorder?: boolean;
|
|
@@ -3406,6 +3408,7 @@ export function useMultiDataMapGrid({ dataMapView, viewState, selectionMode, map
|
|
|
3406
3408
|
columnBorders: boolean;
|
|
3407
3409
|
rowBorders: boolean;
|
|
3408
3410
|
visibleFilters: string[];
|
|
3411
|
+
maxSearchTerms: number;
|
|
3409
3412
|
enableImport: boolean;
|
|
3410
3413
|
showSelectRowsButton: boolean;
|
|
3411
3414
|
showActions: boolean;
|