@mcurros2/microm 1.1.409-0 → 1.1.411-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 +21 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +8 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1874,6 +1874,11 @@ export interface openEntityFormProps<T extends FormOptions<Entity<EntityDefiniti
|
|
|
1874
1874
|
formProps: T;
|
|
1875
1875
|
}
|
|
1876
1876
|
export function openEntityForm<T extends FormOptions<Entity<EntityDefinition>>>({ modals, title, element, handleModalCancel, handleModalSaved, modalFormSize, formProps, handleModalClosed, withModalFullscreenButton }: openEntityFormProps<T>): Promise<void>;
|
|
1877
|
+
export const ACTViewImportErrorsLabels: {
|
|
1878
|
+
title: string;
|
|
1879
|
+
label: string;
|
|
1880
|
+
};
|
|
1881
|
+
export const ACTViewImportErrors: EntityClientAction;
|
|
1877
1882
|
export class ImportProcessDef extends EntityDefinition {
|
|
1878
1883
|
destinationProps: ImportDataDestinationProps;
|
|
1879
1884
|
columns: {
|
|
@@ -3751,6 +3756,22 @@ export function useMultiDataMapGrid({ dataMapView, viewState, selectionMode, map
|
|
|
3751
3756
|
setShowOnMap: Dispatch<SetStateAction<boolean>>;
|
|
3752
3757
|
centerMarker: MarkerProps | undefined;
|
|
3753
3758
|
};
|
|
3759
|
+
export interface MultiDataMapActionsToolbarProps {
|
|
3760
|
+
showMapConfig?: boolean;
|
|
3761
|
+
clientActions?: Record<string, EntityClientAction>;
|
|
3762
|
+
parentFormMode?: FormMode;
|
|
3763
|
+
data1?: ReturnType<typeof useMultiDataMapGrid>;
|
|
3764
|
+
data2?: ReturnType<typeof useMultiDataMapGrid>;
|
|
3765
|
+
data3?: ReturnType<typeof useMultiDataMapGrid>;
|
|
3766
|
+
data4?: ReturnType<typeof useMultiDataMapGrid>;
|
|
3767
|
+
data5?: ReturnType<typeof useMultiDataMapGrid>;
|
|
3768
|
+
configMenuTitle?: string;
|
|
3769
|
+
size?: DataGridToolbarSizes;
|
|
3770
|
+
toolbarIconVariant?: ActionIconVariant;
|
|
3771
|
+
actionsButtonVariant?: ButtonVariant;
|
|
3772
|
+
}
|
|
3773
|
+
export const MultiDataMapActionsToolbarDefaultProps: Partial<MultiDataMapActionsToolbarProps>;
|
|
3774
|
+
export function MultiDataMapActionsToolbar(props: MultiDataMapActionsToolbarProps): JSX.Element;
|
|
3754
3775
|
export interface MultiDataMapViewProps extends Omit<DataGridProps, 'gridHeight' | 'selectionMode' | 'enableExport' | 'autoFocus' | 'toolbarIconVariant' | 'toolbarSize' | 'filtersFormSize' | 'parentFormAPI'> {
|
|
3755
3776
|
latitudRecordIndex?: number;
|
|
3756
3777
|
longitudRecordIndex?: number;
|