@arsedizioni/ars-utils 19.1.16 → 19.1.17
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/messages.d.ts +1 -0
- package/clipper.ui/ui/document-manager/document-manager.d.ts +5 -0
- package/clipper.ui/ui/document-menu/document-menu.component.d.ts +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs +1 -0
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +11 -2
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/package.json +5 -5
|
@@ -113,6 +113,11 @@ export declare class ClipperDocumentManager {
|
|
|
113
113
|
*/
|
|
114
114
|
AI_comment(document: ClipperDocumentInfo | null): void;
|
|
115
115
|
/**
|
|
116
|
+
* AI: news service
|
|
117
|
+
* @param document: the document
|
|
118
|
+
*/
|
|
119
|
+
AI_news(document: ClipperDocumentInfo | null): void;
|
|
120
|
+
/**
|
|
116
121
|
* Checks if a module is supported by RS
|
|
117
122
|
* @param module : the module to check
|
|
118
123
|
* @returns: true if the module is supported
|
|
@@ -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>;
|
|
@@ -36,6 +36,7 @@ const ClipperMessages = {
|
|
|
36
36
|
AI_CONCERN_ME: '$clipper-ai-concernme',
|
|
37
37
|
AI_EXPLAIN: '$clipper-ai-explain',
|
|
38
38
|
AI_COMMENT: '$clipper-ai-comment',
|
|
39
|
+
AI_NEWS: '$clipper-ai-news',
|
|
39
40
|
// Interop
|
|
40
41
|
INTEROP_RS_NEW_LAW: '$clipper-interop-rs-new-law',
|
|
41
42
|
INTEROP_RS_NEW_ACTIVITY: '$clipper-interop-rs-new-activity',
|