@resolveio/client-lib-core 21.6.11 → 21.6.13
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
|
@@ -1318,6 +1318,7 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1318
1318
|
private readonly promptFavoritesStorageKey;
|
|
1319
1319
|
private mongoReadCache;
|
|
1320
1320
|
private mongoReadInFlight;
|
|
1321
|
+
private gitToolCache;
|
|
1321
1322
|
private exportingMessageIds;
|
|
1322
1323
|
private loadingAllRowsMessageIds;
|
|
1323
1324
|
private fullDisplayPromises;
|
|
@@ -1524,9 +1525,13 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1524
1525
|
private appendSupportTicketLink;
|
|
1525
1526
|
private createSupportTicketFromDirective;
|
|
1526
1527
|
private applyStoredMongoReadOverrides;
|
|
1528
|
+
private applyStoredGitToolOverrides;
|
|
1527
1529
|
private processMongoDirectives;
|
|
1530
|
+
private processGitToolDirectives;
|
|
1528
1531
|
private findLatestAssistantDirective;
|
|
1529
1532
|
private extractMongoDirective;
|
|
1533
|
+
private extractGitToolDirective;
|
|
1534
|
+
private formatGitToolDirectiveInstructions;
|
|
1530
1535
|
private resolveMongoCountIntent;
|
|
1531
1536
|
private findPreviousUserMessage;
|
|
1532
1537
|
private isMongoCountQuestion;
|
|
@@ -1877,6 +1882,8 @@ declare class CollapseTableComponent implements OnInit, OnChanges, AfterViewInit
|
|
|
1877
1882
|
mutationObserver: MutationObserver | null;
|
|
1878
1883
|
resizeObserver: ResizeObserver | null;
|
|
1879
1884
|
private updateRafId;
|
|
1885
|
+
private autoScrollRafId;
|
|
1886
|
+
private autoHorizontalScrollEnabled;
|
|
1880
1887
|
private readonly onScrollHandler;
|
|
1881
1888
|
constructor(_resizeService: ResizeService, _account: AccountManagerService, _elementRef: ElementRef<HTMLElement>);
|
|
1882
1889
|
ngOnInit(): void;
|
|
@@ -1885,6 +1892,7 @@ declare class CollapseTableComponent implements OnInit, OnChanges, AfterViewInit
|
|
|
1885
1892
|
ngOnDestroy(): void;
|
|
1886
1893
|
shouldUseHorizontalScroll(): boolean;
|
|
1887
1894
|
private scheduleStickyTopOffsetUpdate;
|
|
1895
|
+
private scheduleAutoHorizontalScrollUpdate;
|
|
1888
1896
|
onClick(event: any): void;
|
|
1889
1897
|
getCollapseClass(): string[];
|
|
1890
1898
|
getPrimaryColor(): string;
|
|
@@ -1899,6 +1907,8 @@ declare class CollapseTableComponent implements OnInit, OnChanges, AfterViewInit
|
|
|
1899
1907
|
private getStickyViewportTop;
|
|
1900
1908
|
private getStickyScrollContainer;
|
|
1901
1909
|
private getCollapseTableElement;
|
|
1910
|
+
private shouldAutoEnableHorizontalScroll;
|
|
1911
|
+
private getCollapseTableWrapperElement;
|
|
1902
1912
|
private updateMobileColumnWidthVariable;
|
|
1903
1913
|
static ɵfac: i0.ɵɵFactoryDeclaration<CollapseTableComponent, never>;
|
|
1904
1914
|
static ɵcmp: i0.ɵɵComponentDeclaration<CollapseTableComponent, "collapse-table", never, { "collapseSize": { "alias": "collapseSize"; "required": false; }; "tableFixed": { "alias": "tableFixed"; "required": false; }; "headerFixed": { "alias": "headerFixed"; "required": false; }; "stickyHeaders": { "alias": "stickyHeaders"; "required": false; }; "zebraStyle": { "alias": "zebraStyle"; "required": false; }; "secondaryColor": { "alias": "secondaryColor"; "required": false; }; "tertiaryColor": { "alias": "tertiaryColor"; "required": false; }; "mobileMinColumnWidth": { "alias": "mobileMinColumnWidth"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
@@ -3180,7 +3190,7 @@ interface CanComponentDeactivate {
|
|
|
3180
3190
|
canDeactivate: () => Observable<boolean> | Promise<boolean> | boolean;
|
|
3181
3191
|
}
|
|
3182
3192
|
declare class CanDeactivateGuard {
|
|
3183
|
-
canDeactivate(component: CanComponentDeactivate): boolean |
|
|
3193
|
+
canDeactivate(component: CanComponentDeactivate): boolean | Promise<boolean> | Observable<boolean>;
|
|
3184
3194
|
static ɵfac: i0.ɵɵFactoryDeclaration<CanDeactivateGuard, never>;
|
|
3185
3195
|
static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivateGuard>;
|
|
3186
3196
|
}
|