@gooddata/sdk-ui-dashboard 11.36.0-alpha.2 → 11.36.0-alpha.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/NOTICE CHANGED
@@ -7,9 +7,9 @@
7
7
 
8
8
  The following 3rd-party software packages may be used by or distributed with gooddata-ui-sdk. Any information relevant to third-party vendors listed below are collected using common, reasonable means.
9
9
 
10
- Date generated: 2026-5-14
10
+ Date generated: 2026-5-18
11
11
 
12
- Revision ID: e0dd31784bf887c487c57eeec7e5e701b16d394f
12
+ Revision ID: 92b445a16b77d7d9543b67d63221a8bc155c1615
13
13
 
14
14
  ================================================================================
15
15
  ================================================================================
@@ -38277,4 +38277,4 @@ POSSIBILITY OF SUCH DAMAGE.
38277
38277
  --------------------------------------------------------------------------------
38278
38278
  --------------------------------------------------------------------------------
38279
38279
 
38280
- Report Generated by FOSSA on 2026-5-14
38280
+ Report Generated by FOSSA on 2026-5-18
@@ -1,3 +1,3 @@
1
- export declare const LIB_VERSION = "11.36.0-alpha.2";
1
+ export declare const LIB_VERSION = "11.36.0-alpha.3";
2
2
  export declare const LIB_DESCRIPTION = "GoodData SDK - Dashboard Component";
3
3
  export declare const LIB_NAME = "@gooddata/sdk-ui-dashboard";
package/esm/__version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  // (C) 2021 GoodData Corporation
2
2
  // DO NOT CHANGE THIS FILE, IT IS RE-GENERATED ON EVERY BUILD
3
- export const LIB_VERSION = "11.36.0-alpha.2";
3
+ export const LIB_VERSION = "11.36.0-alpha.3";
4
4
  export const LIB_DESCRIPTION = "GoodData SDK - Dashboard Component";
5
5
  export const LIB_NAME = "@gooddata/sdk-ui-dashboard";
@@ -3,7 +3,7 @@ import { compact, omit } from "lodash-es";
3
3
  import { batchActions } from "redux-batched-actions";
4
4
  import { all, call, put, select } from "redux-saga/effects";
5
5
  import { generateDateFilterLocalIdentifier } from "@gooddata/sdk-backend-base";
6
- import { dashboardFilterLocalIdentifier, filterLocalIdentifier, filterObjRef, idRef, insightFilters, isAbsoluteDateFilter, isAttributeFilter, isDashboardAttributeFilter, isDashboardAttributeFilterItem, isDashboardCommonDateFilter, isDashboardDateFilter, isDateFilter, isExportDefinitionDashboardRequestPayload, isExportDefinitionVisualizationObjectRequestPayload, isFilterContextItem, isInsightWidget, isRelativeDateFilter, isSingleSelectionFilter, } from "@gooddata/sdk-model";
6
+ import { dashboardFilterLocalIdentifier, filterLocalIdentifier, filterObjRef, idRef, insightFilters, isAbsoluteDateFilter, isAttributeFilter, isDashboardAttributeFilter, isDashboardAttributeFilterItem, isDashboardCommonDateFilter, isDashboardDateFilter, isDateFilter, isExportDefinitionDashboardRequestPayload, isExportDefinitionVisualizationObjectRequestPayload, isFilterContextItem, isInsightWidget, isMeasureValueFilter, isObjRef, isRelativeDateFilter, isSingleSelectionFilter, measureValueFilterMeasure, } from "@gooddata/sdk-model";
7
7
  import { convertError } from "@gooddata/sdk-ui";
8
8
  import { dashboardFilterToFilterContextItem } from "../../../_staging/dashboard/dashboardFilterContext.js";
9
9
  import { isDashboardFilter } from "../../../types.js";
@@ -338,6 +338,12 @@ function getDashboardFiltersOnly(filters, commonDateFilterLocalId, insight, widg
338
338
  */
339
339
  function removeAlertFilters(filters) {
340
340
  return filters?.filter((f) => {
341
+ if (isMeasureValueFilter(f)) {
342
+ // Keep MVFs whose measure is an ObjRef —
343
+ // dashboard MVFs always store an ObjRef (catalog metric) and the downstream conversion
344
+ // in dashboardFilterToFilterContextItem requires it.
345
+ return isObjRef(measureValueFilterMeasure(f));
346
+ }
341
347
  const objRef = filterObjRef(f);
342
348
  return !!objRef;
343
349
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooddata/sdk-ui-dashboard",
3
- "version": "11.36.0-alpha.2",
3
+ "version": "11.36.0-alpha.3",
4
4
  "description": "GoodData SDK - Dashboard Component",
5
5
  "license": "LicenseRef-LICENSE",
6
6
  "author": "GoodData Corporation",
@@ -60,19 +60,19 @@
60
60
  "ts-invariant": "0.10.3",
61
61
  "tslib": "2.8.1",
62
62
  "uuid": "11.1.0",
63
- "@gooddata/sdk-backend-base": "11.36.0-alpha.2",
64
- "@gooddata/sdk-backend-spi": "11.36.0-alpha.2",
65
- "@gooddata/sdk-model": "11.36.0-alpha.2",
66
- "@gooddata/sdk-ui": "11.36.0-alpha.2",
67
- "@gooddata/sdk-ui-charts": "11.36.0-alpha.2",
68
- "@gooddata/sdk-ui-ext": "11.36.0-alpha.2",
69
- "@gooddata/sdk-ui-filters": "11.36.0-alpha.2",
70
- "@gooddata/sdk-ui-geo": "11.36.0-alpha.2",
71
- "@gooddata/sdk-ui-kit": "11.36.0-alpha.2",
72
- "@gooddata/sdk-ui-pivot": "11.36.0-alpha.2",
73
- "@gooddata/sdk-ui-theme-provider": "11.36.0-alpha.2",
74
- "@gooddata/sdk-ui-vis-commons": "11.36.0-alpha.2",
75
- "@gooddata/util": "11.36.0-alpha.2"
63
+ "@gooddata/sdk-backend-base": "11.36.0-alpha.3",
64
+ "@gooddata/sdk-backend-spi": "11.36.0-alpha.3",
65
+ "@gooddata/sdk-model": "11.36.0-alpha.3",
66
+ "@gooddata/sdk-ui": "11.36.0-alpha.3",
67
+ "@gooddata/sdk-ui-charts": "11.36.0-alpha.3",
68
+ "@gooddata/sdk-ui-ext": "11.36.0-alpha.3",
69
+ "@gooddata/sdk-ui-filters": "11.36.0-alpha.3",
70
+ "@gooddata/sdk-ui-kit": "11.36.0-alpha.3",
71
+ "@gooddata/sdk-ui-theme-provider": "11.36.0-alpha.3",
72
+ "@gooddata/sdk-ui-geo": "11.36.0-alpha.3",
73
+ "@gooddata/sdk-ui-vis-commons": "11.36.0-alpha.3",
74
+ "@gooddata/util": "11.36.0-alpha.3",
75
+ "@gooddata/sdk-ui-pivot": "11.36.0-alpha.3"
76
76
  },
77
77
  "devDependencies": {
78
78
  "@microsoft/api-documenter": "^7.17.0",
@@ -118,12 +118,12 @@
118
118
  "typescript": "5.9.3",
119
119
  "vitest": "4.1.0",
120
120
  "vitest-dom": "0.1.1",
121
- "@gooddata/eslint-config": "11.36.0-alpha.2",
122
- "@gooddata/i18n-toolkit": "11.36.0-alpha.2",
123
- "@gooddata/reference-workspace": "11.36.0-alpha.2",
124
- "@gooddata/oxlint-config": "11.36.0-alpha.2",
125
- "@gooddata/sdk-backend-mockingbird": "11.36.0-alpha.2",
126
- "@gooddata/stylelint-config": "11.36.0-alpha.2"
121
+ "@gooddata/i18n-toolkit": "11.36.0-alpha.3",
122
+ "@gooddata/oxlint-config": "11.36.0-alpha.3",
123
+ "@gooddata/reference-workspace": "11.36.0-alpha.3",
124
+ "@gooddata/eslint-config": "11.36.0-alpha.3",
125
+ "@gooddata/sdk-backend-mockingbird": "11.36.0-alpha.3",
126
+ "@gooddata/stylelint-config": "11.36.0-alpha.3"
127
127
  },
128
128
  "peerDependencies": {
129
129
  "react": "^18.0.0 || ^19.0.0",