@sumaris-net/ngx-components 18.22.9 → 18.22.10
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/doc/changelog.md +3 -0
- package/esm2022/src/app/core/table/async-table.class.mjs +14 -7
- package/esm2022/src/app/core/table/table.class.mjs +31 -12
- package/fesm2022/sumaris-net.ngx-components.mjs +43 -17
- package/fesm2022/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/core/table/async-table.class.d.ts +4 -2
- package/src/app/core/table/table.class.d.ts +3 -1
- package/src/assets/manifest.json +1 -1
package/package.json
CHANGED
|
@@ -214,11 +214,13 @@ export declare abstract class AppAsyncTable<T extends IEntity<T, ID>, F = any, I
|
|
|
214
214
|
emitEvent?: boolean;
|
|
215
215
|
permanentSelectionChangedPrevented?: boolean;
|
|
216
216
|
}): Promise<void>;
|
|
217
|
-
confirmAndAdd(event?: Event, row?: AsyncTableElement<T
|
|
217
|
+
confirmAndAdd(event?: Event, row?: AsyncTableElement<T>, opts?: {
|
|
218
|
+
focusColumn?: string;
|
|
219
|
+
}): Promise<boolean>;
|
|
218
220
|
confirmAndBackward(event?: Event, row?: AsyncTableElement<T>, opts?: {
|
|
219
221
|
focusColumn?: string;
|
|
220
222
|
}): Promise<boolean>;
|
|
221
|
-
confirmAndForward(event
|
|
223
|
+
confirmAndForward(event: Event | undefined, row?: AsyncTableElement<T>, opts?: {
|
|
222
224
|
focusColumn?: string;
|
|
223
225
|
}): Promise<boolean>;
|
|
224
226
|
/**
|
|
@@ -219,7 +219,9 @@ export declare abstract class AppTable<T extends IEntity<T, ID>, F = any, ID = n
|
|
|
219
219
|
emitEvent?: boolean;
|
|
220
220
|
permanentSelectionChangedPrevented?: boolean;
|
|
221
221
|
}): void;
|
|
222
|
-
confirmAndAdd(event?: Event, row?: TableElement<T
|
|
222
|
+
confirmAndAdd(event?: Event, row?: TableElement<T>, opts?: {
|
|
223
|
+
focusColumn?: string;
|
|
224
|
+
}): Promise<boolean>;
|
|
223
225
|
confirmAndBackward(event: Event | undefined, row?: TableElement<T>, opts?: {
|
|
224
226
|
focusColumn?: string;
|
|
225
227
|
}): boolean | Promise<boolean>;
|
package/src/assets/manifest.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "ngx-sumaris-components",
|
|
3
3
|
"short_name": "ngx-sumaris-components",
|
|
4
4
|
"manifest_version": 1,
|
|
5
|
-
"version": "18.22.
|
|
5
|
+
"version": "18.22.10",
|
|
6
6
|
"default_locale": "fr",
|
|
7
7
|
"description": "Angular components for building beautiful and responsive Apps",
|
|
8
8
|
"icons": [{
|