@arsedizioni/ars-utils 19.4.21 → 19.4.23
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/services/clipper.service.d.ts +1 -1
- package/clipper.ui/ui/browser/browser.component.d.ts +1 -1
- package/clipper.ui/ui/document-menu/document-menu.component.d.ts +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -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<string>[]>>;
|
|
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<string>[]>;
|
|
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>[]>;
|
|
@@ -13,7 +13,7 @@ export declare class ClipperDocumentMenuComponent implements OnInit, OnDestroy {
|
|
|
13
13
|
private changeDetector;
|
|
14
14
|
private clipperService;
|
|
15
15
|
readonly useSelections: import("@angular/core").InputSignal<boolean>;
|
|
16
|
-
readonly selectionSource: import("@angular/core").InputSignal<"
|
|
16
|
+
readonly selectionSource: import("@angular/core").InputSignal<"none" | "selection" | "bag">;
|
|
17
17
|
protected selection: () => ClipperDocumentInfo[];
|
|
18
18
|
readonly parent: import("@angular/core").InputSignal<ClipperSearchResultManager>;
|
|
19
19
|
readonly item: import("@angular/core").InputSignal<ClipperDocumentInfo>;
|