@arsedizioni/ars-utils 21.1.10 → 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.10",
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;
@@ -1134,8 +1134,7 @@ declare class ClipperDocumentMenuComponent implements OnInit, OnDestroy {
1134
1134
  declare class ClipperDocumentsUtils {
1135
1135
  /**
1136
1136
  * Open a document
1137
- * @param dialogService: the dialog service
1138
- * @param clipperService: the clipper service
1137
+ * @param injector: the injector
1139
1138
  * @param documentId : the document id
1140
1139
  * @param query : the query for highlight
1141
1140
  * @param queryChunks : the query chunks for highlight as string (eg. "|1|2|3...")