@arsedizioni/ars-utils 19.4.19 → 19.4.21
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 -1
- package/clipper.common/common/services/clipper.service.d.ts +1 -1
- package/clipper.ui/ui/browser/browser.component.d.ts +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs +0 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +2 -2
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/package.json +5 -5
|
@@ -170,7 +170,6 @@ export declare class ClipperSearchParams {
|
|
|
170
170
|
showUnreadDocumentsOnly?: boolean;
|
|
171
171
|
showCommentedDocumentsOnly?: boolean;
|
|
172
172
|
showNotAbrogatedDocumentsOnly?: boolean;
|
|
173
|
-
showBodiesAndInstitutionsOnly?: boolean;
|
|
174
173
|
expandTextQueryUsingAI?: boolean;
|
|
175
174
|
number?: string;
|
|
176
175
|
fromDate?: Date;
|
|
@@ -213,7 +213,7 @@ export declare class ClipperService implements OnDestroy {
|
|
|
213
213
|
/**
|
|
214
214
|
* Retrieve tags
|
|
215
215
|
*/
|
|
216
|
-
getTags(): import("rxjs").Observable<ApiResult<NameValueItem<
|
|
216
|
+
getTags(): import("rxjs").Observable<ApiResult<NameValueItem<number>[]>>;
|
|
217
217
|
/**
|
|
218
218
|
* Retrieve current dashboard
|
|
219
219
|
*/
|
|
@@ -46,7 +46,7 @@ export declare class ClipperBrowserComponent extends ClipperSearchResultManager
|
|
|
46
46
|
protected types: import("@angular/core").WritableSignal<NameValueItem<string>[]>;
|
|
47
47
|
protected topics: INode[];
|
|
48
48
|
protected hasTopics: () => boolean;
|
|
49
|
-
protected tags: import("@angular/core").WritableSignal<NameValueItem<
|
|
49
|
+
protected tags: import("@angular/core").WritableSignal<NameValueItem<number>[]>;
|
|
50
50
|
protected hasTags: () => boolean;
|
|
51
51
|
protected reasons: import("@angular/core").WritableSignal<NameValueItem<number>[]>;
|
|
52
52
|
protected modules: import("@angular/core").WritableSignal<NameValueItem<ClipperModule>[]>;
|
|
@@ -1451,7 +1451,6 @@ class ClipperSearchParams {
|
|
|
1451
1451
|
this.showUnreadDocumentsOnly = false;
|
|
1452
1452
|
this.showCommentedDocumentsOnly = false;
|
|
1453
1453
|
this.showNotAbrogatedDocumentsOnly = false;
|
|
1454
|
-
this.showBodiesAndInstitutionsOnly = false;
|
|
1455
1454
|
this.expandTextQueryUsingAI = false;
|
|
1456
1455
|
this.channels = [...ClipperChannels];
|
|
1457
1456
|
this.count = 15;
|