gamma-app-controller 1.2.22 → 1.2.24
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/template-module/defaulLandingComponent/landing-component.component.mjs +3 -3
- package/esm2020/lib/template-module/defaulLandingMultiLayoutComponent/defaulLandingMultiLayout.component.mjs +3 -3
- package/esm2020/lib/template-module/kpiWithSingleLayout/kpi-with-dataset.component.mjs +3 -3
- package/fesm2015/gamma-app-controller.mjs +6 -6
- package/fesm2015/gamma-app-controller.mjs.map +1 -1
- package/fesm2020/gamma-app-controller.mjs +6 -6
- package/fesm2020/gamma-app-controller.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -18615,7 +18615,7 @@ class KpiWithDataSetTestComponent {
|
|
|
18615
18615
|
this.componentConfigDataSource = viewConfig;
|
|
18616
18616
|
this.dataSetModal = datasetConfig;
|
|
18617
18617
|
this.allWidgetByDataset = [];
|
|
18618
|
-
const { pageId, startDate, endDate, ...params } = this.activatedRoute.snapshot.queryParams;
|
|
18618
|
+
const { pageId, startDate, endDate, id, name, ...params } = this.activatedRoute.snapshot.queryParams;
|
|
18619
18619
|
let defaultFilters = { operationFilter: { startDate: "", endDate: "", ...params } };
|
|
18620
18620
|
this.dashBoardWidgetConfig.widgets.forEach(widget => {
|
|
18621
18621
|
widget.filters.filterItems.forEach(element => {
|
|
@@ -19143,7 +19143,7 @@ class KpiWithDataSetTestComponent {
|
|
|
19143
19143
|
else if (eventType == 'navigateToPage') {
|
|
19144
19144
|
this.service.getAppPageDetailConfig(associatedPage).subscribe({
|
|
19145
19145
|
next: (data) => {
|
|
19146
|
-
let { pageId, ...params } = this.activatedRoute.snapshot.queryParams;
|
|
19146
|
+
let { pageId, id, name, ...params } = this.activatedRoute.snapshot.queryParams;
|
|
19147
19147
|
let associatedParamsTemplate = clickEventOptions.associatedParams;
|
|
19148
19148
|
let appliedFilters = this.getSetOperatorFilter(event, this.stateDataSource.get(event.viewId));
|
|
19149
19149
|
event.keyToPass.forEach(element => {
|
|
@@ -22232,7 +22232,7 @@ class LandingComponentComponent {
|
|
|
22232
22232
|
this.componentConfigDataSource = viewConfig;
|
|
22233
22233
|
this.dataSetModal = datasetConfig;
|
|
22234
22234
|
this.allWidgetByDataset = [];
|
|
22235
|
-
const { pageId, startDate, endDate, ...params } = this.activatedRoute.snapshot.queryParams;
|
|
22235
|
+
const { pageId, startDate, endDate, id, name, ...params } = this.activatedRoute.snapshot.queryParams;
|
|
22236
22236
|
let defaultFilters = { operationFilter: { startDate: "", endDate: "", ...params } };
|
|
22237
22237
|
this.dashBoardWidgetConfig.widgets.forEach(widget => {
|
|
22238
22238
|
widget.filters.filterItems.forEach(element => {
|
|
@@ -22761,7 +22761,7 @@ class LandingComponentComponent {
|
|
|
22761
22761
|
else if (eventType == 'navigateToPage') {
|
|
22762
22762
|
this.service.getAppPageDetailConfig(associatedPage).subscribe({
|
|
22763
22763
|
next: (data) => {
|
|
22764
|
-
let { pageId, ...params } = this.activatedRoute.snapshot.queryParams;
|
|
22764
|
+
let { pageId, id, name, ...params } = this.activatedRoute.snapshot.queryParams;
|
|
22765
22765
|
let associatedParamsTemplate = clickEventOptions.associatedParams;
|
|
22766
22766
|
let appliedFilters = this.getSetOperatorFilter(event, this.stateDataSource.get(event.viewId));
|
|
22767
22767
|
event.keyToPass.forEach(element => {
|
|
@@ -24131,7 +24131,7 @@ class MultiLayoutLandingComponentComponent {
|
|
|
24131
24131
|
this.componentConfigDataSource = viewConfig;
|
|
24132
24132
|
this.dataSetModal = datasetConfig;
|
|
24133
24133
|
this.allWidgetByDataset = [];
|
|
24134
|
-
const { pageId, startDate, endDate, ...params } = this.activatedRoute.snapshot.queryParams;
|
|
24134
|
+
const { pageId, startDate, endDate, id, name, ...params } = this.activatedRoute.snapshot.queryParams;
|
|
24135
24135
|
this.dashBoardWidgetConfig.widgets.forEach(widget => {
|
|
24136
24136
|
let defaultFilters = { operationFilter: { startDate: "", endDate: "", ...params } };
|
|
24137
24137
|
widget.filters.filterItems.forEach(element => {
|
|
@@ -24655,7 +24655,7 @@ class MultiLayoutLandingComponentComponent {
|
|
|
24655
24655
|
else if (eventType == 'navigateToPage') {
|
|
24656
24656
|
this.service.getAppPageDetailConfig(associatedPage).subscribe({
|
|
24657
24657
|
next: (data) => {
|
|
24658
|
-
let { pageId, ...params } = this.activatedRoute.snapshot.queryParams;
|
|
24658
|
+
let { pageId, id, name, ...params } = this.activatedRoute.snapshot.queryParams;
|
|
24659
24659
|
let associatedParamsTemplate = clickEventOptions.associatedParams;
|
|
24660
24660
|
let appliedFilters = this.getSetOperatorFilter(event, this.stateDataSource.get(event.viewId));
|
|
24661
24661
|
event.keyToPass.forEach(element => {
|