@mcurros2/microm 1.1.52-0 → 1.1.53-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 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +11 -8
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2082,7 +2082,7 @@ export interface EntityCardProps<T extends ValuesObject> {
|
|
|
2082
2082
|
handleViewClick?: (keys: ValuesObject, element: HTMLElement) => void;
|
|
2083
2083
|
handleSelectRecord?: (record_index: number) => void;
|
|
2084
2084
|
handleDeselectRecord?: (record_index: number) => void;
|
|
2085
|
-
handleExecuteAction?: (action: EntityClientAction, element?: HTMLElement) => Promise<boolean | undefined>;
|
|
2085
|
+
handleExecuteAction?: (action: EntityClientAction, recordIndex?: number, element?: HTMLElement) => Promise<boolean | undefined>;
|
|
2086
2086
|
handleCardClick?: (data: T) => void;
|
|
2087
2087
|
refreshView?: () => void;
|
|
2088
2088
|
cardHrefRootURL?: string;
|
|
@@ -2224,7 +2224,7 @@ export interface useDataViewReturnType {
|
|
|
2224
2224
|
handleViewClick: (keys: ValuesObject, element?: HTMLElement) => Promise<void>;
|
|
2225
2225
|
handleToggleSelectable: () => void;
|
|
2226
2226
|
handleRefresh: (searchText: string[] | undefined) => void;
|
|
2227
|
-
handleExecuteAction: (action: EntityClientAction, element?: HTMLElement) => Promise<boolean | undefined>;
|
|
2227
|
+
handleExecuteAction: (action: EntityClientAction, recordIndex?: number, element?: HTMLElement) => Promise<boolean | undefined>;
|
|
2228
2228
|
handleExport: () => void;
|
|
2229
2229
|
selectedRowsCount: number;
|
|
2230
2230
|
limitRows: string | null;
|
|
@@ -3369,7 +3369,7 @@ export function useMultiDataMapGrid({ dataMapView, viewState, selectionMode, map
|
|
|
3369
3369
|
handleViewClick: (element?: HTMLElement) => Promise<void>;
|
|
3370
3370
|
handleToggleSelectable: () => void;
|
|
3371
3371
|
handleRefresh: (search_text: string[] | undefined) => void;
|
|
3372
|
-
handleExecuteAction: (action: import("src").EntityClientAction, element?: HTMLElement) => Promise<void>;
|
|
3372
|
+
handleExecuteAction: (action: import("src").EntityClientAction, recordIndex?: number, element?: HTMLElement) => Promise<void>;
|
|
3373
3373
|
handleExport: () => Promise<void>;
|
|
3374
3374
|
selectedRowsCount: number;
|
|
3375
3375
|
showSelectCheckbox: boolean;
|