@bizdoc/core 4.0.1 → 5.0.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.
@@ -15,7 +15,7 @@ import { MatDialog, MatDialogRef } from '@angular/material/dialog';
15
15
  import * as i3 from '@angular/cdk/overlay';
16
16
  import { Overlay, OverlayRef, CdkScrollable, ComponentType as ComponentType$2 } from '@angular/cdk/overlay';
17
17
  import * as i4 from '@angular/cdk/portal';
18
- import { ComponentType as ComponentType$1, ComponentPortal, Portal } from '@angular/cdk/portal';
18
+ import { ComponentType as ComponentType$1, ComponentPortal, CdkPortalOutletAttachedRef, Portal } from '@angular/cdk/portal';
19
19
  import { HttpClient } from '@angular/common/http';
20
20
  import * as _angular_cdk_bidi from '@angular/cdk/bidi';
21
21
  import { Direction, Directionality } from '@angular/cdk/bidi';
@@ -76,7 +76,6 @@ import * as i33 from '@angular/material/checkbox';
76
76
  import { MatCheckbox, MatCheckboxChange } from '@angular/material/checkbox';
77
77
  import * as i30 from '@angular/material/slide-toggle';
78
78
  import { MatSlideToggle } from '@angular/material/slide-toggle';
79
- import EventEmitter$1 from 'events';
80
79
  import { NumberFormatOptions, Internationalization } from '@syncfusion/ej2-base';
81
80
  import * as i1$4 from '@syncfusion/ej2-angular-grids';
82
81
  import { Grid, GroupSettingsModel, PageSettingsModel, RowSelectEventArgs } from '@syncfusion/ej2-angular-grids';
@@ -382,7 +381,7 @@ interface Message<T = any> {
382
381
  content?: T;
383
382
  contentType: string;
384
383
  }
385
- declare type NotificationType = 'Commented' | 'CubeAnomaly' | 'Escalated' | 'Liked' | 'StateChanged' | 'Nudge' | 'Invite' | 'TextMessage' | 'ContentMessage' | 'UpcomingEvent' | 'JobProgress' | 'Tagged';
384
+ declare type NotificationType = 'Commented' | 'CubeAnomaly' | 'Escalated' | 'Liked' | 'StateChanged' | 'Nudge' | 'Invite' | 'TextMessage' | 'ContentMessage' | 'UpcomingEvent' | 'LongRunningTask' | 'Tagged';
386
385
  interface State {
387
386
  shape?: string;
388
387
  name: string;
@@ -508,6 +507,7 @@ interface Tag$1 {
508
507
  color?: string;
509
508
  backgroundColor?: string;
510
509
  system?: boolean;
510
+ icon?: string;
511
511
  }
512
512
  interface FieldInfo {
513
513
  controlType: string;
@@ -1555,7 +1555,7 @@ declare class OptionsComponent implements OnInit, OnDestroy {
1555
1555
  save(): void;
1556
1556
  private _toggle;
1557
1557
  toggleSound(): void;
1558
- display: (item: PersonInfo) => string | null;
1558
+ displayName: (item: PersonInfo) => string;
1559
1559
  addTag(event: MatChipInputEvent): void;
1560
1560
  removeTag(tag: Tag$1): void;
1561
1561
  /**
@@ -1585,7 +1585,7 @@ declare class NodeRef {
1585
1585
  declare class NoneComponent {
1586
1586
  readonly isMobile: boolean;
1587
1587
  title: string;
1588
- subtitle: string;
1588
+ subtitle?: string | null;
1589
1589
  icon: string;
1590
1590
  static ɵfac: i0.ɵɵFactoryDeclaration<NoneComponent, never>;
1591
1591
  static ɵcmp: i0.ɵɵComponentDeclaration<NoneComponent, "bizdoc-none", never, { "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; }, {}, never, never, false, never>;
@@ -1707,8 +1707,8 @@ interface InsightComponent<TOptions = any> {
1707
1707
  declare class LocalizedStringField implements ControlComponent<any>, OnInit {
1708
1708
  appearance: MatFormFieldAppearance;
1709
1709
  mode: ViewMode;
1710
- placeholder?: string;
1711
- required?: boolean;
1710
+ placeholder: string;
1711
+ required: boolean;
1712
1712
  readonly control: FormControl<any>;
1713
1713
  focus(): void;
1714
1714
  ngOnInit(): void;
@@ -1907,9 +1907,10 @@ interface CubeAxisModel {
1907
1907
  indexable?: boolean;
1908
1908
  sensitive?: boolean;
1909
1909
  resourceType?: string;
1910
- selectionMode?: 'Single' | 'Pattern' | 'Multiple' | 'Search' | 'None';
1910
+ selectionMode?: SelectionMode$1;
1911
1911
  descendentOf?: string;
1912
1912
  }
1913
+ type SelectionMode$1 = 'Single' | 'Pattern' | 'Multiple' | 'Search' | 'None';
1913
1914
  type AnomalyPolicy = 'Positions' | 'Recipients';
1914
1915
  interface CubePatternModel {
1915
1916
  title: string;
@@ -2028,7 +2029,10 @@ declare class SystemService {
2028
2029
  datatypes(): Observable<DataTypeInfo[]>;
2029
2030
  save(form: Form): Observable<number>;
2030
2031
  constructor(_http: HttpClient);
2031
- typegroups(): Observable<ElementFamily[]>;
2032
+ typegroups(): Observable<{
2033
+ groups: ElementFamily[];
2034
+ defaultgroup: DataTypeInfo[];
2035
+ }>;
2032
2036
  static ɵfac: i0.ɵɵFactoryDeclaration<SystemService, never>;
2033
2037
  static ɵprov: i0.ɵɵInjectableDeclaration<SystemService>;
2034
2038
  }
@@ -2122,7 +2126,7 @@ declare abstract class OptionsControlField {
2122
2126
  private _ds;
2123
2127
  abstract readonly control: FormControl;
2124
2128
  dataType?: string;
2125
- required?: boolean;
2129
+ required: boolean;
2126
2130
  options?: {
2127
2131
  key: string;
2128
2132
  value: LocalizedString;
@@ -2137,6 +2141,7 @@ declare abstract class OptionsControlDesigner {
2137
2141
  private _service;
2138
2142
  readonly _typeRequired: (control: AbstractControl) => ValidationErrors | null;
2139
2143
  datatypes: ElementFamily[];
2144
+ defaultgroup: ElementInfo[];
2140
2145
  constructor(_service: SystemService);
2141
2146
  static ɵfac: i0.ɵɵFactoryDeclaration<OptionsControlDesigner, never>;
2142
2147
  static ɵdir: i0.ɵɵDirectiveDeclaration<OptionsControlDesigner, never, never, {}, {}, never, never, true, never>;
@@ -2144,12 +2149,16 @@ declare abstract class OptionsControlDesigner {
2144
2149
 
2145
2150
  declare class SelectControlDesigner extends OptionsControlDesigner implements ControlDesigner<SelectModel> {
2146
2151
  private _fb;
2147
- readonly form: _angular_forms.FormGroup<{
2148
- label: _angular_forms.FormControl<null>;
2149
- placeholder: _angular_forms.FormControl<null>;
2150
- autocomplete: _angular_forms.FormControl<null>;
2151
- multiple: _angular_forms.FormControl<null>;
2152
- dataType: _angular_forms.FormControl<null>;
2152
+ readonly form: FormGroup<{
2153
+ label: FormControl<null>;
2154
+ placeholder: FormControl<null>;
2155
+ autocomplete: FormControl<null>;
2156
+ multiple: FormControl<null>;
2157
+ dataType: FormControl<null>;
2158
+ options: _angular_forms.FormArray<FormGroup<{
2159
+ key: FormControl<string>;
2160
+ value: FormControl<LocalizedString>;
2161
+ }>>;
2153
2162
  }>;
2154
2163
  model: SelectModel;
2155
2164
  constructor(service: SystemService, _fb: FormBuilder);
@@ -2380,10 +2389,10 @@ declare class TimespanInput implements MatFormFieldControl<string>, ControlValue
2380
2389
  declare class TimespanField implements ControlComponent, OnInit {
2381
2390
  appearance: MatFormFieldAppearance;
2382
2391
  mode: ViewMode;
2383
- placeholder?: string;
2392
+ placeholder: string;
2384
2393
  label?: string;
2385
2394
  hint?: string;
2386
- required?: boolean;
2395
+ required: boolean;
2387
2396
  input: TimespanInput;
2388
2397
  readonly control: FormControl<any>;
2389
2398
  focus(): void;
@@ -2449,7 +2458,7 @@ declare class AceInput implements MatFormFieldControl<string>, ControlValueAcces
2449
2458
  declare class ExpressionField implements ControlComponent, OnInit {
2450
2459
  ngOnInit(): void;
2451
2460
  mode: ViewMode;
2452
- placeholder?: string;
2461
+ placeholder: string;
2453
2462
  name: string;
2454
2463
  label?: string;
2455
2464
  required?: boolean;
@@ -2532,11 +2541,15 @@ interface YesNoModel {
2532
2541
  declare class ChecklistControlDesigner extends OptionsControlDesigner implements ControlDesigner<ChecklistModel> {
2533
2542
  private _fb;
2534
2543
  model: ChecklistModel;
2535
- readonly form: _angular_forms.FormGroup<{
2536
- label: _angular_forms.FormControl<null>;
2537
- multiple: _angular_forms.FormControl<boolean | null>;
2538
- dataType: _angular_forms.FormControl<null>;
2539
- hint: _angular_forms.FormControl<null>;
2544
+ readonly form: FormGroup<{
2545
+ label: FormControl<null>;
2546
+ multiple: FormControl<boolean | null>;
2547
+ dataType: FormControl<null>;
2548
+ hint: FormControl<null>;
2549
+ options: _angular_forms.FormArray<FormGroup<{
2550
+ key: FormControl<string>;
2551
+ value: FormControl<LocalizedString>;
2552
+ }>>;
2540
2553
  }>;
2541
2554
  constructor(service: SystemService, _fb: FormBuilder);
2542
2555
  onBind(model: ChecklistModel): void;
@@ -2557,10 +2570,14 @@ interface ChecklistModel {
2557
2570
 
2558
2571
  declare class RadioButtonControlDesigner extends OptionsControlDesigner implements ControlDesigner<RadioButtonModel> {
2559
2572
  private _fb;
2560
- readonly form: _angular_forms.FormGroup<{
2561
- label: _angular_forms.FormControl<null>;
2562
- dataType: _angular_forms.FormControl<null>;
2563
- hint: _angular_forms.FormControl<null>;
2573
+ readonly form: FormGroup<{
2574
+ label: FormControl<null>;
2575
+ dataType: FormControl<null>;
2576
+ hint: FormControl<null>;
2577
+ options: _angular_forms.FormArray<FormGroup<{
2578
+ key: FormControl<string>;
2579
+ value: FormControl<LocalizedString>;
2580
+ }>>;
2564
2581
  }>;
2565
2582
  model: RadioButtonModel;
2566
2583
  constructor(service: SystemService, _fb: FormBuilder);
@@ -2629,7 +2646,7 @@ declare class TypeAutocomplete implements MatFormFieldControl<string | null>, Do
2629
2646
  private _onTouched;
2630
2647
  readonly _control: FormControl<any>;
2631
2648
  readonly stateChanges: Subject<void>;
2632
- _items$: Observable<KeyValue$1[]>;
2649
+ _items$: Observable<KeyValue$2[]>;
2633
2650
  _column?: FieldInfo;
2634
2651
  private _configuration;
2635
2652
  inputElement: ElementRef;
@@ -2650,7 +2667,7 @@ declare class TypeAutocomplete implements MatFormFieldControl<string | null>, Do
2650
2667
  get empty(): boolean;
2651
2668
  get shouldLabelFloat(): boolean;
2652
2669
  get required(): boolean;
2653
- set required(req: boolean);
2670
+ set required(req: boolean | string | null | undefined);
2654
2671
  get disabled(): boolean;
2655
2672
  set disabled(value: boolean);
2656
2673
  errorState: boolean;
@@ -2680,7 +2697,7 @@ declare class TypeAutocomplete implements MatFormFieldControl<string | null>, Do
2680
2697
  static ɵfac: i0.ɵɵFactoryDeclaration<TypeAutocomplete, [{ optional: true; self: true; }, null, null, null, null]>;
2681
2698
  static ɵcmp: i0.ɵɵComponentDeclaration<TypeAutocomplete, "bizdoc-autocomplete", never, { "_type": { "alias": "type"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "text": { "alias": "text"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "value": { "alias": "value"; "required": false; }; "minimumChars": { "alias": "minimumChars"; "required": false; }; "textFormControlName": { "alias": "textFormControlName"; "required": false; }; "textFormControl": { "alias": "textFormControl"; "required": false; }; }, { "textChange": "textChange"; "optionSelected": "optionSelected"; }, never, never, false, never>;
2682
2699
  }
2683
- interface KeyValue$1 {
2700
+ interface KeyValue$2 {
2684
2701
  key: any;
2685
2702
  value: any;
2686
2703
  }
@@ -2690,7 +2707,6 @@ interface AutocompleteSelectedEvent {
2690
2707
  }
2691
2708
 
2692
2709
  declare class AutocompleteField implements ControlComponent, OnInit, OnDestroy {
2693
- private _ds;
2694
2710
  appearance: MatFormFieldAppearance;
2695
2711
  subscriptSizing: SubscriptSizing;
2696
2712
  set dense(val: boolean);
@@ -2700,13 +2716,12 @@ declare class AutocompleteField implements ControlComponent, OnInit, OnDestroy {
2700
2716
  input: TypeAutocomplete;
2701
2717
  value?: string;
2702
2718
  private readonly _destroy;
2703
- constructor(_ds: DatasourceService);
2704
2719
  mode: ViewMode;
2705
2720
  multiple?: boolean;
2706
- placeholder?: string;
2721
+ placeholder: string;
2707
2722
  dataType: string;
2708
2723
  label?: string;
2709
- required?: boolean;
2724
+ required: boolean;
2710
2725
  ngOnInit(): void;
2711
2726
  focus(): void;
2712
2727
  ngOnDestroy(): void;
@@ -2795,9 +2810,9 @@ declare class LocalizedStringComponent implements OnInit, ControlValueAccessor,
2795
2810
  setDisabledState?(isDisabled: boolean): void;
2796
2811
  get value(): string | LocalizedString | undefined;
2797
2812
  set value(val: string);
2798
- placeholder: string;
2799
- get required(): boolean;
2800
- set required(req: boolean);
2813
+ placeholder?: string | null;
2814
+ get required(): boolean | string;
2815
+ set required(req: boolean | string);
2801
2816
  get disabled(): boolean;
2802
2817
  set disabled(value: boolean);
2803
2818
  maxlength: number;
@@ -3064,26 +3079,27 @@ declare class DesignerCubeFilterComponent implements OnChanges, OnDestroy {
3064
3079
  readonly pattern: RegExp;
3065
3080
  cube: ElementModel;
3066
3081
  form: FormGroup;
3067
- readonly sources: {
3068
- [axis: string]: Observable<{
3069
- [key: string]: any;
3070
- }>;
3071
- };
3082
+ private readonly _sources;
3072
3083
  private readonly _decendents;
3073
3084
  private readonly _ancestors;
3074
3085
  private readonly _destroy;
3075
- ngOnChanges(_changes: SimpleChanges): void;
3076
3086
  /** filter ctor */
3077
3087
  constructor(_service: CubeService, _ref: DesignerRef, _fb: FormBuilder);
3078
- displayValue(val: {
3088
+ ngOnChanges(_changes: SimpleChanges): void;
3089
+ getType(name: string): Observable<{
3079
3090
  key: string;
3080
3091
  value: any;
3081
- } | string): any;
3092
+ }[]>;
3093
+ displayValue(val: KeyValue$1 | string): any;
3082
3094
  change(axis: string, evt: MatAutocompleteSelectedEvent): void;
3083
3095
  ngOnDestroy(): void;
3084
3096
  static ɵfac: i0.ɵɵFactoryDeclaration<DesignerCubeFilterComponent, never>;
3085
3097
  static ɵcmp: i0.ɵɵComponentDeclaration<DesignerCubeFilterComponent, "bizdoc-designer-cube-filter", never, { "cube": { "alias": "cube"; "required": false; }; "form": { "alias": "form"; "required": false; }; }, {}, never, never, false, never>;
3086
3098
  }
3099
+ interface KeyValue$1 {
3100
+ key: string;
3101
+ value: any;
3102
+ }
3087
3103
 
3088
3104
  declare class ListingRef {
3089
3105
  private _provider;
@@ -3469,7 +3485,11 @@ declare class BrowseFilterComponent implements OnInit, AfterViewInit, OnDestroy
3469
3485
  private _accounts;
3470
3486
  private _config;
3471
3487
  readonly pattern: RegExp;
3472
- values: BrowseFilterArgs;
3488
+ private _values;
3489
+ private _axes;
3490
+ set values(values: BrowseFilterArgs);
3491
+ get values(): BrowseFilterArgs;
3492
+ get axes(): AxesMap;
3473
3493
  folderId?: string;
3474
3494
  exclude?: string[];
3475
3495
  readonly valuesChange: EventEmitter<BrowseFilterArgs>;
@@ -3501,10 +3521,9 @@ declare class BrowseFilterComponent implements OnInit, AfterViewInit, OnDestroy
3501
3521
  constructor(_fb: FormBuilder, _session: SessionService, _mailbox: MailboxService, _accounts: AccountService, _config: BizDocConfig);
3502
3522
  ngOnInit(): void;
3503
3523
  ngAfterViewInit(): void;
3504
- change(axis: string, evt: MatAutocompleteSelectedEvent): void;
3505
3524
  clearSender(): void;
3506
3525
  axesChange(axes: AxesMap): void;
3507
- displayFn(person: PersonInfo): string | undefined;
3526
+ displayName(person: PersonInfo): string;
3508
3527
  drop(evt: CdkDragDrop<string, any>): void;
3509
3528
  senderSelected(e: MatAutocompleteSelectedEvent): void;
3510
3529
  focus(): void;
@@ -3839,26 +3858,26 @@ declare class EditInputComponent implements AfterViewInit {
3839
3858
  private _cd;
3840
3859
  readonly toolbarSettings: ToolbarSettingsModel;
3841
3860
  private _text?;
3842
- private _originalText;
3861
+ private _originalText?;
3843
3862
  get text(): string | null | undefined;
3844
3863
  placeholder: string;
3845
- set text(value: string);
3846
- set image(value: string);
3864
+ set text(value: string | null | undefined);
3865
+ set image(value: string | undefined);
3847
3866
  mode: 'html' | 'text';
3848
3867
  private _resource?;
3849
3868
  get resource(): {
3850
3869
  [key: string]: any;
3851
- } | undefined;
3870
+ } | null | undefined;
3852
3871
  set resource(value: {
3853
3872
  [key: string]: any;
3854
- });
3873
+ } | null | undefined);
3855
3874
  disabled: boolean;
3856
3875
  private _autofocus;
3857
3876
  get autofocus(): boolean;
3858
3877
  set autofocus(value: boolean);
3859
3878
  cache: string;
3860
3879
  _image?: string;
3861
- private _originalImage;
3880
+ private _originalImage?;
3862
3881
  readonly change: EventEmitter<string>;
3863
3882
  readonly onOk: EventEmitter<EditTextEvent>;
3864
3883
  readonly onFocus: EventEmitter<any>;
@@ -3869,7 +3888,7 @@ declare class EditInputComponent implements AfterViewInit {
3869
3888
  ngAfterViewInit(): void;
3870
3889
  _key(evt: KeyboardEvent): void;
3871
3890
  private _submit;
3872
- _textChange(evt: KeyboardEvent): void;
3891
+ _textChange(evt: InputEvent): void;
3873
3892
  _htmlChange(evt: ChangeEventArgs): void;
3874
3893
  _toggleHtml(): void;
3875
3894
  _ok(): void;
@@ -4007,7 +4026,7 @@ declare class ComposeFormComponent implements OnDestroy, OnInit, OnChanges {
4007
4026
  dirty: boolean;
4008
4027
  readonly dirtyChange: EventEmitter<boolean>;
4009
4028
  valid: boolean;
4010
- page: string | number;
4029
+ page?: string | number;
4011
4030
  readonly validChange: EventEmitter<boolean>;
4012
4031
  readonly saved: EventEmitter<void>;
4013
4032
  mode: ViewMode;
@@ -4329,7 +4348,7 @@ declare class CopyDialog implements OnInit, OnDestroy {
4329
4348
  /** copy ctor */
4330
4349
  constructor(_service: MailboxService, dialogRef: MatDialogRef<CopyDialog>);
4331
4350
  ngOnInit(): void;
4332
- display(item: HeaderModel): string | null;
4351
+ display(item: HeaderModel): string;
4333
4352
  select(evt: MatAutocompleteSelectedEvent): void;
4334
4353
  ngOnDestroy(): void;
4335
4354
  static ɵfac: i0.ɵɵFactoryDeclaration<CopyDialog, never>;
@@ -4383,8 +4402,8 @@ declare class CubeMatrixComponent implements OnChanges {
4383
4402
  indexAt?: AxisType;
4384
4403
  placeAt?: AxisPlace;
4385
4404
  scope?: ScopeType;
4386
- private _sum;
4387
- set sum(val: SumSettings | SumSettings[]);
4405
+ private _sum?;
4406
+ set sum(val: SumSettings | SumSettings[] | undefined);
4388
4407
  filters: AxesMap;
4389
4408
  loading: boolean;
4390
4409
  private _interactive;
@@ -4576,7 +4595,7 @@ declare class OverlayFormComponent implements OnInit, OnDestroy {
4576
4595
  declare class LocalizedStringPipe implements PipeTransform {
4577
4596
  private _session;
4578
4597
  constructor(_session: SessionService);
4579
- transform(value?: LocalizedString, ...args: any[]): string | null;
4598
+ transform(value?: LocalizedString | null, ...args: any[]): string;
4580
4599
  static ɵfac: i0.ɵɵFactoryDeclaration<LocalizedStringPipe, never>;
4581
4600
  static ɵpipe: i0.ɵɵPipeDeclaration<LocalizedStringPipe, "localizedString", false>;
4582
4601
  }
@@ -4645,6 +4664,7 @@ declare class BoxFormComponent implements FormComponent<any> {
4645
4664
  readonly form: FormGroup<{}>;
4646
4665
  mode: ViewMode;
4647
4666
  onBind(data: DocumentModel<any>, version?: any): void;
4667
+ formOf(name: string): FormGroup;
4648
4668
  controlattached(group: FormGroup, data: any, field: FieldModel, componentRef: ComponentRef<ControlComponent>): void;
4649
4669
  static ɵfac: i0.ɵɵFactoryDeclaration<BoxFormComponent, never>;
4650
4670
  static ɵcmp: i0.ɵɵComponentDeclaration<BoxFormComponent, "ng-component", never, {}, {}, never, never, false, never>;
@@ -5019,7 +5039,9 @@ declare class ContactsComponent implements OnInit, OnDestroy {
5019
5039
 
5020
5040
  /** */
5021
5041
  declare class CheckboxComponent {
5022
- checked: boolean;
5042
+ private _checked?;
5043
+ set checked(value: boolean | string | null | undefined);
5044
+ get checked(): boolean | string | null | undefined;
5023
5045
  color: ThemePalette;
5024
5046
  icon: 'switch' | 'checkbox';
5025
5047
  static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent, never>;
@@ -5082,18 +5104,19 @@ interface ExploreEvent$1 {
5082
5104
  index?: string;
5083
5105
  }
5084
5106
 
5107
+ type PeriodPolicy = 'Strict' | 'Fish';
5085
5108
  declare class CubeSumComponent implements OnChanges {
5086
5109
  private _ds;
5087
5110
  private _service;
5088
5111
  private _sb;
5089
5112
  private _session;
5090
5113
  xAxis: string;
5091
- periodPolicy?: 'Strict' | 'Fish';
5092
- parentAxis: string;
5114
+ periodPolicy?: PeriodPolicy;
5115
+ parentAxis?: string;
5093
5116
  filters: AxesMap;
5094
5117
  cube: string;
5095
- indices: string[] | string;
5096
- scope: ScopeType;
5118
+ indices?: string[] | string;
5119
+ scope?: ScopeType;
5097
5120
  readonly onExplore: EventEmitter<ExploreEvent>;
5098
5121
  back: boolean;
5099
5122
  forward: boolean;
@@ -5107,7 +5130,7 @@ declare class CubeSumComponent implements OnChanges {
5107
5130
  loading: boolean;
5108
5131
  readonly Math: Math;
5109
5132
  private _cube;
5110
- private _parentAxis;
5133
+ private _parentAxis?;
5111
5134
  private _results;
5112
5135
  private _scoperesults;
5113
5136
  private _scope;
@@ -5188,7 +5211,7 @@ declare abstract class CubeBase<O extends Options$4> implements InsightComponent
5188
5211
  originalAxes: AxesMap;
5189
5212
  alternate: Cube[];
5190
5213
  cube: Cube;
5191
- hasdata: boolean;
5214
+ hasData: boolean;
5192
5215
  title?: string;
5193
5216
  private _consolidatedAxes;
5194
5217
  constructor(_viewRef: DocumentViewRef<O>, _service: CubeService, _session: SessionService, _none?: boolean | undefined);
@@ -5215,7 +5238,7 @@ interface Options$4 {
5215
5238
  declare class CubeParallelViewComponent extends CubeBase<ParallelSettingsModel> {
5216
5239
  private _router;
5217
5240
  xAxis: string | string[];
5218
- series?: string | string[];
5241
+ series: string | string[];
5219
5242
  indices?: string | string[];
5220
5243
  chartType?: SparklineType;
5221
5244
  size: number;
@@ -5308,7 +5331,7 @@ declare class CubeDocumentSumComponent extends CubeBase<SumSettingsModel> implem
5308
5331
  private _router;
5309
5332
  primaryAxis: CubeAxis;
5310
5333
  parentAxis?: string;
5311
- periodPolicy?: string;
5334
+ periodPolicy?: PeriodPolicy;
5312
5335
  indices?: string[] | string;
5313
5336
  selectedAxis: string | number;
5314
5337
  alternateAxes: (string | number)[];
@@ -5774,7 +5797,7 @@ declare class CombinationPool implements OnInit, OnDestroy {
5774
5797
  private _fb;
5775
5798
  private _session;
5776
5799
  form: FormGroup;
5777
- appearance?: MatFormFieldAppearance;
5800
+ appearance: MatFormFieldAppearance;
5778
5801
  cube: string;
5779
5802
  model: {
5780
5803
  [axis: string]: (string | number);
@@ -5954,7 +5977,7 @@ declare class IdentityName implements OnChanges {
5954
5977
  declare class SanitizeHtmlPipe implements PipeTransform {
5955
5978
  private _sanitizer;
5956
5979
  constructor(_sanitizer: DomSanitizer);
5957
- transform(value: string): SafeHtml;
5980
+ transform(value: string | null | undefined): SafeHtml;
5958
5981
  static ɵfac: i0.ɵɵFactoryDeclaration<SanitizeHtmlPipe, never>;
5959
5982
  static ɵpipe: i0.ɵɵPipeDeclaration<SanitizeHtmlPipe, "sanitizeHtml", false>;
5960
5983
  }
@@ -5992,7 +6015,7 @@ declare class FormPipe implements PipeTransform {
5992
6015
  }
5993
6016
 
5994
6017
  declare class FilterPipe implements PipeTransform {
5995
- transform(array: any, field: string, value: string): any[] | undefined;
6018
+ transform(array: any, field: string, value?: any): any[] | undefined;
5996
6019
  static ɵfac: i0.ɵɵFactoryDeclaration<FilterPipe, never>;
5997
6020
  static ɵpipe: i0.ɵɵPipeDeclaration<FilterPipe, "filterBy", false>;
5998
6021
  }
@@ -6026,7 +6049,7 @@ declare class TaggingPipe implements PipeTransform, OnDestroy {
6026
6049
  private _router;
6027
6050
  private _me;
6028
6051
  constructor(_element: ElementRef<HTMLElement>, _sanitizer: DomSanitizer, _chat: ChatInfo, _session: SessionService, _translate: TranslateService, _router: RouterImpl);
6029
- transform(text: string, resource?: {
6052
+ transform(text: string | null | undefined, resource?: {
6030
6053
  [key: string]: any;
6031
6054
  }, group?: string): SafeHtml | undefined;
6032
6055
  private _click;
@@ -6166,14 +6189,14 @@ declare class AddressInput implements MatFormFieldControl<string>, ControlValueA
6166
6189
  private _value;
6167
6190
  private _onChange;
6168
6191
  private _onTouched;
6169
- _addresses: google.maps.places.QueryAutocompletePrediction[];
6192
+ _addresses: any[];
6170
6193
  readonly control: FormControl<any>;
6171
6194
  readonly stateChanges: Subject<void>;
6172
6195
  readonly id: string;
6173
6196
  inputElement: ElementRef;
6174
6197
  readonly optionSelected: EventEmitter<AddressChangeEvent>;
6175
6198
  debounce: number;
6176
- location?: google.maps.LatLng;
6199
+ location?: LatLng;
6177
6200
  country?: string | string[];
6178
6201
  get placeholder(): string;
6179
6202
  set placeholder(plh: string);
@@ -6198,11 +6221,12 @@ declare class AddressInput implements MatFormFieldControl<string>, ControlValueA
6198
6221
  private _setValue;
6199
6222
  onFocus(): void;
6200
6223
  onBlur(): void;
6201
- displayFn(address: google.maps.places.QueryAutocompletePrediction | string): string;
6224
+ displayFn(address: any | string): any;
6202
6225
  selected(e: MatAutocompleteSelectedEvent): void;
6203
6226
  private readonly _destroy;
6204
6227
  constructor(ngControl: NgControl, _fm: FocusMonitor, _elRef: ElementRef<HTMLElement>);
6205
6228
  focus(): void;
6229
+ _(): Promise<void>;
6206
6230
  ngOnInit(): void;
6207
6231
  ngOnDestroy(): void;
6208
6232
  static ɵfac: i0.ɵɵFactoryDeclaration<AddressInput, [{ optional: true; self: true; }, null, null]>;
@@ -6249,8 +6273,9 @@ declare class FileInput implements MatFormFieldControl<number | number[]>, Contr
6249
6273
  private _value?;
6250
6274
  _items: AttachmentExtra[];
6251
6275
  _draft: boolean | undefined;
6252
- get multiple(): boolean;
6253
- set multiple(value: boolean);
6276
+ get draft(): boolean | undefined;
6277
+ get multiple(): boolean | null | string | undefined;
6278
+ set multiple(value: boolean | null | string | undefined);
6254
6279
  accept: null;
6255
6280
  icon: string;
6256
6281
  registerOnChange(fn: any): void;
@@ -6264,7 +6289,7 @@ declare class FileInput implements MatFormFieldControl<number | number[]>, Contr
6264
6289
  get empty(): boolean;
6265
6290
  shouldLabelFloat: boolean;
6266
6291
  get required(): boolean;
6267
- set required(req: boolean);
6292
+ set required(req: boolean | undefined | null);
6268
6293
  get disabled(): boolean;
6269
6294
  set disabled(value: boolean);
6270
6295
  errorState: boolean;
@@ -6276,11 +6301,11 @@ declare class FileInput implements MatFormFieldControl<number | number[]>, Contr
6276
6301
  private readonly _pendingInputChange;
6277
6302
  constructor(_dropableElement: ElementRef, _mailbox: MailboxService, _sanitizer: DomSanitizer, _attachmentInfo: AttachmentInfo, _translate: TranslateService, _session: SessionService, _sb: PromptService, ngControl: NgControl, _model: RecipientModel<any>);
6278
6303
  ngOnInit(): void;
6279
- _handleDocumentDrop(event: KeyboardEvent): void;
6280
- _handleDrop(event: DragEvent): void;
6281
- _handleEnter(event: DragEvent): void;
6282
- _handleLeave(event: DragEvent): void;
6283
- _handleOver(event: DragEvent): void;
6304
+ _handleDocumentDrop(event: Event): void;
6305
+ _handleDrop(event: Event): void;
6306
+ _handleEnter(event: Event): void;
6307
+ _handleLeave(event: Event): void;
6308
+ _handleOver(event: Event): void;
6284
6309
  _hasVersions(item: Attachment): boolean;
6285
6310
  _getVersions(item: Attachment): Attachment[];
6286
6311
  _previewOrDownload(item: AttachmentExtra): void;
@@ -6298,7 +6323,7 @@ declare class FileInput implements MatFormFieldControl<number | number[]>, Contr
6298
6323
  *
6299
6324
  * @param evt
6300
6325
  */
6301
- _fileInputChange(evt: InputEvent): void;
6326
+ _fileInputChange(evt: Event): void;
6302
6327
  /**
6303
6328
  *
6304
6329
  * @param attachment
@@ -6359,7 +6384,7 @@ declare class TimeField implements ControlComponent<any> {
6359
6384
  subscriptSizing: SubscriptSizing;
6360
6385
  set dense(val: boolean);
6361
6386
  hint?: string;
6362
- placeholder?: string;
6387
+ placeholder: string;
6363
6388
  label?: string;
6364
6389
  max?: number;
6365
6390
  min?: number;
@@ -6399,10 +6424,10 @@ declare class AddressField implements ControlComponent, OnInit {
6399
6424
  set dense(val: boolean);
6400
6425
  mode: ViewMode;
6401
6426
  hint?: string;
6402
- placeholder?: string;
6427
+ placeholder: string;
6403
6428
  value: string;
6404
6429
  label?: string;
6405
- required?: boolean;
6430
+ required: boolean;
6406
6431
  input: AddressInput;
6407
6432
  readonly control: FormControl<null>;
6408
6433
  focus(): void;
@@ -6416,7 +6441,7 @@ declare class RadioButtonField extends OptionsControlField implements ControlCom
6416
6441
  hint?: string;
6417
6442
  label?: string;
6418
6443
  input: MatRadioButton;
6419
- readonly control: FormControl<boolean | null>;
6444
+ readonly control: FormControl<any>;
6420
6445
  focus(): void;
6421
6446
  static ɵfac: i0.ɵɵFactoryDeclaration<RadioButtonField, never>;
6422
6447
  static ɵcmp: i0.ɵɵComponentDeclaration<RadioButtonField, "ng-component", never, {}, {}, never, never, false, never>;
@@ -6442,8 +6467,8 @@ declare class AxesPickerField implements ControlComponent, OnInit {
6442
6467
  mode: ViewMode;
6443
6468
  hint?: string;
6444
6469
  label?: string;
6445
- required?: boolean;
6446
- cube?: string;
6470
+ required: boolean;
6471
+ cube: string;
6447
6472
  input: CombinationPicker;
6448
6473
  readonly control: FormControl<any>;
6449
6474
  focus(): void;
@@ -6472,7 +6497,7 @@ declare class HtmlField implements ControlComponent<any>, OnInit {
6472
6497
  mode: ViewMode;
6473
6498
  maxLength?: number;
6474
6499
  minLength?: number;
6475
- required?: boolean;
6500
+ required: boolean;
6476
6501
  placeholder?: string;
6477
6502
  hint?: string;
6478
6503
  label?: string;
@@ -6488,8 +6513,8 @@ declare class HtmlField implements ControlComponent<any>, OnInit {
6488
6513
  declare class FileField implements ControlComponent, OnInit {
6489
6514
  appearance: MatFormFieldAppearance;
6490
6515
  multiple?: boolean;
6491
- required?: boolean;
6492
- placeholder?: string;
6516
+ required: boolean;
6517
+ placeholder: string;
6493
6518
  label?: string;
6494
6519
  hint?: string;
6495
6520
  mode: ViewMode;
@@ -6506,15 +6531,14 @@ declare class NumericField implements ControlComponent<any>, OnInit {
6506
6531
  set dense(val: boolean);
6507
6532
  appearance: MatFormFieldAppearance;
6508
6533
  mode: ViewMode;
6509
- placeholder?: string;
6510
- pattern?: string;
6534
+ placeholder: string;
6511
6535
  label?: string;
6512
6536
  max?: number;
6513
6537
  min?: number;
6514
6538
  suffixIcon?: string;
6515
6539
  prefixIcon?: string;
6516
6540
  hint?: string;
6517
- required?: boolean;
6541
+ required: boolean;
6518
6542
  input: MatInput;
6519
6543
  readonly control: FormControl<any>;
6520
6544
  focus(): void;
@@ -6527,7 +6551,7 @@ declare class CheckboxField implements ControlComponent, OnInit {
6527
6551
  mode: ViewMode;
6528
6552
  label?: string;
6529
6553
  hint?: string;
6530
- required?: boolean;
6554
+ required: boolean;
6531
6555
  input: MatCheckbox;
6532
6556
  readonly control: FormControl<boolean | null>;
6533
6557
  focus(): void;
@@ -6541,11 +6565,11 @@ declare class DateField implements ControlComponent<any> {
6541
6565
  subscriptSizing: SubscriptSizing;
6542
6566
  set dense(val: boolean);
6543
6567
  hint?: string;
6544
- placeholder?: string;
6568
+ placeholder: string;
6545
6569
  label?: string;
6546
6570
  max?: number;
6547
6571
  min?: number;
6548
- required?: boolean;
6572
+ required: boolean;
6549
6573
  mode: ViewMode;
6550
6574
  readonly isMobile: boolean;
6551
6575
  readonly control: FormControl<any>;
@@ -6597,9 +6621,9 @@ declare class InputField implements ControlComponent, OnInit {
6597
6621
  prefixIcon?: string;
6598
6622
  maxLength?: number;
6599
6623
  minLength?: number;
6600
- required?: boolean;
6601
- pattern?: string;
6602
- placeholder?: string;
6624
+ required: boolean;
6625
+ pattern: string;
6626
+ placeholder: string;
6603
6627
  label?: string;
6604
6628
  readonly control: FormControl<any>;
6605
6629
  input: MatInput;
@@ -6616,7 +6640,7 @@ declare class SelectField extends OptionsControlField implements ControlComponen
6616
6640
  params: any;
6617
6641
  multiple?: boolean;
6618
6642
  autocomplete?: boolean;
6619
- placeholder?: string;
6643
+ placeholder: string;
6620
6644
  hint?: string;
6621
6645
  label?: string;
6622
6646
  readonly control: FormControl<any>;
@@ -6650,9 +6674,8 @@ declare class TextareaField implements ControlComponent, OnInit {
6650
6674
  maxLength?: number;
6651
6675
  label?: string;
6652
6676
  minLength?: number;
6653
- required?: boolean;
6654
- pattern?: string;
6655
- placeholder?: string;
6677
+ required: boolean;
6678
+ placeholder: string;
6656
6679
  ngOnInit(): void;
6657
6680
  input: MatInput;
6658
6681
  focus(): void;
@@ -6770,7 +6793,8 @@ declare class AvatarComponent implements OnChanges, OnDestroy {
6770
6793
  private _sanitizer;
6771
6794
  private _cd;
6772
6795
  person: PersonInfo;
6773
- readonly clickChange: EventEmitter$1<any>;
6796
+ readonly clickChange: EventEmitter<any>;
6797
+ interactive: boolean;
6774
6798
  modeIcon: string;
6775
6799
  modeColor: string;
6776
6800
  mode: AvailabilityState;
@@ -6798,7 +6822,7 @@ declare class AvatarComponent implements OnChanges, OnDestroy {
6798
6822
  private _gen;
6799
6823
  ngOnDestroy(): void;
6800
6824
  static ɵfac: i0.ɵɵFactoryDeclaration<AvatarComponent, never>;
6801
- static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "bizdoc-avatar", never, { "person": { "alias": "person"; "required": false; }; "showMode": { "alias": "showMode"; "required": false; }; "dense": { "alias": "dense"; "required": false; }; }, { "clickChange": "clickChange"; }, never, never, false, never>;
6825
+ static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "bizdoc-avatar", never, { "person": { "alias": "person"; "required": false; }; "interactive": { "alias": "interactive"; "required": false; }; "showMode": { "alias": "showMode"; "required": false; }; "dense": { "alias": "dense"; "required": false; }; }, { "clickChange": "clickChange"; }, never, never, false, never>;
6802
6826
  }
6803
6827
 
6804
6828
  /** component */
@@ -7117,9 +7141,9 @@ declare class TaggingDirective implements OnDestroy {
7117
7141
  private _dir;
7118
7142
  private _element;
7119
7143
  private _overlay;
7120
- resource: {
7144
+ resource?: {
7121
7145
  [key: string]: any;
7122
- };
7146
+ } | null;
7123
7147
  resourceChange: EventEmitter<{
7124
7148
  [key: string]: any;
7125
7149
  }>;
@@ -7131,13 +7155,13 @@ declare class TaggingDirective implements OnDestroy {
7131
7155
  *
7132
7156
  * @param _evt
7133
7157
  */
7134
- _handleInput(_evt: KeyboardEvent): void;
7158
+ _handleInput(_evt: Event): void;
7135
7159
  /**
7136
7160
  *
7137
7161
  * @param evt
7138
7162
  * @returns
7139
7163
  */
7140
- _handleKeydown(evt: KeyboardEvent): void;
7164
+ _handleKeydown(evt: Event): void;
7141
7165
  private _close;
7142
7166
  /**
7143
7167
  *
@@ -7352,11 +7376,12 @@ declare class CubeAnomalyNotification extends NotificationBase<CubeAnomaly> impl
7352
7376
  static ɵcmp: i0.ɵɵComponentDeclaration<CubeAnomalyNotification, "ng-component", never, {}, {}, never, never, false, never>;
7353
7377
  }
7354
7378
  interface CubeAnomaly {
7355
- cube: string;
7379
+ cubeId: string;
7356
7380
  axes: string[];
7357
7381
  value: number;
7358
- numbers: string[];
7359
- documentIds: number[];
7382
+ documents: {
7383
+ [id: string]: string;
7384
+ };
7360
7385
  }
7361
7386
 
7362
7387
  declare class EscalatedNotification extends NotificationBase<Escalated> implements OnInit {
@@ -7381,8 +7406,10 @@ declare class LikedNotification extends NotificationBase<Liked> implements OnIni
7381
7406
  static ɵcmp: i0.ɵɵComponentDeclaration<LikedNotification, "bizdoc-liked-notification", never, {}, {}, never, never, false, never>;
7382
7407
  }
7383
7408
  interface Liked {
7409
+ votes: {
7410
+ [key: string]: number;
7411
+ };
7384
7412
  userIds: string[];
7385
- voted?: number;
7386
7413
  }
7387
7414
 
7388
7415
  declare class StateChangedNotification extends NotificationBase<StateChanged> implements OnInit {
@@ -7480,17 +7507,36 @@ declare class TraceViewComponent extends TraceBase {
7480
7507
  constructor(session: SessionService, _translate: TranslateService, _accounts: AccountService, _chat: ChatInfo, hub: HubService);
7481
7508
  ngOnChanges(_: SimpleChanges): void;
7482
7509
  _initialize(): Promise<void>;
7510
+ /** */
7483
7511
  private _filter;
7512
+ /** */
7484
7513
  get anyFilters(): boolean;
7485
7514
  private _showMode;
7515
+ /** */
7486
7516
  get showMode(): ShowMode;
7517
+ /** */
7487
7518
  set showMode(value: ShowMode);
7519
+ /**
7520
+ *
7521
+ * @param e
7522
+ */
7488
7523
  chat(e: MouseEvent): void;
7489
7524
  /**
7490
7525
  * model version compare
7491
7526
  * @param log
7492
7527
  */
7493
7528
  compare(log: Trace): void;
7529
+ /**
7530
+ * account info as promise
7531
+ * @param id
7532
+ */
7533
+ private _profileOf;
7534
+ /**
7535
+ * user name, chat anchor tag
7536
+ * @param user
7537
+ */
7538
+ private _nameOf;
7539
+ private _actionBy;
7494
7540
  static ɵfac: i0.ɵɵFactoryDeclaration<TraceViewComponent, never>;
7495
7541
  static ɵcmp: i0.ɵɵComponentDeclaration<TraceViewComponent, "bizdoc-trace", never, { "model": { "alias": "model"; "required": false; }; "version": { "alias": "version"; "required": false; }; }, { "versionSelected": "versionSelected"; }, never, never, false, never>;
7496
7542
  }
@@ -7513,7 +7559,8 @@ declare type ShowMode = 'everything' | 'active' | 'route';
7513
7559
 
7514
7560
  declare class ProgressDirective implements AfterViewInit, OnChanges {
7515
7561
  private renderer;
7516
- progressIndicator: number;
7562
+ /** percentage of progress */
7563
+ progressIndicator?: number;
7517
7564
  private _progressDiv;
7518
7565
  constructor(elementRef: ElementRef, renderer: Renderer2);
7519
7566
  ngAfterViewInit(): void;
@@ -7573,6 +7620,7 @@ declare class MapComponent implements OnInit {
7573
7620
  private _elementRef;
7574
7621
  constructor(_ref: OverlayRef, _data: Location, _elementRef: ElementRef<HTMLDivElement>);
7575
7622
  ngOnInit(): void;
7623
+ _(): Promise<void>;
7576
7624
  static ɵfac: i0.ɵɵFactoryDeclaration<MapComponent, never>;
7577
7625
  static ɵcmp: i0.ɵɵComponentDeclaration<MapComponent, "bizdoc-map", never, {}, {}, never, never, false, never>;
7578
7626
  }
@@ -7627,7 +7675,7 @@ declare class FlowViewComponent extends TraceBase implements AfterViewInit, OnDe
7627
7675
  ngAfterViewInit(): void;
7628
7676
  ngOnChanges(_changes: SimpleChanges): void;
7629
7677
  created(): void;
7630
- protected _initialize(): Promise<void>;
7678
+ _initialize(): Promise<void>;
7631
7679
  private _addIndicators;
7632
7680
  private _refresh;
7633
7681
  private _mouseEnter;
@@ -7649,6 +7697,11 @@ declare class FlowViewComponent extends TraceBase implements AfterViewInit, OnDe
7649
7697
  * @param recipient
7650
7698
  */
7651
7699
  private _note;
7700
+ /**
7701
+ * account info as promise
7702
+ * @param id
7703
+ */
7704
+ private _profileOf;
7652
7705
  /**
7653
7706
  *
7654
7707
  * @param name
@@ -7854,8 +7907,8 @@ declare class ExpandedItemComponent implements OnInit, OnDestroy {
7854
7907
  newComments?: number;
7855
7908
  typing?: boolean;
7856
7909
  note?: string | null;
7857
- sender?: string;
7858
- awaiting?: string;
7910
+ sender?: string | null;
7911
+ awaiting?: string | null;
7859
7912
  tags?: Tag$1[];
7860
7913
  mode: 'working' | 'done' | 'failed' | null;
7861
7914
  private _typingTask;
@@ -7865,6 +7918,7 @@ declare class ExpandedItemComponent implements OnInit, OnDestroy {
7865
7918
  ngOnInit(): void;
7866
7919
  /** */
7867
7920
  private _refresh;
7921
+ private _getProfile;
7868
7922
  /** */
7869
7923
  private _note;
7870
7924
  private _target;
@@ -7873,7 +7927,9 @@ declare class ExpandedItemComponent implements OnInit, OnDestroy {
7873
7927
  private _duration;
7874
7928
  /** */
7875
7929
  private _sender;
7876
- private _comments;
7930
+ /** */
7931
+ private _newComments;
7932
+ /** */
7877
7933
  private _awaiting;
7878
7934
  /**
7879
7935
  * Chat
@@ -7915,8 +7971,9 @@ declare class CubeFilterComponent implements OnInit, OnChanges, AfterViewInit, O
7915
7971
  visibleAxes: CubeAxis[];
7916
7972
  readonly sources: {
7917
7973
  [axis: string]: Observable<{
7918
- [key: string]: any;
7919
- }>;
7974
+ key: string;
7975
+ value: string;
7976
+ }[]>;
7920
7977
  };
7921
7978
  private _cube;
7922
7979
  private readonly _decendents;
@@ -7964,7 +8021,7 @@ declare class CubeAccumulationChartComponent implements OnInit, OnChanges, OnDes
7964
8021
  set xAxis(val: string | string[]);
7965
8022
  filters?: AxesMap;
7966
8023
  chartType?: ChartType;
7967
- scope: ScopeType;
8024
+ scope?: ScopeType;
7968
8025
  currencyCode?: string;
7969
8026
  loading: boolean;
7970
8027
  readonly loadingChange: EventEmitter<boolean>;
@@ -8014,7 +8071,7 @@ declare class CubeChartComponent implements OnInit, OnChanges, OnDestroy, CubeVi
8014
8071
  yAxis?: YAxis;
8015
8072
  chartType?: ChartType;
8016
8073
  indicesChartType?: ChartType;
8017
- scope: ScopeType;
8074
+ scope?: ScopeType;
8018
8075
  currencyCode?: string;
8019
8076
  readonly explore: EventEmitter<AxisClickEvent>;
8020
8077
  loading: boolean;
@@ -8453,7 +8510,7 @@ declare class ActionDialog implements OnInit, OnDestroy {
8453
8510
  /** action-dialog ctor */
8454
8511
  constructor(data: ActionDialogData, session: SessionService, _fr: BizDocComponentFactoryResolver);
8455
8512
  ngOnInit(): void;
8456
- attached(compRef: ComponentRef<ArgumentsComponent>): void;
8513
+ attached(compRef: CdkPortalOutletAttachedRef): void;
8457
8514
  ngOnDestroy(): void;
8458
8515
  static ɵfac: i0.ɵɵFactoryDeclaration<ActionDialog, never>;
8459
8516
  static ɵcmp: i0.ɵɵComponentDeclaration<ActionDialog, "ng-component", never, {}, {}, never, never, false, never>;
@@ -8476,9 +8533,9 @@ declare class ImpersonateDialog implements OnDestroy {
8476
8533
  constructor(_sb: PromptService, _session: SessionService);
8477
8534
  reset(): void;
8478
8535
  close(): void;
8479
- escape(evt: MouseEvent): void;
8536
+ escape(evt: Event): void;
8480
8537
  go(userId: string): void;
8481
- display(item?: PersonInfo): string | null;
8538
+ displayName(item?: PersonInfo): string;
8482
8539
  change(evt: MatAutocompleteSelectedEvent): void;
8483
8540
  ngOnDestroy(): void;
8484
8541
  static ɵfac: i0.ɵɵFactoryDeclaration<ImpersonateDialog, never>;
@@ -9203,7 +9260,7 @@ declare class EmojiHostComponent {
9203
9260
  readonly exclude: string[];
9204
9261
  readonly i18n: string;
9205
9262
  constructor(_ref: PopupRef<EmojiHostComponent>, _session: SessionService, _translate: TranslateService);
9206
- readonly darkMode: boolean | undefined;
9263
+ readonly darkMode: boolean;
9207
9264
  readonly color: string;
9208
9265
  add(event: EmojiEvent): void;
9209
9266
  static ɵfac: i0.ɵɵFactoryDeclaration<EmojiHostComponent, never>;
@@ -9219,7 +9276,7 @@ declare class TooltipComponent {
9219
9276
  declare class TooltipDirective implements OnInit {
9220
9277
  private _element;
9221
9278
  private _popup;
9222
- content: string;
9279
+ content: string | null | undefined;
9223
9280
  template: TemplateRef<any>;
9224
9281
  context: any;
9225
9282
  position: Position;
@@ -9530,6 +9587,7 @@ declare class SlotsComponent implements OnInit, OnDestroy {
9530
9587
  * @param options
9531
9588
  */
9532
9589
  private _insertTab;
9590
+ paneAttached(pane: PaneRef, event: CdkPortalOutletAttachedRef): void;
9533
9591
  /** */
9534
9592
  back(): void;
9535
9593
  /**
@@ -9693,13 +9751,13 @@ declare class HomeComponent extends HomeBase {
9693
9751
  toggle(evt: Event): void;
9694
9752
  collapse(evt: Event): void;
9695
9753
  focus(): void;
9696
- displayWith: (_: string) => null;
9754
+ displayWith: (_: string) => string;
9697
9755
  /**
9698
9756
  *
9699
9757
  * @param item
9700
9758
  * @param compRef
9701
9759
  */
9702
- onAttached(item: ListingItem, compRef: ComponentRef<ListingComponent<any>>): void;
9760
+ onAttached(item: ListingItem, compRef: CdkPortalOutletAttachedRef): void;
9703
9761
  goto(evt: MatAutocompleteSelectedEvent): void;
9704
9762
  static ɵfac: i0.ɵɵFactoryDeclaration<HomeComponent, never>;
9705
9763
  static ɵcmp: i0.ɵɵComponentDeclaration<HomeComponent, "bizdoc-home", never, {}, {}, never, never, false, never>;
@@ -9774,7 +9832,7 @@ declare class CubeViewPaneComponent extends ViewBase implements OnInit {
9774
9832
  * Alt-f
9775
9833
  * @param event
9776
9834
  */
9777
- handleKeydown(event: KeyboardEvent): void;
9835
+ handleKeydown(event: Event): void;
9778
9836
  openFilter(evt?: Event): void;
9779
9837
  static ɵfac: i0.ɵɵFactoryDeclaration<CubeViewPaneComponent, never>;
9780
9838
  static ɵcmp: i0.ɵɵComponentDeclaration<CubeViewPaneComponent, "ng-component", never, {}, {}, never, never, false, never>;
@@ -9904,7 +9962,7 @@ declare class ReportPaneComponent implements OnInit, OnDestroy {
9904
9962
  * Alt-q
9905
9963
  * @param event
9906
9964
  */
9907
- handleKeydown(event: KeyboardEvent): void;
9965
+ handleKeydown(event: Event): void;
9908
9966
  guide(evt?: Event | KeyboardEvent): void;
9909
9967
  ngOnDestroy(): void;
9910
9968
  static ɵfac: i0.ɵɵFactoryDeclaration<ReportPaneComponent, never>;
@@ -10035,7 +10093,7 @@ declare class ComposePaneComponent implements OnInit, OnDestroy {
10035
10093
  navComments(): void;
10036
10094
  navTrace(): void;
10037
10095
  private _navigate;
10038
- handleDocumentDrop(event: KeyboardEvent): void;
10096
+ handleDocumentDrop(event: Event): void;
10039
10097
  handleDrop(event: DragEvent): void;
10040
10098
  handleEnter(event: DragEvent): void;
10041
10099
  handleLeave(event: DragEvent): void;
@@ -10262,18 +10320,7 @@ declare class DesignerItemComponent implements AfterViewInit, OnChanges, OnDestr
10262
10320
  private _ref;
10263
10321
  private _cfr;
10264
10322
  readonly SVG: {
10265
- Azure: string;
10266
- SAP: string;
10267
- Mfg: string;
10268
- HiBob: string;
10269
- Priority: string;
10270
- ActiveDirectory: string;
10271
- Amazon: string;
10272
- Google: string;
10273
- Hadoop: string;
10274
- Workday: string;
10275
- Okta: string;
10276
- PingOne: string;
10323
+ [key: string]: string;
10277
10324
  };
10278
10325
  privileges: boolean;
10279
10326
  icon: boolean;
@@ -10295,10 +10342,11 @@ declare class DesignerItemComponent implements AfterViewInit, OnChanges, OnDestr
10295
10342
  constructor(_element: ElementRef<HTMLDivElement>, _fb: FormBuilder, _sanitizer: DomSanitizer, _ref: DesignerRef<any>, _cfr: BizDocComponentFactoryResolver);
10296
10343
  ngOnChanges(changes: SimpleChanges): void;
10297
10344
  resource(image: string): _angular_platform_browser.SafeResourceUrl;
10345
+ getFormPrivileges(): FormGroup;
10298
10346
  ngOnInit(): void;
10299
10347
  private _patch;
10300
- optionsAttached(componentRef: ComponentRef<DesignerElementComponent<any>>): void;
10301
- argumentsAttached(componentRef: ComponentRef<LayoutComponent>): void;
10348
+ optionsAttached(componentRef: CdkPortalOutletAttachedRef): void;
10349
+ argumentsAttached(componentRef: CdkPortalOutletAttachedRef): void;
10302
10350
  private _bindOptionsForm;
10303
10351
  /** */
10304
10352
  private _commonForm;
@@ -10340,6 +10388,7 @@ declare abstract class DesignerElementComponentBase<T = any> implements Designer
10340
10388
  get options(): T;
10341
10389
  abstract form: FormGroup;
10342
10390
  constructor(_fb: FormBuilder, _element: ElementRef<any>, _ref: DesignerRef<T>);
10391
+ getValue(formGroup: AbstractControl<any>, name: string): any;
10343
10392
  disable(...names: string[]): void;
10344
10393
  enable(...names: string[]): void;
10345
10394
  drop(event: CdkDragDrop<FormGroup>, collection: FormArray): void;
@@ -10347,14 +10396,18 @@ declare abstract class DesignerElementComponentBase<T = any> implements Designer
10347
10396
  static ɵfac: i0.ɵɵFactoryDeclaration<DesignerElementComponentBase<any>, never>;
10348
10397
  static ɵdir: i0.ɵɵDirectiveDeclaration<DesignerElementComponentBase<any>, never, never, {}, {}, never, never, true, never>;
10349
10398
  }
10399
+ /** */
10350
10400
  declare abstract class DesignerTypeElementComponent<T = any> extends DesignerElementComponentBase {
10351
10401
  designer: DesignerItemComponent;
10352
10402
  constructor(_fb: FormBuilder, element: ElementRef<any>, _ref: DesignerRef<T>);
10353
10403
  view?: string;
10354
10404
  context?: CustomViewContext;
10355
10405
  add(collection: FormArray, form: FormGroup, title: string, name: string): void;
10356
- edit(form: FormGroup, title: string, name: string): void;
10357
- protected get _typegroups(): ElementFamily[];
10406
+ edit(form: AbstractControl<any>, title: string, name: string): void;
10407
+ protected _typegroups(): {
10408
+ groups: ElementFamily[];
10409
+ defaultgroup: ElementInfo<any>[];
10410
+ };
10358
10411
  datatypeOf(name: string): _bizdoc_core.LocalizedString | undefined;
10359
10412
  static ɵfac: i0.ɵɵFactoryDeclaration<DesignerTypeElementComponent<any>, never>;
10360
10413
  static ɵdir: i0.ɵɵDirectiveDeclaration<DesignerTypeElementComponent<any>, never, never, {}, {}, never, never, true, never>;
@@ -10503,7 +10556,7 @@ declare class PolicyDesignComponent extends DesignerTypeElementComponent {
10503
10556
  }
10504
10557
 
10505
10558
  declare class StateDesignComponent extends DesignerTypeElementComponent {
10506
- readonly variables: ElementInfo[];
10559
+ readonly variables: ElementModel[];
10507
10560
  constructor(fb: FormBuilder, element: ElementRef<any>, ref: DesignerRef<any>);
10508
10561
  readonly form: _angular_forms.FormGroup<{
10509
10562
  past: _angular_forms.FormControl<null>;
@@ -10537,6 +10590,7 @@ declare class RoleDesignComponent extends DesignerTypeElementComponent {
10537
10590
  sequencePolicy: _angular_forms.FormControl<null>;
10538
10591
  }>;
10539
10592
  datatypes: ElementFamily[];
10593
+ defaultgroup: ElementInfo[];
10540
10594
  dataTypeDisabled: boolean;
10541
10595
  ngOnInit(): void;
10542
10596
  enableTypeEdit(): void;
@@ -10545,10 +10599,32 @@ declare class RoleDesignComponent extends DesignerTypeElementComponent {
10545
10599
  }
10546
10600
 
10547
10601
  declare class GuideDesignComponent extends DesignerTypeElementComponent implements OnInit {
10548
- readonly steps: _angular_forms.FormArray<_angular_forms.FormControl<unknown>>;
10549
- readonly form: _angular_forms.FormGroup<{
10550
- mode: _angular_forms.FormControl<null>;
10551
- steps: _angular_forms.FormArray<_angular_forms.FormControl<unknown>>;
10602
+ readonly steps: _angular_forms.FormArray<FormGroup<{
10603
+ content: FormControl<string | null>;
10604
+ title: FormControl<string | null>;
10605
+ selector: FormControl<string | null>;
10606
+ position: FormControl<string | null>;
10607
+ navigate: FormControl<string | null>;
10608
+ execute: FormControl<string | null>;
10609
+ privileges: FormGroup<{
10610
+ rule: FormControl<string | null>;
10611
+ roles: FormControl<string[] | null>;
10612
+ }>;
10613
+ }>>;
10614
+ readonly form: FormGroup<{
10615
+ mode: FormControl<null>;
10616
+ steps: _angular_forms.FormArray<FormGroup<{
10617
+ content: FormControl<string | null>;
10618
+ title: FormControl<string | null>;
10619
+ selector: FormControl<string | null>;
10620
+ position: FormControl<string | null>;
10621
+ navigate: FormControl<string | null>;
10622
+ execute: FormControl<string | null>;
10623
+ privileges: FormGroup<{
10624
+ rule: FormControl<string | null>;
10625
+ roles: FormControl<string[] | null>;
10626
+ }>;
10627
+ }>>;
10552
10628
  }>;
10553
10629
  ngOnInit(): void;
10554
10630
  newStep(step?: GuideStep): any;
@@ -10567,6 +10643,7 @@ declare class ControlDesignComponent extends DesignerTypeElementComponent {
10567
10643
 
10568
10644
  declare class AttributeDesignComponent extends DesignerTypeElementComponent {
10569
10645
  datatypes: ElementFamily[];
10646
+ defaultgroup: ElementInfo[];
10570
10647
  readonly form: _angular_forms.FormGroup<{
10571
10648
  dataType: _angular_forms.FormControl<null>;
10572
10649
  }>;
@@ -10609,16 +10686,24 @@ declare class ReportDesignerComponent extends DesignerTypeElementComponent {
10609
10686
  }
10610
10687
 
10611
10688
  declare class FolderDesignComponent extends DesignerTypeElementComponent {
10612
- readonly columns: _angular_forms.FormArray<_angular_forms.FormControl<unknown>>;
10613
- readonly form: _angular_forms.FormGroup<{
10614
- columns: _angular_forms.FormArray<_angular_forms.FormControl<unknown>>;
10615
- filters: _angular_forms.FormGroup<{
10616
- cube: _angular_forms.FormControl<null>;
10617
- axes: _angular_forms.FormControl<null>;
10689
+ readonly columns: _angular_forms.FormArray<FormGroup<{
10690
+ name: FormControl<string>;
10691
+ title: FormControl<string>;
10692
+ type: FormControl<string>;
10693
+ }>>;
10694
+ readonly form: FormGroup<{
10695
+ columns: _angular_forms.FormArray<FormGroup<{
10696
+ name: FormControl<string>;
10697
+ title: FormControl<string>;
10698
+ type: FormControl<string>;
10699
+ }>>;
10700
+ filters: FormGroup<{
10701
+ cube: FormControl<null>;
10702
+ axes: FormControl<null>;
10618
10703
  }>;
10619
10704
  }>;
10620
- cubes: ElementInfo[];
10621
- cube: ElementInfo<any>;
10705
+ cubes: ElementModel[];
10706
+ cube: ElementModel<any>;
10622
10707
  controls: ElementInfo<any>[];
10623
10708
  ngOnInit(): void;
10624
10709
  newColumn(column?: FolderColumn): any;
@@ -10710,29 +10795,98 @@ declare class JobDesignComponent extends DesignerTypeElementComponent implements
10710
10795
  declare class CubeDesignComponent extends DesignerTypeElementComponent implements OnInit {
10711
10796
  private _service;
10712
10797
  private _ps;
10713
- readonly views: _angular_forms.FormArray<_angular_forms.FormControl<unknown>>;
10714
- readonly axes: _angular_forms.FormArray<_angular_forms.FormControl<unknown>>;
10715
- readonly indices: _angular_forms.FormArray<_angular_forms.FormControl<unknown>>;
10716
- readonly patterns: _angular_forms.FormArray<_angular_forms.FormControl<unknown>>;
10717
- readonly form: _angular_forms.FormGroup<{
10718
- schedule: _angular_forms.FormControl<null>;
10719
- patterns: _angular_forms.FormArray<_angular_forms.FormControl<unknown>>;
10720
- views: _angular_forms.FormArray<_angular_forms.FormControl<unknown>>;
10721
- axes: _angular_forms.FormArray<_angular_forms.FormControl<unknown>>;
10722
- indices: _angular_forms.FormArray<_angular_forms.FormControl<unknown>>;
10723
- scope: _angular_forms.FormControl<null>;
10724
- currencyCode: _angular_forms.FormControl<null>;
10725
- yAxis: _angular_forms.FormGroup<{
10726
- type: _angular_forms.FormControl<null>;
10727
- title: _angular_forms.FormControl<null>;
10728
- resource: _angular_forms.FormControl<null>;
10798
+ readonly views: _angular_forms.FormArray<FormGroup<{
10799
+ privileges?: FormGroup;
10800
+ xAxis: FormControl<string[]>;
10801
+ series?: FormControl<string[]>;
10802
+ filters?: FormGroup;
10803
+ indices?: FormControl<string[]>;
10804
+ icon?: FormControl<string>;
10805
+ guide?: FormControl<string>;
10806
+ name: FormControl<string>;
10807
+ title: FormControl<string>;
10808
+ type: FormControl<ViewType>;
10809
+ chartType?: FormControl<ChartType>;
10810
+ indicesChartType?: FormControl<ChartType>;
10811
+ }>>;
10812
+ readonly axes: _angular_forms.FormArray<FormGroup<{
10813
+ name: FormControl<string>;
10814
+ title: FormControl<string>;
10815
+ dataType: FormControl<string>;
10816
+ combination: FormControl<boolean | null>;
10817
+ indexable: FormControl<boolean | null>;
10818
+ sensitive: FormControl<boolean | null>;
10819
+ resourceType: FormControl<string | null>;
10820
+ selectionMode: FormControl<SelectionMode | undefined>;
10821
+ descendentOf: FormControl<string | null>;
10822
+ }>>;
10823
+ readonly indices: _angular_forms.FormArray<FormGroup<{
10824
+ name: FormControl<string>;
10825
+ title: FormControl<string>;
10826
+ accumulate: FormControl<boolean | null>;
10827
+ hidden: FormControl<boolean | null>;
10828
+ }>>;
10829
+ readonly patterns: _angular_forms.FormArray<FormGroup<{
10830
+ axes: FormGroup;
10831
+ title: FormControl<string | null>;
10832
+ hidden: FormControl<boolean | null>;
10833
+ rule: FormControl<string | null>;
10834
+ roles: FormControl<string[] | null>;
10835
+ }>>;
10836
+ readonly form: FormGroup<{
10837
+ schedule: FormControl<null>;
10838
+ patterns: _angular_forms.FormArray<FormGroup<{
10839
+ axes: FormGroup;
10840
+ title: FormControl<string | null>;
10841
+ hidden: FormControl<boolean | null>;
10842
+ rule: FormControl<string | null>;
10843
+ roles: FormControl<string[] | null>;
10844
+ }>>;
10845
+ views: _angular_forms.FormArray<FormGroup<{
10846
+ privileges?: FormGroup;
10847
+ xAxis: FormControl<string[]>;
10848
+ series?: FormControl<string[]>;
10849
+ filters?: FormGroup;
10850
+ indices?: FormControl<string[]>;
10851
+ icon?: FormControl<string>;
10852
+ guide?: FormControl<string>;
10853
+ name: FormControl<string>;
10854
+ title: FormControl<string>;
10855
+ type: FormControl<ViewType>;
10856
+ chartType?: FormControl<ChartType>;
10857
+ indicesChartType?: FormControl<ChartType>;
10858
+ }>>;
10859
+ axes: _angular_forms.FormArray<FormGroup<{
10860
+ name: FormControl<string>;
10861
+ title: FormControl<string>;
10862
+ dataType: FormControl<string>;
10863
+ combination: FormControl<boolean | null>;
10864
+ indexable: FormControl<boolean | null>;
10865
+ sensitive: FormControl<boolean | null>;
10866
+ resourceType: FormControl<string | null>;
10867
+ selectionMode: FormControl<SelectionMode | undefined>;
10868
+ descendentOf: FormControl<string | null>;
10869
+ }>>;
10870
+ indices: _angular_forms.FormArray<FormGroup<{
10871
+ name: FormControl<string>;
10872
+ title: FormControl<string>;
10873
+ accumulate: FormControl<boolean | null>;
10874
+ hidden: FormControl<boolean | null>;
10875
+ }>>;
10876
+ scope: FormControl<null>;
10877
+ currencyCode: FormControl<null>;
10878
+ yAxis: FormGroup<{
10879
+ type: FormControl<null>;
10880
+ title: FormControl<null>;
10881
+ resource: FormControl<null>;
10729
10882
  }>;
10730
- anomaly: _angular_forms.FormControl<string | null>;
10883
+ anomaly: FormControl<string | null>;
10731
10884
  }>;
10732
10885
  jobInfo: BackgroundJobInfo;
10733
10886
  syncing: boolean;
10734
10887
  element: ElementRef<any>;
10735
10888
  typegroups: ElementFamily[];
10889
+ defaultgroup: ElementInfo<any>[];
10736
10890
  currencies: ElementInfo<any>[];
10737
10891
  guides: ElementInfo<any>[];
10738
10892
  constructor(fb: FormBuilder, _service: SystemService, _ps: PromptService, element: ElementRef<any>, ref: DesignerRef);
@@ -10742,7 +10896,7 @@ declare class CubeDesignComponent extends DesignerTypeElementComponent implement
10742
10896
  onContinue(): void;
10743
10897
  private _form;
10744
10898
  nameOf(axis: string | string[]): string;
10745
- private newView;
10899
+ newView(model?: CubeViewModel): any;
10746
10900
  /**
10747
10901
  *
10748
10902
  * @param model
@@ -10791,12 +10945,12 @@ declare class TypeDesignComponent extends DesignerTypeElementComponent {
10791
10945
  private _source;
10792
10946
  private _translate;
10793
10947
  private _ps;
10794
- readonly groups: _angular_forms.FormArray<_angular_forms.FormControl<unknown>>;
10795
- readonly patterns: _angular_forms.FormArray<_angular_forms.FormControl<unknown>>;
10796
- readonly form: _angular_forms.FormGroup<{
10797
- assignable: _angular_forms.FormControl<null>;
10798
- groups: _angular_forms.FormArray<_angular_forms.FormControl<unknown>>;
10799
- tpatterns: _angular_forms.FormArray<_angular_forms.FormControl<unknown>>;
10948
+ readonly groups: _angular_forms.FormArray<FormGroup<any>>;
10949
+ readonly patterns: _angular_forms.FormArray<FormGroup<any>>;
10950
+ readonly form: FormGroup<{
10951
+ assignable: FormControl<null>;
10952
+ groups: _angular_forms.FormArray<FormGroup<any>>;
10953
+ tpatterns: _angular_forms.FormArray<FormGroup<any>>;
10800
10954
  }>;
10801
10955
  values: {
10802
10956
  key: any;
@@ -10825,12 +10979,14 @@ declare class CubeIndexDesignComponent extends DesignerCubeElementComponent<View
10825
10979
  }
10826
10980
 
10827
10981
  declare class ConfigurationDatasourceDesignComponent extends DesignerElementComponentBase<Model$3> implements OnInit {
10828
- readonly items: FormArray<_angular_forms.FormControl<{
10829
- key: string;
10830
- value: string;
10831
- } | null>>;
10982
+ readonly items: FormArray<FormGroup<{
10983
+ key: FormControl<string>;
10984
+ value: FormControl<string>;
10985
+ }>>;
10832
10986
  readonly form: FormGroup<{
10833
- items: FormGroup<{}>;
10987
+ items: FormGroup<{
10988
+ [x: string]: FormControl<unknown>;
10989
+ }>;
10834
10990
  }>;
10835
10991
  ngOnInit(): void;
10836
10992
  private _tomap;
@@ -10862,10 +11018,10 @@ interface Model$2 {
10862
11018
  declare class PivotViewDesignComponent extends DesignerCubeElementComponent<PivotSettingsModel> {
10863
11019
  readonly form: _angular_forms.FormGroup<{
10864
11020
  cube: _angular_forms.FormControl<null>;
10865
- xAxis: _angular_forms.FormControl<null>;
10866
- series: _angular_forms.FormControl<null>;
10867
- indices: _angular_forms.FormControl<null>;
10868
- aggregate: _angular_forms.FormControl<null>;
11021
+ xAxis: _angular_forms.FormControl<string[] | null>;
11022
+ series: _angular_forms.FormControl<string[] | null>;
11023
+ indices: _angular_forms.FormControl<string[] | null>;
11024
+ aggregate: _angular_forms.FormControl<string[] | null>;
10869
11025
  filters: _angular_forms.FormGroup<{}>;
10870
11026
  chartType: _angular_forms.FormControl<null>;
10871
11027
  indicesChartType: _angular_forms.FormControl<null>;
@@ -10919,9 +11075,9 @@ declare class UsageReportDesignComponent extends DesignerCubeElementComponent<Us
10919
11075
  readonly type: _angular_forms.FormControl<any>;
10920
11076
  readonly form: _angular_forms.FormGroup<{
10921
11077
  cube: _angular_forms.FormControl<null>;
10922
- series: _angular_forms.FormControl<null>;
10923
- xAxis: _angular_forms.FormControl<null>;
10924
- indices: _angular_forms.FormControl<null>;
11078
+ series: _angular_forms.FormControl<string[] | null>;
11079
+ xAxis: _angular_forms.FormControl<string[] | null>;
11080
+ indices: _angular_forms.FormControl<string[] | null>;
10925
11081
  filters: _angular_forms.FormGroup<{}>;
10926
11082
  chartType: _angular_forms.FormControl<string | null>;
10927
11083
  collapse: _angular_forms.FormControl<boolean | null>;
@@ -11000,9 +11156,9 @@ declare class ExploreViewDesignComponent extends DesignerCubeElementComponent<Ex
11000
11156
  declare class AnalysisWidgetDesignComponent extends DesignerCubeElementComponent<ChartSettingsModel> implements OnInit {
11001
11157
  readonly form: _angular_forms.FormGroup<{
11002
11158
  cube: _angular_forms.FormControl<null>;
11003
- xAxis: _angular_forms.FormControl<null>;
11004
- series: _angular_forms.FormControl<null>;
11005
- indices: _angular_forms.FormControl<null>;
11159
+ xAxis: _angular_forms.FormControl<string[] | null>;
11160
+ series: _angular_forms.FormControl<string[] | null>;
11161
+ indices: _angular_forms.FormControl<string[] | null>;
11006
11162
  filters: _angular_forms.FormGroup<{}>;
11007
11163
  chartType: _angular_forms.FormControl<null>;
11008
11164
  indicesChartType: _angular_forms.FormControl<null>;
@@ -11015,7 +11171,7 @@ declare class AnalysisWidgetDesignComponent extends DesignerCubeElementComponent
11015
11171
 
11016
11172
  declare class ParallelViewDesignComponent extends DesignerCubeElementComponent<ParallelSettingsModel> {
11017
11173
  readonly form: _angular_forms.FormGroup<{
11018
- cube: _angular_forms.FormControl<null>;
11174
+ cube: _angular_forms.FormControl<string | null>;
11019
11175
  xAxis: _angular_forms.FormControl<string[] | null>;
11020
11176
  series: _angular_forms.FormControl<string[] | null>;
11021
11177
  indices: _angular_forms.FormControl<string[] | null>;
@@ -11081,7 +11237,7 @@ declare class MatrixViewDesignComponent extends DesignerCubeElementComponent<Mat
11081
11237
  declare class ChartViewDesignComponent extends DesignerCubeElementComponent<ChartSettingsModel$1> implements OnInit {
11082
11238
  readonly form: _angular_forms.FormGroup<{
11083
11239
  cube: _angular_forms.FormControl<null>;
11084
- xAxis: _angular_forms.FormControl<null>;
11240
+ xAxis: _angular_forms.FormControl<string[] | null>;
11085
11241
  series: _angular_forms.FormControl<string[] | null>;
11086
11242
  indices: _angular_forms.FormControl<string[] | null>;
11087
11243
  chartType: _angular_forms.FormControl<string | null>;
@@ -11395,7 +11551,8 @@ declare class ManageCubeIndexUtility implements UtilityComponent<any>, OnInit, O
11395
11551
  readonly displayedColumns: string[];
11396
11552
  readonly form: FormGroup;
11397
11553
  editTmpl: TemplateRef<any>;
11398
- loading?: ProgressBarMode;
11554
+ loading: boolean;
11555
+ loadingMode: ProgressBarMode;
11399
11556
  private _data;
11400
11557
  private _row?;
11401
11558
  private _oRef;
@@ -11467,7 +11624,7 @@ declare class ProfileSettingsDialog implements OnInit {
11467
11624
  gusers$: Observable<PersonInfo[]>;
11468
11625
  constructor(_accounts: AccountService, _dialogRef: MatDialogRef<ProfileSettingsDialog>, _fb: FormBuilder, model: OptionsData);
11469
11626
  ngOnInit(): void;
11470
- userDisplay: (item: PersonInfo) => string | null;
11627
+ displayName: (item: PersonInfo) => string;
11471
11628
  setId(event: MatAutocompleteSelectedEvent): void;
11472
11629
  /**
11473
11630
  *
@@ -11716,7 +11873,8 @@ declare class DocumentTraceComponent implements OnInit, OnDestroy {
11716
11873
  mode: 'diagram' | 'browse' | null;
11717
11874
  range: (Date | number)[];
11718
11875
  rangeData: RangeInfo[];
11719
- loading: ProgressBarMode | null;
11876
+ loadingMode: ProgressBarMode;
11877
+ loading: boolean;
11720
11878
  filterArgs: TemplateRef<any>;
11721
11879
  searchInput: MatInput;
11722
11880
  dataSource: MatTableDataSource<DocumentInfo$1>;
@@ -11848,7 +12006,7 @@ declare class ProfilerComponent implements OnInit, OnDestroy {
11848
12006
  private _series;
11849
12007
  private _actionName;
11850
12008
  pointClick(evt: IPointEventArgs$1): void;
11851
- userDisplay(item: PersonInfo): string | null;
12009
+ displayName(item: PersonInfo): string;
11852
12010
  trace(id: number): void;
11853
12011
  chat(): void;
11854
12012
  reassign(position?: PositionInfo): void;
@@ -11942,7 +12100,7 @@ declare class PositionsComponent implements OnInit, OnDestroy, UtilityComponent<
11942
12100
  }>;
11943
12101
  readonly group: FormGroup<{
11944
12102
  title: FormControl<null>;
11945
- items: FormControl<null>;
12103
+ items: FormControl<string[] | null>;
11946
12104
  }>;
11947
12105
  private _everything;
11948
12106
  positions: {
@@ -11951,7 +12109,8 @@ declare class PositionsComponent implements OnInit, OnDestroy, UtilityComponent<
11951
12109
  };
11952
12110
  };
11953
12111
  private readonly _destroy;
11954
- loading: ProgressBarMode | null;
12112
+ loading: boolean;
12113
+ loadingMode: ProgressBarMode;
11955
12114
  /** positions ctor */
11956
12115
  constructor(_session: SessionService, _utilityRef: UtilityRef<boolean, TypeMap>, _datasources: DatasourceService, _ps: PromptService, title: WindowTitleService, _translate: TranslateService, _popup: Popup, _service: SystemService, _dialog: MatDialog);
11957
12116
  ngOnInit(): void;
@@ -12269,14 +12428,19 @@ interface AxesPickerModel {
12269
12428
  declare class ControlOptionsComponent implements OnInit {
12270
12429
  private _translate;
12271
12430
  private _fb;
12272
- form: FormGroup;
12431
+ set form(value: FormGroup);
12432
+ _form: FormGroup<{
12433
+ options: FormArray<FormGroup<{
12434
+ key: FormControl<string>;
12435
+ value: FormControl<LocalizedString>;
12436
+ }>>;
12437
+ }>;
12273
12438
  model: {
12274
12439
  options?: {
12275
12440
  key: string;
12276
12441
  value: LocalizedString;
12277
12442
  }[];
12278
12443
  };
12279
- readonly options: _angular_forms.FormArray<_angular_forms.FormControl<unknown>>;
12280
12444
  ngOnInit(): void;
12281
12445
  constructor(_translate: TranslateService, _fb: FormBuilder);
12282
12446
  add(): void;