@bizdoc/core 1.11.2 → 1.11.3
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/accum/accum.component.mjs +2 -2
- package/esm2020/lib/cube/chart/chart.component.mjs +2 -2
- package/esm2020/lib/cube/explore/explore.pane.component.mjs +2 -2
- package/esm2020/lib/cube/grid/grid.component.mjs +2 -2
- package/esm2020/lib/cube/grid/spreadsheet.component.mjs +2 -2
- package/esm2020/lib/cube/matrix/popup.component.mjs +3 -3
- package/esm2020/lib/cube/matrix/table.component.mjs +2 -2
- package/esm2020/lib/cube/pivot/pivot.component.mjs +2 -2
- package/esm2020/lib/cube/view.mobile.component.mjs +2 -2
- package/esm2020/lib/views/cube/explore.component.mjs +2 -2
- package/fesm2015/bizdoc-core.mjs +11 -11
- package/fesm2015/bizdoc-core.mjs.map +1 -1
- package/fesm2020/bizdoc-core.mjs +11 -11
- package/fesm2020/bizdoc-core.mjs.map +1 -1
- package/package.json +1 -1
package/fesm2020/bizdoc-core.mjs
CHANGED
@@ -8918,7 +8918,7 @@ class CubeAccumulationChartComponent {
|
|
8918
8918
|
this._draw();
|
8919
8919
|
this.loadingChange.emit(false);
|
8920
8920
|
}, (e) => {
|
8921
|
-
this._sb.error(e.status ===
|
8921
|
+
this._sb.error(e.status === 406 ? 'Unauthorized' : null);
|
8922
8922
|
this.loadingChange.emit(false);
|
8923
8923
|
});
|
8924
8924
|
}
|
@@ -9172,7 +9172,7 @@ class CubeChartComponent {
|
|
9172
9172
|
this._draw();
|
9173
9173
|
this.loadingChange.emit(false);
|
9174
9174
|
}, (e) => {
|
9175
|
-
this._sb.error(e.status ===
|
9175
|
+
this._sb.error(e.status === 406 ? 'Unauthorized' : null);
|
9176
9176
|
this.loadingChange.emit(false);
|
9177
9177
|
});
|
9178
9178
|
}
|
@@ -9463,7 +9463,7 @@ class CubeGridComponent {
|
|
9463
9463
|
this.loadingChange.emit(false);
|
9464
9464
|
});
|
9465
9465
|
}, (e) => {
|
9466
|
-
this._sb.error(e.status ===
|
9466
|
+
this._sb.error(e.status === 406 ? 'Unauthorized' : null);
|
9467
9467
|
this.loadingChange.emit(false);
|
9468
9468
|
});
|
9469
9469
|
}
|
@@ -9769,7 +9769,7 @@ class CubePivotComponent {
|
|
9769
9769
|
this._draw();
|
9770
9770
|
this.loadingChange.emit(false);
|
9771
9771
|
}, (e) => {
|
9772
|
-
this._sb.error(e.status ===
|
9772
|
+
this._sb.error(e.status === 406 ? 'Unauthorized' : null);
|
9773
9773
|
this.loadingChange.emit(false);
|
9774
9774
|
});
|
9775
9775
|
}
|
@@ -10155,7 +10155,7 @@ class CubeSpreadsheetComponent {
|
|
10155
10155
|
this._draw();
|
10156
10156
|
this.loadingChange.emit(false);
|
10157
10157
|
}, (e) => {
|
10158
|
-
this._sb.error(e.status ===
|
10158
|
+
this._sb.error(e.status === 406 ? 'Unauthorized' : null);
|
10159
10159
|
this.loadingChange.emit(false);
|
10160
10160
|
});
|
10161
10161
|
else
|
@@ -12001,7 +12001,7 @@ class CubeExplorePaneComponent {
|
|
12001
12001
|
this.loading = false;
|
12002
12002
|
}, e => {
|
12003
12003
|
this.loading = false;
|
12004
|
-
this._sb.error(e.status ===
|
12004
|
+
this._sb.error(e.status === 406 ? 'Unauthorized' : null);
|
12005
12005
|
});
|
12006
12006
|
}
|
12007
12007
|
}
|
@@ -14658,7 +14658,7 @@ class CubeMatrixComponent {
|
|
14658
14658
|
clearTimeout(progressTask);
|
14659
14659
|
this.loadingChange.next(this.loading = false);
|
14660
14660
|
}, (e) => {
|
14661
|
-
this._sb.error(e.status ===
|
14661
|
+
this._sb.error(e.status === 406 ? 'Unauthorized' : null);
|
14662
14662
|
clearTimeout(progressTask);
|
14663
14663
|
this.loadingChange.next(this.loading = false);
|
14664
14664
|
}));
|
@@ -19562,7 +19562,7 @@ class CubeMobileViewComponent extends ViewBase {
|
|
19562
19562
|
this.loading = false;
|
19563
19563
|
}, e => {
|
19564
19564
|
this.loading = false;
|
19565
|
-
this._sb.error(e.status ===
|
19565
|
+
this._sb.error(e.status === 406 ? 'Unauthorized' : null);
|
19566
19566
|
});
|
19567
19567
|
}
|
19568
19568
|
toggleFilter() {
|
@@ -20324,9 +20324,9 @@ class CubeMatrixPopupComponent extends CubeMatrixBase {
|
|
20324
20324
|
}
|
20325
20325
|
ngOnInit() {
|
20326
20326
|
this.table.loadingChange.pipe(filter$1(ok => !ok), first$1()).subscribe(() => this.preloading = false, (e) => {
|
20327
|
-
if (e.status ===
|
20327
|
+
if (e.status === 406)
|
20328
20328
|
this._ref.close();
|
20329
|
-
this._sb.error(e.status ===
|
20329
|
+
this._sb.error(e.status === 406 ? 'Unauthorized' : null);
|
20330
20330
|
});
|
20331
20331
|
}
|
20332
20332
|
}
|
@@ -25564,7 +25564,7 @@ let CubeExploreViewComponent = class CubeExploreViewComponent extends CubeBase {
|
|
25564
25564
|
this.loading = false;
|
25565
25565
|
}, e => {
|
25566
25566
|
this.loading = false;
|
25567
|
-
this._sb.error(e.status ===
|
25567
|
+
this._sb.error(e.status === 406 ? 'Unauthorized' : null);
|
25568
25568
|
});
|
25569
25569
|
}
|
25570
25570
|
};
|