@nettyapps/ntybase 21.0.35-beta.23 → 21.0.35-beta.24

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@nettyapps/ntybase",
3
- "version": "21.0.35-beta.23",
3
+ "version": "21.0.35-beta.24",
4
4
  "description": "This library provides foundational services and components for NettyApps Angular applications.",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -357,9 +357,8 @@ declare abstract class NettyAgGridBase<T extends NettyEntityBaseInterface<T>> ex
357
357
  * Handle back button click
358
358
  */
359
359
  backClicked(): void;
360
- refreshData(): Promise<void>;
361
360
  /** Set data into the grid */
362
- setData(data: T[]): void;
361
+ setData(data: T[], initialize?: boolean): void;
363
362
  setAccessRights(): Promise<boolean>;
364
363
  /**
365
364
  * Get stored filter mode from local storage
@@ -458,6 +457,7 @@ declare abstract class NettyAgGridListBase<T extends NettyEntityInterface<T>> ex
458
457
  */
459
458
  protected hasValidValue(value: any): boolean;
460
459
  protected loadData(): void;
460
+ refreshData(): Promise<void>;
461
461
  deleteSelected(): Promise<void>;
462
462
  protected deleteRows(rows: T[]): void;
463
463
  logInputs(message: string): void;