@arsedizioni/ars-utils 18.2.407 → 18.2.410

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.
@@ -567,7 +567,7 @@ export declare class ClipperTeamInfo {
567
567
  created?: string | null;
568
568
  lastModified?: string | null;
569
569
  }
570
- export interface ClipperSearchCalendarParams {
570
+ export declare class ClipperSearchCalendarParams {
571
571
  id?: string | null;
572
572
  fromDate?: Date | null;
573
573
  toDate?: Date | null;
@@ -582,10 +582,8 @@ export interface ClipperSearchCalendarParams {
582
582
  showExpiredDeadlinesOnly?: boolean | null;
583
583
  showClosedDeadlinesOnly?: boolean | null;
584
584
  recurrentOnly?: boolean | null;
585
- documentNumber?: string | null;
586
- documentYear?: number | null;
587
- first: number;
588
- count: number;
585
+ first?: number | null;
586
+ count?: number | null;
589
587
  }
590
588
  export interface ClipperSearchCalendarResult {
591
589
  interval: string;
@@ -600,18 +598,6 @@ export interface ClipperDeadlineInfo {
600
598
  userId?: number | null;
601
599
  teamId?: string | null;
602
600
  teamName?: string | null;
603
- documentModel?: number | null;
604
- documentId?: string | null;
605
- documentTitle?: string | null;
606
- documentUrl?: string | null;
607
- documentNumber?: string | null;
608
- documentDate?: string | null;
609
- documentLastChanged?: string | null;
610
- documentLastChangedBy?: string | null;
611
- documentLastChangedById?: string | null;
612
- documentLastChangedReason?: number | null;
613
- documentLastChangedReasonDescription?: string | null;
614
- documentUpdateState?: number | null;
615
601
  description?: string | null;
616
602
  emails?: string | null;
617
603
  expiringDate?: Date | null;
@@ -1,7 +1,7 @@
1
1
  import { BreakpointObserver } from '@angular/cdk/layout';
2
2
  import { ChangeDetectorRef, OnDestroy } from '@angular/core';
3
3
  import { MatPaginator } from '@angular/material/paginator';
4
- import { ClipperDocumentInfo, ClipperSearchParams, ClipperSearchResult } from '@arsedizioni/ars-utils/clipper.common';
4
+ import { ClipperDocumentInfo, ClipperSearchParams, ClipperSearchResult, ClipperSort } from '@arsedizioni/ars-utils/clipper.common';
5
5
  import { NameValueItem, ScreenService, SelectableModel } from '@arsedizioni/ars-utils/core';
6
6
  import { Subject } from 'rxjs';
7
7
  import { ClipperDocumentManager } from '../document-manager/document-manager';
@@ -17,7 +17,7 @@ export declare class ClipperSearchResultManager extends ClipperDocumentManager i
17
17
  protected breakpointObserver: BreakpointObserver;
18
18
  private themeService;
19
19
  screenService: ScreenService;
20
- selection: SelectableModel<any, string> | null;
20
+ selection: SelectableModel<ClipperDocumentInfo, string> | null;
21
21
  protected snapshot: ClipperSearchResult | null;
22
22
  protected filterBusy: import("@angular/core").WritableSignal<boolean>;
23
23
  protected filterParams: ClipperSearchParams;
@@ -25,8 +25,8 @@ export declare class ClipperSearchResultManager extends ClipperDocumentManager i
25
25
  protected filterPaneClosed: boolean;
26
26
  protected filterPane2HasBackdrop: boolean;
27
27
  protected filterPane2Closed: boolean;
28
- protected sortOptions: NameValueItem<number>[];
29
- protected sortMode: NameValueItem<number> | null;
28
+ protected sortOptions: NameValueItem<ClipperSort>[];
29
+ protected sortMode: NameValueItem<ClipperSort> | null;
30
30
  protected scrollerId: string;
31
31
  protected restorableId: string | null;
32
32
  protected hasFacets: import("@angular/core").WritableSignal<boolean>;