@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.
@@ -23,6 +23,7 @@ export declare const ClipperMessages: {
23
23
  AI_CONCERN_ME: string;
24
24
  AI_EXPLAIN: string;
25
25
  AI_COMMENT: string;
26
+ AI_NEWS: string;
26
27
  INTEROP_RS_NEW_LAW: string;
27
28
  INTEROP_RS_NEW_ACTIVITY: string;
28
29
  INTEROP_RS_USAGE_REPORT: string;
@@ -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<"selection" | "bag" | "none">;
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',