@arsedizioni/ars-utils 19.1.8 → 19.1.10
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 +2 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs +2 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +12 -2
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-evolution.common.mjs +1 -1
- package/fesm2022/arsedizioni-ars-utils-evolution.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-support.common.mjs +1 -1
- package/fesm2022/arsedizioni-ars-utils-support.common.mjs.map +1 -1
- package/package.json +5 -5
|
@@ -108,6 +108,11 @@ export declare class ClipperDocumentManager {
|
|
|
108
108
|
*/
|
|
109
109
|
AI_explain(document: ClipperDocumentInfo | null): void;
|
|
110
110
|
/**
|
|
111
|
+
* AI: comment service
|
|
112
|
+
* @param document: the document
|
|
113
|
+
*/
|
|
114
|
+
AI_comment(document: ClipperDocumentInfo | null): void;
|
|
115
|
+
/**
|
|
111
116
|
* Checks if a module is supported by RS
|
|
112
117
|
* @param module : the module to check
|
|
113
118
|
* @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<"selection" | "bag" | "none">;
|
|
17
17
|
protected selection: () => ClipperDocumentInfo[];
|
|
18
18
|
readonly parent: import("@angular/core").InputSignal<ClipperSearchResultManager>;
|
|
19
19
|
readonly item: import("@angular/core").InputSignal<ClipperDocumentInfo>;
|
|
@@ -26,6 +26,7 @@ export declare class ClipperDocumentMenuComponent implements OnInit, OnDestroy {
|
|
|
26
26
|
readonly canUseCalendar: import("@angular/core").InputSignal<boolean>;
|
|
27
27
|
readonly canUseArchive: import("@angular/core").InputSignal<boolean>;
|
|
28
28
|
readonly canUseAIAssistant: import("@angular/core").InputSignal<boolean>;
|
|
29
|
+
protected canUseAIEditor: boolean;
|
|
29
30
|
readonly canUseRS: import("@angular/core").InputSignal<boolean>;
|
|
30
31
|
protected canDeselectAll: () => boolean;
|
|
31
32
|
protected canManageBag: () => boolean;
|
|
@@ -35,6 +35,7 @@ const ClipperMessages = {
|
|
|
35
35
|
// AI
|
|
36
36
|
AI_CONCERN_ME: '$clipper-ai-concernme',
|
|
37
37
|
AI_EXPLAIN: '$clipper-ai-explain',
|
|
38
|
+
AI_COMMENT: '$clipper-ai-comment',
|
|
38
39
|
// Interop
|
|
39
40
|
INTEROP_RS_NEW_LAW: '$clipper-interop-rs-new-law',
|
|
40
41
|
INTEROP_RS_NEW_ACTIVITY: '$clipper-interop-rs-new-activity',
|
|
@@ -2252,7 +2253,7 @@ class ClipperService {
|
|
|
2252
2253
|
if (this.keepAlive === 0) {
|
|
2253
2254
|
this.keepAlive = window.setInterval(() => {
|
|
2254
2255
|
this.ping();
|
|
2255
|
-
}, 1000 * 60);
|
|
2256
|
+
}, 1000 * 60 * 5);
|
|
2256
2257
|
}
|
|
2257
2258
|
}
|
|
2258
2259
|
/**
|