@arsedizioni/ars-utils 18.4.9 → 18.4.10

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.
@@ -286,13 +286,22 @@
286
286
 
287
287
  .title {
288
288
  text-decoration: none !important;
289
- font-size: small !important;
289
+ font-size: 14px !important;
290
290
  font-weight: 600;
291
291
  min-height: 50px !important; // 2 lines;
292
- min-height: 70px !important; // 3 lines;
292
+ max-height: 70px !important; // 3 lines;
293
293
  min-width: 100%;
294
- white-space: unset !important;
294
+ white-space: initial !important;
295
295
  overflow: hidden !important;
296
+
297
+ @supports (-webkit-line-clamp: 3) {
298
+ overflow: hidden;
299
+ text-overflow: ellipsis;
300
+ white-space: initial;
301
+ display: -webkit-box;
302
+ -webkit-line-clamp: 3;
303
+ -webkit-box-orient: vertical;
304
+ }
296
305
  }
297
306
 
298
307
 
@@ -12,7 +12,7 @@ export declare class ClipperDocumentMenuComponent implements OnInit, OnDestroy {
12
12
  private changeDetector;
13
13
  private clipperService;
14
14
  useSelections: import("@angular/core").InputSignal<boolean>;
15
- selectionSource: import("@angular/core").InputSignal<"bag" | "selection" | "none">;
15
+ selectionSource: import("@angular/core").InputSignal<"none" | "bag" | "selection">;
16
16
  protected selection: () => ClipperDocumentInfo[];
17
17
  parent: import("@angular/core").InputSignal<ClipperSearchResultManager>;
18
18
  item: import("@angular/core").InputSignal<ClipperDocumentInfo>;