@mcurros2/microm 1.1.409-0 → 1.1.410-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 +16 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3751,6 +3751,22 @@ export function useMultiDataMapGrid({ dataMapView, viewState, selectionMode, map
|
|
|
3751
3751
|
setShowOnMap: Dispatch<SetStateAction<boolean>>;
|
|
3752
3752
|
centerMarker: MarkerProps | undefined;
|
|
3753
3753
|
};
|
|
3754
|
+
export interface MultiDataMapActionsToolbarProps {
|
|
3755
|
+
showMapConfig?: boolean;
|
|
3756
|
+
clientActions?: Record<string, EntityClientAction>;
|
|
3757
|
+
parentFormMode?: FormMode;
|
|
3758
|
+
data1?: ReturnType<typeof useMultiDataMapGrid>;
|
|
3759
|
+
data2?: ReturnType<typeof useMultiDataMapGrid>;
|
|
3760
|
+
data3?: ReturnType<typeof useMultiDataMapGrid>;
|
|
3761
|
+
data4?: ReturnType<typeof useMultiDataMapGrid>;
|
|
3762
|
+
data5?: ReturnType<typeof useMultiDataMapGrid>;
|
|
3763
|
+
configMenuTitle?: string;
|
|
3764
|
+
size?: DataGridToolbarSizes;
|
|
3765
|
+
toolbarIconVariant?: ActionIconVariant;
|
|
3766
|
+
actionsButtonVariant?: ButtonVariant;
|
|
3767
|
+
}
|
|
3768
|
+
export const MultiDataMapActionsToolbarDefaultProps: Partial<MultiDataMapActionsToolbarProps>;
|
|
3769
|
+
export function MultiDataMapActionsToolbar(props: MultiDataMapActionsToolbarProps): JSX.Element;
|
|
3754
3770
|
export interface MultiDataMapViewProps extends Omit<DataGridProps, 'gridHeight' | 'selectionMode' | 'enableExport' | 'autoFocus' | 'toolbarIconVariant' | 'toolbarSize' | 'filtersFormSize' | 'parentFormAPI'> {
|
|
3755
3771
|
latitudRecordIndex?: number;
|
|
3756
3772
|
longitudRecordIndex?: number;
|