@bizdoc/core 3.6.8 → 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/fesm2022/bizdoc-core.mjs +415 -415
- package/fesm2022/bizdoc-core.mjs.map +1 -1
- package/index.d.ts +191 -198
- package/package.json +1 -1
package/index.d.ts
CHANGED
@@ -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;
|
@@ -1388,7 +1520,7 @@ declare class OptionsComponent implements OnInit, OnDestroy {
|
|
1388
1520
|
readonly separatorKeysCodes: number[];
|
1389
1521
|
/** options ctor */
|
1390
1522
|
private readonly _destroy;
|
1391
|
-
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);
|
1392
1524
|
close(): void;
|
1393
1525
|
revive(): void;
|
1394
1526
|
about(): void;
|
@@ -1418,7 +1550,7 @@ declare class OptionsComponent implements OnInit, OnDestroy {
|
|
1418
1550
|
addGrant(inp: HTMLInputElement, event: MatAutocompleteSelectedEvent): void;
|
1419
1551
|
oooSelected(event: MatAutocompleteSelectedEvent): void;
|
1420
1552
|
ngOnDestroy(): void;
|
1421
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<OptionsComponent,
|
1553
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OptionsComponent, [null, null, null, null, null, null, null, { optional: true; }, null, null, null]>;
|
1422
1554
|
static ɵcmp: i0.ɵɵComponentDeclaration<OptionsComponent, "bizdoc-options", never, { "sectionName": { "alias": "section"; "required": false; }; }, {}, never, never, false, never>;
|
1423
1555
|
}
|
1424
1556
|
|
@@ -3199,138 +3331,6 @@ declare abstract class HomeBase implements OnInit {
|
|
3199
3331
|
static ɵdir: i0.ɵɵDirectiveDeclaration<HomeBase, never, never, {}, {}, never, never, true, never>;
|
3200
3332
|
}
|
3201
3333
|
|
3202
|
-
declare abstract class NavigationBase {
|
3203
|
-
_preventDefault: boolean;
|
3204
|
-
preventDefault(): void;
|
3205
|
-
}
|
3206
|
-
declare class CollapseNavigation extends NavigationBase {
|
3207
|
-
}
|
3208
|
-
declare class BackNavigation extends NavigationBase {
|
3209
|
-
}
|
3210
|
-
declare abstract class NavigationPaneBase<T = any> extends NavigationBase {
|
3211
|
-
private _pane;
|
3212
|
-
constructor(_pane: PaneRef<T>);
|
3213
|
-
get pane(): PaneRef<T>;
|
3214
|
-
}
|
3215
|
-
declare class NavigationStart extends NavigationPaneBase {
|
3216
|
-
}
|
3217
|
-
/** pane fucus change */
|
3218
|
-
declare class NavigationFocus extends NavigationPaneBase {
|
3219
|
-
}
|
3220
|
-
declare class NavigationEnd<T = any> extends NavigationPaneBase<T> {
|
3221
|
-
}
|
3222
|
-
declare class NavigationMode<T = any> extends NavigationPaneBase<T> {
|
3223
|
-
readonly mode: PaneMode;
|
3224
|
-
constructor(mode: PaneMode, pane: PaneRef<T>);
|
3225
|
-
}
|
3226
|
-
declare class NavigationExpand<T = any> extends NavigationPaneBase<T> {
|
3227
|
-
readonly expended: boolean;
|
3228
|
-
constructor(expended: boolean, pane: PaneRef<T>);
|
3229
|
-
}
|
3230
|
-
declare class NavigationResize<T = any> extends NavigationPaneBase<T> {
|
3231
|
-
readonly dimentions: Dimentions;
|
3232
|
-
constructor(dimentions: Dimentions, pane: PaneRef<T>);
|
3233
|
-
}
|
3234
|
-
declare class NavigationClose<T = any> extends NavigationPaneBase<T> {
|
3235
|
-
}
|
3236
|
-
declare class ParamNavigation<T = any> extends NavigationPaneBase<T> {
|
3237
|
-
readonly params: ParamMap;
|
3238
|
-
constructor(params: ParamMap, pane: PaneRef<T>);
|
3239
|
-
}
|
3240
|
-
declare class QueryParamNavigation<T = any> extends NavigationPaneBase<T> {
|
3241
|
-
readonly queryParams: ParamMap;
|
3242
|
-
constructor(queryParams: ParamMap, pane: PaneRef<T>);
|
3243
|
-
}
|
3244
|
-
type PaneMode = 'tab' | 'pane';
|
3245
|
-
interface PaneOptions {
|
3246
|
-
title?: string;
|
3247
|
-
group?: string;
|
3248
|
-
help?: string;
|
3249
|
-
state?: any;
|
3250
|
-
openPolicy?: OpenPolicy;
|
3251
|
-
}
|
3252
|
-
type PaneCommand = 'expand' | 'focus' | 'close' | 'recycle';
|
3253
|
-
/** */
|
3254
|
-
declare class PaneRef<ComponentType = any, DataType = ParamMap> {
|
3255
|
-
id: number;
|
3256
|
-
private _options;
|
3257
|
-
readonly _command$: Subject<PaneCommand>;
|
3258
|
-
/** */
|
3259
|
-
readonly _data$: BehaviorSubject<DataType>;
|
3260
|
-
readonly _params$: BehaviorSubject<ParamMap>;
|
3261
|
-
readonly _queryParams$: BehaviorSubject<ParamMap>;
|
3262
|
-
readonly _events$: Subject<NavigationBase>;
|
3263
|
-
title?: string;
|
3264
|
-
icon?: string;
|
3265
|
-
guide?: string;
|
3266
|
-
pinned: boolean;
|
3267
|
-
badge?: number;
|
3268
|
-
animation?: string;
|
3269
|
-
group?: string;
|
3270
|
-
help?: string;
|
3271
|
-
_expanded?: boolean;
|
3272
|
-
_instance: ComponentType;
|
3273
|
-
_path?: string;
|
3274
|
-
_queryString: string | undefined;
|
3275
|
-
_mode: PaneMode;
|
3276
|
-
readonly _portal: ComponentPortal<any>;
|
3277
|
-
private readonly _injector;
|
3278
|
-
private _expandable;
|
3279
|
-
private _stretchable?;
|
3280
|
-
private _value;
|
3281
|
-
get expandable(): boolean;
|
3282
|
-
get injector(): Injector;
|
3283
|
-
get expanded(): boolean | undefined;
|
3284
|
-
get fullPath(): string;
|
3285
|
-
get instance(): ComponentType;
|
3286
|
-
get data(): DataType;
|
3287
|
-
get params(): ParamMap;
|
3288
|
-
get queryString(): string | undefined;
|
3289
|
-
get queryParams(): ParamMap;
|
3290
|
-
paramsChange(): Observable<ParamMap>;
|
3291
|
-
queryParamsChange(): Observable<ParamMap>;
|
3292
|
-
dataChange(): Observable<DataType>;
|
3293
|
-
resized(): Observable<NavigationResize>;
|
3294
|
-
closeing(): Observable<NavigationClose>;
|
3295
|
-
closed<T = any>(): Observable<T>;
|
3296
|
-
expandedChange(): Observable<boolean | undefined>;
|
3297
|
-
get path(): string | undefined;
|
3298
|
-
get mode(): PaneMode;
|
3299
|
-
get parent(): PaneRef<any, ParamMap> | undefined;
|
3300
|
-
get stretchable(): boolean;
|
3301
|
-
set stretchable(val: boolean);
|
3302
|
-
get dialog(): boolean | undefined;
|
3303
|
-
get dismissable(): boolean | undefined;
|
3304
|
-
get route(): PaneRoute | undefined;
|
3305
|
-
constructor(component: Type$1<any>, injector: Injector, id: number, _options: {
|
3306
|
-
path?: string;
|
3307
|
-
route?: PaneRoute;
|
3308
|
-
title?: string;
|
3309
|
-
group?: string;
|
3310
|
-
guide?: string;
|
3311
|
-
icon?: string;
|
3312
|
-
animation?: string;
|
3313
|
-
help?: string;
|
3314
|
-
mode: PaneMode;
|
3315
|
-
expanded?: boolean;
|
3316
|
-
dialog?: boolean;
|
3317
|
-
stretchable?: boolean;
|
3318
|
-
parent?: PaneRef<any>;
|
3319
|
-
queryString?: string;
|
3320
|
-
data?: DataType;
|
3321
|
-
params?: ParamMap;
|
3322
|
-
queryParams?: ParamMap;
|
3323
|
-
expandable?: boolean;
|
3324
|
-
dismissable?: boolean;
|
3325
|
-
});
|
3326
|
-
decendentOf(pane: PaneRef<any>): boolean;
|
3327
|
-
recycle(): void;
|
3328
|
-
focus(): void;
|
3329
|
-
close(value?: any): void;
|
3330
|
-
expand(): void;
|
3331
|
-
_destroy(): void;
|
3332
|
-
}
|
3333
|
-
|
3334
3334
|
declare class PanesRouter {
|
3335
3335
|
readonly _events$: Subject<NavigationBase>;
|
3336
3336
|
readonly _comm$: Subject<"collapse">;
|
@@ -7019,14 +7019,16 @@ declare class NotificationsService {
|
|
7019
7019
|
}
|
7020
7020
|
|
7021
7021
|
declare abstract class NotificationsComponentBase {
|
7022
|
-
prepare(messages: Message[]): void;
|
7023
|
-
private _uidType;
|
7024
7022
|
private _injector;
|
7025
7023
|
protected _service: NotificationsService;
|
7026
7024
|
protected _session: SessionService;
|
7027
|
-
|
7028
|
-
|
7029
|
-
|
7025
|
+
/**
|
7026
|
+
*
|
7027
|
+
* @param messages
|
7028
|
+
*/
|
7029
|
+
protected prepare(messages: Message[]): void;
|
7030
|
+
private _getComponent;
|
7031
|
+
private _getInjector;
|
7030
7032
|
}
|
7031
7033
|
interface MessageExtra extends Message {
|
7032
7034
|
injector: any;
|
@@ -7047,9 +7049,17 @@ declare class NotificationsTableComponent extends NotificationsComponentBase imp
|
|
7047
7049
|
read(item: Message, read: boolean): void;
|
7048
7050
|
isMuted(item: Message): Observable<boolean>;
|
7049
7051
|
mute(item: Message, mute: boolean): void;
|
7052
|
+
/**
|
7053
|
+
*
|
7054
|
+
* @param item
|
7055
|
+
*/
|
7050
7056
|
delete(item: Message): void;
|
7051
7057
|
isAllSelected(): boolean;
|
7052
7058
|
masterToggle(): void;
|
7059
|
+
/**
|
7060
|
+
*
|
7061
|
+
* @param evt
|
7062
|
+
*/
|
7053
7063
|
openFilter(evt: Event): void;
|
7054
7064
|
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationsTableComponent, never>;
|
7055
7065
|
static ɵcmp: i0.ɵɵComponentDeclaration<NotificationsTableComponent, "bizdoc-notifications-table", never, {}, {}, never, never, false, never>;
|
@@ -7209,14 +7219,20 @@ declare class CubeDocumentsGridComponent implements ReportComponent<Model$9>, On
|
|
7209
7219
|
static ɵcmp: i0.ɵɵComponentDeclaration<CubeDocumentsGridComponent, "ng-component", never, {}, {}, never, never, false, never>;
|
7210
7220
|
}
|
7211
7221
|
|
7222
|
+
declare class NotificationRef<T> {
|
7223
|
+
private _message;
|
7224
|
+
constructor(_message: Message);
|
7225
|
+
get message(): T & Message;
|
7226
|
+
}
|
7227
|
+
|
7212
7228
|
declare class LongRunningTaskNotification implements OnInit {
|
7213
|
-
notification: ReportTask
|
7229
|
+
notification: NotificationRef<ReportTask>;
|
7214
7230
|
private _session;
|
7215
7231
|
private _router;
|
7216
7232
|
report: Report;
|
7217
7233
|
ngOnInit(): void;
|
7218
|
-
open(
|
7219
|
-
constructor(notification: ReportTask
|
7234
|
+
open(_: MouseEvent): void;
|
7235
|
+
constructor(notification: NotificationRef<ReportTask>, _session: SessionService, _router: RouterImpl);
|
7220
7236
|
static ɵfac: i0.ɵɵFactoryDeclaration<LongRunningTaskNotification, never>;
|
7221
7237
|
static ɵcmp: i0.ɵɵComponentDeclaration<LongRunningTaskNotification, "ng-component", never, {}, {}, never, never, false, never>;
|
7222
7238
|
}
|
@@ -7225,27 +7241,24 @@ interface ReportTask extends Message {
|
|
7225
7241
|
value: number;
|
7226
7242
|
}
|
7227
7243
|
|
7228
|
-
declare abstract class NotificationBase {
|
7229
|
-
|
7230
|
-
private _router;
|
7244
|
+
declare abstract class NotificationBase<T extends Message> {
|
7245
|
+
protected _router: RouterImpl;
|
7231
7246
|
protected _session: SessionService;
|
7232
7247
|
protected _translate: TranslateService;
|
7233
|
-
|
7234
|
-
|
7248
|
+
protected _chat: ChatInfo;
|
7249
|
+
notification: NotificationRef<T>;
|
7235
7250
|
protected _formatUserElement(person: PersonInfo): string;
|
7236
7251
|
open(e: MouseEvent): void;
|
7237
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationBase
|
7238
|
-
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>;
|
7239
7254
|
}
|
7240
7255
|
|
7241
7256
|
/** */
|
7242
|
-
declare class TaggedNotification extends NotificationBase implements OnInit {
|
7243
|
-
|
7244
|
-
private _accounts;
|
7257
|
+
declare class TaggedNotification extends NotificationBase<Tagged> implements OnInit {
|
7258
|
+
private readonly _accounts;
|
7245
7259
|
names?: string;
|
7246
7260
|
message: string;
|
7247
7261
|
ngOnInit(): void;
|
7248
|
-
constructor(notification: Tagged, _accounts: AccountService, translate: TranslateService, router: RouterImpl, session: SessionService, chat: ChatInfo);
|
7249
7262
|
static ɵfac: i0.ɵɵFactoryDeclaration<TaggedNotification, never>;
|
7250
7263
|
static ɵcmp: i0.ɵɵComponentDeclaration<TaggedNotification, "bizdoc-notify-tagged", never, {}, {}, never, never, false, never>;
|
7251
7264
|
}
|
@@ -7254,13 +7267,12 @@ interface Tagged extends Message {
|
|
7254
7267
|
}
|
7255
7268
|
|
7256
7269
|
/** */
|
7257
|
-
declare class CommentedNotification extends NotificationBase implements OnInit {
|
7258
|
-
|
7259
|
-
|
7270
|
+
declare class CommentedNotification extends NotificationBase<Commented> implements OnInit {
|
7271
|
+
private readonly _accounts;
|
7272
|
+
count: number;
|
7260
7273
|
names?: string;
|
7261
7274
|
message: string;
|
7262
7275
|
ngOnInit(): void;
|
7263
|
-
constructor(notification: Commented, _accounts: AccountService, translate: TranslateService, router: RouterImpl, session: SessionService, chat: ChatInfo);
|
7264
7276
|
static ɵfac: i0.ɵɵFactoryDeclaration<CommentedNotification, never>;
|
7265
7277
|
static ɵcmp: i0.ɵɵComponentDeclaration<CommentedNotification, "ng-component", never, {}, {}, never, never, false, never>;
|
7266
7278
|
}
|
@@ -7269,12 +7281,10 @@ interface Commented extends Message {
|
|
7269
7281
|
text: string;
|
7270
7282
|
}
|
7271
7283
|
|
7272
|
-
declare class NudgeNotification extends NotificationBase implements OnInit {
|
7273
|
-
notification: Nudge;
|
7284
|
+
declare class NudgeNotification extends NotificationBase<Nudge> implements OnInit {
|
7274
7285
|
message: string;
|
7275
7286
|
expire: dayjs.Dayjs;
|
7276
7287
|
ngOnInit(): void;
|
7277
|
-
constructor(router: RouterImpl, translate: TranslateService, session: SessionService, chat: ChatInfo, notification: Nudge);
|
7278
7288
|
static ɵfac: i0.ɵɵFactoryDeclaration<NudgeNotification, never>;
|
7279
7289
|
static ɵcmp: i0.ɵɵComponentDeclaration<NudgeNotification, "ng-component", never, {}, {}, never, never, false, never>;
|
7280
7290
|
}
|
@@ -7285,9 +7295,9 @@ interface Nudge extends Message {
|
|
7285
7295
|
declare class InviteNotification {
|
7286
7296
|
private _router;
|
7287
7297
|
private _factory;
|
7288
|
-
notification: Invite
|
7298
|
+
notification: NotificationRef<Invite>;
|
7289
7299
|
message: string;
|
7290
|
-
constructor(_router: RouterImpl, _factory: DocumentFactory, session: SessionService, translate: TranslateService, notification: Invite);
|
7300
|
+
constructor(_router: RouterImpl, _factory: DocumentFactory, session: SessionService, translate: TranslateService, notification: NotificationRef<Invite>);
|
7291
7301
|
open(_: MouseEvent): void;
|
7292
7302
|
static ɵfac: i0.ɵɵFactoryDeclaration<InviteNotification, never>;
|
7293
7303
|
static ɵcmp: i0.ɵɵComponentDeclaration<InviteNotification, "ng-component", never, {}, {}, never, never, false, never>;
|
@@ -7297,14 +7307,12 @@ interface Invite extends Message {
|
|
7297
7307
|
due?: Date;
|
7298
7308
|
}
|
7299
7309
|
|
7300
|
-
declare class
|
7301
|
-
|
7310
|
+
declare class ContentMessageNotification extends NotificationBase<ContentMessage> {
|
7311
|
+
private static _tamplateMap;
|
7302
7312
|
private _factory;
|
7303
|
-
|
7304
|
-
|
7305
|
-
|
7306
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ContentNotification, never>;
|
7307
|
-
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>;
|
7308
7316
|
}
|
7309
7317
|
interface ContentMessage<T = any> extends Message {
|
7310
7318
|
content?: T;
|
@@ -7312,8 +7320,8 @@ interface ContentMessage<T = any> extends Message {
|
|
7312
7320
|
}
|
7313
7321
|
|
7314
7322
|
declare class TextNotification {
|
7315
|
-
notification: Text
|
7316
|
-
constructor(notification: Text);
|
7323
|
+
notification: NotificationRef<Text>;
|
7324
|
+
constructor(notification: NotificationRef<Text>);
|
7317
7325
|
static ɵfac: i0.ɵɵFactoryDeclaration<TextNotification, never>;
|
7318
7326
|
static ɵcmp: i0.ɵɵComponentDeclaration<TextNotification, "bizdoc-notify-text", never, {}, {}, never, never, false, never>;
|
7319
7327
|
}
|
@@ -7321,17 +7329,12 @@ interface Text {
|
|
7321
7329
|
text: string;
|
7322
7330
|
}
|
7323
7331
|
|
7324
|
-
declare class CubeAnomalyNotification implements OnInit {
|
7325
|
-
|
7326
|
-
private _ds;
|
7327
|
-
private _session;
|
7328
|
-
private _router;
|
7329
|
-
private _translate;
|
7332
|
+
declare class CubeAnomalyNotification extends NotificationBase<CubeAnomaly> implements OnInit {
|
7333
|
+
private readonly _ds;
|
7330
7334
|
cube: Cube;
|
7331
7335
|
axes: string;
|
7332
7336
|
ngOnInit(): void;
|
7333
|
-
open(
|
7334
|
-
constructor(notification: CubeAnomaly, _ds: DatasourceService, _session: SessionService, _router: RouterImpl, _translate: TranslateService);
|
7337
|
+
open(evt: MouseEvent): void;
|
7335
7338
|
static ɵfac: i0.ɵɵFactoryDeclaration<CubeAnomalyNotification, never>;
|
7336
7339
|
static ɵcmp: i0.ɵɵComponentDeclaration<CubeAnomalyNotification, "ng-component", never, {}, {}, never, never, false, never>;
|
7337
7340
|
}
|
@@ -7343,12 +7346,10 @@ interface CubeAnomaly extends Message {
|
|
7343
7346
|
documentIds: number[];
|
7344
7347
|
}
|
7345
7348
|
|
7346
|
-
declare class EscalatedNotification extends NotificationBase implements OnInit {
|
7347
|
-
|
7348
|
-
private _accounts;
|
7349
|
+
declare class EscalatedNotification extends NotificationBase<Escalated> implements OnInit {
|
7350
|
+
private readonly _accounts;
|
7349
7351
|
name: string;
|
7350
7352
|
ngOnInit(): void;
|
7351
|
-
constructor(router: RouterImpl, notification: Escalated, _accounts: AccountService, translate: TranslateService, session: SessionService, chat: ChatInfo);
|
7352
7353
|
static ɵfac: i0.ɵɵFactoryDeclaration<EscalatedNotification, never>;
|
7353
7354
|
static ɵcmp: i0.ɵɵComponentDeclaration<EscalatedNotification, "bizdoc-notify-escalated", never, {}, {}, never, never, false, never>;
|
7354
7355
|
}
|
@@ -7358,13 +7359,11 @@ interface Escalated extends Message {
|
|
7358
7359
|
duration: number;
|
7359
7360
|
}
|
7360
7361
|
|
7361
|
-
declare class LikedNotification extends NotificationBase implements OnInit {
|
7362
|
-
|
7363
|
-
private _accounts;
|
7362
|
+
declare class LikedNotification extends NotificationBase<Liked> implements OnInit {
|
7363
|
+
private readonly _accounts;
|
7364
7364
|
names?: string;
|
7365
7365
|
message: string;
|
7366
7366
|
ngOnInit(): void;
|
7367
|
-
constructor(notification: Liked, _accounts: AccountService, translate: TranslateService, router: RouterImpl, session: SessionService, chat: ChatInfo);
|
7368
7367
|
static ɵfac: i0.ɵɵFactoryDeclaration<LikedNotification, never>;
|
7369
7368
|
static ɵcmp: i0.ɵɵComponentDeclaration<LikedNotification, "bizdoc-liked-notification", never, {}, {}, never, never, false, never>;
|
7370
7369
|
}
|
@@ -7373,11 +7372,9 @@ interface Liked extends Message {
|
|
7373
7372
|
voted?: number;
|
7374
7373
|
}
|
7375
7374
|
|
7376
|
-
declare class StateChangedNotification extends NotificationBase implements OnInit {
|
7377
|
-
notification: StateChanged;
|
7375
|
+
declare class StateChangedNotification extends NotificationBase<StateChanged> implements OnInit {
|
7378
7376
|
form: Form;
|
7379
7377
|
ngOnInit(): void;
|
7380
|
-
constructor(notification: StateChanged, session: SessionService, router: RouterImpl, translate: TranslateService, chat: ChatInfo);
|
7381
7378
|
static ɵfac: i0.ɵɵFactoryDeclaration<StateChangedNotification, never>;
|
7382
7379
|
static ɵcmp: i0.ɵɵComponentDeclaration<StateChangedNotification, "ng-component", never, {}, {}, never, never, false, never>;
|
7383
7380
|
}
|
@@ -7386,18 +7383,14 @@ interface StateChanged extends Message {
|
|
7386
7383
|
}
|
7387
7384
|
|
7388
7385
|
declare class UpcomingEventNotification implements OnInit {
|
7389
|
-
notification:
|
7386
|
+
notification: NotificationRef<any>;
|
7390
7387
|
private _router;
|
7391
7388
|
duration: dayjs.Dayjs;
|
7392
7389
|
ngOnInit(): void;
|
7393
|
-
open(
|
7394
|
-
constructor(notification: UpcommingEvent, _router: RouterImpl);
|
7390
|
+
open(_: MouseEvent): void;
|
7395
7391
|
static ɵfac: i0.ɵɵFactoryDeclaration<UpcomingEventNotification, never>;
|
7396
7392
|
static ɵcmp: i0.ɵɵComponentDeclaration<UpcomingEventNotification, "ng-component", never, {}, {}, never, never, false, never>;
|
7397
7393
|
}
|
7398
|
-
interface UpcommingEvent extends Message {
|
7399
|
-
starting: Date;
|
7400
|
-
}
|
7401
7394
|
|
7402
7395
|
declare class ScheduleViewComponent implements OnChanges, AfterViewInit {
|
7403
7396
|
private _mailbox;
|
@@ -9302,7 +9295,7 @@ declare class MaterialModule {
|
|
9302
9295
|
declare class SharedModule {
|
9303
9296
|
static forChild(config?: SharedConfig): ModuleWithProviders<SharedModule>;
|
9304
9297
|
static ɵfac: i0.ɵɵFactoryDeclaration<SharedModule, never>;
|
9305
|
-
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]>;
|
9306
9299
|
static ɵinj: i0.ɵɵInjectorDeclaration<SharedModule>;
|
9307
9300
|
}
|
9308
9301
|
|
@@ -12335,5 +12328,5 @@ declare class CubeItemResolveService {
|
|
12335
12328
|
static ɵprov: i0.ɵɵInjectableDeclaration<CubeItemResolveService>;
|
12336
12329
|
}
|
12337
12330
|
|
12338
|
-
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 };
|
12339
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 };
|