@nettyapps/ntybase 21.0.35-beta.4 → 21.0.35-beta.5

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.4",
3
+ "version": "21.0.35-beta.5",
4
4
  "description": "This library provides foundational services and components for NettyApps Angular applications.",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -327,6 +327,8 @@ declare abstract class NettyAgGridBase<T extends NettyEntityBaseInterface<T>> ex
327
327
  protected commonService: CommonService;
328
328
  protected sysFunctionProxy: SysfunctionProxy;
329
329
  protected environment: EnvironmentProxy;
330
+ menuValid: i0.WritableSignal<boolean>;
331
+ refreshButtonValid: i0.WritableSignal<boolean>;
330
332
  protected authenticationList: Array<NettySecurity>;
331
333
  protected accessRightsProcessed: i0.WritableSignal<boolean>;
332
334
  allowAdd: i0.WritableSignal<boolean>;
@@ -347,6 +349,7 @@ declare abstract class NettyAgGridBase<T extends NettyEntityBaseInterface<T>> ex
347
349
  protected selectedData?(): void;
348
350
  protected setFilter(): void;
349
351
  protected popupClose(): void;
352
+ protected onFilterTextBoxVisibilityChange(isOpen: boolean): void;
350
353
  /** Set data into the grid */
351
354
  setData(data: T[]): void;
352
355
  setAccessRights(): Promise<boolean>;
@@ -408,8 +411,6 @@ declare abstract class NettyAgGridListBase<T extends NettyEntityInterface<T>> ex
408
411
  hasFilter: i0.InputSignal<boolean>;
409
412
  protected isFilterValid: i0.WritableSignal<boolean>;
410
413
  protected isFilterExpanded: i0.Signal<boolean>;
411
- menuValid: i0.WritableSignal<boolean>;
412
- refreshButtonValid: i0.WritableSignal<boolean>;
413
414
  protected openEditComponentInPopup: i0.WritableSignal<boolean>;
414
415
  protected router: Router;
415
416
  protected routerActive: ActivatedRoute;
@@ -445,7 +446,6 @@ declare abstract class NettyAgGridListBase<T extends NettyEntityInterface<T>> ex
445
446
  * @returns true if has a valid value
446
447
  */
447
448
  protected hasValidValue(value: any): boolean;
448
- protected onFilterTextBoxVisibilityChange(isOpen: boolean): void;
449
449
  protected loadData(): void;
450
450
  deleteSelected(): Promise<void>;
451
451
  refreshData(): Promise<void>;