@arsedizioni/ars-utils 19.0.173 → 19.0.175
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<"selection" | "bag" | "none">;
|
|
17
17
|
protected selection: () => ClipperDocumentInfo[];
|
|
18
18
|
readonly parent: import("@angular/core").InputSignal<ClipperSearchResultManager>;
|
|
19
19
|
readonly item: import("@angular/core").InputSignal<ClipperDocumentInfo>;
|
|
@@ -2148,7 +2148,6 @@ class ClipperSearchResultManager extends ClipperDocumentManager {
|
|
|
2148
2148
|
* @param item : the item to evaluate
|
|
2149
2149
|
*/
|
|
2150
2150
|
getItemStateCssClass(item) {
|
|
2151
|
-
console.log(item.model);
|
|
2152
2151
|
if (item.isRead !== true && ClipperUtils.isClipperModelReadable(item.model))
|
|
2153
2152
|
return 'unread-bg';
|
|
2154
2153
|
else if (item.isExpired)
|