@bizdoc/core 3.6.7 → 3.7.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/assets/bizdoc-schema.json +1 -0
- package/fesm2022/bizdoc-core.mjs +468 -445
- package/fesm2022/bizdoc-core.mjs.map +1 -1
- package/index.d.ts +227 -230
- package/package.json +1 -1
package/index.d.ts
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
import * as _angular_forms from '@angular/forms';
|
2
2
|
import { FormGroup, FormBuilder, ControlValueAccessor, NgControl, AbstractControl, FormControl, ValidationErrors, FormArray } from '@angular/forms';
|
3
3
|
import * as i0 from '@angular/core';
|
4
|
-
import { Type as Type$1, InjectionToken, Injector, TemplateRef, ElementRef, OnInit, OnDestroy, ViewContainerRef, DoCheck, EventEmitter, OnChanges, AfterViewInit, SimpleChanges, ChangeDetectorRef, PipeTransform,
|
4
|
+
import { Type as Type$1, InjectionToken, Injector, TemplateRef, ElementRef, OnInit, OnDestroy, ViewContainerRef, DoCheck, EventEmitter, OnChanges, AfterViewInit, SimpleChanges, ChangeDetectorRef, PipeTransform, NgZone, ComponentRef, QueryList, Renderer2, ModuleWithProviders } from '@angular/core';
|
5
5
|
import * as rxjs from 'rxjs';
|
6
6
|
import { Subject, Observable, BehaviorSubject } from 'rxjs';
|
7
7
|
import * as i8 from '@angular/material/chips';
|
@@ -1312,6 +1312,138 @@ declare class GuideService {
|
|
1312
1312
|
static ɵprov: i0.ɵɵInjectableDeclaration<GuideService>;
|
1313
1313
|
}
|
1314
1314
|
|
1315
|
+
declare abstract class NavigationBase {
|
1316
|
+
_preventDefault: boolean;
|
1317
|
+
preventDefault(): void;
|
1318
|
+
}
|
1319
|
+
declare class CollapseNavigation extends NavigationBase {
|
1320
|
+
}
|
1321
|
+
declare class BackNavigation extends NavigationBase {
|
1322
|
+
}
|
1323
|
+
declare abstract class NavigationPaneBase<T = any> extends NavigationBase {
|
1324
|
+
private _pane;
|
1325
|
+
constructor(_pane: PaneRef<T>);
|
1326
|
+
get pane(): PaneRef<T>;
|
1327
|
+
}
|
1328
|
+
declare class NavigationStart extends NavigationPaneBase {
|
1329
|
+
}
|
1330
|
+
/** pane fucus change */
|
1331
|
+
declare class NavigationFocus extends NavigationPaneBase {
|
1332
|
+
}
|
1333
|
+
declare class NavigationEnd<T = any> extends NavigationPaneBase<T> {
|
1334
|
+
}
|
1335
|
+
declare class NavigationMode<T = any> extends NavigationPaneBase<T> {
|
1336
|
+
readonly mode: PaneMode;
|
1337
|
+
constructor(mode: PaneMode, pane: PaneRef<T>);
|
1338
|
+
}
|
1339
|
+
declare class NavigationExpand<T = any> extends NavigationPaneBase<T> {
|
1340
|
+
readonly expended: boolean;
|
1341
|
+
constructor(expended: boolean, pane: PaneRef<T>);
|
1342
|
+
}
|
1343
|
+
declare class NavigationResize<T = any> extends NavigationPaneBase<T> {
|
1344
|
+
readonly dimentions: Dimentions;
|
1345
|
+
constructor(dimentions: Dimentions, pane: PaneRef<T>);
|
1346
|
+
}
|
1347
|
+
declare class NavigationClose<T = any> extends NavigationPaneBase<T> {
|
1348
|
+
}
|
1349
|
+
declare class ParamNavigation<T = any> extends NavigationPaneBase<T> {
|
1350
|
+
readonly params: ParamMap;
|
1351
|
+
constructor(params: ParamMap, pane: PaneRef<T>);
|
1352
|
+
}
|
1353
|
+
declare class QueryParamNavigation<T = any> extends NavigationPaneBase<T> {
|
1354
|
+
readonly queryParams: ParamMap;
|
1355
|
+
constructor(queryParams: ParamMap, pane: PaneRef<T>);
|
1356
|
+
}
|
1357
|
+
type PaneMode = 'tab' | 'pane';
|
1358
|
+
interface PaneOptions {
|
1359
|
+
title?: string;
|
1360
|
+
group?: string;
|
1361
|
+
help?: string;
|
1362
|
+
state?: any;
|
1363
|
+
openPolicy?: OpenPolicy;
|
1364
|
+
}
|
1365
|
+
type PaneCommand = 'expand' | 'focus' | 'close' | 'recycle';
|
1366
|
+
/** */
|
1367
|
+
declare class PaneRef<ComponentType = any, DataType = ParamMap> {
|
1368
|
+
id: number;
|
1369
|
+
private _options;
|
1370
|
+
readonly _command$: Subject<PaneCommand>;
|
1371
|
+
/** */
|
1372
|
+
readonly _data$: BehaviorSubject<DataType>;
|
1373
|
+
readonly _params$: BehaviorSubject<ParamMap>;
|
1374
|
+
readonly _queryParams$: BehaviorSubject<ParamMap>;
|
1375
|
+
readonly _events$: Subject<NavigationBase>;
|
1376
|
+
title?: string;
|
1377
|
+
icon?: string;
|
1378
|
+
guide?: string;
|
1379
|
+
pinned: boolean;
|
1380
|
+
badge?: number;
|
1381
|
+
animation?: string;
|
1382
|
+
group?: string;
|
1383
|
+
help?: string;
|
1384
|
+
_expanded?: boolean;
|
1385
|
+
_instance: ComponentType;
|
1386
|
+
_path?: string;
|
1387
|
+
_queryString: string | undefined;
|
1388
|
+
_mode: PaneMode;
|
1389
|
+
readonly _portal: ComponentPortal<any>;
|
1390
|
+
private readonly _injector;
|
1391
|
+
private _expandable;
|
1392
|
+
private _stretchable?;
|
1393
|
+
private _value;
|
1394
|
+
get expandable(): boolean;
|
1395
|
+
get injector(): Injector;
|
1396
|
+
get expanded(): boolean | undefined;
|
1397
|
+
get fullPath(): string;
|
1398
|
+
get instance(): ComponentType;
|
1399
|
+
get data(): DataType;
|
1400
|
+
get params(): ParamMap;
|
1401
|
+
get queryString(): string | undefined;
|
1402
|
+
get queryParams(): ParamMap;
|
1403
|
+
paramsChange(): Observable<ParamMap>;
|
1404
|
+
queryParamsChange(): Observable<ParamMap>;
|
1405
|
+
dataChange(): Observable<DataType>;
|
1406
|
+
resized(): Observable<NavigationResize>;
|
1407
|
+
closeing(): Observable<NavigationClose>;
|
1408
|
+
closed<T = any>(): Observable<T>;
|
1409
|
+
expandedChange(): Observable<boolean | undefined>;
|
1410
|
+
get path(): string | undefined;
|
1411
|
+
get mode(): PaneMode;
|
1412
|
+
get parent(): PaneRef<any, ParamMap> | undefined;
|
1413
|
+
get stretchable(): boolean;
|
1414
|
+
set stretchable(val: boolean);
|
1415
|
+
get dialog(): boolean | undefined;
|
1416
|
+
get dismissable(): boolean | undefined;
|
1417
|
+
get route(): PaneRoute | undefined;
|
1418
|
+
constructor(component: Type$1<any>, injector: Injector, id: number, _options: {
|
1419
|
+
path?: string;
|
1420
|
+
route?: PaneRoute;
|
1421
|
+
title?: string;
|
1422
|
+
group?: string;
|
1423
|
+
guide?: string;
|
1424
|
+
icon?: string;
|
1425
|
+
animation?: string;
|
1426
|
+
help?: string;
|
1427
|
+
mode: PaneMode;
|
1428
|
+
expanded?: boolean;
|
1429
|
+
dialog?: boolean;
|
1430
|
+
stretchable?: boolean;
|
1431
|
+
parent?: PaneRef<any>;
|
1432
|
+
queryString?: string;
|
1433
|
+
data?: DataType;
|
1434
|
+
params?: ParamMap;
|
1435
|
+
queryParams?: ParamMap;
|
1436
|
+
expandable?: boolean;
|
1437
|
+
dismissable?: boolean;
|
1438
|
+
});
|
1439
|
+
decendentOf(pane: PaneRef<any>): boolean;
|
1440
|
+
recycle(): void;
|
1441
|
+
focus(): void;
|
1442
|
+
close(value?: any): void;
|
1443
|
+
expand(): void;
|
1444
|
+
_destroy(): void;
|
1445
|
+
}
|
1446
|
+
|
1315
1447
|
type OptionType = 'notifications' | 'emails' | 'out_of_office' | 'grant_access' | 'preferences';
|
1316
1448
|
declare class OptionsComponent implements OnInit, OnDestroy {
|
1317
1449
|
private _ps;
|
@@ -1343,6 +1475,7 @@ declare class OptionsComponent implements OnInit, OnDestroy {
|
|
1343
1475
|
sectionTmpl: TemplateRef<any>;
|
1344
1476
|
saveing: boolean;
|
1345
1477
|
private _requiredValidator;
|
1478
|
+
private _laterThan;
|
1346
1479
|
readonly grantUserIds: _angular_forms.FormControl<never[] | null>;
|
1347
1480
|
readonly oooId: _angular_forms.FormControl<string | PersonInfo | null>;
|
1348
1481
|
readonly form: FormGroup<{
|
@@ -1387,7 +1520,7 @@ declare class OptionsComponent implements OnInit, OnDestroy {
|
|
1387
1520
|
readonly separatorKeysCodes: number[];
|
1388
1521
|
/** options ctor */
|
1389
1522
|
private readonly _destroy;
|
1390
|
-
constructor(_ps: PromptService, _guide: GuideService, _hub: HubService, _dialog: MatDialog, _fb: FormBuilder, _accounts: AccountService, _sb: PromptService, _session: SessionService, _popup: Popup, config: BizDocConfig);
|
1523
|
+
constructor(_ps: PromptService, _guide: GuideService, _hub: HubService, _dialog: MatDialog, _fb: FormBuilder, _accounts: AccountService, _sb: PromptService, paneRef: PaneRef, _session: SessionService, _popup: Popup, config: BizDocConfig);
|
1391
1524
|
close(): void;
|
1392
1525
|
revive(): void;
|
1393
1526
|
about(): void;
|
@@ -1417,7 +1550,7 @@ declare class OptionsComponent implements OnInit, OnDestroy {
|
|
1417
1550
|
addGrant(inp: HTMLInputElement, event: MatAutocompleteSelectedEvent): void;
|
1418
1551
|
oooSelected(event: MatAutocompleteSelectedEvent): void;
|
1419
1552
|
ngOnDestroy(): void;
|
1420
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<OptionsComponent,
|
1553
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OptionsComponent, [null, null, null, null, null, null, null, { optional: true; }, null, null, null]>;
|
1421
1554
|
static ɵcmp: i0.ɵɵComponentDeclaration<OptionsComponent, "bizdoc-options", never, { "sectionName": { "alias": "section"; "required": false; }; }, {}, never, never, false, never>;
|
1422
1555
|
}
|
1423
1556
|
|
@@ -3198,138 +3331,6 @@ declare abstract class HomeBase implements OnInit {
|
|
3198
3331
|
static ɵdir: i0.ɵɵDirectiveDeclaration<HomeBase, never, never, {}, {}, never, never, true, never>;
|
3199
3332
|
}
|
3200
3333
|
|
3201
|
-
declare abstract class NavigationBase {
|
3202
|
-
_preventDefault: boolean;
|
3203
|
-
preventDefault(): void;
|
3204
|
-
}
|
3205
|
-
declare class CollapseNavigation extends NavigationBase {
|
3206
|
-
}
|
3207
|
-
declare class BackNavigation extends NavigationBase {
|
3208
|
-
}
|
3209
|
-
declare abstract class NavigationPaneBase<T = any> extends NavigationBase {
|
3210
|
-
private _pane;
|
3211
|
-
constructor(_pane: PaneRef<T>);
|
3212
|
-
get pane(): PaneRef<T>;
|
3213
|
-
}
|
3214
|
-
declare class NavigationStart extends NavigationPaneBase {
|
3215
|
-
}
|
3216
|
-
/** pane fucus change */
|
3217
|
-
declare class NavigationFocus extends NavigationPaneBase {
|
3218
|
-
}
|
3219
|
-
declare class NavigationEnd<T = any> extends NavigationPaneBase<T> {
|
3220
|
-
}
|
3221
|
-
declare class NavigationMode<T = any> extends NavigationPaneBase<T> {
|
3222
|
-
readonly mode: PaneMode;
|
3223
|
-
constructor(mode: PaneMode, pane: PaneRef<T>);
|
3224
|
-
}
|
3225
|
-
declare class NavigationExpand<T = any> extends NavigationPaneBase<T> {
|
3226
|
-
readonly expended: boolean;
|
3227
|
-
constructor(expended: boolean, pane: PaneRef<T>);
|
3228
|
-
}
|
3229
|
-
declare class NavigationResize<T = any> extends NavigationPaneBase<T> {
|
3230
|
-
readonly dimentions: Dimentions;
|
3231
|
-
constructor(dimentions: Dimentions, pane: PaneRef<T>);
|
3232
|
-
}
|
3233
|
-
declare class NavigationClose<T = any> extends NavigationPaneBase<T> {
|
3234
|
-
}
|
3235
|
-
declare class ParamNavigation<T = any> extends NavigationPaneBase<T> {
|
3236
|
-
readonly params: ParamMap;
|
3237
|
-
constructor(params: ParamMap, pane: PaneRef<T>);
|
3238
|
-
}
|
3239
|
-
declare class QueryParamNavigation<T = any> extends NavigationPaneBase<T> {
|
3240
|
-
readonly queryParams: ParamMap;
|
3241
|
-
constructor(queryParams: ParamMap, pane: PaneRef<T>);
|
3242
|
-
}
|
3243
|
-
type PaneMode = 'tab' | 'pane';
|
3244
|
-
interface PaneOptions {
|
3245
|
-
title?: string;
|
3246
|
-
group?: string;
|
3247
|
-
help?: string;
|
3248
|
-
state?: any;
|
3249
|
-
openPolicy?: OpenPolicy;
|
3250
|
-
}
|
3251
|
-
type PaneCommand = 'expand' | 'focus' | 'close' | 'recycle';
|
3252
|
-
/** */
|
3253
|
-
declare class PaneRef<ComponentType = any, DataType = ParamMap> {
|
3254
|
-
id: number;
|
3255
|
-
private _options;
|
3256
|
-
readonly _command$: Subject<PaneCommand>;
|
3257
|
-
/** */
|
3258
|
-
readonly _data$: BehaviorSubject<DataType>;
|
3259
|
-
readonly _params$: BehaviorSubject<ParamMap>;
|
3260
|
-
readonly _queryParams$: BehaviorSubject<ParamMap>;
|
3261
|
-
readonly _events$: Subject<NavigationBase>;
|
3262
|
-
title?: string;
|
3263
|
-
icon?: string;
|
3264
|
-
guide?: string;
|
3265
|
-
pinned: boolean;
|
3266
|
-
badge?: number;
|
3267
|
-
animation?: string;
|
3268
|
-
group?: string;
|
3269
|
-
help?: string;
|
3270
|
-
_expanded?: boolean;
|
3271
|
-
_instance: ComponentType;
|
3272
|
-
_path?: string;
|
3273
|
-
_queryString: string | undefined;
|
3274
|
-
_mode: PaneMode;
|
3275
|
-
readonly _portal: ComponentPortal<any>;
|
3276
|
-
private readonly _injector;
|
3277
|
-
private _expandable;
|
3278
|
-
private _stretchable?;
|
3279
|
-
private _value;
|
3280
|
-
get expandable(): boolean;
|
3281
|
-
get injector(): Injector;
|
3282
|
-
get expanded(): boolean | undefined;
|
3283
|
-
get fullPath(): string;
|
3284
|
-
get instance(): ComponentType;
|
3285
|
-
get data(): DataType;
|
3286
|
-
get params(): ParamMap;
|
3287
|
-
get queryString(): string | undefined;
|
3288
|
-
get queryParams(): ParamMap;
|
3289
|
-
paramsChange(): Observable<ParamMap>;
|
3290
|
-
queryParamsChange(): Observable<ParamMap>;
|
3291
|
-
dataChange(): Observable<DataType>;
|
3292
|
-
resized(): Observable<NavigationResize>;
|
3293
|
-
closeing(): Observable<NavigationClose>;
|
3294
|
-
closed<T = any>(): Observable<T>;
|
3295
|
-
expandedChange(): Observable<boolean | undefined>;
|
3296
|
-
get path(): string | undefined;
|
3297
|
-
get mode(): PaneMode;
|
3298
|
-
get parent(): PaneRef<any, ParamMap> | undefined;
|
3299
|
-
get stretchable(): boolean;
|
3300
|
-
set stretchable(val: boolean);
|
3301
|
-
get dialog(): boolean | undefined;
|
3302
|
-
get dismissable(): boolean | undefined;
|
3303
|
-
get route(): PaneRoute | undefined;
|
3304
|
-
constructor(component: Type$1<any>, injector: Injector, id: number, _options: {
|
3305
|
-
path?: string;
|
3306
|
-
route?: PaneRoute;
|
3307
|
-
title?: string;
|
3308
|
-
group?: string;
|
3309
|
-
guide?: string;
|
3310
|
-
icon?: string;
|
3311
|
-
animation?: string;
|
3312
|
-
help?: string;
|
3313
|
-
mode: PaneMode;
|
3314
|
-
expanded?: boolean;
|
3315
|
-
dialog?: boolean;
|
3316
|
-
stretchable?: boolean;
|
3317
|
-
parent?: PaneRef<any>;
|
3318
|
-
queryString?: string;
|
3319
|
-
data?: DataType;
|
3320
|
-
params?: ParamMap;
|
3321
|
-
queryParams?: ParamMap;
|
3322
|
-
expandable?: boolean;
|
3323
|
-
dismissable?: boolean;
|
3324
|
-
});
|
3325
|
-
decendentOf(pane: PaneRef<any>): boolean;
|
3326
|
-
recycle(): void;
|
3327
|
-
focus(): void;
|
3328
|
-
close(value?: any): void;
|
3329
|
-
expand(): void;
|
3330
|
-
_destroy(): void;
|
3331
|
-
}
|
3332
|
-
|
3333
3334
|
declare class PanesRouter {
|
3334
3335
|
readonly _events$: Subject<NavigationBase>;
|
3335
3336
|
readonly _comm$: Subject<"collapse">;
|
@@ -3487,6 +3488,31 @@ interface BrowseFilterArgs {
|
|
3487
3488
|
tag?: string;
|
3488
3489
|
}
|
3489
3490
|
|
3491
|
+
declare class CalendarPipe implements PipeTransform {
|
3492
|
+
private cdRef;
|
3493
|
+
private ngZone;
|
3494
|
+
private static refs;
|
3495
|
+
private static timer;
|
3496
|
+
private static midnight;
|
3497
|
+
private midnightSub;
|
3498
|
+
transform(value: any, ...args: any[]): string;
|
3499
|
+
constructor(cdRef: ChangeDetectorRef, ngZone: NgZone);
|
3500
|
+
private static initTimer;
|
3501
|
+
private static removeTimer;
|
3502
|
+
ngOnDestroy(): void;
|
3503
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CalendarPipe, never>;
|
3504
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<CalendarPipe, "amCalendar", false>;
|
3505
|
+
}
|
3506
|
+
type CalendarSpecVal = string;
|
3507
|
+
interface CalendarSpec {
|
3508
|
+
sameDay?: CalendarSpecVal;
|
3509
|
+
nextDay?: CalendarSpecVal;
|
3510
|
+
lastDay?: CalendarSpecVal;
|
3511
|
+
nextWeek?: CalendarSpecVal;
|
3512
|
+
lastWeek?: CalendarSpecVal;
|
3513
|
+
sameElse?: CalendarSpecVal;
|
3514
|
+
}
|
3515
|
+
|
3490
3516
|
declare class BrowseItemsComponent implements OnInit, OnChanges, OnDestroy {
|
3491
3517
|
private _mailbox;
|
3492
3518
|
private _accounts;
|
@@ -3503,6 +3529,7 @@ declare class BrowseItemsComponent implements OnInit, OnChanges, OnDestroy {
|
|
3503
3529
|
folderId: string;
|
3504
3530
|
filterType: FilterType;
|
3505
3531
|
filters: BrowseFilterArgs;
|
3532
|
+
readonly CALENDAR_SPEC: CalendarSpec;
|
3506
3533
|
sort: MatSort;
|
3507
3534
|
paginator: MatPaginator;
|
3508
3535
|
dataSource: MatTableDataSource<HeaderModel>;
|
@@ -3889,6 +3916,7 @@ declare class CommentsComponent implements OnInit, OnDestroy, OnChanges, AfterVi
|
|
3889
3916
|
|
3890
3917
|
declare class AttachmentsComponent implements OnChanges {
|
3891
3918
|
private _mailbox;
|
3919
|
+
private _translate;
|
3892
3920
|
private _session;
|
3893
3921
|
private _vc;
|
3894
3922
|
private _sb;
|
@@ -3899,8 +3927,9 @@ declare class AttachmentsComponent implements OnChanges {
|
|
3899
3927
|
viewedIndicator: boolean;
|
3900
3928
|
includeDeleted: boolean;
|
3901
3929
|
attachments: AttachmentExtra[];
|
3930
|
+
readonly CALENDAR_SPEC: CalendarSpec;
|
3902
3931
|
/** mail-attachments ctor */
|
3903
|
-
constructor(_mailbox: MailboxService, _session: SessionService, _vc: ViewContainerRef, _sb: PromptService, _overlay: Overlay, _injector: Injector, _dir: Directionality);
|
3932
|
+
constructor(_mailbox: MailboxService, _translate: TranslateService, _session: SessionService, _vc: ViewContainerRef, _sb: PromptService, _overlay: Overlay, _injector: Injector, _dir: Directionality);
|
3904
3933
|
ngOnChanges(): void;
|
3905
3934
|
hasVersion(item: Attachment): boolean;
|
3906
3935
|
getVersions(item: Attachment): Attachment[];
|
@@ -4846,31 +4875,6 @@ declare class DateFormatPipe implements PipeTransform {
|
|
4846
4875
|
static ɵpipe: i0.ɵɵPipeDeclaration<DateFormatPipe, "amDateFormat", false>;
|
4847
4876
|
}
|
4848
4877
|
|
4849
|
-
declare class CalendarPipe implements PipeTransform {
|
4850
|
-
private cdRef;
|
4851
|
-
private ngZone;
|
4852
|
-
private static refs;
|
4853
|
-
private static timer;
|
4854
|
-
private static midnight;
|
4855
|
-
private midnightSub;
|
4856
|
-
transform(value: any, ...args: any[]): string;
|
4857
|
-
constructor(cdRef: ChangeDetectorRef, ngZone: NgZone);
|
4858
|
-
private static initTimer;
|
4859
|
-
private static removeTimer;
|
4860
|
-
ngOnDestroy(): void;
|
4861
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CalendarPipe, never>;
|
4862
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<CalendarPipe, "amCalendar", false>;
|
4863
|
-
}
|
4864
|
-
type CalendarSpecVal = string;
|
4865
|
-
interface CalendarSpec {
|
4866
|
-
sameDay?: CalendarSpecVal;
|
4867
|
-
nextDay?: CalendarSpecVal;
|
4868
|
-
lastDay?: CalendarSpecVal;
|
4869
|
-
nextWeek?: CalendarSpecVal;
|
4870
|
-
lastWeek?: CalendarSpecVal;
|
4871
|
-
sameElse?: CalendarSpecVal;
|
4872
|
-
}
|
4873
|
-
|
4874
4878
|
declare class DifferencePipe implements PipeTransform {
|
4875
4879
|
transform(value: any, ...args: any[]): number;
|
4876
4880
|
static ɵfac: i0.ɵɵFactoryDeclaration<DifferencePipe, never>;
|
@@ -6986,13 +6990,13 @@ declare class OutOfOfficeToast {
|
|
6986
6990
|
private _accounts;
|
6987
6991
|
private _ref;
|
6988
6992
|
substitute: PersonInfo;
|
6989
|
-
constructor(_router: RouterImpl, _accounts: AccountService, data: OutOfOfficeData
|
6993
|
+
constructor(_router: RouterImpl, _accounts: AccountService, data: OutOfOfficeData, _ref: MatSnackBarRef<OutOfOfficeToast>);
|
6990
6994
|
options(): void;
|
6991
6995
|
dismiss(): void;
|
6992
6996
|
static ɵfac: i0.ɵɵFactoryDeclaration<OutOfOfficeToast, never>;
|
6993
6997
|
static ɵcmp: i0.ɵɵComponentDeclaration<OutOfOfficeToast, "bizdoc-outofoffice", never, {}, {}, never, never, false, never>;
|
6994
6998
|
}
|
6995
|
-
interface OutOfOfficeData
|
6999
|
+
interface OutOfOfficeData {
|
6996
7000
|
substituteId: string;
|
6997
7001
|
}
|
6998
7002
|
|
@@ -7015,14 +7019,16 @@ declare class NotificationsService {
|
|
7015
7019
|
}
|
7016
7020
|
|
7017
7021
|
declare abstract class NotificationsComponentBase {
|
7018
|
-
prepare(messages: Message[]): void;
|
7019
|
-
private _uidType;
|
7020
7022
|
private _injector;
|
7021
7023
|
protected _service: NotificationsService;
|
7022
7024
|
protected _session: SessionService;
|
7023
|
-
|
7024
|
-
|
7025
|
-
|
7025
|
+
/**
|
7026
|
+
*
|
7027
|
+
* @param messages
|
7028
|
+
*/
|
7029
|
+
protected prepare(messages: Message[]): void;
|
7030
|
+
private _getComponent;
|
7031
|
+
private _getInjector;
|
7026
7032
|
}
|
7027
7033
|
interface MessageExtra extends Message {
|
7028
7034
|
injector: any;
|
@@ -7043,9 +7049,17 @@ declare class NotificationsTableComponent extends NotificationsComponentBase imp
|
|
7043
7049
|
read(item: Message, read: boolean): void;
|
7044
7050
|
isMuted(item: Message): Observable<boolean>;
|
7045
7051
|
mute(item: Message, mute: boolean): void;
|
7052
|
+
/**
|
7053
|
+
*
|
7054
|
+
* @param item
|
7055
|
+
*/
|
7046
7056
|
delete(item: Message): void;
|
7047
7057
|
isAllSelected(): boolean;
|
7048
7058
|
masterToggle(): void;
|
7059
|
+
/**
|
7060
|
+
*
|
7061
|
+
* @param evt
|
7062
|
+
*/
|
7049
7063
|
openFilter(evt: Event): void;
|
7050
7064
|
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationsTableComponent, never>;
|
7051
7065
|
static ɵcmp: i0.ɵɵComponentDeclaration<NotificationsTableComponent, "bizdoc-notifications-table", never, {}, {}, never, never, false, never>;
|
@@ -7205,14 +7219,20 @@ declare class CubeDocumentsGridComponent implements ReportComponent<Model$9>, On
|
|
7205
7219
|
static ɵcmp: i0.ɵɵComponentDeclaration<CubeDocumentsGridComponent, "ng-component", never, {}, {}, never, never, false, never>;
|
7206
7220
|
}
|
7207
7221
|
|
7222
|
+
declare class NotificationRef<T> {
|
7223
|
+
private _message;
|
7224
|
+
constructor(_message: Message);
|
7225
|
+
get message(): T & Message;
|
7226
|
+
}
|
7227
|
+
|
7208
7228
|
declare class LongRunningTaskNotification implements OnInit {
|
7209
|
-
notification: ReportTask
|
7229
|
+
notification: NotificationRef<ReportTask>;
|
7210
7230
|
private _session;
|
7211
7231
|
private _router;
|
7212
7232
|
report: Report;
|
7213
7233
|
ngOnInit(): void;
|
7214
|
-
open(
|
7215
|
-
constructor(notification: ReportTask
|
7234
|
+
open(_: MouseEvent): void;
|
7235
|
+
constructor(notification: NotificationRef<ReportTask>, _session: SessionService, _router: RouterImpl);
|
7216
7236
|
static ɵfac: i0.ɵɵFactoryDeclaration<LongRunningTaskNotification, never>;
|
7217
7237
|
static ɵcmp: i0.ɵɵComponentDeclaration<LongRunningTaskNotification, "ng-component", never, {}, {}, never, never, false, never>;
|
7218
7238
|
}
|
@@ -7221,27 +7241,24 @@ interface ReportTask extends Message {
|
|
7221
7241
|
value: number;
|
7222
7242
|
}
|
7223
7243
|
|
7224
|
-
declare abstract class NotificationBase {
|
7225
|
-
|
7226
|
-
private _router;
|
7244
|
+
declare abstract class NotificationBase<T extends Message> {
|
7245
|
+
protected _router: RouterImpl;
|
7227
7246
|
protected _session: SessionService;
|
7228
7247
|
protected _translate: TranslateService;
|
7229
|
-
|
7230
|
-
|
7248
|
+
protected _chat: ChatInfo;
|
7249
|
+
notification: NotificationRef<T>;
|
7231
7250
|
protected _formatUserElement(person: PersonInfo): string;
|
7232
7251
|
open(e: MouseEvent): void;
|
7233
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationBase
|
7234
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<NotificationBase
|
7252
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationBase<any>, never>;
|
7253
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<NotificationBase<any>, never, never, {}, {}, never, never, true, never>;
|
7235
7254
|
}
|
7236
7255
|
|
7237
7256
|
/** */
|
7238
|
-
declare class TaggedNotification extends NotificationBase implements OnInit {
|
7239
|
-
|
7240
|
-
private _accounts;
|
7257
|
+
declare class TaggedNotification extends NotificationBase<Tagged> implements OnInit {
|
7258
|
+
private readonly _accounts;
|
7241
7259
|
names?: string;
|
7242
7260
|
message: string;
|
7243
7261
|
ngOnInit(): void;
|
7244
|
-
constructor(notification: Tagged, _accounts: AccountService, translate: TranslateService, router: RouterImpl, session: SessionService, chat: ChatInfo);
|
7245
7262
|
static ɵfac: i0.ɵɵFactoryDeclaration<TaggedNotification, never>;
|
7246
7263
|
static ɵcmp: i0.ɵɵComponentDeclaration<TaggedNotification, "bizdoc-notify-tagged", never, {}, {}, never, never, false, never>;
|
7247
7264
|
}
|
@@ -7250,13 +7267,12 @@ interface Tagged extends Message {
|
|
7250
7267
|
}
|
7251
7268
|
|
7252
7269
|
/** */
|
7253
|
-
declare class CommentedNotification extends NotificationBase implements OnInit {
|
7254
|
-
|
7255
|
-
|
7270
|
+
declare class CommentedNotification extends NotificationBase<Commented> implements OnInit {
|
7271
|
+
private readonly _accounts;
|
7272
|
+
count: number;
|
7256
7273
|
names?: string;
|
7257
7274
|
message: string;
|
7258
7275
|
ngOnInit(): void;
|
7259
|
-
constructor(notification: Commented, _accounts: AccountService, translate: TranslateService, router: RouterImpl, session: SessionService, chat: ChatInfo);
|
7260
7276
|
static ɵfac: i0.ɵɵFactoryDeclaration<CommentedNotification, never>;
|
7261
7277
|
static ɵcmp: i0.ɵɵComponentDeclaration<CommentedNotification, "ng-component", never, {}, {}, never, never, false, never>;
|
7262
7278
|
}
|
@@ -7265,12 +7281,10 @@ interface Commented extends Message {
|
|
7265
7281
|
text: string;
|
7266
7282
|
}
|
7267
7283
|
|
7268
|
-
declare class NudgeNotification extends NotificationBase implements OnInit {
|
7269
|
-
notification: Nudge;
|
7284
|
+
declare class NudgeNotification extends NotificationBase<Nudge> implements OnInit {
|
7270
7285
|
message: string;
|
7271
7286
|
expire: dayjs.Dayjs;
|
7272
7287
|
ngOnInit(): void;
|
7273
|
-
constructor(router: RouterImpl, translate: TranslateService, session: SessionService, chat: ChatInfo, notification: Nudge);
|
7274
7288
|
static ɵfac: i0.ɵɵFactoryDeclaration<NudgeNotification, never>;
|
7275
7289
|
static ɵcmp: i0.ɵɵComponentDeclaration<NudgeNotification, "ng-component", never, {}, {}, never, never, false, never>;
|
7276
7290
|
}
|
@@ -7281,9 +7295,9 @@ interface Nudge extends Message {
|
|
7281
7295
|
declare class InviteNotification {
|
7282
7296
|
private _router;
|
7283
7297
|
private _factory;
|
7284
|
-
notification: Invite
|
7298
|
+
notification: NotificationRef<Invite>;
|
7285
7299
|
message: string;
|
7286
|
-
constructor(_router: RouterImpl, _factory: DocumentFactory, session: SessionService, translate: TranslateService, notification: Invite);
|
7300
|
+
constructor(_router: RouterImpl, _factory: DocumentFactory, session: SessionService, translate: TranslateService, notification: NotificationRef<Invite>);
|
7287
7301
|
open(_: MouseEvent): void;
|
7288
7302
|
static ɵfac: i0.ɵɵFactoryDeclaration<InviteNotification, never>;
|
7289
7303
|
static ɵcmp: i0.ɵɵComponentDeclaration<InviteNotification, "ng-component", never, {}, {}, never, never, false, never>;
|
@@ -7293,14 +7307,12 @@ interface Invite extends Message {
|
|
7293
7307
|
due?: Date;
|
7294
7308
|
}
|
7295
7309
|
|
7296
|
-
declare class
|
7297
|
-
|
7310
|
+
declare class ContentMessageNotification extends NotificationBase<ContentMessage> {
|
7311
|
+
private static _tamplateMap;
|
7298
7312
|
private _factory;
|
7299
|
-
|
7300
|
-
|
7301
|
-
|
7302
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ContentNotification, never>;
|
7303
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ContentNotification, "bizdoc-notify-content", never, {}, {}, never, never, false, never>;
|
7313
|
+
constructor(vc: ViewContainerRef);
|
7314
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContentMessageNotification, never>;
|
7315
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ContentMessageNotification, "bizdoc-notify-content", never, {}, {}, never, never, false, never>;
|
7304
7316
|
}
|
7305
7317
|
interface ContentMessage<T = any> extends Message {
|
7306
7318
|
content?: T;
|
@@ -7308,8 +7320,8 @@ interface ContentMessage<T = any> extends Message {
|
|
7308
7320
|
}
|
7309
7321
|
|
7310
7322
|
declare class TextNotification {
|
7311
|
-
notification: Text
|
7312
|
-
constructor(notification: Text);
|
7323
|
+
notification: NotificationRef<Text>;
|
7324
|
+
constructor(notification: NotificationRef<Text>);
|
7313
7325
|
static ɵfac: i0.ɵɵFactoryDeclaration<TextNotification, never>;
|
7314
7326
|
static ɵcmp: i0.ɵɵComponentDeclaration<TextNotification, "bizdoc-notify-text", never, {}, {}, never, never, false, never>;
|
7315
7327
|
}
|
@@ -7317,17 +7329,12 @@ interface Text {
|
|
7317
7329
|
text: string;
|
7318
7330
|
}
|
7319
7331
|
|
7320
|
-
declare class CubeAnomalyNotification implements OnInit {
|
7321
|
-
|
7322
|
-
private _ds;
|
7323
|
-
private _session;
|
7324
|
-
private _router;
|
7325
|
-
private _translate;
|
7332
|
+
declare class CubeAnomalyNotification extends NotificationBase<CubeAnomaly> implements OnInit {
|
7333
|
+
private readonly _ds;
|
7326
7334
|
cube: Cube;
|
7327
7335
|
axes: string;
|
7328
7336
|
ngOnInit(): void;
|
7329
|
-
open(
|
7330
|
-
constructor(notification: CubeAnomaly, _ds: DatasourceService, _session: SessionService, _router: RouterImpl, _translate: TranslateService);
|
7337
|
+
open(evt: MouseEvent): void;
|
7331
7338
|
static ɵfac: i0.ɵɵFactoryDeclaration<CubeAnomalyNotification, never>;
|
7332
7339
|
static ɵcmp: i0.ɵɵComponentDeclaration<CubeAnomalyNotification, "ng-component", never, {}, {}, never, never, false, never>;
|
7333
7340
|
}
|
@@ -7339,12 +7346,10 @@ interface CubeAnomaly extends Message {
|
|
7339
7346
|
documentIds: number[];
|
7340
7347
|
}
|
7341
7348
|
|
7342
|
-
declare class EscalatedNotification extends NotificationBase implements OnInit {
|
7343
|
-
|
7344
|
-
private _accounts;
|
7349
|
+
declare class EscalatedNotification extends NotificationBase<Escalated> implements OnInit {
|
7350
|
+
private readonly _accounts;
|
7345
7351
|
name: string;
|
7346
7352
|
ngOnInit(): void;
|
7347
|
-
constructor(router: RouterImpl, notification: Escalated, _accounts: AccountService, translate: TranslateService, session: SessionService, chat: ChatInfo);
|
7348
7353
|
static ɵfac: i0.ɵɵFactoryDeclaration<EscalatedNotification, never>;
|
7349
7354
|
static ɵcmp: i0.ɵɵComponentDeclaration<EscalatedNotification, "bizdoc-notify-escalated", never, {}, {}, never, never, false, never>;
|
7350
7355
|
}
|
@@ -7354,13 +7359,11 @@ interface Escalated extends Message {
|
|
7354
7359
|
duration: number;
|
7355
7360
|
}
|
7356
7361
|
|
7357
|
-
declare class LikedNotification extends NotificationBase implements OnInit {
|
7358
|
-
|
7359
|
-
private _accounts;
|
7362
|
+
declare class LikedNotification extends NotificationBase<Liked> implements OnInit {
|
7363
|
+
private readonly _accounts;
|
7360
7364
|
names?: string;
|
7361
7365
|
message: string;
|
7362
7366
|
ngOnInit(): void;
|
7363
|
-
constructor(notification: Liked, _accounts: AccountService, translate: TranslateService, router: RouterImpl, session: SessionService, chat: ChatInfo);
|
7364
7367
|
static ɵfac: i0.ɵɵFactoryDeclaration<LikedNotification, never>;
|
7365
7368
|
static ɵcmp: i0.ɵɵComponentDeclaration<LikedNotification, "bizdoc-liked-notification", never, {}, {}, never, never, false, never>;
|
7366
7369
|
}
|
@@ -7369,11 +7372,9 @@ interface Liked extends Message {
|
|
7369
7372
|
voted?: number;
|
7370
7373
|
}
|
7371
7374
|
|
7372
|
-
declare class StateChangedNotification extends NotificationBase implements OnInit {
|
7373
|
-
notification: StateChanged;
|
7375
|
+
declare class StateChangedNotification extends NotificationBase<StateChanged> implements OnInit {
|
7374
7376
|
form: Form;
|
7375
7377
|
ngOnInit(): void;
|
7376
|
-
constructor(notification: StateChanged, session: SessionService, router: RouterImpl, translate: TranslateService, chat: ChatInfo);
|
7377
7378
|
static ɵfac: i0.ɵɵFactoryDeclaration<StateChangedNotification, never>;
|
7378
7379
|
static ɵcmp: i0.ɵɵComponentDeclaration<StateChangedNotification, "ng-component", never, {}, {}, never, never, false, never>;
|
7379
7380
|
}
|
@@ -7382,18 +7383,14 @@ interface StateChanged extends Message {
|
|
7382
7383
|
}
|
7383
7384
|
|
7384
7385
|
declare class UpcomingEventNotification implements OnInit {
|
7385
|
-
notification:
|
7386
|
+
notification: NotificationRef<any>;
|
7386
7387
|
private _router;
|
7387
7388
|
duration: dayjs.Dayjs;
|
7388
7389
|
ngOnInit(): void;
|
7389
|
-
open(
|
7390
|
-
constructor(notification: UpcommingEvent, _router: RouterImpl);
|
7390
|
+
open(_: MouseEvent): void;
|
7391
7391
|
static ɵfac: i0.ɵɵFactoryDeclaration<UpcomingEventNotification, never>;
|
7392
7392
|
static ɵcmp: i0.ɵɵComponentDeclaration<UpcomingEventNotification, "ng-component", never, {}, {}, never, never, false, never>;
|
7393
7393
|
}
|
7394
|
-
interface UpcommingEvent extends Message {
|
7395
|
-
starting: Date;
|
7396
|
-
}
|
7397
7394
|
|
7398
7395
|
declare class ScheduleViewComponent implements OnChanges, AfterViewInit {
|
7399
7396
|
private _mailbox;
|
@@ -9298,7 +9295,7 @@ declare class MaterialModule {
|
|
9298
9295
|
declare class SharedModule {
|
9299
9296
|
static forChild(config?: SharedConfig): ModuleWithProviders<SharedModule>;
|
9300
9297
|
static ɵfac: i0.ɵɵFactoryDeclaration<SharedModule, never>;
|
9301
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, [typeof OverlayFormComponent, typeof LocalizedStringPipe, typeof HelpTipComponent, typeof BoxFormComponent, typeof BoxFormRowComponent, typeof BoxFormControlComponent, typeof PerformanceWindComponent, typeof PerformanceHiloComponent, typeof CubeUsageComponent, typeof CubeDocumentsComponent, typeof DateFormatPipe, typeof CalendarPipe, typeof DifferencePipe, typeof DurationPipe, typeof TimeAgoPipe, typeof ToNowPipe, typeof HtmlSimplePipe, typeof CheckboxComponent, typeof CubeParallelComponent, typeof CubeSumComponent, typeof CubeParallelViewComponent, typeof CubeChartViewComponent, typeof CubeExploreViewComponent, typeof CubeDocumentSumComponent, typeof ExploreItemImplComponent, typeof DocumentInfoComponent, typeof DocumentViewsComponent, typeof ViewItemComponent, typeof CubeDocumentMatrixComponent, typeof CubeInsightComponent, typeof CubePivotViewComponent, typeof ActionPicker, typeof QuickCommentComponent, typeof DurationFormatPipe, typeof CombinationPicker, typeof CombinationPickerBody, typeof CombinationPool, typeof TimelineViewComponent, typeof MatIconAnimate, typeof DateRangePipe, typeof AgoPipe, typeof StateDirective, typeof JoinPipe, typeof TypeValuePipe, typeof L18nPipe, typeof TranslatePipe, typeof IdentityName, typeof SanitizeHtmlPipe, typeof StatePipe, typeof ActionPipe, typeof RolePipe, typeof FormPipe, typeof FilterPipe, typeof ArraySortPipe, typeof JsonPipe, typeof UserNamePipe, typeof TaggingPipe, typeof TypeSelect, typeof TypeAutocomplete, typeof Signature, typeof AceInput, typeof TimespanInput, typeof AddressInput, typeof FileInput, typeof TimePicker, typeof LayoutComponent, typeof StickyToolbar, typeof VirtualTabs, typeof Tab, typeof TimeField, typeof SignatureField, typeof AddressField, typeof RadioButtonField, typeof ChecklistField, typeof AxesPickerField, typeof YesNoField, typeof HtmlField, typeof FileField, typeof NumericField, typeof AutocompleteField, typeof CheckboxField, typeof DateField, typeof DateRangeField, typeof ExpressionField, typeof InputField, typeof SelectField, typeof SwitchField, typeof TextareaField, typeof ChipsField, typeof TimespanField, typeof ReturnActionComponent, typeof AssignActionComponent, typeof MoveToActionComponent, typeof AvatarComponent, typeof PeopleComponent, typeof EditInputComponent, typeof LottieAnimation, typeof ContactsComponent, typeof CubeMatrixComponent, typeof FilterTagsComponent, typeof ExploreItemsComponent, typeof CompareNameDirective, typeof CompareGroupDirective, typeof CompareContextDirective, typeof GuideComponent, typeof OutOfOfficeToast, typeof NotificationsTableComponent, typeof NotificationsFilterComponent, typeof PrivilegeHiddenDirective, typeof TaggingItemDirective, typeof TaggingDirective, typeof DocumentTaggingComponent, typeof UserTaggingComponent, typeof PrivilegeDisabledDirective, typeof CubeDocumentsGridComponent, typeof LongRunningTaskNotification, typeof TaggedNotification, typeof CommentedNotification, typeof NudgeNotification, typeof InviteNotification, typeof
|
9298
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, [typeof OverlayFormComponent, typeof LocalizedStringPipe, typeof HelpTipComponent, typeof BoxFormComponent, typeof BoxFormRowComponent, typeof BoxFormControlComponent, typeof PerformanceWindComponent, typeof PerformanceHiloComponent, typeof CubeUsageComponent, typeof CubeDocumentsComponent, typeof DateFormatPipe, typeof CalendarPipe, typeof DifferencePipe, typeof DurationPipe, typeof TimeAgoPipe, typeof ToNowPipe, typeof HtmlSimplePipe, typeof CheckboxComponent, typeof CubeParallelComponent, typeof CubeSumComponent, typeof CubeParallelViewComponent, typeof CubeChartViewComponent, typeof CubeExploreViewComponent, typeof CubeDocumentSumComponent, typeof ExploreItemImplComponent, typeof DocumentInfoComponent, typeof DocumentViewsComponent, typeof ViewItemComponent, typeof CubeDocumentMatrixComponent, typeof CubeInsightComponent, typeof CubePivotViewComponent, typeof ActionPicker, typeof QuickCommentComponent, typeof DurationFormatPipe, typeof CombinationPicker, typeof CombinationPickerBody, typeof CombinationPool, typeof TimelineViewComponent, typeof MatIconAnimate, typeof DateRangePipe, typeof AgoPipe, typeof StateDirective, typeof JoinPipe, typeof TypeValuePipe, typeof L18nPipe, typeof TranslatePipe, typeof IdentityName, typeof SanitizeHtmlPipe, typeof StatePipe, typeof ActionPipe, typeof RolePipe, typeof FormPipe, typeof FilterPipe, typeof ArraySortPipe, typeof JsonPipe, typeof UserNamePipe, typeof TaggingPipe, typeof TypeSelect, typeof TypeAutocomplete, typeof Signature, typeof AceInput, typeof TimespanInput, typeof AddressInput, typeof FileInput, typeof TimePicker, typeof LayoutComponent, typeof StickyToolbar, typeof VirtualTabs, typeof Tab, typeof TimeField, typeof SignatureField, typeof AddressField, typeof RadioButtonField, typeof ChecklistField, typeof AxesPickerField, typeof YesNoField, typeof HtmlField, typeof FileField, typeof NumericField, typeof AutocompleteField, typeof CheckboxField, typeof DateField, typeof DateRangeField, typeof ExpressionField, typeof InputField, typeof SelectField, typeof SwitchField, typeof TextareaField, typeof ChipsField, typeof TimespanField, typeof ReturnActionComponent, typeof AssignActionComponent, typeof MoveToActionComponent, typeof AvatarComponent, typeof PeopleComponent, typeof EditInputComponent, typeof LottieAnimation, typeof ContactsComponent, typeof CubeMatrixComponent, typeof FilterTagsComponent, typeof ExploreItemsComponent, typeof CompareNameDirective, typeof CompareGroupDirective, typeof CompareContextDirective, typeof GuideComponent, typeof OutOfOfficeToast, typeof NotificationsTableComponent, typeof NotificationsFilterComponent, typeof PrivilegeHiddenDirective, typeof TaggingItemDirective, typeof TaggingDirective, typeof DocumentTaggingComponent, typeof UserTaggingComponent, typeof PrivilegeDisabledDirective, typeof CubeDocumentsGridComponent, typeof LongRunningTaskNotification, typeof TaggedNotification, typeof CommentedNotification, typeof NudgeNotification, typeof InviteNotification, typeof ContentMessageNotification, typeof TextNotification, typeof CubeAnomalyNotification, typeof EscalatedNotification, typeof LikedNotification, typeof StateChangedNotification, typeof UpcomingEventNotification, typeof NoneComponent, typeof ScheduleViewComponent, typeof OptionsComponent, typeof TraceViewComponent, typeof ProgressDirective, typeof AttachmentsComponent, typeof DocumentEventsComponent, typeof TagsComponent, typeof MapComponent, typeof MaskComponent, typeof FlowViewComponent, typeof SubstitutionComponent, typeof PopupComponent, typeof AttachmentPreview, typeof CommentsComponent, typeof CommentComponent, typeof EditCommentComponent, typeof CommentLikesComponent, typeof CommentEditsComponent, typeof BrowseItemsComponent, typeof BrowseFilterComponent, typeof ExpandedItemComponent, typeof ComposeFormComponent, typeof CubeViewComponent, typeof CubeFilterComponent, typeof CubeAccumulationChartComponent, typeof CubeChartComponent, typeof CubePivotComponent, typeof CubeSpreadsheetComponent, typeof CubeGridComponent, typeof ReportViewerComponent, typeof TableViewComponent, typeof ReportArgumentsComponent, typeof DashboardComponent, typeof WidgetItemComponent, typeof CubeWidgetFilterComponent, typeof SaveChangesDialog, typeof AskDialog, typeof AboutDialog, typeof ActionDialog, typeof ImpersonateDialog, typeof ConversationComponent, typeof CubeMatrixPopupComponent, typeof VersionCompareComponent, typeof ExploreDocumentComponent, typeof TasksComponent, typeof CubeDocumentsTableComponent, typeof CubePerformanceWidget, typeof CubeAccumAnalysisWidget, typeof CubeAnalysisWidget, typeof CubeChartAnalysisWidget, typeof ActionsWidget, typeof RecentsWidget, typeof PendingResultsWidget, typeof CompareGroupsWidget, typeof CubeDocumentsWidget, typeof DocumentStateWidgetComponent, typeof PersonalScoreWidget, typeof PersonalActivityWidget, typeof PeersPerformanceWidget, typeof UsagePivotComponent, typeof UsageChartComponent, typeof UsageReportArgs, typeof EmojiHostComponent, typeof TooltipDirective, typeof TooltipComponent, typeof BrokenPage], [typeof DayJsModule, typeof i1$6.CommonModule, typeof _angular_forms.ReactiveFormsModule, typeof i189.RouterModule, typeof i190.PickerModule, typeof SyncfusionGanttModule, typeof SyncfusionScheduleModule, typeof SyncfusionCircularGaugeModule, typeof SyncfusionChartModule, typeof SyncfusionGanttModule, typeof SyncfusionGridModule, typeof SyncfusionLinearGaugeModule, typeof SyncfusionTextEditorModule, typeof SyncfusionSpreadsheetModule, typeof SyncfusionPivotModule, typeof i200.SkeletonModule, typeof i201.SpeedDialModule, typeof i202.TooltipModule, typeof i203.SignatureModule, typeof i204.KanbanModule, typeof i205.BlockEditorAllModule, typeof SyncfusionDiagramModule, typeof MaterialModule], [typeof OptionsComponent, typeof NoneComponent, typeof LocalizedStringPipe, typeof MaterialModule, typeof i200.SkeletonModule, typeof i201.SpeedDialModule, typeof BrokenPage, typeof HelpTipComponent, typeof FilterTagsComponent, typeof DateFormatPipe, typeof CalendarPipe, typeof DifferencePipe, typeof DurationPipe, typeof TimeAgoPipe, typeof ToNowPipe, typeof CheckboxComponent, typeof CubeParallelComponent, typeof CubeSumComponent, typeof ExploreItemImplComponent, typeof DocumentInfoComponent, typeof DocumentViewsComponent, typeof DashboardComponent, typeof TagsComponent, typeof QuickCommentComponent, typeof CommentsComponent, typeof LayoutComponent, typeof ActionDialog, typeof StickyToolbar, typeof VirtualTabs, typeof Tab, typeof BrowseFilterComponent, typeof CubeFilterComponent, typeof ScheduleViewComponent, typeof ReportViewerComponent, typeof WidgetItemComponent, typeof CubeViewComponent, typeof ExploreItemsComponent, typeof ComposeFormComponent, typeof BrowseItemsComponent, typeof NotificationsTableComponent, typeof ActionPicker, typeof ConversationComponent, typeof StateDirective, typeof ContactsComponent, typeof CubeMatrixComponent, typeof MatIconAnimate, typeof TooltipDirective, typeof TimespanInput, typeof FileInput, typeof AddressInput, typeof AceInput, typeof CombinationPicker, typeof CombinationPool, typeof TypeSelect, typeof TypeAutocomplete, typeof TimePicker, typeof DurationFormatPipe, typeof DateRangePipe, typeof TypeValuePipe, typeof JoinPipe, typeof StatePipe, typeof ActionPipe, typeof RolePipe, typeof FormPipe, typeof FilterPipe, typeof JsonPipe, typeof ArraySortPipe, typeof UserNamePipe, typeof SanitizeHtmlPipe, typeof L18nPipe, typeof TranslatePipe, typeof IdentityName, typeof AvatarComponent, typeof ReportArgumentsComponent, typeof AttachmentPreview, typeof PrivilegeHiddenDirective, typeof PrivilegeDisabledDirective, typeof CompareGroupDirective, typeof CompareNameDirective, typeof CompareContextDirective, typeof TraceViewComponent, typeof FlowViewComponent, typeof AssignActionComponent, typeof ReturnActionComponent, typeof ExploreDocumentComponent, typeof CubePerformanceWidget, typeof ActionsWidget, typeof CubeAnalysisWidget, typeof CubeDocumentsWidget, typeof RecentsWidget, typeof PersonalActivityWidget, typeof CompareGroupsWidget, typeof PeersPerformanceWidget, typeof PendingResultsWidget, typeof PersonalScoreWidget, typeof CubeWidgetFilterComponent, typeof CubeDocumentsTableComponent, typeof CubeDocumentsGridComponent, typeof TasksComponent, typeof UsageReportArgs, typeof UsageChartComponent, typeof UsagePivotComponent, typeof VersionCompareComponent, typeof LottieAnimation, typeof CubeAccumulationChartComponent, typeof CubeChartComponent, typeof CubePivotComponent, typeof CubeSpreadsheetComponent, typeof CubeGridComponent]>;
|
9302
9299
|
static ɵinj: i0.ɵɵInjectorDeclaration<SharedModule>;
|
9303
9300
|
}
|
9304
9301
|
|
@@ -11393,7 +11390,7 @@ interface Options$1 {
|
|
11393
11390
|
axes?: string[];
|
11394
11391
|
}
|
11395
11392
|
|
11396
|
-
interface
|
11393
|
+
interface OptionsData {
|
11397
11394
|
userId: string;
|
11398
11395
|
outOfOffice: OutOfOfficeSettings;
|
11399
11396
|
grantAccess: GrantSettings;
|
@@ -11402,7 +11399,7 @@ declare class ProfileSettingsDialog implements OnInit {
|
|
11402
11399
|
private _accounts;
|
11403
11400
|
private _dialogRef;
|
11404
11401
|
private _fb;
|
11405
|
-
model:
|
11402
|
+
model: OptionsData;
|
11406
11403
|
readonly separatorKeysCodes: number[];
|
11407
11404
|
readonly today: Date;
|
11408
11405
|
readonly isMobile: boolean;
|
@@ -11434,7 +11431,7 @@ declare class ProfileSettingsDialog implements OnInit {
|
|
11434
11431
|
}>;
|
11435
11432
|
ousers$: Observable<PersonInfo[]>;
|
11436
11433
|
gusers$: Observable<PersonInfo[]>;
|
11437
|
-
constructor(_accounts: AccountService, _dialogRef: MatDialogRef<ProfileSettingsDialog>, _fb: FormBuilder, model:
|
11434
|
+
constructor(_accounts: AccountService, _dialogRef: MatDialogRef<ProfileSettingsDialog>, _fb: FormBuilder, model: OptionsData);
|
11438
11435
|
ngOnInit(): void;
|
11439
11436
|
userDisplay: (item: PersonInfo) => string | null;
|
11440
11437
|
setId(event: MatAutocompleteSelectedEvent): void;
|
@@ -12331,5 +12328,5 @@ declare class CubeItemResolveService {
|
|
12331
12328
|
static ɵprov: i0.ɵɵInjectableDeclaration<CubeItemResolveService>;
|
12332
12329
|
}
|
12333
12330
|
|
12334
|
-
export { AccountService, AceInput, ActionDialog, ActionPicker, ActionPipe, ActionRef, ActionsWidget, AddressControlDesigner, AddressInput, AgoPipe, ArraySortPipe, AssignActionComponent, AttachmentInfo, AttachmentPreview, AuthenticationImpl, AutocompleteControlDesigner, AvatarComponent, BIZDOC_CONFIG, BackNavigation, BizDoc, BizDocApp, BizDocComponentFactoryResolver, BizDocModule, BrokenPage, BrowseFilterComponent, BrowseItemsComponent, CalendarPipe, ChatInfo, CheckboxComponent, CheckboxControlDesigner, ChecklistControlDesigner, CollapseNavigation, ColorPicker, CombinationPicker, CombinationPickerBody, CombinationPool, CommentsComponent, CompareContextDirective, CompareGroupDirective, CompareGroupsWidget, CompareNameDirective, ComposeFormComponent, ContactsComponent, ConversationComponent, CubeAccumAnalysisWidget, CubeAccumulationChartComponent, CubeAnalysisWidget, CubeChartAnalysisWidget, CubeChartComponent, CubeDocumentsGridComponent, CubeDocumentsTableComponent, CubeDocumentsWidget, CubeFilterComponent, CubeGridComponent, CubeInfo, CubeItemResolveService, CubeMatrixComponent, CubeParallelComponent, CubePerformanceWidget, CubePivotComponent, CubeService, CubeSpreadsheetComponent, CubeSumComponent, CubeViewComponent, CubeWidgetFilterComponent, DEFAULT_POLICY, DRAFT, DashboardComponent, DatasourceService, DateControlDesigner, DateFormatPipe, DateRangeControlDesigner, DateRangePipe, DesignerCubeFilterComponent, DesignerModule, DesignerRef, DifferencePipe, DocumentFactory, DocumentInfo, DocumentInfoComponent, DocumentResolveService, DocumentViewRef, DocumentViewsComponent, DurationFormatPipe, DurationPipe, EnterExitLeft, EnterExitRight, EnterExitTop, ExploreDocumentComponent, ExploreItemImplComponent, ExploreItemsComponent, ExpressionFieldDesigner, FONT_FAMILY, FadeSlideInOut, FieldKind, FileControlDesigner, FileInput, FilterPipe, FilterTagsComponent, FlowViewComponent, FormPipe, FormRef, GuideRef, GuideService, HelpTipComponent, HtmlFieldDesigner, INBOX, IdentityName, InputFieldDesigner, JoinPipe, JsonPipe, L18nPipe, LayoutComponent, ListingRef, LocalizedStringComponent, LocalizedStringControlDesigner, LocalizedStringPipe, LottieAnimation, MailboxService, MapInfo, MatIconAnimate, MaterialModule, NavigationBase, NavigationClose, NavigationEnd, NavigationExpand, NavigationFocus, NavigationMode, NavigationPaneBase, NavigationResize, NavigationStart, NodeRef, NoneComponent, NotificationsTableComponent, NumberControlDesigner, OpenPolicy, OptionsComponent, POPUP_DATA, PaneRef, PanesRouter, ParamNavigation, PeersPerformanceWidget, PendingResultsWidget, PersonalActivityWidget, PersonalScoreWidget, Popup, PopupRef, PrivilegeDisabledDirective, PrivilegeHiddenDirective, PulseAnimation, QueryParamNavigation, QuickCommentComponent, RadioButtonControlDesigner, RecentsWidget, RecipientResolveService, ReportArgumentsComponent, ReportRef, ReportViewerComponent, ReturnActionComponent, RolePipe, RouterImpl, SanitizeHtmlPipe, SaveChangesDialog, ScheduleViewComponent, SearchInput, SelectControlDesigner, SessionService, ShakeAnimation, SharedModule, SignatureControlDesigner, SlotRouterDirective, SpContainer, StateDirective, StatePipe, StickyToolbar, SubstitutionComponent, SwapAnimation, Tab, TagsComponent, TagsControlDesigner, TasksComponent, TextAreaFieldDesigner, TimeAgoPipe, TimeControlDesigner, TimePicker, TimespanControlDesigner, TimespanInput, ToNowPipe, TooltipDirective, TraceViewComponent, TranslatePipe, TranslateService, TypeAutocomplete, TypeSelect, TypeValuePipe, UsageChartComponent, UsagePivotComponent, UsageReportArgs, UserNamePipe, UtilityRef, VersionCompareComponent, VirtualTabs, WidgetItemComponent, WidgetRef, YesNoControlDesigner, cleanup, getMonthList, isArray, isBoolean, isDate, isFunction, isImage, isMobile, isObject, isPrimitive, isPromise, isString, modelize, playAudio, programName, registerComponents };
|
12331
|
+
export { AccountService, AceInput, ActionDialog, ActionPicker, ActionPipe, ActionRef, ActionsWidget, AddressControlDesigner, AddressInput, AgoPipe, ArraySortPipe, AssignActionComponent, AttachmentInfo, AttachmentPreview, AuthenticationImpl, AutocompleteControlDesigner, AvatarComponent, BIZDOC_CONFIG, BackNavigation, BizDoc, BizDocApp, BizDocComponentFactoryResolver, BizDocModule, BrokenPage, BrowseFilterComponent, BrowseItemsComponent, CalendarPipe, ChatInfo, CheckboxComponent, CheckboxControlDesigner, ChecklistControlDesigner, CollapseNavigation, ColorPicker, CombinationPicker, CombinationPickerBody, CombinationPool, CommentsComponent, CompareContextDirective, CompareGroupDirective, CompareGroupsWidget, CompareNameDirective, ComposeFormComponent, ContactsComponent, ConversationComponent, CubeAccumAnalysisWidget, CubeAccumulationChartComponent, CubeAnalysisWidget, CubeChartAnalysisWidget, CubeChartComponent, CubeDocumentsGridComponent, CubeDocumentsTableComponent, CubeDocumentsWidget, CubeFilterComponent, CubeGridComponent, CubeInfo, CubeItemResolveService, CubeMatrixComponent, CubeParallelComponent, CubePerformanceWidget, CubePivotComponent, CubeService, CubeSpreadsheetComponent, CubeSumComponent, CubeViewComponent, CubeWidgetFilterComponent, DEFAULT_POLICY, DRAFT, DashboardComponent, DatasourceService, DateControlDesigner, DateFormatPipe, DateRangeControlDesigner, DateRangePipe, DesignerCubeFilterComponent, DesignerModule, DesignerRef, DifferencePipe, DocumentFactory, DocumentInfo, DocumentInfoComponent, DocumentResolveService, DocumentViewRef, DocumentViewsComponent, DurationFormatPipe, DurationPipe, EnterExitLeft, EnterExitRight, EnterExitTop, ExploreDocumentComponent, ExploreItemImplComponent, ExploreItemsComponent, ExpressionFieldDesigner, FONT_FAMILY, FadeSlideInOut, FieldKind, FileControlDesigner, FileInput, FilterPipe, FilterTagsComponent, FlowViewComponent, FormPipe, FormRef, GuideRef, GuideService, HelpTipComponent, HtmlFieldDesigner, INBOX, IdentityName, InputFieldDesigner, JoinPipe, JsonPipe, L18nPipe, LayoutComponent, ListingRef, LocalizedStringComponent, LocalizedStringControlDesigner, LocalizedStringPipe, LottieAnimation, MailboxService, MapInfo, MatIconAnimate, MaterialModule, NavigationBase, NavigationClose, NavigationEnd, NavigationExpand, NavigationFocus, NavigationMode, NavigationPaneBase, NavigationResize, NavigationStart, NodeRef, NoneComponent, NotificationRef, NotificationsTableComponent, NumberControlDesigner, OpenPolicy, OptionsComponent, POPUP_DATA, PaneRef, PanesRouter, ParamNavigation, PeersPerformanceWidget, PendingResultsWidget, PersonalActivityWidget, PersonalScoreWidget, Popup, PopupRef, PrivilegeDisabledDirective, PrivilegeHiddenDirective, PulseAnimation, QueryParamNavigation, QuickCommentComponent, RadioButtonControlDesigner, RecentsWidget, RecipientResolveService, ReportArgumentsComponent, ReportRef, ReportViewerComponent, ReturnActionComponent, RolePipe, RouterImpl, SanitizeHtmlPipe, SaveChangesDialog, ScheduleViewComponent, SearchInput, SelectControlDesigner, SessionService, ShakeAnimation, SharedModule, SignatureControlDesigner, SlotRouterDirective, SpContainer, StateDirective, StatePipe, StickyToolbar, SubstitutionComponent, SwapAnimation, Tab, TagsComponent, TagsControlDesigner, TasksComponent, TextAreaFieldDesigner, TimeAgoPipe, TimeControlDesigner, TimePicker, TimespanControlDesigner, TimespanInput, ToNowPipe, TooltipDirective, TraceViewComponent, TranslatePipe, TranslateService, TypeAutocomplete, TypeSelect, TypeValuePipe, UsageChartComponent, UsagePivotComponent, UsageReportArgs, UserNamePipe, UtilityRef, VersionCompareComponent, VirtualTabs, WidgetItemComponent, WidgetRef, YesNoControlDesigner, cleanup, getMonthList, isArray, isBoolean, isDate, isFunction, isImage, isMobile, isObject, isPrimitive, isPromise, isString, modelize, playAudio, programName, registerComponents };
|
12335
12332
|
export type { Action, ActionDialogData, AddressChangeEvent, AnalysisSettings, ArgumentsComponent, Attachment, AutocompleteSelectedEvent, AxesMap, AxisClickEvent, AxisPlace, AxisType, AxisValue, BizDocChildConfig, BizDocConfig, BrowseFilterArgs, CalculateFn, CalendarSpec, CanDismiss, ChartType, ChatLauncherFn, ChatSettings, CombinationSelectedEvent, Comment, CommentsSettings, ComponentType, Control, ControlComponent, ControlDesigner, Cube, CubeAxis, CubeData, CubeDataOptions, CubeEntry, CubeIndex, CubeView, Currency, DesignMode, DesignerElementComponent, DesignerInfo, Dimentions, DocumentModel, ElementInfo, ExploreItemComponent, ExploreItemEvent, ExploreOptions, ExploreSettings, ExportEventArgs, FilterType, FirebaseSettings, Folder, FoldersSettings, Form, FormComponent, FormatsSettings, Gender, GoogleMapsSettings, Guide, GuideStep, HeaderModel, InsightComponent, LatLng, ListingComponent, LocalizedString, Location, Log, LogType, ManagedComponent, Notification, NotificationComponent, PaneOptions, PaneResolve, PaneRoute, ParamMap, Pattern$2 as Pattern, PersonInfo, Point$3 as Point, Recipient, RecipientModel, Report, ReportComponent, Role$2 as Role, RouteFn, ScheduledEvent, SchedulerSettings, ScopeType, SelectEvent, Series, SharedConfig, State, SumSettings, TagComponent, Theme, Type, UtilityComponent, ViewMode, Widget, WidgetComponent, configuration };
|