@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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sumaris-net/ngx-components",
3
3
  "description": "SUMARiS Angular components",
4
- "version": "2.4.19",
4
+ "version": "2.4.20-rc2",
5
5
  "author": "contact@e-is.pro",
6
6
  "license": "AGPL-3.0",
7
7
  "readmeFilename": "README.md",
@@ -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