@resolveio/client-lib-core 21.6.14 → 21.6.16

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@resolveio/client-lib-core",
3
- "version": "21.6.14",
3
+ "version": "21.6.16",
4
4
  "dependencies": {
5
5
  "ngx-ui-tour-core": "^16.0.0",
6
6
  "tslib": "^2.3.0"
@@ -307,8 +307,8 @@ declare class OfflineManagerService {
307
307
  find(collectionName: string, query: Object, options?: {}, total?: boolean): any;
308
308
  findOne(collectionName: string, query: Object): any;
309
309
  insertDocument(collectionName: string, data: Object, expiresDate?: Date): string;
310
- updateDocument(collectionName: string, data: Object): 1 | 0;
311
- updateDocumentProps(collectionName: string, doc_id: string, updateParams: any[], doc__v: number): 1 | 0;
310
+ updateDocument(collectionName: string, data: Object): 0 | 1;
311
+ updateDocumentProps(collectionName: string, doc_id: string, updateParams: any[], doc__v: number): 0 | 1;
312
312
  removeDocument(collectionName: string, id: string): void;
313
313
  dropCollection(collectionName: any): void;
314
314
  static ɵfac: i0.ɵɵFactoryDeclaration<OfflineManagerService, never>;
@@ -1375,6 +1375,7 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
1375
1375
  private buildAnchor;
1376
1376
  private isMarkdownTableHeader;
1377
1377
  private parseMarkdownTable;
1378
+ private normalizeMarkdownTableCellValue;
1378
1379
  private splitMarkdownTableRow;
1379
1380
  formatFileSize(bytes?: number): string;
1380
1381
  trackByConversation(index: number, convo: AiTerminalConversationModel): string;
@@ -1912,6 +1913,8 @@ declare class CollapseTableComponent implements OnInit, OnChanges, AfterViewInit
1912
1913
  private getStickyScrollContainer;
1913
1914
  private getCollapseTableElement;
1914
1915
  private shouldAutoEnableHorizontalScroll;
1916
+ private getIntrinsicTableWidth;
1917
+ private measureNaturalTableWidth;
1915
1918
  private getCollapseTableWrapperElement;
1916
1919
  private updateMobileColumnWidthVariable;
1917
1920
  static ɵfac: i0.ɵɵFactoryDeclaration<CollapseTableComponent, never>;
@@ -2249,7 +2252,7 @@ declare class AiTerminalModule {
2249
2252
  }
2250
2253
 
2251
2254
  declare function rioDatePickerConfigFactory(_account: AccountManagerService, _app: CoreService): {
2252
- resolveFirstDayOfWeek: () => "M" | "S";
2255
+ resolveFirstDayOfWeek: () => "S" | "M";
2253
2256
  resolveTimezone: () => any;
2254
2257
  };
2255
2258
  declare class CoreServicesModule {
@@ -3194,7 +3197,7 @@ interface CanComponentDeactivate {
3194
3197
  canDeactivate: () => Observable<boolean> | Promise<boolean> | boolean;
3195
3198
  }
3196
3199
  declare class CanDeactivateGuard {
3197
- canDeactivate(component: CanComponentDeactivate): boolean | Promise<boolean> | Observable<boolean>;
3200
+ canDeactivate(component: CanComponentDeactivate): boolean | Observable<boolean> | Promise<boolean>;
3198
3201
  static ɵfac: i0.ɵɵFactoryDeclaration<CanDeactivateGuard, never>;
3199
3202
  static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivateGuard>;
3200
3203
  }