@sarafapp/iron_core 1.0.61 → 1.0.62

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.
@@ -11,13 +11,13 @@ export interface TableSource<T> {
11
11
  onTableDestroy(): void;
12
12
  }
13
13
  export interface RowClick<T> extends TableSource<T> {
14
- onRowClick(): Promise<void>;
14
+ onRowClick(row: T): Promise<void>;
15
15
  }
16
16
  export interface RowMetaClick<T> extends TableSource<T> {
17
- onRowMetaClick(): Promise<void>;
17
+ onRowMetaClick(row: T): Promise<void>;
18
18
  }
19
19
  export interface handleDoubleClick<T> extends TableSource<T> {
20
- onRowDoubleClick(): Promise<void>;
20
+ onRowDoubleClick(row: T): Promise<void>;
21
21
  }
22
22
  export interface TableSummary<T> extends TableSource<T> {
23
23
  loadSummarySchema(): Promise<TableSummarySchema>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sarafapp/iron_core",
3
3
  "private": false,
4
- "version": "1.0.61",
4
+ "version": "1.0.62",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "dist"