@arsedizioni/ars-utils 19.5.27 → 19.5.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.
|
@@ -13,7 +13,7 @@ export declare class ClipperDocumentMenuComponent implements OnInit, OnDestroy {
|
|
|
13
13
|
private changeDetector;
|
|
14
14
|
private clipperService;
|
|
15
15
|
readonly useSelections: import("@angular/core").InputSignal<boolean>;
|
|
16
|
-
readonly selectionSource: import("@angular/core").InputSignal<"
|
|
16
|
+
readonly selectionSource: import("@angular/core").InputSignal<"none" | "selection" | "bag">;
|
|
17
17
|
protected selection: () => ClipperDocumentInfo[];
|
|
18
18
|
readonly parent: import("@angular/core").InputSignal<ClipperSearchResultManager>;
|
|
19
19
|
readonly item: import("@angular/core").InputSignal<ClipperDocumentInfo>;
|
|
@@ -2292,6 +2292,7 @@ class ClipperSearchResultManager extends ClipperDocumentManager {
|
|
|
2292
2292
|
}
|
|
2293
2293
|
});
|
|
2294
2294
|
}
|
|
2295
|
+
this.broadcastService.sendMessage(ClipperMessages.COMMAND_DASHBOARD_UPDATED);
|
|
2295
2296
|
}
|
|
2296
2297
|
});
|
|
2297
2298
|
}
|
|
@@ -2334,7 +2335,7 @@ class ClipperSearchResultManager extends ClipperDocumentManager {
|
|
|
2334
2335
|
paginator: {
|
|
2335
2336
|
index: this.paginator()?.pageIndex ?? 0,
|
|
2336
2337
|
total: this.snapshot?.total ?? 0,
|
|
2337
|
-
size: this.paginator()?.pageSize ??
|
|
2338
|
+
size: this.paginator()?.pageSize ?? this.filterParams?.count ?? 20
|
|
2338
2339
|
},
|
|
2339
2340
|
facets: this.facets()?.save(),
|
|
2340
2341
|
filterParams: this.filterParams,
|