@sumaris-net/ngx-components 18.23.37 → 18.23.38
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/form/entity/entity-editor.class.mjs +2 -2
- package/esm2022/src/app/core/form/properties/properties.table.mjs +3 -3
- package/esm2022/src/app/core/services/testing/referential.validator.mjs +11 -11
- package/esm2022/src/app/core/table/async-table.class.mjs +7 -4
- package/esm2022/src/app/core/table/table.class.mjs +6 -3
- package/esm2022/src/app/social/feed/feed.component.mjs +3 -3
- package/fesm2022/sumaris-net.ngx-components.mjs +25 -19
- 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 +5 -1
- package/src/app/core/table/table.class.d.ts +5 -1
- package/src/assets/manifest.json +1 -1
package/package.json
CHANGED
|
@@ -303,6 +303,7 @@ export declare abstract class AppAsyncTable<T extends IEntity<T, ID>, F = any, I
|
|
|
303
303
|
*/
|
|
304
304
|
deleteRows(event: Event | null, rows: AsyncTableElement<T>[], opts?: {
|
|
305
305
|
interactive?: boolean;
|
|
306
|
+
messageKey?: string;
|
|
306
307
|
}): Promise<number>;
|
|
307
308
|
selectRowById(id: number): Promise<boolean>;
|
|
308
309
|
/**
|
|
@@ -341,6 +342,7 @@ export declare abstract class AppAsyncTable<T extends IEntity<T, ID>, F = any, I
|
|
|
341
342
|
protected get singleSelectedRow(): AsyncTableElement<T>;
|
|
342
343
|
protected canDeleteRows(rows: AsyncTableElement<T>[], opts?: {
|
|
343
344
|
interactive?: boolean;
|
|
345
|
+
messageKey?: string;
|
|
344
346
|
}): Promise<boolean>;
|
|
345
347
|
protected canCancelRows(rows?: AsyncTableElement<T>[], opts?: {
|
|
346
348
|
interactive?: boolean;
|
|
@@ -384,7 +386,9 @@ export declare abstract class AppAsyncTable<T extends IEntity<T, ID>, F = any, I
|
|
|
384
386
|
protected getShowColumn(columnName: string): boolean;
|
|
385
387
|
protected markForCheck(): void;
|
|
386
388
|
protected detectChanges(): void;
|
|
387
|
-
protected askDeleteConfirmation(event?: Event, rows?: AsyncTableElement<T>[]
|
|
389
|
+
protected askDeleteConfirmation(event?: Event, rows?: AsyncTableElement<T>[], opts?: {
|
|
390
|
+
messageKey?: string;
|
|
391
|
+
}): Promise<boolean>;
|
|
388
392
|
protected askCancelConfirmation(event?: Event, rows?: AsyncTableElement<T>[]): Promise<boolean>;
|
|
389
393
|
protected askRestoreConfirmation(event?: Event): Promise<boolean>;
|
|
390
394
|
protected showToast(opts: ShowToastOptions): Promise<import("@ionic/core").OverlayEventDetail<any>>;
|
|
@@ -287,6 +287,7 @@ export declare abstract class AppTable<T extends IEntity<T, ID>, F = any, ID = n
|
|
|
287
287
|
*/
|
|
288
288
|
deleteRows(event: Event | null, rows: TableElement<T>[], opts?: {
|
|
289
289
|
interactive?: boolean;
|
|
290
|
+
messageKey?: string;
|
|
290
291
|
}): Promise<number>;
|
|
291
292
|
selectRowById(id: number): Promise<boolean>;
|
|
292
293
|
/**
|
|
@@ -325,6 +326,7 @@ export declare abstract class AppTable<T extends IEntity<T, ID>, F = any, ID = n
|
|
|
325
326
|
protected get singleSelectedRow(): TableElement<T>;
|
|
326
327
|
protected canDeleteRows(rows: TableElement<T>[], opts?: {
|
|
327
328
|
interactive?: boolean;
|
|
329
|
+
messageKey?: string;
|
|
328
330
|
}): Promise<boolean>;
|
|
329
331
|
protected canCancelRows(rows?: TableElement<T>[], opts?: {
|
|
330
332
|
interactive?: boolean;
|
|
@@ -368,7 +370,9 @@ export declare abstract class AppTable<T extends IEntity<T, ID>, F = any, ID = n
|
|
|
368
370
|
protected getShowColumn(columnName: string): boolean;
|
|
369
371
|
protected markForCheck(): void;
|
|
370
372
|
protected detectChanges(): void;
|
|
371
|
-
protected askDeleteConfirmation(event?: Event, rows?: TableElement<T>[]
|
|
373
|
+
protected askDeleteConfirmation(event?: Event, rows?: TableElement<T>[], opts?: {
|
|
374
|
+
messageKey?: string;
|
|
375
|
+
}): Promise<boolean>;
|
|
372
376
|
protected askCancelConfirmation(event?: Event, rows?: TableElement<T>[]): Promise<boolean>;
|
|
373
377
|
protected askRestoreConfirmation(event?: Event): Promise<boolean>;
|
|
374
378
|
protected showToast(opts: ShowToastOptions): Promise<import("@ionic/core").OverlayEventDetail<any>>;
|
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.23.
|
|
5
|
+
"version": "18.23.38",
|
|
6
6
|
"default_locale": "fr",
|
|
7
7
|
"description": "Angular components for building beautiful and responsive Apps",
|
|
8
8
|
"icons": [{
|