@arsedizioni/ars-utils 18.2.515 → 18.2.516
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 +2 -2
- package/clipper.ui/ui/references/references.component.d.ts +10 -0
- package/esm2022/clipper.ui/ui/browser-dialog/browser-dialog.component.mjs +9 -5
- package/esm2022/clipper.ui/ui/references/references.component.mjs +21 -3
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +28 -6
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/package.json +7 -7
|
@@ -30,12 +30,12 @@ export declare class ClipperBrowserDialogComponent extends ClipperSearchResultMa
|
|
|
30
30
|
* Return item state css class
|
|
31
31
|
* @param item : the item to evaluate
|
|
32
32
|
*/
|
|
33
|
-
getItemStateCssClass(
|
|
33
|
+
getItemStateCssClass(item: ClipperDocumentInfo): string | null;
|
|
34
34
|
/**
|
|
35
35
|
* Return the item state tooltip text
|
|
36
36
|
* @param item : the item to evaluate
|
|
37
37
|
*/
|
|
38
|
-
getItemStateTooltip(
|
|
38
|
+
getItemStateTooltip(item: ClipperDocumentInfo): string;
|
|
39
39
|
/**
|
|
40
40
|
* Show hide filter pane manually
|
|
41
41
|
*/
|
|
@@ -84,6 +84,16 @@ export declare class ClipperReferencesComponent extends ClipperSearchResultManag
|
|
|
84
84
|
* @param documentId : the document id
|
|
85
85
|
*/
|
|
86
86
|
open(documentId: string): void;
|
|
87
|
+
/**
|
|
88
|
+
* Return item state css class
|
|
89
|
+
* @param item : the item to evaluate
|
|
90
|
+
*/
|
|
91
|
+
getItemStateCssClass(item: ClipperDocumentInfo): string | null;
|
|
92
|
+
/**
|
|
93
|
+
* Return the item state tooltip text
|
|
94
|
+
* @param item : the item to evaluate
|
|
95
|
+
*/
|
|
96
|
+
getItemStateTooltip(item: ClipperDocumentInfo): string;
|
|
87
97
|
static ɵfac: i0.ɵɵFactoryDeclaration<ClipperReferencesComponent, never>;
|
|
88
98
|
static ɵcmp: i0.ɵɵComponentDeclaration<ClipperReferencesComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
89
99
|
}
|