@arsedizioni/ars-utils 18.2.407 → 18.2.409

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;
@@ -584,8 +584,8 @@ export interface ClipperSearchCalendarParams {
584
584
  recurrentOnly?: boolean | null;
585
585
  documentNumber?: string | null;
586
586
  documentYear?: number | null;
587
- first: number;
588
- count: number;
587
+ first?: number | null;
588
+ count?: number | null;
589
589
  }
590
590
  export interface ClipperSearchCalendarResult {
591
591
  interval: string;
@@ -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;