@arsedizioni/ars-utils 21.1.14 → 21.1.15

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.14",
3
+ "version": "21.1.15",
4
4
  "author": {
5
5
  "email": "software@arsedizioni.it",
6
6
  "name": "Fabio Buscaroli, Alberto Doria"
@@ -314,7 +314,6 @@ interface ClipperDocumentRelevants {
314
314
  items: ClipperDocumentAnchorInfo[];
315
315
  hits: number;
316
316
  hit: number;
317
- minimumScore: number;
318
317
  }
319
318
  interface ClipperDocumentInfo {
320
319
  id?: string;
@@ -343,7 +342,8 @@ interface ClipperDocumentInfo {
343
342
  originDescription?: string;
344
343
  author?: string;
345
344
  anchors?: ClipperDocumentAnchorInfo[];
346
- chunks?: number[];
345
+ chunks?: ClipperDocumentAnchorInfo[];
346
+ chunksList?: string;
347
347
  taxonomy?: string;
348
348
  info?: string;
349
349
  isRead?: boolean;
@@ -817,11 +817,6 @@ declare class ClipperSearchResultItemComponent implements OnInit {
817
817
  protected readonly displayModesEnum: typeof ClipperSearchResultItemDisplayMode;
818
818
  protected readonly modelsEnum: typeof ClipperModel;
819
819
  ngOnInit(): void;
820
- /**
821
- * Get the chunks info for the current item
822
- * @returns the chunks info string or undefined
823
- */
824
- protected getQueryChunks(): string | undefined;
825
820
  /**
826
821
  * Checks if current item is selected
827
822
  * @returns true if current item is selected
@@ -1050,7 +1045,7 @@ declare class ClipperDocumentMenuComponent implements OnInit, OnDestroy {
1050
1045
  private changeDetector;
1051
1046
  private clipperService;
1052
1047
  readonly useSelections: _angular_core.InputSignal<boolean>;
1053
- readonly selectionSource: _angular_core.InputSignal<"bag" | "selection" | "none">;
1048
+ readonly selectionSource: _angular_core.InputSignal<"selection" | "bag" | "none">;
1054
1049
  protected selection: () => ClipperDocumentInfo[];
1055
1050
  readonly parent: _angular_core.InputSignal<ClipperSearchResultManager>;
1056
1051
  readonly item: _angular_core.InputSignal<ClipperDocumentInfo>;