@resolveio/client-lib-core 21.4.20 → 21.5.0

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,10 @@
1
1
  {
2
2
  "name": "@resolveio/client-lib-core",
3
- "version": "21.4.20",
3
+ "version": "21.5.0",
4
+ "dependencies": {
5
+ "ngx-ui-tour-core": "^16.0.0",
6
+ "tslib": "^2.3.0"
7
+ },
4
8
  "module": "fesm2022/resolveio-client-lib-core.min.mjs",
5
9
  "typings": "types/resolveio-client-lib-core.d.ts",
6
10
  "exports": {
@@ -14,9 +18,6 @@
14
18
  }
15
19
  },
16
20
  "sideEffects": false,
17
- "dependencies": {
18
- "tslib": "^2.3.0"
19
- },
20
21
  "es2022": "fesm2022/resolveio-client-lib-core.min.mjs",
21
22
  "fesm2022": "fesm2022/resolveio-client-lib-core.min.mjs",
22
23
  "types": "types/resolveio-client-lib-core.d.ts"
@@ -1,22 +1,23 @@
1
1
  import * as rxjs from 'rxjs';
2
2
  import { BehaviorSubject, Observable, Subject, Subscription } from 'rxjs';
3
+ import { IStepOption, TourService } from 'ngx-ui-tour-core';
3
4
  import * as i0 from '@angular/core';
4
- import { OnDestroy, OnInit, ElementRef, OnChanges, SimpleChanges, EventEmitter, AfterViewInit, QueryList, ChangeDetectorRef, PipeTransform, ModuleWithProviders, Renderer2, NgZone } from '@angular/core';
5
+ import { OnDestroy, OnInit, ElementRef, OnChanges, SimpleChanges, EventEmitter, AfterViewInit, QueryList, ChangeDetectorRef, PipeTransform, Renderer2, ModuleWithProviders, NgZone } from '@angular/core';
5
6
  import { DeviceDetectorService } from 'ngx-device-detector';
6
- import * as i2 from '@angular/forms';
7
+ import * as i3 from '@angular/forms';
7
8
  import { FormControl, FormGroup, AbstractControl, FormBuilder, FormGroupDirective } from '@angular/forms';
8
- import * as i2$2 from 'ngx-toastr';
9
+ import * as i2$1 from 'ngx-toastr';
9
10
  import { ToastrService, ActiveToast } from 'ngx-toastr';
10
- import * as i4 from '@angular/router';
11
+ import * as i5 from '@angular/router';
11
12
  import { Router, ActivatedRoute, ActivatedRouteSnapshot, RouterStateSnapshot } from '@angular/router';
12
13
  import { HttpClient } from '@angular/common/http';
13
- import * as i5 from '@ng-bootstrap/ng-bootstrap';
14
+ import * as i6 from '@ng-bootstrap/ng-bootstrap';
14
15
  import { NgbModal, NgbModalOptions, NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
15
- import * as i2$1 from '@angular/common';
16
+ import * as i2 from '@angular/common';
16
17
  import { DomSanitizer, SafeHtml, SafeStyle, SafeScript, SafeUrl, SafeResourceUrl } from '@angular/platform-browser';
17
- import * as i10 from '@resolveio/client-lib-rio-select';
18
+ import * as i11 from '@resolveio/client-lib-rio-select';
18
19
  import { StickySelectPreference, RioSelectStickyAdapter } from '@resolveio/client-lib-rio-select';
19
- import * as i15 from '@resolveio/client-lib-date-picker';
20
+ import * as i16 from '@resolveio/client-lib-date-picker';
20
21
  import * as i1 from '@angular/platform-browser/animations';
21
22
  import * as i7 from 'ngx-file-drop';
22
23
  import * as i8 from '@resolveio/client-lib-pdf-viewer';
@@ -60,7 +61,7 @@ declare class CoreService {
60
61
  client: BehaviorSubject<string>;
61
62
  publicProgram: BehaviorSubject<boolean>;
62
63
  navTabs: BehaviorSubject<any[]>;
63
- tourStops: BehaviorSubject<any[]>;
64
+ tourStops: BehaviorSubject<IStepOption[]>;
64
65
  tourStarted: BehaviorSubject<boolean>;
65
66
  isDemo: BehaviorSubject<boolean>;
66
67
  isLoggingOut: BehaviorSubject<boolean>;
@@ -76,7 +77,7 @@ declare class CoreService {
76
77
  setClient(client: any): void;
77
78
  setPublicProgram(publicProgram: any): void;
78
79
  setNavTabs(navTabs: any): void;
79
- setTourStops(tourStops: any): void;
80
+ setTourStops(tourStops: IStepOption[]): void;
80
81
  setTourStarted(tourStarted: any): void;
81
82
  setDemo(isDemo: boolean): void;
82
83
  static ɵfac: i0.ɵɵFactoryDeclaration<CoreService, never>;
@@ -88,6 +89,8 @@ interface CollectionDocument {
88
89
  __v?: number;
89
90
  createdAt?: Date;
90
91
  updatedAt?: Date;
92
+ is_sample_data?: boolean;
93
+ rio_sample_data?: boolean;
91
94
  }
92
95
 
93
96
  interface UserModel extends CollectionDocument {
@@ -635,7 +638,7 @@ interface DialogSelectWithButtonsOptionModel {
635
638
  declare class DialogService {
636
639
  private modalService;
637
640
  constructor(modalService: NgbModal);
638
- openDialog(content: any, options?: NgbModalOptions): i5.NgbModalRef;
641
+ openDialog(content: any, options?: NgbModalOptions): i6.NgbModalRef;
639
642
  notify(msg: string): void;
640
643
  input(title: string, inputFields: DialogInputFieldModel[]): Promise<any>;
641
644
  error(msg: string): void;
@@ -730,6 +733,32 @@ declare class FeatureGateService {
730
733
  static ɵprov: i0.ɵɵInjectableDeclaration<FeatureGateService>;
731
734
  }
732
735
 
736
+ declare class CoreTourService {
737
+ private _tour;
738
+ private _app;
739
+ readonly activeStep: BehaviorSubject<IStepOption>;
740
+ readonly currentStepIndex: BehaviorSubject<number>;
741
+ readonly totalSteps: BehaviorSubject<number>;
742
+ readonly completed$: Subject<void>;
743
+ private navTabs;
744
+ private customStops;
745
+ private autoStartedUserId;
746
+ constructor(_tour: TourService<IStepOption>, _app: CoreService);
747
+ configure(navTabs: NavbarMainTabModel[], customStops: IStepOption[]): void;
748
+ start(force?: boolean): boolean;
749
+ retake(): boolean;
750
+ autoStartIfNeeded(user: UserModel): boolean;
751
+ hasCompletedTour(user: UserModel): boolean;
752
+ resolveModuleDescription(label: string): string;
753
+ private buildSteps;
754
+ private buildTopNavIntro;
755
+ private resolveTabLabel;
756
+ private resolveStepIndex;
757
+ private toSlug;
758
+ static ɵfac: i0.ɵɵFactoryDeclaration<CoreTourService, never>;
759
+ static ɵprov: i0.ɵɵInjectableDeclaration<CoreTourService>;
760
+ }
761
+
733
762
  declare class CoreComponent extends BaseComponent implements OnInit {
734
763
  private _deviceDet;
735
764
  private _ds;
@@ -740,6 +769,7 @@ declare class CoreComponent extends BaseComponent implements OnInit {
740
769
  private _auth;
741
770
  private _aps;
742
771
  private _featureGates;
772
+ private _tourManager;
743
773
  environment: any;
744
774
  logo: string;
745
775
  navTabs: NavbarMainTabModel[];
@@ -749,6 +779,7 @@ declare class CoreComponent extends BaseComponent implements OnInit {
749
779
  publicProgram: boolean;
750
780
  showSupport: boolean;
751
781
  aiAssistantEnabled: boolean;
782
+ tourStops: IStepOption[];
752
783
  el_navBarMain: ElementRef;
753
784
  el_navBarModule: ElementRef;
754
785
  year: string;
@@ -778,7 +809,8 @@ declare class CoreComponent extends BaseComponent implements OnInit {
778
809
  foundUpdate: boolean;
779
810
  orientation: string;
780
811
  digitalSign: boolean;
781
- constructor(_deviceDet: DeviceDetectorService, _ds: DialogService, _resizeService: ResizeService, _services: ProviderService, _offline: OfflineManagerService, _storage: LocalStorageService, _auth: AuthService, _aps: AuthPermissionService, _featureGates: FeatureGateService);
812
+ savingTourCompletion: boolean;
813
+ constructor(_deviceDet: DeviceDetectorService, _ds: DialogService, _resizeService: ResizeService, _services: ProviderService, _offline: OfflineManagerService, _storage: LocalStorageService, _auth: AuthService, _aps: AuthPermissionService, _featureGates: FeatureGateService, _tourManager: CoreTourService);
782
814
  ngOnInit(): void;
783
815
  private filterNavTabs;
784
816
  private isRoleGateEnabled;
@@ -795,6 +827,8 @@ declare class CoreComponent extends BaseComponent implements OnInit {
795
827
  private resolveAiAssistantConfig;
796
828
  private resolveEnvModelList;
797
829
  private normalizeOptionalEnvString;
830
+ private configureTour;
831
+ private saveTourCompletion;
798
832
  onPushBackButton(): void;
799
833
  onPushReloadButton(): void;
800
834
  onPushForwardButton(): void;
@@ -802,7 +836,7 @@ declare class CoreComponent extends BaseComponent implements OnInit {
802
836
  closeNav(): void;
803
837
  private isStandaloneMode;
804
838
  static ɵfac: i0.ɵɵFactoryDeclaration<CoreComponent, never>;
805
- static ɵcmp: i0.ɵɵComponentDeclaration<CoreComponent, "resolveio-client-lib-core", never, { "environment": { "alias": "environment"; "required": false; }; "logo": { "alias": "logo"; "required": false; }; "navTabs": { "alias": "navTabs"; "required": false; }; "userHasPhoneNumber": { "alias": "userHasPhoneNumber"; "required": false; }; "client": { "alias": "client"; "required": false; }; "showNavbarModule": { "alias": "showNavbarModule"; "required": false; }; "publicProgram": { "alias": "publicProgram"; "required": false; }; "showSupport": { "alias": "showSupport"; "required": false; }; "aiAssistantEnabled": { "alias": "aiAssistantEnabled"; "required": false; }; }, {}, never, never, false, never>;
839
+ static ɵcmp: i0.ɵɵComponentDeclaration<CoreComponent, "resolveio-client-lib-core", never, { "environment": { "alias": "environment"; "required": false; }; "logo": { "alias": "logo"; "required": false; }; "navTabs": { "alias": "navTabs"; "required": false; }; "userHasPhoneNumber": { "alias": "userHasPhoneNumber"; "required": false; }; "client": { "alias": "client"; "required": false; }; "showNavbarModule": { "alias": "showNavbarModule"; "required": false; }; "publicProgram": { "alias": "publicProgram"; "required": false; }; "showSupport": { "alias": "showSupport"; "required": false; }; "aiAssistantEnabled": { "alias": "aiAssistantEnabled"; "required": false; }; "tourStops": { "alias": "tourStops"; "required": false; }; }, {}, never, never, false, never>;
806
840
  }
807
841
 
808
842
  declare class HomeComponent extends BaseComponent implements OnInit {
@@ -1549,6 +1583,25 @@ declare class AiFormAutoRegisterDirective implements OnInit, OnDestroy {
1549
1583
  static ɵdir: i0.ɵɵDirectiveDeclaration<AiFormAutoRegisterDirective, "form[formGroup]", never, { "aiFormAutoRegister": { "alias": "aiFormAutoRegister"; "required": false; }; "aiFormLabel": { "alias": "aiFormLabel"; "required": false; }; "aiFormIgnore": { "alias": "aiFormIgnore"; "required": false; }; }, {}, never, never, true, never>;
1550
1584
  }
1551
1585
 
1586
+ declare class TourAnchorDirective implements OnInit, OnChanges, OnDestroy {
1587
+ private _el;
1588
+ private _renderer;
1589
+ private _tour;
1590
+ tourAnchor: string;
1591
+ readonly element: ElementRef<HTMLElement>;
1592
+ private registeredAnchorId;
1593
+ constructor(_el: ElementRef<HTMLElement>, _renderer: Renderer2, _tour: TourService<IStepOption>);
1594
+ ngOnInit(): void;
1595
+ ngOnChanges(changes: SimpleChanges): void;
1596
+ ngOnDestroy(): void;
1597
+ showTourStep(): void;
1598
+ hideTourStep(): void;
1599
+ private syncRegistration;
1600
+ private unregister;
1601
+ static ɵfac: i0.ɵɵFactoryDeclaration<TourAnchorDirective, never>;
1602
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TourAnchorDirective, "[tourAnchor]", never, { "tourAnchor": { "alias": "tourAnchor"; "required": false; }; }, {}, never, never, true, never>;
1603
+ }
1604
+
1552
1605
  declare class CollapseTableComponent implements OnInit, OnDestroy {
1553
1606
  private _resizeService;
1554
1607
  private _account;
@@ -1571,7 +1624,7 @@ declare class CollapseTableComponent implements OnInit, OnDestroy {
1571
1624
 
1572
1625
  declare class CollapseTableModule {
1573
1626
  static ɵfac: i0.ɵɵFactoryDeclaration<CollapseTableModule, never>;
1574
- static ɵmod: i0.ɵɵNgModuleDeclaration<CollapseTableModule, [typeof CollapseTableComponent], [typeof i2.FormsModule, typeof i2$1.CommonModule], [typeof CollapseTableComponent]>;
1627
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CollapseTableModule, [typeof CollapseTableComponent], [typeof i3.FormsModule, typeof i2.CommonModule], [typeof CollapseTableComponent]>;
1575
1628
  static ɵinj: i0.ɵɵInjectorDeclaration<CollapseTableModule>;
1576
1629
  }
1577
1630
 
@@ -1590,7 +1643,7 @@ declare class FormButtonComponent extends BaseComponent {
1590
1643
 
1591
1644
  declare class FormButtonModule {
1592
1645
  static ɵfac: i0.ɵɵFactoryDeclaration<FormButtonModule, never>;
1593
- static ɵmod: i0.ɵɵNgModuleDeclaration<FormButtonModule, [typeof FormButtonComponent], [typeof i2$1.CommonModule, typeof i5.NgbTooltipModule], [typeof FormButtonComponent]>;
1646
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FormButtonModule, [typeof FormButtonComponent], [typeof i2.CommonModule, typeof i6.NgbTooltipModule], [typeof FormButtonComponent]>;
1594
1647
  static ɵinj: i0.ɵɵInjectorDeclaration<FormButtonModule>;
1595
1648
  }
1596
1649
 
@@ -1610,7 +1663,7 @@ declare class ResponsiveButtonGroupComponent extends BaseComponent implements On
1610
1663
 
1611
1664
  declare class ResponsiveButtonGroupModule {
1612
1665
  static ɵfac: i0.ɵɵFactoryDeclaration<ResponsiveButtonGroupModule, never>;
1613
- static ɵmod: i0.ɵɵNgModuleDeclaration<ResponsiveButtonGroupModule, [typeof ResponsiveButtonGroupComponent], [typeof i2$1.CommonModule], [typeof ResponsiveButtonGroupComponent]>;
1666
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ResponsiveButtonGroupModule, [typeof ResponsiveButtonGroupComponent], [typeof i2.CommonModule], [typeof ResponsiveButtonGroupComponent]>;
1614
1667
  static ɵinj: i0.ɵɵInjectorDeclaration<ResponsiveButtonGroupModule>;
1615
1668
  }
1616
1669
 
@@ -1625,7 +1678,7 @@ declare class UserRoleComponent extends BaseComponent {
1625
1678
 
1626
1679
  declare class UserRoleModule {
1627
1680
  static ɵfac: i0.ɵɵFactoryDeclaration<UserRoleModule, never>;
1628
- static ɵmod: i0.ɵɵNgModuleDeclaration<UserRoleModule, [typeof UserRoleComponent], [typeof i2$1.CommonModule], [typeof UserRoleComponent]>;
1681
+ static ɵmod: i0.ɵɵNgModuleDeclaration<UserRoleModule, [typeof UserRoleComponent], [typeof i2.CommonModule], [typeof UserRoleComponent]>;
1629
1682
  static ɵinj: i0.ɵɵInjectorDeclaration<UserRoleModule>;
1630
1683
  }
1631
1684
 
@@ -1711,7 +1764,7 @@ declare class SortTableNgForComponent implements OnInit, OnChanges, OnDestroy {
1711
1764
 
1712
1765
  declare class SortTableModule {
1713
1766
  static ɵfac: i0.ɵɵFactoryDeclaration<SortTableModule, never>;
1714
- static ɵmod: i0.ɵɵNgModuleDeclaration<SortTableModule, [typeof SortTableDirective, typeof SortTableHeaderComponent, typeof SortTableNgForComponent], [typeof i2.FormsModule, typeof i2$1.CommonModule], [typeof SortTableDirective, typeof SortTableHeaderComponent, typeof SortTableNgForComponent]>;
1767
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SortTableModule, [typeof SortTableDirective, typeof SortTableHeaderComponent, typeof SortTableNgForComponent], [typeof i3.FormsModule, typeof i2.CommonModule], [typeof SortTableDirective, typeof SortTableHeaderComponent, typeof SortTableNgForComponent]>;
1715
1768
  static ɵinj: i0.ɵɵInjectorDeclaration<SortTableModule>;
1716
1769
  }
1717
1770
 
@@ -1883,7 +1936,7 @@ declare class NgDragDropModule {
1883
1936
 
1884
1937
  declare class SharedModule {
1885
1938
  static ɵfac: i0.ɵɵFactoryDeclaration<SharedModule, never>;
1886
- static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, never, [typeof AiFormAutoRegisterDirective, typeof i2.ReactiveFormsModule, typeof i2.FormsModule, typeof CollapseTableModule, typeof i4.RouterModule, typeof i5.NgbModule, typeof i5.NgbAccordionModule, typeof FormButtonModule, typeof ResponsiveButtonGroupModule, typeof PipeModule, typeof UserRoleModule, typeof i10.RioSelectModule, typeof SortTableModule, typeof i2$1.CommonModule, typeof SortablejsModule, typeof NgDragDropModule, typeof i15.RioDatePickerModule], [typeof AiFormAutoRegisterDirective, typeof i2.ReactiveFormsModule, typeof i2.FormsModule, typeof CollapseTableModule, typeof i4.RouterModule, typeof i5.NgbModule, typeof i5.NgbAccordionModule, typeof FormButtonModule, typeof ResponsiveButtonGroupModule, typeof PipeModule, typeof UserRoleModule, typeof i10.RioSelectModule, typeof SortTableModule, typeof i2$1.CommonModule, typeof SortablejsModule, typeof NgDragDropModule, typeof i15.RioDatePickerModule]>;
1939
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, never, [typeof AiFormAutoRegisterDirective, typeof TourAnchorDirective, typeof i3.ReactiveFormsModule, typeof i3.FormsModule, typeof CollapseTableModule, typeof i5.RouterModule, typeof i6.NgbModule, typeof i6.NgbAccordionModule, typeof FormButtonModule, typeof ResponsiveButtonGroupModule, typeof PipeModule, typeof UserRoleModule, typeof i11.RioSelectModule, typeof SortTableModule, typeof i2.CommonModule, typeof SortablejsModule, typeof NgDragDropModule, typeof i16.RioDatePickerModule], [typeof AiFormAutoRegisterDirective, typeof TourAnchorDirective, typeof i3.ReactiveFormsModule, typeof i3.FormsModule, typeof CollapseTableModule, typeof i5.RouterModule, typeof i6.NgbModule, typeof i6.NgbAccordionModule, typeof FormButtonModule, typeof ResponsiveButtonGroupModule, typeof PipeModule, typeof UserRoleModule, typeof i11.RioSelectModule, typeof SortTableModule, typeof i2.CommonModule, typeof SortablejsModule, typeof NgDragDropModule, typeof i16.RioDatePickerModule]>;
1887
1940
  static ɵinj: i0.ɵɵInjectorDeclaration<SharedModule>;
1888
1941
  }
1889
1942
 
@@ -1894,18 +1947,40 @@ declare class AiTerminalModule {
1894
1947
  }
1895
1948
 
1896
1949
  declare function rioDatePickerConfigFactory(_account: AccountManagerService, _app: CoreService): {
1897
- resolveFirstDayOfWeek: () => "M" | "S";
1950
+ resolveFirstDayOfWeek: () => "S" | "M";
1898
1951
  resolveTimezone: () => any;
1899
1952
  };
1900
1953
  declare class CoreServicesModule {
1901
1954
  static ɵfac: i0.ɵɵFactoryDeclaration<CoreServicesModule, never>;
1902
- static ɵmod: i0.ɵɵNgModuleDeclaration<CoreServicesModule, never, [typeof i1.BrowserAnimationsModule, typeof i2$2.ToastrModule], never>;
1955
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CoreServicesModule, never, [typeof i1.BrowserAnimationsModule, typeof i2$1.ToastrModule], never>;
1903
1956
  static ɵinj: i0.ɵɵInjectorDeclaration<CoreServicesModule>;
1904
1957
  }
1905
1958
 
1959
+ declare class CoreTourOverlayComponent implements OnInit, OnDestroy {
1960
+ private _tour;
1961
+ private _coreTour;
1962
+ step: IStepOption;
1963
+ stepNumber: number;
1964
+ totalSteps: number;
1965
+ popoverTop: number;
1966
+ popoverLeft: number;
1967
+ private subscriptions;
1968
+ constructor(_tour: TourService<IStepOption>, _coreTour: CoreTourService);
1969
+ ngOnInit(): void;
1970
+ ngOnDestroy(): void;
1971
+ canGoPrev(): boolean;
1972
+ prev(): void;
1973
+ next(): void;
1974
+ end(): void;
1975
+ nextButtonTitle(): string;
1976
+ private updatePosition;
1977
+ static ɵfac: i0.ɵɵFactoryDeclaration<CoreTourOverlayComponent, never>;
1978
+ static ɵcmp: i0.ɵɵComponentDeclaration<CoreTourOverlayComponent, "rio-core-tour-overlay", never, {}, {}, never, never, true, never>;
1979
+ }
1980
+
1906
1981
  declare class CoreShellModule {
1907
1982
  static ɵfac: i0.ɵɵFactoryDeclaration<CoreShellModule, never>;
1908
- static ɵmod: i0.ɵɵNgModuleDeclaration<CoreShellModule, [typeof CoreComponent, typeof HomeComponent, typeof AiAssistantComponent, typeof NavbarMainComponent, typeof NavbarModuleComponent, typeof FocusDirective, typeof ScrollDirective], [typeof i2$1.CommonModule, typeof i4.RouterModule, typeof PipeModule, typeof i5.NgbModalModule, typeof AiTerminalModule, typeof CoreServicesModule], [typeof CoreComponent, typeof HomeComponent, typeof AiAssistantComponent, typeof NavbarMainComponent, typeof NavbarModuleComponent, typeof FocusDirective, typeof ScrollDirective]>;
1983
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CoreShellModule, [typeof CoreComponent, typeof HomeComponent, typeof AiAssistantComponent, typeof NavbarMainComponent, typeof NavbarModuleComponent, typeof FocusDirective, typeof ScrollDirective], [typeof i2.CommonModule, typeof i5.RouterModule, typeof PipeModule, typeof i6.NgbModalModule, typeof AiTerminalModule, typeof CoreServicesModule, typeof TourAnchorDirective, typeof CoreTourOverlayComponent], [typeof CoreComponent, typeof HomeComponent, typeof AiAssistantComponent, typeof NavbarMainComponent, typeof NavbarModuleComponent, typeof FocusDirective, typeof ScrollDirective]>;
1909
1984
  static ɵinj: i0.ɵɵInjectorDeclaration<CoreShellModule>;
1910
1985
  }
1911
1986
 
@@ -2292,6 +2367,7 @@ declare class UsersSettingsComponent extends BaseComponent implements OnInit, On
2292
2367
  private _us;
2293
2368
  private _services;
2294
2369
  private _ds;
2370
+ private _tourManager;
2295
2371
  private _stickyAdapter?;
2296
2372
  subscription$: Subscription[];
2297
2373
  form: FormGroup;
@@ -2303,7 +2379,7 @@ declare class UsersSettingsComponent extends BaseComponent implements OnInit, On
2303
2379
  stickySelections: {
2304
2380
  [key: string]: any;
2305
2381
  };
2306
- constructor(_aps: AuthPermissionService, _us: UserSettingsService, _services: ProviderService, _ds: DialogService, _stickyAdapter?: RioSelectStickyAdapter);
2382
+ constructor(_aps: AuthPermissionService, _us: UserSettingsService, _services: ProviderService, _ds: DialogService, _tourManager: CoreTourService, _stickyAdapter?: RioSelectStickyAdapter);
2307
2383
  ngOnInit(): void;
2308
2384
  ngOnDestroy(): void;
2309
2385
  changePrimaryColor(): void;
@@ -2333,11 +2409,12 @@ declare class UsersSettingsComponent extends BaseComponent implements OnInit, On
2333
2409
  changeSecondaryButtonFontColor(): void;
2334
2410
  reset(): void;
2335
2411
  updateStickyDefault(key: string, value: any): void;
2412
+ retakeTour(): void;
2336
2413
  private _loadStickySelects;
2337
2414
  private _resolveStickyLabel;
2338
2415
  submitForm(form: any): void;
2339
2416
  private _normalizeDatePickerDayStart;
2340
- static ɵfac: i0.ɵɵFactoryDeclaration<UsersSettingsComponent, [null, null, null, null, { optional: true; }]>;
2417
+ static ɵfac: i0.ɵɵFactoryDeclaration<UsersSettingsComponent, [null, null, null, null, null, { optional: true; }]>;
2341
2418
  static ɵcmp: i0.ɵɵComponentDeclaration<UsersSettingsComponent, "resolveio-users-settings", never, {}, {}, never, never, false, never>;
2342
2419
  }
2343
2420
 
@@ -2377,7 +2454,7 @@ declare class DatatableComponent extends BaseComponent {
2377
2454
 
2378
2455
  declare class DatatableModule {
2379
2456
  static ɵfac: i0.ɵɵFactoryDeclaration<DatatableModule, never>;
2380
- static ɵmod: i0.ɵɵNgModuleDeclaration<DatatableModule, [typeof DatatableComponent], [typeof i5.NgbModule, typeof i2.FormsModule, typeof i2$1.CommonModule, typeof i4.RouterModule, typeof CollapseTableModule], [typeof DatatableComponent]>;
2457
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DatatableModule, [typeof DatatableComponent], [typeof i6.NgbModule, typeof i3.FormsModule, typeof i2.CommonModule, typeof i5.RouterModule, typeof CollapseTableModule], [typeof DatatableComponent]>;
2381
2458
  static ɵinj: i0.ɵɵInjectorDeclaration<DatatableModule>;
2382
2459
  }
2383
2460
 
@@ -2426,13 +2503,13 @@ declare class FileUploadComponent extends BaseComponent implements OnInit, OnDes
2426
2503
 
2427
2504
  declare class FileModule {
2428
2505
  static ɵfac: i0.ɵɵFactoryDeclaration<FileModule, never>;
2429
- static ɵmod: i0.ɵɵNgModuleDeclaration<FileModule, [typeof FileUploadComponent], [typeof i2$1.CommonModule, typeof i2.FormsModule, typeof CollapseTableModule, typeof i5.NgbModule, typeof ResponsiveButtonGroupModule, typeof i7.NgxFileDropModule, typeof i8.PdfViewerModule], [typeof FileUploadComponent]>;
2506
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FileModule, [typeof FileUploadComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof CollapseTableModule, typeof i6.NgbModule, typeof ResponsiveButtonGroupModule, typeof i7.NgxFileDropModule, typeof i8.PdfViewerModule], [typeof FileUploadComponent]>;
2430
2507
  static ɵinj: i0.ɵɵInjectorDeclaration<FileModule>;
2431
2508
  }
2432
2509
 
2433
2510
  declare class UserSettingsModule {
2434
2511
  static ɵfac: i0.ɵɵFactoryDeclaration<UserSettingsModule, never>;
2435
- static ɵmod: i0.ɵɵNgModuleDeclaration<UserSettingsModule, [typeof UserSettingsComponent, typeof UsersSettingsComponent], [typeof SharedModule, typeof i4.RouterModule, typeof DatatableModule, typeof FileModule, typeof i5.NgbAccordionModule, typeof i5.NgbModule], never>;
2512
+ static ɵmod: i0.ɵɵNgModuleDeclaration<UserSettingsModule, [typeof UserSettingsComponent, typeof UsersSettingsComponent], [typeof SharedModule, typeof i5.RouterModule, typeof DatatableModule, typeof FileModule, typeof i6.NgbAccordionModule, typeof i6.NgbModule], never>;
2436
2513
  static ɵinj: i0.ɵɵInjectorDeclaration<UserSettingsModule>;
2437
2514
  }
2438
2515
 
@@ -2466,7 +2543,7 @@ interface CanComponentDeactivate {
2466
2543
  canDeactivate: () => Observable<boolean> | Promise<boolean> | boolean;
2467
2544
  }
2468
2545
  declare class CanDeactivateGuard {
2469
- canDeactivate(component: CanComponentDeactivate): boolean | Promise<boolean> | Observable<boolean>;
2546
+ canDeactivate(component: CanComponentDeactivate): boolean | Observable<boolean> | Promise<boolean>;
2470
2547
  static ɵfac: i0.ɵɵFactoryDeclaration<CanDeactivateGuard, never>;
2471
2548
  static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivateGuard>;
2472
2549
  }
@@ -2533,7 +2610,7 @@ declare class DateShortcutComponent extends BaseComponent implements OnInit {
2533
2610
 
2534
2611
  declare class DateShortcutModule {
2535
2612
  static ɵfac: i0.ɵɵFactoryDeclaration<DateShortcutModule, never>;
2536
- static ɵmod: i0.ɵɵNgModuleDeclaration<DateShortcutModule, [typeof DateShortcutComponent], [typeof i2.FormsModule, typeof i2$1.CommonModule, typeof i10.RioSelectModule], [typeof DateShortcutComponent]>;
2613
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DateShortcutModule, [typeof DateShortcutComponent], [typeof i3.FormsModule, typeof i2.CommonModule, typeof i11.RioSelectModule], [typeof DateShortcutComponent]>;
2537
2614
  static ɵinj: i0.ɵɵInjectorDeclaration<DateShortcutModule>;
2538
2615
  }
2539
2616
 
@@ -2587,7 +2664,7 @@ declare class SchedulerComponent extends BaseComponent implements AfterViewInit,
2587
2664
 
2588
2665
  declare class SchedulerModule {
2589
2666
  static ɵfac: i0.ɵɵFactoryDeclaration<SchedulerModule, never>;
2590
- static ɵmod: i0.ɵɵNgModuleDeclaration<SchedulerModule, [typeof SchedulerComponent], [typeof i5.NgbModule, typeof i2.FormsModule, typeof i2$1.CommonModule, typeof i4.RouterModule], [typeof SchedulerComponent]>;
2667
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SchedulerModule, [typeof SchedulerComponent], [typeof i6.NgbModule, typeof i3.FormsModule, typeof i2.CommonModule, typeof i5.RouterModule], [typeof SchedulerComponent]>;
2591
2668
  static ɵinj: i0.ɵɵInjectorDeclaration<SchedulerModule>;
2592
2669
  }
2593
2670
 
@@ -2687,5 +2764,5 @@ declare const MongoExplorerModulePermission: ModulePermissionModel;
2687
2764
 
2688
2765
  declare const SuperAdminModulePermission: ModulePermissionModel;
2689
2766
 
2690
- export { AccountManagerService, AiAssistantComponent, AiFormAutoRegisterDirective, AiFormRegistryService, AiPageFormAdapterService, AiPageRouterService, AiTerminalComponent, AiTerminalModule, AiTerminalService, AlertService, Auth365Component, AuthGuard, AuthPermissionService, AuthService, AwsService, BaseComponent, CanDeactivateGuard, CollapseTableComponent, CollapseTableModule, CoreAuthModule, CoreComponent, CoreDialogModule, CoreLoggerModule, CoreModule, CoreService, CoreServicesModule, CoreShellModule, DatatableComponent, DatatableModule, DateShortcutComponent, DateShortcutModule, DialogConfirmContent, DialogErrorContent, DialogInputContent, DialogLoginContent, DialogNotifyContent, DialogRegisterContent, DialogSelectArrayContent, DialogSelectArrayObjsContent, DialogSelectDataLabelsContent, DialogSelectDateTimeContent, DialogSelectWithButtonsURLContent, DialogService, DomSanitizorPipe, Draggable, DropEvent, Droppable, EnrollComponent, FeatureGateService, FileModule, FileUploadComponent, FilterEqualPipe, FilterNotEqualPipe, FocusDirective, ForgotPasswordComponent, FormButtonComponent, FormButtonModule, HomeComponent, HtmlDiffViewerComponent, JsonParsePipe, LoggerComponent, MinusCurrencyPipe, MongoExplorerModulePermission, NavbarMainComponent, NavbarModuleComponent, NgDragDropModule, NgDragDropService, OfflineManagerService, PhonePipe, PipeModule, ProviderService, ReportBuilderModulePermission, ResizeService, ResponsiveButtonGroupComponent, ResponsiveButtonGroupModule, ReversePipe, SchedulerComponent, SchedulerModule, ScrollDirective, SharedModule, SocketManagerService, SocketService, SortTableDirective, SortTableHeaderComponent, SortTableModule, SortTableNgForComponent, Sortable as SortableJs, SortablejsDirective, SortablejsModule, StorageDB, SuperAdminModulePermission, TitleCaseAndUnderscorePipe, TokenManagerService, UserRoleComponent, UserRoleModule, ValidationService, WindowRefService, applyMongoUpdate, b64toBlobURL, blobToFile, dateOnlyStartOfDayTz, dateReviver, deepCopy, deepDiffDetails, exportCsv, generateCronStringFromDate, isUpperCase, mergeDeep, momentTz, pad, rioDatePickerConfigFactory, round, s2ab, toDataURL, toTitleCase, type };
2767
+ export { AccountManagerService, AiAssistantComponent, AiFormAutoRegisterDirective, AiFormRegistryService, AiPageFormAdapterService, AiPageRouterService, AiTerminalComponent, AiTerminalModule, AiTerminalService, AlertService, Auth365Component, AuthGuard, AuthPermissionService, AuthService, AwsService, BaseComponent, CanDeactivateGuard, CollapseTableComponent, CollapseTableModule, CoreAuthModule, CoreComponent, CoreDialogModule, CoreLoggerModule, CoreModule, CoreService, CoreServicesModule, CoreShellModule, CoreTourService, DatatableComponent, DatatableModule, DateShortcutComponent, DateShortcutModule, DialogConfirmContent, DialogErrorContent, DialogInputContent, DialogLoginContent, DialogNotifyContent, DialogRegisterContent, DialogSelectArrayContent, DialogSelectArrayObjsContent, DialogSelectDataLabelsContent, DialogSelectDateTimeContent, DialogSelectWithButtonsURLContent, DialogService, DomSanitizorPipe, Draggable, DropEvent, Droppable, EnrollComponent, FeatureGateService, FileModule, FileUploadComponent, FilterEqualPipe, FilterNotEqualPipe, FocusDirective, ForgotPasswordComponent, FormButtonComponent, FormButtonModule, HomeComponent, HtmlDiffViewerComponent, JsonParsePipe, LoggerComponent, MinusCurrencyPipe, MongoExplorerModulePermission, NavbarMainComponent, NavbarModuleComponent, NgDragDropModule, NgDragDropService, OfflineManagerService, PhonePipe, PipeModule, ProviderService, ReportBuilderModulePermission, ResizeService, ResponsiveButtonGroupComponent, ResponsiveButtonGroupModule, ReversePipe, SchedulerComponent, SchedulerModule, ScrollDirective, SharedModule, SocketManagerService, SocketService, SortTableDirective, SortTableHeaderComponent, SortTableModule, SortTableNgForComponent, Sortable as SortableJs, SortablejsDirective, SortablejsModule, StorageDB, SuperAdminModulePermission, TitleCaseAndUnderscorePipe, TokenManagerService, TourAnchorDirective, UserRoleComponent, UserRoleModule, ValidationService, WindowRefService, applyMongoUpdate, b64toBlobURL, blobToFile, dateOnlyStartOfDayTz, dateReviver, deepCopy, deepDiffDetails, exportCsv, generateCronStringFromDate, isUpperCase, mergeDeep, momentTz, pad, rioDatePickerConfigFactory, round, s2ab, toDataURL, toTitleCase, type };
2691
2768
  export type { ActiveClientSubscriptionModel, AiFormRegistryEntry, AiPageAdapter, AiPageContext, AiPageContextMode, AiPageRequest, AiPageResult, AiPageSchema, AiTerminalAttachmentModel, AiTerminalConfig$1 as AiTerminalConfig, AiTerminalConversationModel, AiTerminalConversationStatus, AiTerminalDisplayTable, AiTerminalMessageModel, AiTerminalMessageRole, AiTerminalMessageUsage, AiTerminalMethodNames, AiTerminalMode, AiTerminalMongoAccess, AiTerminalMongoConfig, AiTerminalToolResult, AppStatusModel, CanComponentDeactivate, CollectionDocument, CronJobModel, CsvExportOptions, DatatableColumn, DatatableModel, DialogInputFieldModel, DialogInputFieldSelectOptions, DialogSelectWithButtonsOptionModel, FileModel, LogMethodLatencyModel, ModulePermissionApprovalModel, ModulePermissionModel, ModulePermissionViewModel, NavbarMainTabLinkModel, NavbarMainTabModel, NavbarMainTabType, NavbarModel, NavbarTabModel, OtherObject, PaginationOptions, ScrollEvent, SelectDataLabelModel, Sort, SortDirection, SortDirectionType, SortMongo, Sortable$1 as Sortable, SortableEvent as SortablejsEvent, Options as SortablejsOptions, SubscriptionModel, SubscriptionPubModel, UserDelegateModel, UserEmploymentLevelType, UserGroupModel, UserGroupNotificationModel, UserGroupPermissionModel, UserGroupViewModel, UserModel, UserNotificationConfigModel, UserNotificationModel, UserNotificationSubTypes, UserNotificationTypes, UserRoleApprovalModel, UserRoleGroupModel, UserRoleModel, UserSettingsModel, UserSupervisorModel, alertType };