@resolveio/client-lib-core 21.4.21 → 21.5.1

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.21",
3
+ "version": "21.5.1",
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>;
@@ -637,7 +638,7 @@ interface DialogSelectWithButtonsOptionModel {
637
638
  declare class DialogService {
638
639
  private modalService;
639
640
  constructor(modalService: NgbModal);
640
- openDialog(content: any, options?: NgbModalOptions): i5.NgbModalRef;
641
+ openDialog(content: any, options?: NgbModalOptions): i6.NgbModalRef;
641
642
  notify(msg: string): void;
642
643
  input(title: string, inputFields: DialogInputFieldModel[]): Promise<any>;
643
644
  error(msg: string): void;
@@ -732,6 +733,32 @@ declare class FeatureGateService {
732
733
  static ɵprov: i0.ɵɵInjectableDeclaration<FeatureGateService>;
733
734
  }
734
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
+
735
762
  declare class CoreComponent extends BaseComponent implements OnInit {
736
763
  private _deviceDet;
737
764
  private _ds;
@@ -742,6 +769,7 @@ declare class CoreComponent extends BaseComponent implements OnInit {
742
769
  private _auth;
743
770
  private _aps;
744
771
  private _featureGates;
772
+ private _tourManager;
745
773
  environment: any;
746
774
  logo: string;
747
775
  navTabs: NavbarMainTabModel[];
@@ -751,6 +779,7 @@ declare class CoreComponent extends BaseComponent implements OnInit {
751
779
  publicProgram: boolean;
752
780
  showSupport: boolean;
753
781
  aiAssistantEnabled: boolean;
782
+ tourStops: IStepOption[];
754
783
  el_navBarMain: ElementRef;
755
784
  el_navBarModule: ElementRef;
756
785
  year: string;
@@ -780,7 +809,8 @@ declare class CoreComponent extends BaseComponent implements OnInit {
780
809
  foundUpdate: boolean;
781
810
  orientation: string;
782
811
  digitalSign: boolean;
783
- 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);
784
814
  ngOnInit(): void;
785
815
  private filterNavTabs;
786
816
  private isRoleGateEnabled;
@@ -797,6 +827,8 @@ declare class CoreComponent extends BaseComponent implements OnInit {
797
827
  private resolveAiAssistantConfig;
798
828
  private resolveEnvModelList;
799
829
  private normalizeOptionalEnvString;
830
+ private configureTour;
831
+ private saveTourCompletion;
800
832
  onPushBackButton(): void;
801
833
  onPushReloadButton(): void;
802
834
  onPushForwardButton(): void;
@@ -804,7 +836,7 @@ declare class CoreComponent extends BaseComponent implements OnInit {
804
836
  closeNav(): void;
805
837
  private isStandaloneMode;
806
838
  static ɵfac: i0.ɵɵFactoryDeclaration<CoreComponent, never>;
807
- 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>;
808
840
  }
809
841
 
810
842
  declare class HomeComponent extends BaseComponent implements OnInit {
@@ -1551,6 +1583,25 @@ declare class AiFormAutoRegisterDirective implements OnInit, OnDestroy {
1551
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>;
1552
1584
  }
1553
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
+
1554
1605
  declare class CollapseTableComponent implements OnInit, OnDestroy {
1555
1606
  private _resizeService;
1556
1607
  private _account;
@@ -1573,7 +1624,7 @@ declare class CollapseTableComponent implements OnInit, OnDestroy {
1573
1624
 
1574
1625
  declare class CollapseTableModule {
1575
1626
  static ɵfac: i0.ɵɵFactoryDeclaration<CollapseTableModule, never>;
1576
- 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]>;
1577
1628
  static ɵinj: i0.ɵɵInjectorDeclaration<CollapseTableModule>;
1578
1629
  }
1579
1630
 
@@ -1592,7 +1643,7 @@ declare class FormButtonComponent extends BaseComponent {
1592
1643
 
1593
1644
  declare class FormButtonModule {
1594
1645
  static ɵfac: i0.ɵɵFactoryDeclaration<FormButtonModule, never>;
1595
- 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]>;
1596
1647
  static ɵinj: i0.ɵɵInjectorDeclaration<FormButtonModule>;
1597
1648
  }
1598
1649
 
@@ -1612,7 +1663,7 @@ declare class ResponsiveButtonGroupComponent extends BaseComponent implements On
1612
1663
 
1613
1664
  declare class ResponsiveButtonGroupModule {
1614
1665
  static ɵfac: i0.ɵɵFactoryDeclaration<ResponsiveButtonGroupModule, never>;
1615
- 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]>;
1616
1667
  static ɵinj: i0.ɵɵInjectorDeclaration<ResponsiveButtonGroupModule>;
1617
1668
  }
1618
1669
 
@@ -1627,7 +1678,7 @@ declare class UserRoleComponent extends BaseComponent {
1627
1678
 
1628
1679
  declare class UserRoleModule {
1629
1680
  static ɵfac: i0.ɵɵFactoryDeclaration<UserRoleModule, never>;
1630
- 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]>;
1631
1682
  static ɵinj: i0.ɵɵInjectorDeclaration<UserRoleModule>;
1632
1683
  }
1633
1684
 
@@ -1713,7 +1764,7 @@ declare class SortTableNgForComponent implements OnInit, OnChanges, OnDestroy {
1713
1764
 
1714
1765
  declare class SortTableModule {
1715
1766
  static ɵfac: i0.ɵɵFactoryDeclaration<SortTableModule, never>;
1716
- 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]>;
1717
1768
  static ɵinj: i0.ɵɵInjectorDeclaration<SortTableModule>;
1718
1769
  }
1719
1770
 
@@ -1885,7 +1936,7 @@ declare class NgDragDropModule {
1885
1936
 
1886
1937
  declare class SharedModule {
1887
1938
  static ɵfac: i0.ɵɵFactoryDeclaration<SharedModule, never>;
1888
- 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]>;
1889
1940
  static ɵinj: i0.ɵɵInjectorDeclaration<SharedModule>;
1890
1941
  }
1891
1942
 
@@ -1901,13 +1952,35 @@ declare function rioDatePickerConfigFactory(_account: AccountManagerService, _ap
1901
1952
  };
1902
1953
  declare class CoreServicesModule {
1903
1954
  static ɵfac: i0.ɵɵFactoryDeclaration<CoreServicesModule, never>;
1904
- 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>;
1905
1956
  static ɵinj: i0.ɵɵInjectorDeclaration<CoreServicesModule>;
1906
1957
  }
1907
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
+
1908
1981
  declare class CoreShellModule {
1909
1982
  static ɵfac: i0.ɵɵFactoryDeclaration<CoreShellModule, never>;
1910
- 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]>;
1911
1984
  static ɵinj: i0.ɵɵInjectorDeclaration<CoreShellModule>;
1912
1985
  }
1913
1986
 
@@ -2294,6 +2367,7 @@ declare class UsersSettingsComponent extends BaseComponent implements OnInit, On
2294
2367
  private _us;
2295
2368
  private _services;
2296
2369
  private _ds;
2370
+ private _tourManager;
2297
2371
  private _stickyAdapter?;
2298
2372
  subscription$: Subscription[];
2299
2373
  form: FormGroup;
@@ -2305,7 +2379,7 @@ declare class UsersSettingsComponent extends BaseComponent implements OnInit, On
2305
2379
  stickySelections: {
2306
2380
  [key: string]: any;
2307
2381
  };
2308
- 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);
2309
2383
  ngOnInit(): void;
2310
2384
  ngOnDestroy(): void;
2311
2385
  changePrimaryColor(): void;
@@ -2335,11 +2409,12 @@ declare class UsersSettingsComponent extends BaseComponent implements OnInit, On
2335
2409
  changeSecondaryButtonFontColor(): void;
2336
2410
  reset(): void;
2337
2411
  updateStickyDefault(key: string, value: any): void;
2412
+ retakeTour(): void;
2338
2413
  private _loadStickySelects;
2339
2414
  private _resolveStickyLabel;
2340
2415
  submitForm(form: any): void;
2341
2416
  private _normalizeDatePickerDayStart;
2342
- static ɵfac: i0.ɵɵFactoryDeclaration<UsersSettingsComponent, [null, null, null, null, { optional: true; }]>;
2417
+ static ɵfac: i0.ɵɵFactoryDeclaration<UsersSettingsComponent, [null, null, null, null, null, { optional: true; }]>;
2343
2418
  static ɵcmp: i0.ɵɵComponentDeclaration<UsersSettingsComponent, "resolveio-users-settings", never, {}, {}, never, never, false, never>;
2344
2419
  }
2345
2420
 
@@ -2379,7 +2454,7 @@ declare class DatatableComponent extends BaseComponent {
2379
2454
 
2380
2455
  declare class DatatableModule {
2381
2456
  static ɵfac: i0.ɵɵFactoryDeclaration<DatatableModule, never>;
2382
- 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]>;
2383
2458
  static ɵinj: i0.ɵɵInjectorDeclaration<DatatableModule>;
2384
2459
  }
2385
2460
 
@@ -2428,13 +2503,13 @@ declare class FileUploadComponent extends BaseComponent implements OnInit, OnDes
2428
2503
 
2429
2504
  declare class FileModule {
2430
2505
  static ɵfac: i0.ɵɵFactoryDeclaration<FileModule, never>;
2431
- 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]>;
2432
2507
  static ɵinj: i0.ɵɵInjectorDeclaration<FileModule>;
2433
2508
  }
2434
2509
 
2435
2510
  declare class UserSettingsModule {
2436
2511
  static ɵfac: i0.ɵɵFactoryDeclaration<UserSettingsModule, never>;
2437
- 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>;
2438
2513
  static ɵinj: i0.ɵɵInjectorDeclaration<UserSettingsModule>;
2439
2514
  }
2440
2515
 
@@ -2535,7 +2610,7 @@ declare class DateShortcutComponent extends BaseComponent implements OnInit {
2535
2610
 
2536
2611
  declare class DateShortcutModule {
2537
2612
  static ɵfac: i0.ɵɵFactoryDeclaration<DateShortcutModule, never>;
2538
- 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]>;
2539
2614
  static ɵinj: i0.ɵɵInjectorDeclaration<DateShortcutModule>;
2540
2615
  }
2541
2616
 
@@ -2589,7 +2664,7 @@ declare class SchedulerComponent extends BaseComponent implements AfterViewInit,
2589
2664
 
2590
2665
  declare class SchedulerModule {
2591
2666
  static ɵfac: i0.ɵɵFactoryDeclaration<SchedulerModule, never>;
2592
- 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]>;
2593
2668
  static ɵinj: i0.ɵɵInjectorDeclaration<SchedulerModule>;
2594
2669
  }
2595
2670
 
@@ -2689,5 +2764,5 @@ declare const MongoExplorerModulePermission: ModulePermissionModel;
2689
2764
 
2690
2765
  declare const SuperAdminModulePermission: ModulePermissionModel;
2691
2766
 
2692
- 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 };
2693
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 };