@piying-lib/angular-daisyui 1.3.26 → 1.3.28

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.
@@ -267,6 +267,7 @@ type RequestFn = ((input: any, needUpdate: boolean) => Promise<readonly [number,
267
267
  declare class TableResourceService {
268
268
  #private;
269
269
  EMPTY_VALUE: (number | any[])[];
270
+ queryParams$$: _angular_core.Signal<{}>;
270
271
  list$$: _angular_core.Signal<any[]>;
271
272
  count$$: _angular_core.Signal<number>;
272
273
  isLoading$$: _angular_core.Signal<boolean>;
@@ -771,6 +771,7 @@ class TableResourceService {
771
771
  EMPTY_VALUE = [0, EMPTY_ARRAY];
772
772
  #requestFn$ = signal(undefined, ...(ngDevMode ? [{ debugName: "#requestFn$" }] : []));
773
773
  #queryParams$ = signal({}, ...(ngDevMode ? [{ debugName: "#queryParams$" }] : []));
774
+ queryParams$$ = this.#queryParams$.asReadonly();
774
775
  #nextSubject = new Subject();
775
776
  #data$ = resource({
776
777
  params: computed(() => {