@nettyapps/ntybase 21.0.35-beta.7 → 21.0.35-beta.9

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.7",
3
+ "version": "21.0.35-beta.9",
4
4
  "description": "This library provides foundational services and components for NettyApps Angular applications.",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -415,7 +415,12 @@ interface NettyEntityInterface<T> extends NettyEntityBaseInterface<T> {
415
415
  declare abstract class NettyAgGridListBase<T extends NettyEntityInterface<T>> extends NettyAgGridBase<T> implements OnInit {
416
416
  hasFilter: i0.InputSignal<boolean>;
417
417
  protected isFilterValid: i0.WritableSignal<boolean>;
418
- protected isFilterExpanded: i0.Signal<boolean>;
418
+ protected isFilterExpanded: i0.WritableSignal<boolean>;
419
+ protected filterRefreshTrigger: i0.WritableSignal<number>;
420
+ /**
421
+ * Triggers the filter component to refresh its data
422
+ */
423
+ refreshFilterData(): void;
419
424
  protected openEditComponentInPopup: i0.WritableSignal<boolean>;
420
425
  protected router: Router;
421
426
  protected routerActive: ActivatedRoute;