@arsedizioni/ars-utils 18.2.409 → 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.
- package/clipper.common/common/definitions.d.ts +0 -14
- package/clipper.ui/ui/search-result-manager/search-result-manager.d.ts +3 -3
- package/esm2022/clipper.common/common/definitions.mjs +1 -3
- package/esm2022/clipper.ui/ui/search-result-manager/search-result-manager.mjs +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs +0 -2
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/package.json +7 -7
|
@@ -582,8 +582,6 @@ export declare class 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
585
|
first?: number | null;
|
|
588
586
|
count?: number | null;
|
|
589
587
|
}
|
|
@@ -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';
|
|
@@ -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<
|
|
29
|
-
protected sortMode: NameValueItem<
|
|
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>;
|