@bizdoc/core 1.9.13 → 1.9.14

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.
Files changed (43) hide show
  1. package/assets/themes/brown.min.css +1 -1
  2. package/assets/themes/dark.min.css +1 -1
  3. package/assets/themes/deep-purple-light-blue.min.css +3 -3
  4. package/assets/themes/default.min.css +1 -1
  5. package/assets/themes/green.min.css +1 -1
  6. package/assets/themes/indigo.min.css +1 -1
  7. package/esm2020/lib/admin/form/workflow/workflow.component.mjs +3 -2
  8. package/esm2020/lib/browse/browse-items.component.mjs +7 -3
  9. package/esm2020/lib/browse/browse.pane.component.mjs +3 -1
  10. package/esm2020/lib/core/translations.mjs +4 -4
  11. package/esm2020/lib/cube/accum/accum.component.mjs +7 -3
  12. package/esm2020/lib/cube/chart/chart.component.mjs +12 -4
  13. package/esm2020/lib/cube/cube-view.component.mjs +10 -15
  14. package/esm2020/lib/cube/declarations.mjs +1 -1
  15. package/esm2020/lib/cube/grid/grid.component.mjs +4 -5
  16. package/esm2020/lib/cube/grid/spreadsheet.component.mjs +12 -12
  17. package/esm2020/lib/cube/parallel/item.mjs +2 -1
  18. package/esm2020/lib/cube/pivot/pivot.component.mjs +5 -2
  19. package/esm2020/lib/cube/sum/sum.component.mjs +2 -2
  20. package/esm2020/lib/dashboard/cube/cube-chart.widget.mjs +2 -1
  21. package/esm2020/lib/home/search.service.mjs +8 -5
  22. package/esm2020/lib/modules/chart.module.mjs +6 -6
  23. package/esm2020/lib/modules/gantt.module.mjs +17 -0
  24. package/esm2020/lib/routes.mobile.mjs +1 -1
  25. package/esm2020/lib/shared.module.mjs +9 -10
  26. package/esm2020/lib/views/cube/chart.component.mjs +1 -1
  27. package/fesm2015/bizdoc-core.mjs +95 -60
  28. package/fesm2015/bizdoc-core.mjs.map +1 -1
  29. package/fesm2020/bizdoc-core.mjs +95 -60
  30. package/fesm2020/bizdoc-core.mjs.map +1 -1
  31. package/lib/browse/browse-items.component.d.ts +1 -1
  32. package/lib/cube/accum/accum.component.d.ts +1 -0
  33. package/lib/cube/chart/chart.component.d.ts +4 -2
  34. package/lib/cube/cube-view.component.d.ts +4 -5
  35. package/lib/cube/declarations.d.ts +1 -0
  36. package/lib/cube/grid/grid.component.d.ts +2 -3
  37. package/lib/cube/grid/spreadsheet.component.d.ts +1 -0
  38. package/lib/cube/parallel/item.d.ts +2 -2
  39. package/lib/cube/sum/sum.component.d.ts +1 -1
  40. package/lib/modules/chart.module.d.ts +1 -1
  41. package/lib/modules/gantt.module.d.ts +7 -0
  42. package/lib/shared.module.d.ts +9 -10
  43. package/package.json +1 -2
@@ -84,7 +84,7 @@ export declare class BrowseItemsComponent implements OnInit, OnChanges, OnDestro
84
84
  private _sharedActions;
85
85
  copy(item: RecipientModel): void;
86
86
  /**
87
- * execute function per item in collection
87
+ * execute function per selected item
88
88
  * @param fn
89
89
  * @param error
90
90
  */
@@ -49,6 +49,7 @@ export declare class CubeAccumulationChartComponent implements OnInit, OnChanges
49
49
  *
50
50
  */
51
51
  ngOnChanges(changes: SimpleChanges): void;
52
+ resize(): void;
52
53
  execute(): void;
53
54
  private _draw;
54
55
  exportToExcel(title: string): void;
@@ -3,7 +3,7 @@ import { Chart, CrosshairSettingsModel } from '@syncfusion/ej2-charts';
3
3
  import { AxisModel, ChartAreaModel, TooltipSettingsModel, LegendSettingsModel, IPointEventArgs, ITooltipRenderEventArgs } from '@syncfusion/ej2-angular-charts';
4
4
  import { CubeService, ScopeType } from '../cube.service';
5
5
  import { AxisClickEvent, CubeViewerComponent } from "../declarations";
6
- import { AxesMap, ChartType } from '../../core/models';
6
+ import { AxesMap, ChartType, YAxis } from '../../core/models';
7
7
  import { PromptService } from '../../core/prompt.service';
8
8
  import { SessionService } from '../../core/session.service';
9
9
  import { TranslateService } from '../../core/translate.service';
@@ -27,6 +27,7 @@ export declare class CubeChartComponent implements OnInit, OnChanges, OnDestroy,
27
27
  get indices(): string[] | string;
28
28
  set indices(value: string[] | string);
29
29
  filters?: AxesMap;
30
+ yAxis?: YAxis;
30
31
  chartType?: ChartType;
31
32
  indexChartType?: ChartType;
32
33
  scope: ScopeType;
@@ -56,6 +57,7 @@ export declare class CubeChartComponent implements OnInit, OnChanges, OnDestroy,
56
57
  *
57
58
  */
58
59
  ngOnChanges(changes: SimpleChanges): void;
60
+ resize(): void;
59
61
  execute(): void;
60
62
  /** */
61
63
  private _draw;
@@ -64,5 +66,5 @@ export declare class CubeChartComponent implements OnInit, OnChanges, OnDestroy,
64
66
  exportToExcel(title: string): void;
65
67
  ngOnDestroy(): void;
66
68
  static ɵfac: i0.ɵɵFactoryDeclaration<CubeChartComponent, never>;
67
- static ɵcmp: i0.ɵɵComponentDeclaration<CubeChartComponent, "bizdoc-cube-chart", never, { "width": "width"; "height": "height"; "cube": "cube"; "xAxis": "xAxis"; "series": "series"; "indices": "indices"; "filters": "filters"; "chartType": "chartType"; "indexChartType": "indexChartType"; "scope": "scope"; "currencyCode": "currencyCode"; "loading": "loading"; }, { "explore": "explore"; "loadingChange": "loadingChange"; }, never, never>;
69
+ static ɵcmp: i0.ɵɵComponentDeclaration<CubeChartComponent, "bizdoc-cube-chart", never, { "width": "width"; "height": "height"; "cube": "cube"; "xAxis": "xAxis"; "series": "series"; "indices": "indices"; "filters": "filters"; "yAxis": "yAxis"; "chartType": "chartType"; "indexChartType": "indexChartType"; "scope": "scope"; "currencyCode": "currencyCode"; "loading": "loading"; }, { "explore": "explore"; "loadingChange": "loadingChange"; }, never, never>;
68
70
  }
@@ -1,13 +1,11 @@
1
- import { ComponentFactoryResolver, EventEmitter, OnChanges, OnInit, SimpleChanges, ViewContainerRef } from '@angular/core';
1
+ import { AfterViewInit, ComponentFactoryResolver, EventEmitter, OnChanges, OnInit, SimpleChanges, ViewContainerRef } from '@angular/core';
2
2
  import { AxesMap, Cube, CubeView } from '../core/models';
3
3
  import { AxisClickEvent } from './declarations';
4
- import { ChangeDetectorRef } from '@angular/core';
5
4
  import * as i0 from "@angular/core";
6
5
  /** */
7
- export declare class CubeViewComponent implements OnInit, OnChanges {
6
+ export declare class CubeViewComponent implements OnInit, OnChanges, AfterViewInit {
8
7
  private _viewContainer;
9
8
  private _factoryResolver;
10
- private _cd;
11
9
  axes: AxesMap;
12
10
  readonly explore: EventEmitter<AxisClickEvent>;
13
11
  cube: Cube;
@@ -17,8 +15,9 @@ export declare class CubeViewComponent implements OnInit, OnChanges {
17
15
  private _instance;
18
16
  private readonly _resizing;
19
17
  private readonly _viewDestroy;
20
- constructor(_viewContainer: ViewContainerRef, _factoryResolver: ComponentFactoryResolver, _cd: ChangeDetectorRef);
18
+ constructor(_viewContainer: ViewContainerRef, _factoryResolver: ComponentFactoryResolver);
21
19
  ngOnInit(): void;
20
+ ngAfterViewInit(): void;
22
21
  ngOnChanges(changes: SimpleChanges): void;
23
22
  private _createView;
24
23
  private _attach;
@@ -9,6 +9,7 @@ export interface AxisClickEvent {
9
9
  export interface CubeViewerComponent extends OnChanges {
10
10
  exportToExcel(title: string): any;
11
11
  execute(): any;
12
+ resize(): any;
12
13
  explore?: EventEmitter<AxisClickEvent>;
13
14
  loading: boolean;
14
15
  loadingChange: EventEmitter<boolean>;
@@ -1,7 +1,7 @@
1
1
  import { EventEmitter, OnInit, ElementRef, OnDestroy, SimpleChanges, OnChanges } from "@angular/core";
2
2
  import { GroupSettingsModel, Grid, AggregateColumnModel, SelectionSettingsModel, CellSelectingEventArgs, QueryCellInfoEventArgs, ColumnModel } from '@syncfusion/ej2-angular-grids';
3
3
  import { AxisClickEvent, CubeViewerComponent } from "../declarations";
4
- import { AxesMap, YAxis } from "../../core/models";
4
+ import { AxesMap } from "../../core/models";
5
5
  import { CubeService } from "../cube.service";
6
6
  import { PromptService } from "../../core/prompt.service";
7
7
  import { DatasourceService } from "../../core/datasource.service";
@@ -17,7 +17,6 @@ export declare class CubeGridComponent implements OnInit, OnChanges, CubeViewerC
17
17
  height: string;
18
18
  cube: string;
19
19
  set xAxis(val: string[] | string);
20
- yAxis?: YAxis;
21
20
  set series(val: string[] | string);
22
21
  set indices(val: string[] | string);
23
22
  filters?: AxesMap;
@@ -56,5 +55,5 @@ export declare class CubeGridComponent implements OnInit, OnChanges, CubeViewerC
56
55
  exportToExcel(title: string): void;
57
56
  ngOnDestroy(): void;
58
57
  static ɵfac: i0.ɵɵFactoryDeclaration<CubeGridComponent, never>;
59
- static ɵcmp: i0.ɵɵComponentDeclaration<CubeGridComponent, "bizdoc-cube-grid", never, { "width": "width"; "height": "height"; "cube": "cube"; "xAxis": "xAxis"; "yAxis": "yAxis"; "series": "series"; "indices": "indices"; "filters": "filters"; "currencyCode": "currencyCode"; "loading": "loading"; }, { "explore": "explore"; "loadingChange": "loadingChange"; }, never, never>;
58
+ static ɵcmp: i0.ɵɵComponentDeclaration<CubeGridComponent, "bizdoc-cube-grid", never, { "width": "width"; "height": "height"; "cube": "cube"; "xAxis": "xAxis"; "series": "series"; "indices": "indices"; "filters": "filters"; "currencyCode": "currencyCode"; "loading": "loading"; }, { "explore": "explore"; "loadingChange": "loadingChange"; }, never, never>;
60
59
  }
@@ -48,6 +48,7 @@ export declare class CubeSpreadsheetComponent implements OnInit, CubeViewerCompo
48
48
  constructor(_session: SessionService, _sb: PromptService, _service: CubeService, _translate: TranslateService, _ds: DatasourceService, _elementRef: ElementRef);
49
49
  ngOnInit(): void;
50
50
  ngOnChanges(changes: SimpleChanges): void;
51
+ resize(): void;
51
52
  execute(): void;
52
53
  private _datatable;
53
54
  private _dataseries;
@@ -6,8 +6,8 @@ export declare class Item {
6
6
  data: Series;
7
7
  palette: string[];
8
8
  fill: string;
9
- markerSettings: SparklineMarkerSettingsModel;
9
+ readonly markerSettings: SparklineMarkerSettingsModel;
10
10
  readonly tooltipSettings: SparklineTooltipSettingsModel;
11
- border: SparklineBorderModel;
11
+ readonly border: SparklineBorderModel;
12
12
  constructor(chartType: SparklineType, data: Series, palette: string[], fill: string);
13
13
  }
@@ -33,7 +33,7 @@ export declare class CubeSumComponent implements OnChanges {
33
33
  private _scoperesults;
34
34
  private _scope;
35
35
  constructor(_ds: DatasourceService, _service: CubeService, _session: SessionService);
36
- ngOnChanges(changes: SimpleChanges): void;
36
+ ngOnChanges(_: SimpleChanges): void;
37
37
  private _strict;
38
38
  private _fish;
39
39
  getAggregateLabel(): Promise<string>;
@@ -2,6 +2,6 @@ import * as i0 from "@angular/core";
2
2
  import * as i1 from "@syncfusion/ej2-angular-charts";
3
3
  export declare class SyncfusionChartModule {
4
4
  static ɵfac: i0.ɵɵFactoryDeclaration<SyncfusionChartModule, never>;
5
- static ɵmod: i0.ɵɵNgModuleDeclaration<SyncfusionChartModule, never, [typeof i1.ChartModule, typeof i1.AccumulationChartAllModule, typeof i1.BulletChartAllModule], [typeof i1.ChartModule, typeof i1.AccumulationChartAllModule, typeof i1.BulletChartAllModule]>;
5
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SyncfusionChartModule, never, [typeof i1.ChartModule, typeof i1.AccumulationChartAllModule, typeof i1.SparklineAllModule], [typeof i1.ChartModule, typeof i1.AccumulationChartAllModule, typeof i1.SparklineAllModule]>;
6
6
  static ɵinj: i0.ɵɵInjectorDeclaration<SyncfusionChartModule>;
7
7
  }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@syncfusion/ej2-angular-gantt";
3
+ export declare class SyncfusionGanttModule {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<SyncfusionGanttModule, never>;
5
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SyncfusionGanttModule, never, [typeof i1.GanttModule], [typeof i1.GanttModule]>;
6
+ static ɵinj: i0.ɵɵInjectorDeclaration<SyncfusionGanttModule>;
7
+ }
@@ -160,21 +160,20 @@ import * as i156 from "@angular/flex-layout";
160
160
  import * as i157 from "@angular/router";
161
161
  import * as i158 from "ngx-moment";
162
162
  import * as i159 from "@ctrl/ngx-emoji-mart";
163
- import * as i160 from "@syncfusion/ej2-angular-gantt";
163
+ import * as i160 from "./modules/gantt.module";
164
164
  import * as i161 from "./modules/schedule.module";
165
165
  import * as i162 from "./modules/circular-gauge.module";
166
166
  import * as i163 from "./modules/chart.module";
167
- import * as i164 from "@syncfusion/ej2-angular-charts";
168
- import * as i165 from "./modules/grid.module";
169
- import * as i166 from "@syncfusion/ej2-angular-richtexteditor";
170
- import * as i167 from "./modules/spreadsheet.module";
171
- import * as i168 from "./modules/pivot.module";
172
- import * as i169 from "@syncfusion/ej2-angular-kanban";
173
- import * as i170 from "./modules/diagram.module";
174
- import * as i171 from "./modules/material.module";
167
+ import * as i164 from "./modules/grid.module";
168
+ import * as i165 from "@syncfusion/ej2-angular-richtexteditor";
169
+ import * as i166 from "./modules/spreadsheet.module";
170
+ import * as i167 from "./modules/pivot.module";
171
+ import * as i168 from "@syncfusion/ej2-angular-kanban";
172
+ import * as i169 from "./modules/diagram.module";
173
+ import * as i170 from "./modules/material.module";
175
174
  export declare class SharedModule {
176
175
  static forChild(config?: SharedConfig): ModuleWithProviders<SharedModule>;
177
176
  static ɵfac: i0.ɵɵFactoryDeclaration<SharedModule, never>;
178
- static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, [typeof i1.CheckboxComponent, typeof i2.CubeParallelComponent, typeof i3.CubeSumComponent, typeof i4.CubeParallelViewComponent, typeof i5.CubeChartViewComponent, typeof i6.CubeExploreViewComponent, typeof i7.CubeDocumentSumComponent, typeof i8.ExploreItemImplComponent, typeof i9.DocumentInfoComponent, typeof i10.DocumentViewsComponent, typeof i11.ViewItemComponent, typeof i12.CubeDocumentMatrixComponent, typeof i13.CubeDocumentViewComponent, typeof i14.CubePivotViewComponent, typeof i15.ActionPicker, typeof i16.HtmlSimplePipe, typeof i17.QuickCommentComponent, typeof i18.DurationFormatPipe, typeof i19.CombinationPicker, typeof i20.CombinationPickerBody, typeof i21.CombinationPool, typeof i22.TimelineViewComponent, typeof i23.MatIconAnimate, typeof i24.DateRangePipe, typeof i24.AgoPipe, typeof i25.ColorPicker, typeof i26.StateDirective, typeof i27.BrokenPage, typeof i28.JoinPipe, typeof i29.TimePicker, typeof i30.TypeValuePipe, typeof i31.TypeSelect, typeof i32.TypeAutocomplete, typeof i33.TranslatePipe, typeof i34.IdentityName, typeof i35.SanitizeHtmlPipe, typeof i36.AceInput, typeof i37.TimespanInput, typeof i38.AddressInput, typeof i39.StatePipe, typeof i40.ActionPipe, typeof i41.RolePipe, typeof i42.FormPipe, typeof i43.FilterPipe, typeof i43.ArraySortPipe, typeof i44.UserNamePipe, typeof i45.LayoutComponent, typeof i46.HtmlField, typeof i47.NumericField, typeof i48.AutocompleteField, typeof i49.CheckField, typeof i50.DateField, typeof i51.DateRangeField, typeof i52.ExpressionField, typeof i53.InputField, typeof i54.SelectField, typeof i55.SwitchField, typeof i56.TextareaField, typeof i57.TimespanField, typeof i58.ReturnActionComponent, typeof i59.AssignActionComponent, typeof i60.AvatarComponent, typeof i61.PeopleComponent, typeof i62.EditInputComponent, typeof i63.NgxComponentOutlet, typeof i27.BizDocApp, typeof i64.LottieAnimation, typeof i16.ContactsComponent, typeof i65.CubeMatrixComponent, typeof i66.FilterTagsComponent, typeof i67.ExploreItemsComponent, typeof i68.CompareNameDirective, typeof i68.CompareGroupDirective, typeof i68.CompareContextDirective, typeof i69.GuideComponent, typeof i70.OutOfOfficeToast, typeof i71.NotificationsTableComponent, typeof i72.NotificationsFilterComponent, typeof i73.TaggingPipe, typeof i74.PrivilegeHiddenDirective, typeof i75.TaggingItemDirective, typeof i76.TaggingDirective, typeof i77.DocumentTaggingComponent, typeof i78.UserTaggingComponent, typeof i74.PrivilegeDisabledDirective, typeof i79.CubeGridDocumentsComponent, typeof i80.LongRunningTaskNotification, typeof i81.TaggedNotification, typeof i82.CommentedNotification, typeof i83.NudgeNotification, typeof i84.TextNotification, typeof i85.CubeAnomalyNotification, typeof i86.EscalatedNotification, typeof i87.LikedNotification, typeof i88.StateChangedNotification, typeof i89.UpcomingEventNotification, typeof i90.NoneComponent, typeof i91.ScheduleViewComponent, typeof i92.OptionsComponent, typeof i93.TraceViewComponent, typeof i94.ProgressButtonDirective, typeof i95.AttachmentsComponent, typeof i96.DocumentEventsComponent, typeof i97.TagsComponent, typeof i98.MapComponent, typeof i99.MaskComponent, typeof i100.SaveChangesDialog, typeof i101.FlowViewComponent, typeof i102.SubstitutionComponent, typeof i103.PopupComponent, typeof i104.AttachmentPreview, typeof i105.CommentsComponent, typeof i106.CommentComponent, typeof i107.EditCommentComponent, typeof i108.CommentLikesComponent, typeof i109.CommentEditsComponent, typeof i110.BrowseItemsComponent, typeof i111.BrowseFilterComponent, typeof i112.ExpandedItemComponent, typeof i113.ComposeFormComponent, typeof i114.CubeViewComponent, typeof i115.CubeFilterComponent, typeof i116.CubeAccumulationChartComponent, typeof i117.CubeChartComponent, typeof i118.CubePivotComponent, typeof i119.CubeSpreadsheetComponent, typeof i120.CubeGridComponent, typeof i121.ReportViewerComponent, typeof i122.TableViewComponent, typeof i123.ReportArgumentsComponent, typeof i124.DashboardComponent, typeof i125.WidgetItemComponent, typeof i126.CubeWidgetFilterComponent, typeof i127.CubeAccumAnalysisWidget, typeof i128.CubeAnalysisWidget, typeof i129.CubeChartAnalysisWidget, typeof i130.ActionsWidget, typeof i131.RecentsWidget, typeof i132.AskDialog, typeof i133.AboutDialog, typeof i134.ActionDialog, typeof i135.ImpersonateDialog, typeof i136.ConversationComponent, typeof i137.CubeMatrixPageComponent, typeof i138.VersionCompareComponent, typeof i139.ExploreDocumentComponent, typeof i140.TasksComponent, typeof i141.PendingResultsWidget, typeof i142.CompareDepartmentsWidget, typeof i143.CubeDocumentsComponent, typeof i144.CubeDocumentsWidget, typeof i145.PersonalScoreWidget, typeof i146.PersonalActivityWidget, typeof i147.PeersPerformanceWidget, typeof i148.UsagePivotComponent, typeof i149.UsageChartComponent, typeof i150.UsageReportArgs, typeof i151.EmojiHostComponent, typeof i152.TooltipDirective, typeof i152.TooltipComponent], [typeof i153.CommonModule, typeof i154.HttpClientModule, typeof i155.ReactiveFormsModule, typeof i156.FlexLayoutModule, typeof i157.RouterModule, typeof i158.MomentModule, typeof i159.PickerModule, typeof i160.GanttModule, typeof i161.SyncfusionScheduleModule, typeof i162.SyncfusionCircularGaugeModule, typeof i163.SyncfusionChartModule, typeof i164.SparklineAllModule, typeof i165.SyncfusionGridModule, typeof i166.RichTextEditorModule, typeof i167.SyncfusionSpreadsheetModule, typeof i168.SyncfusionPivotModule, typeof i169.KanbanModule, typeof i170.SyncfusionDiagramModule, typeof i171.MaterialModule], [typeof i1.CheckboxComponent, typeof i2.CubeParallelComponent, typeof i3.CubeSumComponent, typeof i8.ExploreItemImplComponent, typeof i9.DocumentInfoComponent, typeof i10.DocumentViewsComponent, typeof i124.DashboardComponent, typeof i97.TagsComponent, typeof i17.QuickCommentComponent, typeof i171.MaterialModule, typeof i105.CommentsComponent, typeof i27.BrokenPage, typeof i134.ActionDialog, typeof i111.BrowseFilterComponent, typeof i115.CubeFilterComponent, typeof i91.ScheduleViewComponent, typeof i121.ReportViewerComponent, typeof i125.WidgetItemComponent, typeof i114.CubeViewComponent, typeof i67.ExploreItemsComponent, typeof i113.ComposeFormComponent, typeof i110.BrowseItemsComponent, typeof i71.NotificationsTableComponent, typeof i15.ActionPicker, typeof i136.ConversationComponent, typeof i26.StateDirective, typeof i16.ContactsComponent, typeof i65.CubeMatrixComponent, typeof i18.DurationFormatPipe, typeof i19.CombinationPicker, typeof i21.CombinationPool, typeof i29.TimePicker, typeof i152.TooltipDirective, typeof i24.DateRangePipe, typeof i63.NgxComponentOutlet, typeof i23.MatIconAnimate, typeof i36.AceInput, typeof i28.JoinPipe, typeof i30.TypeValuePipe, typeof i31.TypeSelect, typeof i32.TypeAutocomplete, typeof i39.StatePipe, typeof i40.ActionPipe, typeof i41.RolePipe, typeof i42.FormPipe, typeof i43.FilterPipe, typeof i43.ArraySortPipe, typeof i44.UserNamePipe, typeof i35.SanitizeHtmlPipe, typeof i33.TranslatePipe, typeof i34.IdentityName, typeof i38.AddressInput, typeof i60.AvatarComponent, typeof i123.ReportArgumentsComponent, typeof i27.BizDocApp, typeof i104.AttachmentPreview, typeof i74.PrivilegeHiddenDirective, typeof i74.PrivilegeDisabledDirective, typeof i68.CompareGroupDirective, typeof i68.CompareNameDirective, typeof i68.CompareContextDirective, typeof i93.TraceViewComponent, typeof i101.FlowViewComponent, typeof i59.AssignActionComponent, typeof i58.ReturnActionComponent, typeof i139.ExploreDocumentComponent, typeof i130.ActionsWidget, typeof i128.CubeAnalysisWidget, typeof i144.CubeDocumentsWidget, typeof i131.RecentsWidget, typeof i146.PersonalActivityWidget, typeof i142.CompareDepartmentsWidget, typeof i147.PeersPerformanceWidget, typeof i141.PendingResultsWidget, typeof i145.PersonalScoreWidget, typeof i126.CubeWidgetFilterComponent, typeof i143.CubeDocumentsComponent, typeof i79.CubeGridDocumentsComponent, typeof i140.TasksComponent, typeof i150.UsageReportArgs, typeof i149.UsageChartComponent, typeof i148.UsagePivotComponent, typeof i37.TimespanInput, typeof i138.VersionCompareComponent, typeof i64.LottieAnimation, typeof i116.CubeAccumulationChartComponent, typeof i117.CubeChartComponent, typeof i118.CubePivotComponent, typeof i119.CubeSpreadsheetComponent, typeof i120.CubeGridComponent]>;
177
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, [typeof i1.CheckboxComponent, typeof i2.CubeParallelComponent, typeof i3.CubeSumComponent, typeof i4.CubeParallelViewComponent, typeof i5.CubeChartViewComponent, typeof i6.CubeExploreViewComponent, typeof i7.CubeDocumentSumComponent, typeof i8.ExploreItemImplComponent, typeof i9.DocumentInfoComponent, typeof i10.DocumentViewsComponent, typeof i11.ViewItemComponent, typeof i12.CubeDocumentMatrixComponent, typeof i13.CubeDocumentViewComponent, typeof i14.CubePivotViewComponent, typeof i15.ActionPicker, typeof i16.HtmlSimplePipe, typeof i17.QuickCommentComponent, typeof i18.DurationFormatPipe, typeof i19.CombinationPicker, typeof i20.CombinationPickerBody, typeof i21.CombinationPool, typeof i22.TimelineViewComponent, typeof i23.MatIconAnimate, typeof i24.DateRangePipe, typeof i24.AgoPipe, typeof i25.ColorPicker, typeof i26.StateDirective, typeof i27.BrokenPage, typeof i28.JoinPipe, typeof i29.TimePicker, typeof i30.TypeValuePipe, typeof i31.TypeSelect, typeof i32.TypeAutocomplete, typeof i33.TranslatePipe, typeof i34.IdentityName, typeof i35.SanitizeHtmlPipe, typeof i36.AceInput, typeof i37.TimespanInput, typeof i38.AddressInput, typeof i39.StatePipe, typeof i40.ActionPipe, typeof i41.RolePipe, typeof i42.FormPipe, typeof i43.FilterPipe, typeof i43.ArraySortPipe, typeof i44.UserNamePipe, typeof i45.LayoutComponent, typeof i46.HtmlField, typeof i47.NumericField, typeof i48.AutocompleteField, typeof i49.CheckField, typeof i50.DateField, typeof i51.DateRangeField, typeof i52.ExpressionField, typeof i53.InputField, typeof i54.SelectField, typeof i55.SwitchField, typeof i56.TextareaField, typeof i57.TimespanField, typeof i58.ReturnActionComponent, typeof i59.AssignActionComponent, typeof i60.AvatarComponent, typeof i61.PeopleComponent, typeof i62.EditInputComponent, typeof i63.NgxComponentOutlet, typeof i27.BizDocApp, typeof i64.LottieAnimation, typeof i16.ContactsComponent, typeof i65.CubeMatrixComponent, typeof i66.FilterTagsComponent, typeof i67.ExploreItemsComponent, typeof i68.CompareNameDirective, typeof i68.CompareGroupDirective, typeof i68.CompareContextDirective, typeof i69.GuideComponent, typeof i70.OutOfOfficeToast, typeof i71.NotificationsTableComponent, typeof i72.NotificationsFilterComponent, typeof i73.TaggingPipe, typeof i74.PrivilegeHiddenDirective, typeof i75.TaggingItemDirective, typeof i76.TaggingDirective, typeof i77.DocumentTaggingComponent, typeof i78.UserTaggingComponent, typeof i74.PrivilegeDisabledDirective, typeof i79.CubeGridDocumentsComponent, typeof i80.LongRunningTaskNotification, typeof i81.TaggedNotification, typeof i82.CommentedNotification, typeof i83.NudgeNotification, typeof i84.TextNotification, typeof i85.CubeAnomalyNotification, typeof i86.EscalatedNotification, typeof i87.LikedNotification, typeof i88.StateChangedNotification, typeof i89.UpcomingEventNotification, typeof i90.NoneComponent, typeof i91.ScheduleViewComponent, typeof i92.OptionsComponent, typeof i93.TraceViewComponent, typeof i94.ProgressButtonDirective, typeof i95.AttachmentsComponent, typeof i96.DocumentEventsComponent, typeof i97.TagsComponent, typeof i98.MapComponent, typeof i99.MaskComponent, typeof i100.SaveChangesDialog, typeof i101.FlowViewComponent, typeof i102.SubstitutionComponent, typeof i103.PopupComponent, typeof i104.AttachmentPreview, typeof i105.CommentsComponent, typeof i106.CommentComponent, typeof i107.EditCommentComponent, typeof i108.CommentLikesComponent, typeof i109.CommentEditsComponent, typeof i110.BrowseItemsComponent, typeof i111.BrowseFilterComponent, typeof i112.ExpandedItemComponent, typeof i113.ComposeFormComponent, typeof i114.CubeViewComponent, typeof i115.CubeFilterComponent, typeof i116.CubeAccumulationChartComponent, typeof i117.CubeChartComponent, typeof i118.CubePivotComponent, typeof i119.CubeSpreadsheetComponent, typeof i120.CubeGridComponent, typeof i121.ReportViewerComponent, typeof i122.TableViewComponent, typeof i123.ReportArgumentsComponent, typeof i124.DashboardComponent, typeof i125.WidgetItemComponent, typeof i126.CubeWidgetFilterComponent, typeof i127.CubeAccumAnalysisWidget, typeof i128.CubeAnalysisWidget, typeof i129.CubeChartAnalysisWidget, typeof i130.ActionsWidget, typeof i131.RecentsWidget, typeof i132.AskDialog, typeof i133.AboutDialog, typeof i134.ActionDialog, typeof i135.ImpersonateDialog, typeof i136.ConversationComponent, typeof i137.CubeMatrixPageComponent, typeof i138.VersionCompareComponent, typeof i139.ExploreDocumentComponent, typeof i140.TasksComponent, typeof i141.PendingResultsWidget, typeof i142.CompareDepartmentsWidget, typeof i143.CubeDocumentsComponent, typeof i144.CubeDocumentsWidget, typeof i145.PersonalScoreWidget, typeof i146.PersonalActivityWidget, typeof i147.PeersPerformanceWidget, typeof i148.UsagePivotComponent, typeof i149.UsageChartComponent, typeof i150.UsageReportArgs, typeof i151.EmojiHostComponent, typeof i152.TooltipDirective, typeof i152.TooltipComponent], [typeof i153.CommonModule, typeof i154.HttpClientModule, typeof i155.ReactiveFormsModule, typeof i156.FlexLayoutModule, typeof i157.RouterModule, typeof i158.MomentModule, typeof i159.PickerModule, typeof i160.SyncfusionGanttModule, typeof i161.SyncfusionScheduleModule, typeof i162.SyncfusionCircularGaugeModule, typeof i163.SyncfusionChartModule, typeof i160.SyncfusionGanttModule, typeof i164.SyncfusionGridModule, typeof i165.RichTextEditorModule, typeof i166.SyncfusionSpreadsheetModule, typeof i167.SyncfusionPivotModule, typeof i168.KanbanModule, typeof i169.SyncfusionDiagramModule, typeof i170.MaterialModule], [typeof i1.CheckboxComponent, typeof i2.CubeParallelComponent, typeof i3.CubeSumComponent, typeof i8.ExploreItemImplComponent, typeof i9.DocumentInfoComponent, typeof i10.DocumentViewsComponent, typeof i124.DashboardComponent, typeof i97.TagsComponent, typeof i17.QuickCommentComponent, typeof i170.MaterialModule, typeof i105.CommentsComponent, typeof i27.BrokenPage, typeof i134.ActionDialog, typeof i111.BrowseFilterComponent, typeof i115.CubeFilterComponent, typeof i91.ScheduleViewComponent, typeof i121.ReportViewerComponent, typeof i125.WidgetItemComponent, typeof i114.CubeViewComponent, typeof i67.ExploreItemsComponent, typeof i113.ComposeFormComponent, typeof i110.BrowseItemsComponent, typeof i71.NotificationsTableComponent, typeof i15.ActionPicker, typeof i136.ConversationComponent, typeof i26.StateDirective, typeof i16.ContactsComponent, typeof i65.CubeMatrixComponent, typeof i18.DurationFormatPipe, typeof i19.CombinationPicker, typeof i21.CombinationPool, typeof i29.TimePicker, typeof i152.TooltipDirective, typeof i24.DateRangePipe, typeof i63.NgxComponentOutlet, typeof i23.MatIconAnimate, typeof i36.AceInput, typeof i28.JoinPipe, typeof i30.TypeValuePipe, typeof i31.TypeSelect, typeof i32.TypeAutocomplete, typeof i39.StatePipe, typeof i40.ActionPipe, typeof i41.RolePipe, typeof i42.FormPipe, typeof i43.FilterPipe, typeof i43.ArraySortPipe, typeof i44.UserNamePipe, typeof i35.SanitizeHtmlPipe, typeof i33.TranslatePipe, typeof i34.IdentityName, typeof i38.AddressInput, typeof i60.AvatarComponent, typeof i123.ReportArgumentsComponent, typeof i27.BizDocApp, typeof i104.AttachmentPreview, typeof i74.PrivilegeHiddenDirective, typeof i74.PrivilegeDisabledDirective, typeof i68.CompareGroupDirective, typeof i68.CompareNameDirective, typeof i68.CompareContextDirective, typeof i93.TraceViewComponent, typeof i101.FlowViewComponent, typeof i59.AssignActionComponent, typeof i58.ReturnActionComponent, typeof i139.ExploreDocumentComponent, typeof i130.ActionsWidget, typeof i128.CubeAnalysisWidget, typeof i144.CubeDocumentsWidget, typeof i131.RecentsWidget, typeof i146.PersonalActivityWidget, typeof i142.CompareDepartmentsWidget, typeof i147.PeersPerformanceWidget, typeof i141.PendingResultsWidget, typeof i145.PersonalScoreWidget, typeof i126.CubeWidgetFilterComponent, typeof i143.CubeDocumentsComponent, typeof i79.CubeGridDocumentsComponent, typeof i140.TasksComponent, typeof i150.UsageReportArgs, typeof i149.UsageChartComponent, typeof i148.UsagePivotComponent, typeof i37.TimespanInput, typeof i138.VersionCompareComponent, typeof i64.LottieAnimation, typeof i116.CubeAccumulationChartComponent, typeof i117.CubeChartComponent, typeof i118.CubePivotComponent, typeof i119.CubeSpreadsheetComponent, typeof i120.CubeGridComponent]>;
179
178
  static ɵinj: i0.ɵɵInjectorDeclaration<SharedModule>;
180
179
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bizdoc/core",
3
- "version": "1.9.13",
3
+ "version": "1.9.14",
4
4
  "author": "Moding Ltd.",
5
5
  "homepage": "https://github.com/moding-il/bizdoc.core",
6
6
  "license": "https://github.com/moding-il/bizdoc.core/blob/master/License.md",
@@ -24,7 +24,6 @@
24
24
  "@syncfusion/ej2-angular-spreadsheet": "^19.3.53",
25
25
  "@syncfusion/ej2-base": "^19.3.54",
26
26
  "@teamhive/lottie-player": "^1.0.0",
27
- "ajv": "^8.8.1",
28
27
  "brace": "^0.11.1",
29
28
  "cookie": "^0.4.1",
30
29
  "firebase": "^9.5.0",