@gooddata/sdk-ui-dashboard 11.44.0-alpha.0 → 11.44.0-alpha.1

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 (41) hide show
  1. package/NOTICE +75 -75
  2. package/esm/__version.d.ts +1 -1
  3. package/esm/__version.js +1 -1
  4. package/esm/index.d.ts +1 -1
  5. package/esm/index.d.ts.map +1 -1
  6. package/esm/index.js +1 -1
  7. package/esm/kdaDialog/dialog/KdaDialog.d.ts.map +1 -1
  8. package/esm/kdaDialog/dialog/KdaDialog.js +2 -1
  9. package/esm/kdaDialog/dialog/KdaDialogActionButtons.d.ts +2 -1
  10. package/esm/kdaDialog/dialog/KdaDialogActionButtons.d.ts.map +1 -1
  11. package/esm/kdaDialog/dialog/KdaDialogActionButtons.js +9 -6
  12. package/esm/kdaDialog/dialog/KdaDialogFloatingStatusBar.d.ts +4 -2
  13. package/esm/kdaDialog/dialog/KdaDialogFloatingStatusBar.d.ts.map +1 -1
  14. package/esm/kdaDialog/dialog/KdaDialogFloatingStatusBar.js +4 -4
  15. package/esm/kdaDialog/dialog/hooks/useKdaDialogAccessibility.d.ts +1 -0
  16. package/esm/kdaDialog/dialog/hooks/useKdaDialogAccessibility.d.ts.map +1 -1
  17. package/esm/kdaDialog/dialog/hooks/useKdaDialogAccessibility.js +6 -4
  18. package/esm/model/commandHandlers/dashboard/common/parameterHydration.js +2 -2
  19. package/esm/model/commands/executionResults.d.ts +18 -0
  20. package/esm/model/commands/executionResults.d.ts.map +1 -1
  21. package/esm/model/commands/executionResults.js +22 -0
  22. package/esm/model/react/useWidgetExecutionsHandler.d.ts.map +1 -1
  23. package/esm/model/react/useWidgetExecutionsHandler.js +18 -3
  24. package/esm/model/store/tabs/parameters/parametersHelpers.d.ts +58 -6
  25. package/esm/model/store/tabs/parameters/parametersHelpers.d.ts.map +1 -1
  26. package/esm/model/store/tabs/parameters/parametersHelpers.js +114 -22
  27. package/esm/model/store/tabs/parameters/parametersSelectors.d.ts +16 -1
  28. package/esm/model/store/tabs/parameters/parametersSelectors.d.ts.map +1 -1
  29. package/esm/model/store/tabs/parameters/parametersSelectors.js +51 -19
  30. package/esm/presentation/dashboard/components/ToastMessages.d.ts.map +1 -1
  31. package/esm/presentation/dashboard/components/ToastMessages.js +3 -1
  32. package/esm/presentation/filterBar/filterBar/filterViews/FilterViewsList.d.ts.map +1 -1
  33. package/esm/presentation/filterBar/filterBar/filterViews/FilterViewsList.js +3 -2
  34. package/esm/presentation/filterBar/parameterFilter/useParameterToastMessages.d.ts +12 -0
  35. package/esm/presentation/filterBar/parameterFilter/useParameterToastMessages.d.ts.map +1 -0
  36. package/esm/presentation/filterBar/parameterFilter/useParameterToastMessages.js +51 -0
  37. package/esm/presentation/localization/bundles/en-US.localization-bundle.d.ts +12 -0
  38. package/esm/presentation/localization/bundles/en-US.localization-bundle.d.ts.map +1 -1
  39. package/esm/presentation/localization/bundles/en-US.localization-bundle.js +12 -0
  40. package/esm/sdk-ui-dashboard.d.ts +19 -0
  41. package/package.json +20 -20
@@ -47,6 +47,7 @@ export function FilterViewsList({ filterViews = [], onAddNew, onClose, titleId:
47
47
  const canCreateFilterView = useDashboardSelector(selectCanCreateFilterView);
48
48
  const id = useId();
49
49
  const createViewId = `create-view-${id}`;
50
+ const infoButtonId = `filter-view-info-${id}`;
50
51
  const filterViewTooltipId = `filter-view-tooltip-${id}`;
51
52
  const titleId = titleIdProp ?? `filter-views-title-${id}`;
52
53
  const getItemAdditionalActions = useCallback(() => {
@@ -109,12 +110,12 @@ export function FilterViewsList({ filterViews = [], onAddNew, onClose, titleId:
109
110
  }
110
111
  setFocusedAction(SELECT_ITEM_ACTION);
111
112
  }, [containerRef, setFocusedAction]);
112
- return (_jsxs(UiFocusManager, { enableFocusTrap: true, enableAutofocus: { refocusKey, initialFocus: createViewId }, children: [filterViewToDelete ? (_jsx(FilterViewDeleteConfirm, { filterView: filterViewToDelete, onConfirm: () => {
113
+ return (_jsxs(UiFocusManager, { enableFocusTrap: true, enableAutofocus: { refocusKey, initialFocus: infoButtonId }, children: [filterViewToDelete ? (_jsx(FilterViewDeleteConfirm, { filterView: filterViewToDelete, onConfirm: () => {
113
114
  dispatch(deleteFilterView(filterViewToDelete.ref));
114
115
  setFilterViewToDelete(undefined);
115
116
  }, onCancel: () => setFilterViewToDelete(undefined) })) : null, _jsxs("div", { className: "configuration-panel configuration-panel__filter-view__list", children: [
116
117
  _jsx("div", { className: "configuration-panel-header", children: _jsxs("div", { className: "gd-title-with-icon", children: [
117
- _jsx(Typography, { tagName: "h3", className: "configuration-panel-header-title", id: titleId, children: _jsx(FormattedMessage, { id: "filters.filterViews.dropdown.title" }) }), _jsx(UiTooltip, { id: filterViewTooltipId, arrowPlacement: "top-end", content: contentTooltip, anchor: _jsx(UiIconButton, { icon: "question", variant: "tertiary", size: "small", accessibilityConfig: {
118
+ _jsx(Typography, { tagName: "h3", className: "configuration-panel-header-title", id: titleId, children: _jsx(FormattedMessage, { id: "filters.filterViews.dropdown.title" }) }), _jsx(UiTooltip, { id: filterViewTooltipId, arrowPlacement: "top-end", content: contentTooltip, anchor: _jsx(UiIconButton, { id: infoButtonId, icon: "question", variant: "tertiary", size: "small", accessibilityConfig: {
118
119
  ariaDescribedBy: filterViewTooltipId,
119
120
  ariaLabel: intl.formatMessage({
120
121
  id: "filters.filterViews.tooltip.ariaLabel",
@@ -0,0 +1,12 @@
1
+ /**
2
+ * Pushes one warning toast per parameter that no longer reconciles against the workspace catalog
3
+ * (out of range, removed, or type-incompatible), the message chosen by reconciliation kind.
4
+ *
5
+ * Each ref is toasted at most once per session: {@link selectParameterReconciliations} returns a
6
+ * fresh array whenever the set changes (catalog loads, a value is fixed), so a ref-key guard — not
7
+ * the effect's array identity — is what prevents re-toasting the survivors on every recompute.
8
+ *
9
+ * @internal
10
+ */
11
+ export declare function useParameterToastMessages(): void;
12
+ //# sourceMappingURL=useParameterToastMessages.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useParameterToastMessages.d.ts","sourceRoot":"","sources":["../../../../src/presentation/filterBar/parameterFilter/useParameterToastMessages.tsx"],"names":[],"mappings":"AAuBA;;;;;;;;;GASG;AACH,wBAAgB,yBAAyB,IAAI,IAAI,CAsBhD"}
@@ -0,0 +1,51 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ // (C) 2026 GoodData Corporation
3
+ import { useEffect, useRef } from "react";
4
+ import { defineMessages } from "react-intl";
5
+ import { objRefToString } from "@gooddata/sdk-model";
6
+ import { useToastMessage } from "@gooddata/sdk-ui-kit";
7
+ import { useDashboardSelector } from "../../../model/react/DashboardStoreProvider.js";
8
+ import { selectIsInExportMode } from "../../../model/store/renderMode/renderModeSelectors.js";
9
+ import { selectParameterReconciliations } from "../../../model/store/tabs/parameters/parametersSelectors.js";
10
+ const messages = defineMessages({
11
+ reset: { id: "parameter.toast.reset" },
12
+ removed: { id: "parameter.toast.removed" },
13
+ incompatible: { id: "parameter.toast.incompatible" },
14
+ });
15
+ // Longer than the 2500ms toast default: this warning is actionable and needs reading time.
16
+ const TOAST_DURATION_MS = 8000;
17
+ /**
18
+ * Pushes one warning toast per parameter that no longer reconciles against the workspace catalog
19
+ * (out of range, removed, or type-incompatible), the message chosen by reconciliation kind.
20
+ *
21
+ * Each ref is toasted at most once per session: {@link selectParameterReconciliations} returns a
22
+ * fresh array whenever the set changes (catalog loads, a value is fixed), so a ref-key guard — not
23
+ * the effect's array identity — is what prevents re-toasting the survivors on every recompute.
24
+ *
25
+ * @internal
26
+ */
27
+ export function useParameterToastMessages() {
28
+ const reconciliations = useDashboardSelector(selectParameterReconciliations);
29
+ const isExportMode = useDashboardSelector(selectIsInExportMode);
30
+ const { addWarning } = useToastMessage();
31
+ const notifiedRefs = useRef(new Set());
32
+ useEffect(() => {
33
+ if (isExportMode) {
34
+ return;
35
+ }
36
+ for (const entry of reconciliations) {
37
+ const refKey = objRefToString(entry.ref);
38
+ if (notifiedRefs.current.has(refKey)) {
39
+ continue;
40
+ }
41
+ notifiedRefs.current.add(refKey);
42
+ addWarning(messages[entry.kind], {
43
+ values: { name: entry.name, b: bold },
44
+ duration: TOAST_DURATION_MS,
45
+ });
46
+ }
47
+ }, [reconciliations, addWarning, isExportMode]);
48
+ }
49
+ function bold(chunks) {
50
+ return _jsx("strong", { children: chunks });
51
+ }
@@ -2671,6 +2671,18 @@ export declare const en_US: {
2671
2671
  text: string;
2672
2672
  crowdinContext: string;
2673
2673
  };
2674
+ "parameter.toast.reset": {
2675
+ text: string;
2676
+ crowdinContext: string;
2677
+ };
2678
+ "parameter.toast.removed": {
2679
+ text: string;
2680
+ crowdinContext: string;
2681
+ };
2682
+ "parameter.toast.incompatible": {
2683
+ text: string;
2684
+ crowdinContext: string;
2685
+ };
2674
2686
  "filters.filterViews.list.ariaLabel.withActions": {
2675
2687
  text: string;
2676
2688
  crowdinContext: string;
@@ -1 +1 @@
1
- {"version":3,"file":"en-US.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/en-US.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA65GjB,CAAC"}
1
+ {"version":3,"file":"en-US.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/en-US.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAy6GjB,CAAC"}
@@ -2673,6 +2673,18 @@ export const en_US = {
2673
2673
  "text": "Failure! Your view was not applied. Please try again.",
2674
2674
  "crowdinContext": "Text shown when filter view was not applied."
2675
2675
  },
2676
+ "parameter.toast.reset": {
2677
+ "text": "<b>Warning:</b> Parameter \"{name}\" is out of range, so the default value is applied until you set a valid one.",
2678
+ "crowdinContext": "Warning toast shown on dashboard load when a saved parameter value is outside the parameter's allowed range; the workspace default is executed in its place. {name} is the parameter title; <b> renders the leading 'Warning:' label in bold."
2679
+ },
2680
+ "parameter.toast.removed": {
2681
+ "text": "<b>Warning:</b> Parameter \"{name}\" was removed because it no longer exists.",
2682
+ "crowdinContext": "Warning toast shown on dashboard load when a referenced parameter no longer exists in the workspace. {name} is the parameter title; <b> renders the leading 'Warning:' label in bold."
2683
+ },
2684
+ "parameter.toast.incompatible": {
2685
+ "text": "<b>Warning:</b> Parameter \"{name}\" is no longer compatible and has been ignored.",
2686
+ "crowdinContext": "Warning toast shown on dashboard load when a referenced parameter changed to a non-numeric type and can no longer be applied. {name} is the parameter title; <b> renders the leading 'Warning:' label in bold."
2687
+ },
2676
2688
  "filters.filterViews.list.ariaLabel.withActions": {
2677
2689
  "text": "List of saved views. Use the right arrow key to move to the ‘Set as default’ action, then to the ‘delete’ action.",
2678
2690
  "crowdinContext": "Screen reader description for the list of saved views. Includes the possible keyboard actions."
@@ -26414,6 +26414,25 @@ export declare function setExecutionResultData(id: ObjRef | string, executionRes
26414
26414
  */
26415
26415
  export declare function setExecutionResultError(id: ObjRef | string, error: GoodDataSdkError, correlationId?: string): IUpsertExecutionResult;
26416
26416
 
26417
+ /**
26418
+ * Creates an {@link IUpsertExecutionResult} command for an execution that finished with an error
26419
+ * but still produced a result.
26420
+ *
26421
+ * @remarks
26422
+ * An empty-but-valid execution computes a result (with a resultId) yet surfaces as a no-data error.
26423
+ * Recording the result alongside the error lets consumers reference it (e.g. by resultId) while the
26424
+ * error keeps the widget in its terminal error state — including the non-exportable gating that the
26425
+ * presence of the result alone would otherwise lift.
26426
+ *
26427
+ * @beta
26428
+ */
26429
+ export declare function setExecutionResultErrorWithResult(options: {
26430
+ id: ObjRef | string;
26431
+ error: GoodDataSdkError;
26432
+ executionResult: IExecutionResult;
26433
+ correlationId?: string;
26434
+ }): IUpsertExecutionResult;
26435
+
26417
26436
  /**
26418
26437
  * Creates an {@link IUpsertExecutionResult} command that makes the relevant execution result indicate it is loading.
26419
26438
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooddata/sdk-ui-dashboard",
3
- "version": "11.44.0-alpha.0",
3
+ "version": "11.44.0-alpha.1",
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.1",
63
- "@gooddata/sdk-backend-base": "11.44.0-alpha.0",
64
- "@gooddata/sdk-model": "11.44.0-alpha.0",
65
- "@gooddata/sdk-backend-spi": "11.44.0-alpha.0",
66
- "@gooddata/sdk-ui": "11.44.0-alpha.0",
67
- "@gooddata/sdk-ui-charts": "11.44.0-alpha.0",
68
- "@gooddata/sdk-ui-filters": "11.44.0-alpha.0",
69
- "@gooddata/sdk-ui-ext": "11.44.0-alpha.0",
70
- "@gooddata/sdk-ui-geo": "11.44.0-alpha.0",
71
- "@gooddata/sdk-ui-kit": "11.44.0-alpha.0",
72
- "@gooddata/sdk-ui-theme-provider": "11.44.0-alpha.0",
73
- "@gooddata/sdk-ui-vis-commons": "11.44.0-alpha.0",
74
- "@gooddata/util": "11.44.0-alpha.0",
75
- "@gooddata/sdk-ui-pivot": "11.44.0-alpha.0"
63
+ "@gooddata/sdk-backend-base": "11.44.0-alpha.1",
64
+ "@gooddata/sdk-model": "11.44.0-alpha.1",
65
+ "@gooddata/sdk-backend-spi": "11.44.0-alpha.1",
66
+ "@gooddata/sdk-ui-charts": "11.44.0-alpha.1",
67
+ "@gooddata/sdk-ui": "11.44.0-alpha.1",
68
+ "@gooddata/sdk-ui-ext": "11.44.0-alpha.1",
69
+ "@gooddata/sdk-ui-filters": "11.44.0-alpha.1",
70
+ "@gooddata/sdk-ui-pivot": "11.44.0-alpha.1",
71
+ "@gooddata/sdk-ui-kit": "11.44.0-alpha.1",
72
+ "@gooddata/sdk-ui-geo": "11.44.0-alpha.1",
73
+ "@gooddata/sdk-ui-theme-provider": "11.44.0-alpha.1",
74
+ "@gooddata/sdk-ui-vis-commons": "11.44.0-alpha.1",
75
+ "@gooddata/util": "11.44.0-alpha.1"
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.8",
120
120
  "vitest-dom": "0.1.1",
121
- "@gooddata/eslint-config": "11.44.0-alpha.0",
122
- "@gooddata/i18n-toolkit": "11.44.0-alpha.0",
123
- "@gooddata/oxlint-config": "11.44.0-alpha.0",
124
- "@gooddata/reference-workspace": "11.44.0-alpha.0",
125
- "@gooddata/sdk-backend-mockingbird": "11.44.0-alpha.0",
126
- "@gooddata/stylelint-config": "11.44.0-alpha.0"
121
+ "@gooddata/eslint-config": "11.44.0-alpha.1",
122
+ "@gooddata/i18n-toolkit": "11.44.0-alpha.1",
123
+ "@gooddata/oxlint-config": "11.44.0-alpha.1",
124
+ "@gooddata/sdk-backend-mockingbird": "11.44.0-alpha.1",
125
+ "@gooddata/stylelint-config": "11.44.0-alpha.1",
126
+ "@gooddata/reference-workspace": "11.44.0-alpha.1"
127
127
  },
128
128
  "peerDependencies": {
129
129
  "react": "^18.0.0 || ^19.0.0",