@bizdoc/core 1.14.0-next.12 → 1.14.0-next.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/cube/pivot/pivot.component.mjs +2 -3
- package/esm2020/lib/views/cube/sum.component.mjs +3 -3
- package/fesm2015/bizdoc-core.mjs +5 -6
- package/fesm2015/bizdoc-core.mjs.map +1 -1
- package/fesm2020/bizdoc-core.mjs +5 -6
- package/fesm2020/bizdoc-core.mjs.map +1 -1
- package/lib/views/cube/sum.component.d.ts +1 -1
- package/package.json +1 -1
package/fesm2020/bizdoc-core.mjs
CHANGED
@@ -125,7 +125,7 @@ import { Workbook } from '@syncfusion/ej2-excel-export';
|
|
125
125
|
import { Chart } from '@syncfusion/ej2-charts';
|
126
126
|
import * as i6$5 from '@syncfusion/ej2-angular-grids';
|
127
127
|
import { Grid, Selection, Aggregate, Freeze, ExcelExport, Resize, GridModule, PagerModule, ExcelExportService, AggregateService, FreezeService, GroupService, PageService, ResizeService, SortService, SelectionService as SelectionService$1, GridComponent } from '@syncfusion/ej2-angular-grids';
|
128
|
-
import { PivotView
|
128
|
+
import { PivotView } from '@syncfusion/ej2-pivotview';
|
129
129
|
import { Tooltip } from '@syncfusion/ej2-popups';
|
130
130
|
import * as i9$5 from '@syncfusion/ej2-angular-spreadsheet';
|
131
131
|
import { Spreadsheet, isNumber, SpreadsheetModule, SelectionService as SelectionService$2, BasicModuleService, ClipboardService, CellFormatService, KeyboardNavigationService, KeyboardShortcutService, NumberFormatService } from '@syncfusion/ej2-angular-spreadsheet';
|
@@ -138,7 +138,7 @@ import { Schedule, Day, WorkWeek, Month, MonthAgenda, Agenda, Year, ScheduleModu
|
|
138
138
|
import * as i10$1 from '@syncfusion/ej2-angular-kanban';
|
139
139
|
import { KanbanComponent, KanbanModule } from '@syncfusion/ej2-angular-kanban';
|
140
140
|
import { CircularGaugeModule, AnnotationsService, GaugeTooltipService, LegendService as LegendService$1, CircularGauge, Annotations, GaugeTooltip, CircularGaugeComponent, Legend as Legend$1 } from '@syncfusion/ej2-angular-circulargauge';
|
141
|
-
import { PivotViewModule, ExcelExportService as ExcelExportService$1, GroupingBarService, NumberFormattingService, GroupingService, PivotChartService, ConditionalFormattingService, PivotView as PivotView$1, GroupingBar, ExcelExport as ExcelExport$
|
141
|
+
import { PivotViewModule, ExcelExportService as ExcelExportService$1, GroupingBarService, NumberFormattingService, GroupingService, PivotChartService, ConditionalFormattingService, PivotView as PivotView$1, GroupingBar, ExcelExport as ExcelExport$1, PivotChart, PivotViewComponent } from '@syncfusion/ej2-angular-pivotview';
|
142
142
|
import * as i7$5 from '@syncfusion/ej2-angular-gantt';
|
143
143
|
import { GanttModule, ExcelExportService as ExcelExportService$3, DayMarkersService, SelectionService as SelectionService$3, Gantt } from '@syncfusion/ej2-angular-gantt';
|
144
144
|
import relativeTime from 'dayjs/plugin/relativeTime';
|
@@ -10278,7 +10278,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.1", ngImpor
|
|
10278
10278
|
type: HostBinding
|
10279
10279
|
}] } });
|
10280
10280
|
|
10281
|
-
PivotView.Inject(ExcelExport$1);
|
10282
10281
|
const PIVOT_HEADER_DELIMITER$1 = '|';
|
10283
10282
|
/** pivot component*/
|
10284
10283
|
class CubePivotComponent {
|
@@ -21029,7 +21028,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.1", ngImpor
|
|
21029
21028
|
providers: [ExcelExportService$1, GroupingBarService, NumberFormattingService, GroupingService, PivotChartService, ConditionalFormattingService]
|
21030
21029
|
}]
|
21031
21030
|
}] });
|
21032
|
-
PivotView$1.Inject(GroupingBar, ExcelExport$
|
21031
|
+
PivotView$1.Inject(GroupingBar, ExcelExport$1, PivotChart);
|
21033
21032
|
|
21034
21033
|
class SyncfusionScheduleModule {
|
21035
21034
|
}
|
@@ -26496,7 +26495,7 @@ let CubeDocumentSumComponent = class CubeDocumentSumComponent extends CubeBase {
|
|
26496
26495
|
this._router = _router;
|
26497
26496
|
}
|
26498
26497
|
async onViewBind() {
|
26499
|
-
const { xAxis, indices,
|
26498
|
+
const { xAxis, indices, series, periodPolicy, scope } = this._viewRef.options;
|
26500
26499
|
if (!xAxis)
|
26501
26500
|
throw 'sum view requires xAxis';
|
26502
26501
|
this.primaryAxis = this.cube.axes.find(a => a.name === xAxis);
|
@@ -26504,7 +26503,7 @@ let CubeDocumentSumComponent = class CubeDocumentSumComponent extends CubeBase {
|
|
26504
26503
|
if (isArray(originalValue))
|
26505
26504
|
this.selectedAxis = originalValue[0];
|
26506
26505
|
this.periodPolicy = periodPolicy;
|
26507
|
-
this.parentAxis =
|
26506
|
+
this.parentAxis = series;
|
26508
26507
|
this.indices = indices;
|
26509
26508
|
this.scope = scope;
|
26510
26509
|
}
|