@mcurros2/microm 1.1.365-0 → 1.1.367-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 +14 -7
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -394,6 +394,7 @@ export interface EntityFormProps extends PropsWithChildren {
|
|
|
394
394
|
saveBeforeLocalNavigation?: boolean;
|
|
395
395
|
saveBeforeRemoteNavigation?: boolean;
|
|
396
396
|
disableOKIfNotDirty?: boolean;
|
|
397
|
+
formHeight?: string | number;
|
|
397
398
|
}
|
|
398
399
|
export const EntityFormDefaultProps: Partial<EntityFormProps>;
|
|
399
400
|
export function EntityForm(props: EntityFormProps): JSX.Element;
|
|
@@ -2015,6 +2016,7 @@ export interface DataGridProps extends UseEntityUIProps {
|
|
|
2015
2016
|
showColumnsConfigMenu?: boolean;
|
|
2016
2017
|
initialHiddenColumns?: number[];
|
|
2017
2018
|
showSelectRowsButton?: boolean;
|
|
2019
|
+
initialSelectRowsToggle?: boolean;
|
|
2018
2020
|
}
|
|
2019
2021
|
export type DataGridSelectionKeys = ValuesObject[];
|
|
2020
2022
|
export interface useDataViewReturnType {
|
|
@@ -3320,6 +3322,7 @@ export function useMultiDataMapGrid({ dataMapView, viewState, selectionMode, map
|
|
|
3320
3322
|
onDataRefresh: (result: _OperationStatus1<_DataResult1[]>) => void;
|
|
3321
3323
|
doubleClickAction: (("view" | "none" | "edit" | ((record: _GridRecord1) => void)) & NonNullable<"view" | "none" | "edit" | ((record: _GridRecord1) => void) | undefined>) | undefined;
|
|
3322
3324
|
initialHiddenColumns: number[];
|
|
3325
|
+
initialSelectRowsToggle: boolean;
|
|
3323
3326
|
refreshOnInit: boolean;
|
|
3324
3327
|
onSearch: _DataViewSearchCallback1;
|
|
3325
3328
|
setInitialFiltersFromColumns: boolean;
|