@resolveio/client-lib-core 21.3.5 → 21.3.7
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/package.json
CHANGED
|
@@ -779,6 +779,7 @@ declare class CoreComponent extends BaseComponent implements OnInit {
|
|
|
779
779
|
closeAiAssistant(): void;
|
|
780
780
|
getAiAssistantTopOffset(): number;
|
|
781
781
|
getAiAssistantHeight(): number;
|
|
782
|
+
getAiAssistantReservedWidth(): number;
|
|
782
783
|
private resolveAiAssistantAppId;
|
|
783
784
|
onPushBackButton(): void;
|
|
784
785
|
onPushReloadButton(): void;
|
|
@@ -1114,8 +1115,12 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1114
1115
|
private applyStoredMongoReadOverrides;
|
|
1115
1116
|
private processMongoReadDirectives;
|
|
1116
1117
|
private extractMongoReadDirective;
|
|
1118
|
+
private resolveMongoCountIntent;
|
|
1119
|
+
private findPreviousUserMessage;
|
|
1120
|
+
private isMongoCountQuestion;
|
|
1117
1121
|
private createMongoReadFromDirective;
|
|
1118
1122
|
private appendMongoReadResult;
|
|
1123
|
+
private formatCollectionLabel;
|
|
1119
1124
|
private formatMongoReadResult;
|
|
1120
1125
|
private formatMongoDocumentSummary;
|
|
1121
1126
|
private resolveSupportTicketIssue;
|
|
@@ -1188,6 +1193,7 @@ declare class NavbarMainComponent extends BaseComponent implements OnInit, After
|
|
|
1188
1193
|
publicProgram: boolean;
|
|
1189
1194
|
digitalSign: boolean;
|
|
1190
1195
|
showSupport: boolean;
|
|
1196
|
+
aiAssistantVisible: boolean;
|
|
1191
1197
|
aiToggle: EventEmitter<void>;
|
|
1192
1198
|
user: UserModel;
|
|
1193
1199
|
collapseShowing: boolean;
|
|
@@ -1223,7 +1229,7 @@ declare class NavbarMainComponent extends BaseComponent implements OnInit, After
|
|
|
1223
1229
|
isCustomer(): boolean;
|
|
1224
1230
|
getWindowWidth(): number;
|
|
1225
1231
|
static ɵfac: i0.ɵɵFactoryDeclaration<NavbarMainComponent, never>;
|
|
1226
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NavbarMainComponent, "navbar-main", never, { "logo": { "alias": "logo"; "required": false; }; "navTabs": { "alias": "navTabs"; "required": false; }; "fontSize": { "alias": "fontSize"; "required": false; }; "publicProgram": { "alias": "publicProgram"; "required": false; }; "digitalSign": { "alias": "digitalSign"; "required": false; }; "showSupport": { "alias": "showSupport"; "required": false; }; }, { "aiToggle": "aiToggle"; }, never, never, false, never>;
|
|
1232
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NavbarMainComponent, "navbar-main", never, { "logo": { "alias": "logo"; "required": false; }; "navTabs": { "alias": "navTabs"; "required": false; }; "fontSize": { "alias": "fontSize"; "required": false; }; "publicProgram": { "alias": "publicProgram"; "required": false; }; "digitalSign": { "alias": "digitalSign"; "required": false; }; "showSupport": { "alias": "showSupport"; "required": false; }; "aiAssistantVisible": { "alias": "aiAssistantVisible"; "required": false; }; }, { "aiToggle": "aiToggle"; }, never, never, false, never>;
|
|
1227
1233
|
}
|
|
1228
1234
|
|
|
1229
1235
|
declare class NavbarModuleComponent extends BaseComponent implements OnInit, OnDestroy {
|
|
@@ -2269,7 +2275,7 @@ interface CanComponentDeactivate {
|
|
|
2269
2275
|
canDeactivate: () => Observable<boolean> | Promise<boolean> | boolean;
|
|
2270
2276
|
}
|
|
2271
2277
|
declare class CanDeactivateGuard {
|
|
2272
|
-
canDeactivate(component: CanComponentDeactivate): boolean |
|
|
2278
|
+
canDeactivate(component: CanComponentDeactivate): boolean | Promise<boolean> | Observable<boolean>;
|
|
2273
2279
|
static ɵfac: i0.ɵɵFactoryDeclaration<CanDeactivateGuard, never>;
|
|
2274
2280
|
static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivateGuard>;
|
|
2275
2281
|
}
|