@resolveio/client-lib-core 21.5.17 → 21.5.19

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.5.17",
3
+ "version": "21.5.19",
4
4
  "dependencies": {
5
5
  "ngx-ui-tour-core": "^16.0.0",
6
6
  "tslib": "^2.3.0"
@@ -1358,6 +1358,7 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
1358
1358
  private createSupportTicketFromDirective;
1359
1359
  private applyStoredMongoReadOverrides;
1360
1360
  private processMongoDirectives;
1361
+ private findLatestAssistantDirective;
1361
1362
  private extractMongoDirective;
1362
1363
  private resolveMongoCountIntent;
1363
1364
  private findPreviousUserMessage;
@@ -2003,7 +2004,7 @@ declare class AiTerminalModule {
2003
2004
  }
2004
2005
 
2005
2006
  declare function rioDatePickerConfigFactory(_account: AccountManagerService, _app: CoreService): {
2006
- resolveFirstDayOfWeek: () => "M" | "S";
2007
+ resolveFirstDayOfWeek: () => "S" | "M";
2007
2008
  resolveTimezone: () => any;
2008
2009
  };
2009
2010
  declare class CoreServicesModule {
@@ -2660,6 +2661,7 @@ declare class DatatableComponent extends BaseComponent implements OnChanges, Aft
2660
2661
  private isLikelyCurrencyColumn;
2661
2662
  private isLikelyNumberColumn;
2662
2663
  private valueToString;
2664
+ private resolveCurrencySymbol;
2663
2665
  getButtons(column: DatatableColumn, row?: any): DatatableButtonAction[];
2664
2666
  isButtonDisabled(button: DatatableButtonAction, row: any): boolean;
2665
2667
  onButtonAction(button: DatatableButtonAction, row: any, column: DatatableColumn, event: Event): void;
@@ -2824,7 +2826,7 @@ interface CanComponentDeactivate {
2824
2826
  canDeactivate: () => Observable<boolean> | Promise<boolean> | boolean;
2825
2827
  }
2826
2828
  declare class CanDeactivateGuard {
2827
- canDeactivate(component: CanComponentDeactivate): boolean | Observable<boolean> | Promise<boolean>;
2829
+ canDeactivate(component: CanComponentDeactivate): boolean | Promise<boolean> | Observable<boolean>;
2828
2830
  static ɵfac: i0.ɵɵFactoryDeclaration<CanDeactivateGuard, never>;
2829
2831
  static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivateGuard>;
2830
2832
  }