@resolveio/client-lib-core 21.6.13 → 21.6.15
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
|
@@ -362,6 +362,7 @@ declare class SocketManagerService {
|
|
|
362
362
|
private _chunkAssemblies;
|
|
363
363
|
private readonly _chunkProgressThresholdBytes;
|
|
364
364
|
private readonly _chunkTextDecoder;
|
|
365
|
+
private readonly _queueUntilOpenMethods;
|
|
365
366
|
private _connectionDelayTimeout;
|
|
366
367
|
onerror: () => void;
|
|
367
368
|
constructor(_socket: SocketService, _offline: OfflineManagerService, _alert: AlertService, _router: Router, _token: TokenManagerService);
|
|
@@ -402,6 +403,9 @@ declare class SocketManagerService {
|
|
|
402
403
|
subscribeBypassRoute(subscription: string, ...parameters: any[]): rxjs.Observable<any>;
|
|
403
404
|
unsubscribe(messageId: any, subscription: string, ...parameters: any[]): void;
|
|
404
405
|
private send;
|
|
406
|
+
private shouldQueueMethodUntilOnline;
|
|
407
|
+
private queuePendingMessage;
|
|
408
|
+
private flushPendingMessages;
|
|
405
409
|
private handleOfflineMethod;
|
|
406
410
|
getStatus(): rxjs.BehaviorSubject<number>;
|
|
407
411
|
static ɵfac: i0.ɵɵFactoryDeclaration<SocketManagerService, never>;
|
|
@@ -1371,6 +1375,7 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1371
1375
|
private buildAnchor;
|
|
1372
1376
|
private isMarkdownTableHeader;
|
|
1373
1377
|
private parseMarkdownTable;
|
|
1378
|
+
private normalizeMarkdownTableCellValue;
|
|
1374
1379
|
private splitMarkdownTableRow;
|
|
1375
1380
|
formatFileSize(bytes?: number): string;
|
|
1376
1381
|
trackByConversation(index: number, convo: AiTerminalConversationModel): string;
|
|
@@ -1908,6 +1913,7 @@ declare class CollapseTableComponent implements OnInit, OnChanges, AfterViewInit
|
|
|
1908
1913
|
private getStickyScrollContainer;
|
|
1909
1914
|
private getCollapseTableElement;
|
|
1910
1915
|
private shouldAutoEnableHorizontalScroll;
|
|
1916
|
+
private getIntrinsicTableWidth;
|
|
1911
1917
|
private getCollapseTableWrapperElement;
|
|
1912
1918
|
private updateMobileColumnWidthVariable;
|
|
1913
1919
|
static ɵfac: i0.ɵɵFactoryDeclaration<CollapseTableComponent, never>;
|
|
@@ -2245,7 +2251,7 @@ declare class AiTerminalModule {
|
|
|
2245
2251
|
}
|
|
2246
2252
|
|
|
2247
2253
|
declare function rioDatePickerConfigFactory(_account: AccountManagerService, _app: CoreService): {
|
|
2248
|
-
resolveFirstDayOfWeek: () => "
|
|
2254
|
+
resolveFirstDayOfWeek: () => "M" | "S";
|
|
2249
2255
|
resolveTimezone: () => any;
|
|
2250
2256
|
};
|
|
2251
2257
|
declare class CoreServicesModule {
|
|
@@ -2582,7 +2588,7 @@ declare class LoggerComponent extends BaseComponent implements OnInit, OnDestroy
|
|
|
2582
2588
|
ngOnDestroy(): void;
|
|
2583
2589
|
getLogData(): void;
|
|
2584
2590
|
selectType(type: string): void;
|
|
2585
|
-
icon(type: any): "
|
|
2591
|
+
icon(type: any): "info" | "success" | "danger" | "primary" | "secondary";
|
|
2586
2592
|
removeAllLogs(): void;
|
|
2587
2593
|
toDate(value: any, isEnd?: boolean): Date;
|
|
2588
2594
|
createPickerValue(date: Date, secondOverride?: any): {
|