@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.
- package/extension/index.d.ts +1 -0
- package/fesm2022/piying-lib-angular-daisyui-extension.mjs +1 -0
- package/fesm2022/piying-lib-angular-daisyui-extension.mjs.map +1 -1
- package/fesm2022/piying-lib-angular-daisyui-field-control.mjs +9 -4
- package/fesm2022/piying-lib-angular-daisyui-field-control.mjs.map +1 -1
- package/fesm2022/piying-lib-angular-daisyui-overlay.mjs +3 -3
- package/fesm2022/piying-lib-angular-daisyui-overlay.mjs.map +1 -1
- package/field-control/index.d.ts +3 -1
- package/overlay/index.d.ts +1 -0
- package/package.json +2 -2
package/extension/index.d.ts
CHANGED
|
@@ -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(() => {
|