@sumaris-net/ngx-components 2.4.19 → 2.4.20-rc2
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/esm2020/src/app/core/form/buttons/form-buttons-bar.component.mjs +3 -3
- package/esm2020/src/app/core/table/async-table.class.mjs +17 -6
- package/esm2020/src/app/shared/image/gallery/testing/gallery.service.testing.mjs +9 -8
- package/fesm2015/sumaris-net.ngx-components.mjs +25 -13
- package/fesm2015/sumaris-net.ngx-components.mjs.map +1 -1
- package/fesm2020/sumaris-net.ngx-components.mjs +25 -13
- package/fesm2020/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/core/table/async-table.class.d.ts +3 -0
package/package.json
CHANGED
|
@@ -256,6 +256,7 @@ export declare abstract class AppAsyncTable<T extends IEntity<T, ID>, F = any, I
|
|
|
256
256
|
selectRowById(id: number): Promise<boolean>;
|
|
257
257
|
/**
|
|
258
258
|
* Try to select row by data. Will use dataEquals() (that call EntityUtils.equals()) to find same row's data
|
|
259
|
+
*
|
|
259
260
|
* @param data
|
|
260
261
|
*/
|
|
261
262
|
selectRowByData(data: T): Promise<boolean>;
|
|
@@ -274,6 +275,7 @@ export declare abstract class AppAsyncTable<T extends IEntity<T, ID>, F = any, I
|
|
|
274
275
|
}): Promise<boolean>;
|
|
275
276
|
/**
|
|
276
277
|
* Try to select row, by row.id, or by data. WIll use EntityUtils.equals()
|
|
278
|
+
*
|
|
277
279
|
* @param id
|
|
278
280
|
* @param data
|
|
279
281
|
* @protected
|
|
@@ -293,6 +295,7 @@ export declare abstract class AppAsyncTable<T extends IEntity<T, ID>, F = any, I
|
|
|
293
295
|
/**
|
|
294
296
|
* Open a row detail view. By default, will to open row detail page.
|
|
295
297
|
* Can be overridden by subclasses, BUT prefer to subscribe on onOpenRow
|
|
298
|
+
*
|
|
296
299
|
* @param id
|
|
297
300
|
* @param row
|
|
298
301
|
* @protected
|