@arsedizioni/ars-utils 18.2.510 → 18.2.512
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/clipper.ui/ui/browser-dialog/browser-dialog.component.d.ts +11 -1
- package/esm2022/clipper.ui/ui/browser-dialog/browser-dialog.component.mjs +17 -3
- package/esm2022/clipper.ui/ui/references/references.component.mjs +3 -3
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +18 -4
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { AfterViewInit, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { PageEvent } from '@angular/material/paginator';
|
|
3
3
|
import { MatDrawer } from '@angular/material/sidenav';
|
|
4
|
-
import { ClipperSearchParams, ClipperSearchResult, ClipperSelectionMode } from '@arsedizioni/ars-utils/clipper.common';
|
|
4
|
+
import { ClipperDocumentInfo, ClipperSearchParams, ClipperSearchResult, ClipperSelectionMode } from '@arsedizioni/ars-utils/clipper.common';
|
|
5
5
|
import { ThemeType } from '@arsedizioni/ars-utils/core';
|
|
6
6
|
import { ClipperSearchResultManager } from '../search-result-manager/search-result-manager';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
@@ -27,6 +27,16 @@ export declare class ClipperBrowserDialogComponent extends ClipperSearchResultMa
|
|
|
27
27
|
*/
|
|
28
28
|
private resize;
|
|
29
29
|
/**
|
|
30
|
+
* Return item state css class
|
|
31
|
+
* @param item : the item to evaluate
|
|
32
|
+
*/
|
|
33
|
+
getItemStateCssClass(_item: ClipperDocumentInfo): string | null;
|
|
34
|
+
/**
|
|
35
|
+
* Return the item state tooltip text
|
|
36
|
+
* @param item : the item to evaluate
|
|
37
|
+
*/
|
|
38
|
+
getItemStateTooltip(_item: ClipperDocumentInfo): string;
|
|
39
|
+
/**
|
|
30
40
|
* Show hide filter pane manually
|
|
31
41
|
*/
|
|
32
42
|
protected toggleFilterPane(): void;
|