@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arsedizioni/ars-utils",
3
- "version": "21.1.11",
3
+ "version": "21.1.14",
4
4
  "author": {
5
5
  "email": "software@arsedizioni.it",
6
6
  "name": "Fabio Buscaroli, Alberto Doria"
@@ -215,7 +215,6 @@ declare class ClipperSearchParams {
215
215
  searchId?: number;
216
216
  searchName?: string;
217
217
  text?: string;
218
- augmentedText?: string;
219
218
  title?: string;
220
219
  titleOnly?: boolean;
221
220
  showUnreadDocumentsOnly?: boolean;
@@ -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 getChunks(): string | undefined;
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 lastAugmentedQuery?: string[];
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<"none" | "selection" | "bag">;
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>;