tin-spa 20.8.1 → 20.8.2
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/fesm2022/tin-spa.mjs +1035 -998
- package/fesm2022/tin-spa.mjs.map +1 -1
- package/index.d.ts +5 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { InjectionToken, EnvironmentProviders, NgZone, OnInit, OnDestroy, TemplateRef, ViewContainerRef, OnChanges, SimpleChanges, EventEmitter, AfterViewInit, PipeTransform, ElementRef, AfterViewChecked, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { InjectionToken, EnvironmentProviders, Injector, NgZone, OnInit, OnDestroy, TemplateRef, ViewContainerRef, OnChanges, SimpleChanges, EventEmitter, AfterViewInit, PipeTransform, ElementRef, AfterViewChecked, ChangeDetectorRef } from '@angular/core';
|
|
3
3
|
import * as i12 from '@angular/material/snack-bar';
|
|
4
4
|
import { MatSnackBar } from '@angular/material/snack-bar';
|
|
5
5
|
import * as i11 from '@angular/material/dialog';
|
|
@@ -564,12 +564,13 @@ declare class AuthService {
|
|
|
564
564
|
private messageService;
|
|
565
565
|
private logService;
|
|
566
566
|
private signalRService;
|
|
567
|
+
private injector;
|
|
567
568
|
private googleAuthInitialized;
|
|
568
569
|
private isRefreshing;
|
|
569
570
|
private refreshTimer;
|
|
570
571
|
private socialUserSource;
|
|
571
572
|
socialUserObserv: rxjs.Observable<SocialUser>;
|
|
572
|
-
constructor(_route: ActivatedRoute, socialService: SocialAuthService, storage: StorageService, router: Router, httpService: HttpService, messageService: MessageService, logService: LogService, signalRService: SignalRService);
|
|
573
|
+
constructor(_route: ActivatedRoute, socialService: SocialAuthService, storage: StorageService, router: Router, httpService: HttpService, messageService: MessageService, logService: LogService, signalRService: SignalRService, injector: Injector);
|
|
573
574
|
private initializeGoogleAuth;
|
|
574
575
|
clearSession(revokeOnServer?: boolean): void;
|
|
575
576
|
sessionExpired(): void;
|
|
@@ -1231,6 +1232,7 @@ declare class OfflineService {
|
|
|
1231
1232
|
matchMutation(url: string): OfflineEntry | null;
|
|
1232
1233
|
suppressesUrl(absoluteUrl: string): boolean;
|
|
1233
1234
|
private resolveConfig;
|
|
1235
|
+
deleteLocalData(): Promise<void>;
|
|
1234
1236
|
private ensureOpen;
|
|
1235
1237
|
putRead(url: string, entity: string, data: any, maxRows: number): Promise<any>;
|
|
1236
1238
|
private getRead;
|
|
@@ -3378,7 +3380,7 @@ declare class HtmlComponent implements OnInit {
|
|
|
3378
3380
|
value: string;
|
|
3379
3381
|
maxHeight: string;
|
|
3380
3382
|
display: string;
|
|
3381
|
-
sanitizedHtml:
|
|
3383
|
+
sanitizedHtml: string;
|
|
3382
3384
|
private sanitizeHtml;
|
|
3383
3385
|
static ɵfac: i0.ɵɵFactoryDeclaration<HtmlComponent, never>;
|
|
3384
3386
|
static ɵcmp: i0.ɵɵComponentDeclaration<HtmlComponent, "spa-html", never, { "value": { "alias": "value"; "required": false; }; "maxHeight": { "alias": "maxHeight"; "required": false; }; "display": { "alias": "display"; "required": false; }; }, {}, never, never, false, never>;
|