@arsedizioni/ars-utils 21.1.11 → 21.1.14
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/fesm2022/arsedizioni-ars-utils-clipper.common.mjs +0 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +27 -16
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/arsedizioni-ars-utils-clipper.common.d.ts +0 -1
- package/types/arsedizioni-ars-utils-clipper.ui.d.ts +3 -3
package/package.json
CHANGED
|
@@ -821,7 +821,7 @@ declare class ClipperSearchResultItemComponent implements OnInit {
|
|
|
821
821
|
* Get the chunks info for the current item
|
|
822
822
|
* @returns the chunks info string or undefined
|
|
823
823
|
*/
|
|
824
|
-
protected
|
|
824
|
+
protected getQueryChunks(): string | undefined;
|
|
825
825
|
/**
|
|
826
826
|
* Checks if current item is selected
|
|
827
827
|
* @returns true if current item is selected
|
|
@@ -868,7 +868,7 @@ declare class ClipperDocumentComponent extends ClipperDocumentManager implements
|
|
|
868
868
|
protected title: _angular_core.WritableSignal<string>;
|
|
869
869
|
protected busy: _angular_core.WritableSignal<boolean>;
|
|
870
870
|
protected lastQuery?: string;
|
|
871
|
-
protected
|
|
871
|
+
protected lastQueryChunks?: string;
|
|
872
872
|
protected lastDocument?: ClipperDocumentInfo;
|
|
873
873
|
protected relevants: ClipperDocumentRelevants;
|
|
874
874
|
protected relevantsPaneHasBackdrop: boolean;
|
|
@@ -1050,7 +1050,7 @@ declare class ClipperDocumentMenuComponent implements OnInit, OnDestroy {
|
|
|
1050
1050
|
private changeDetector;
|
|
1051
1051
|
private clipperService;
|
|
1052
1052
|
readonly useSelections: _angular_core.InputSignal<boolean>;
|
|
1053
|
-
readonly selectionSource: _angular_core.InputSignal<"
|
|
1053
|
+
readonly selectionSource: _angular_core.InputSignal<"bag" | "selection" | "none">;
|
|
1054
1054
|
protected selection: () => ClipperDocumentInfo[];
|
|
1055
1055
|
readonly parent: _angular_core.InputSignal<ClipperSearchResultManager>;
|
|
1056
1056
|
readonly item: _angular_core.InputSignal<ClipperDocumentInfo>;
|