@mcurros2/microm 1.1.227-0 → 1.1.229-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 +4 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +8 -5
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -350,6 +350,7 @@ export interface EntityFormProps extends PropsWithChildren {
|
|
|
350
350
|
okButtonVariant?: Variants<'filled' | 'outline' | 'light' | 'white' | 'default' | 'subtle' | 'gradient'>;
|
|
351
351
|
saveBeforeLocalNavigation?: boolean;
|
|
352
352
|
saveBeforeRemoteNavigation?: boolean;
|
|
353
|
+
disableOKIfNotDirty?: boolean;
|
|
353
354
|
}
|
|
354
355
|
export const EntityFormDefaultProps: Partial<EntityFormProps>;
|
|
355
356
|
export function EntityForm(props: EntityFormProps): JSX.Element;
|
|
@@ -2016,6 +2017,7 @@ export interface DataGridToolbarOptions {
|
|
|
2016
2017
|
setSearchText: Dispatch<SetStateAction<string[] | undefined>>;
|
|
2017
2018
|
searchData: SelectItem[];
|
|
2018
2019
|
setSearchData: Dispatch<SetStateAction<SelectItem[]>>;
|
|
2020
|
+
maxSearchTerms?: number;
|
|
2019
2021
|
FiltersEntity?: EntityConstructor;
|
|
2020
2022
|
filterTooltip?: string;
|
|
2021
2023
|
parentKeys?: ValuesObject;
|
|
@@ -2220,6 +2222,7 @@ export interface DataGridProps extends UseEntityUIProps {
|
|
|
2220
2222
|
showActions?: boolean;
|
|
2221
2223
|
setInitialFiltersFromColumns?: boolean;
|
|
2222
2224
|
visibleFilters?: string[];
|
|
2225
|
+
maxSearchTerms?: number;
|
|
2223
2226
|
columnBorders?: boolean;
|
|
2224
2227
|
rowBorders?: boolean;
|
|
2225
2228
|
withBorder?: boolean;
|
|
@@ -3406,6 +3409,7 @@ export function useMultiDataMapGrid({ dataMapView, viewState, selectionMode, map
|
|
|
3406
3409
|
columnBorders: boolean;
|
|
3407
3410
|
rowBorders: boolean;
|
|
3408
3411
|
visibleFilters: string[];
|
|
3412
|
+
maxSearchTerms: number;
|
|
3409
3413
|
enableImport: boolean;
|
|
3410
3414
|
showSelectRowsButton: boolean;
|
|
3411
3415
|
showActions: boolean;
|