@gooddata/sdk-ui-dashboard 10.33.0-alpha.69 → 10.33.0-alpha.70
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/esm/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/model/commandHandlers/layout/containerWidthSanitization.d.ts +2 -2
- package/esm/model/commandHandlers/layout/containerWidthSanitization.d.ts.map +1 -1
- package/esm/model/commandHandlers/layout/containerWidthSanitization.js +9 -6
- package/esm/model/commandHandlers/layout/containerWidthSanitization.js.map +1 -1
- package/esm/model/commandHandlers/layout/toggleLayoutDirectionHandler.d.ts.map +1 -1
- package/esm/model/commandHandlers/layout/toggleLayoutDirectionHandler.js +1 -1
- package/esm/model/commandHandlers/layout/toggleLayoutDirectionHandler.js.map +1 -1
- package/package.json +15 -15
package/esm/__version.d.ts
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
export declare const LIB_VERSION = "10.33.0-alpha.
|
1
|
+
export declare const LIB_VERSION = "10.33.0-alpha.70";
|
2
2
|
//# sourceMappingURL=__version.d.ts.map
|
package/esm/__version.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import { IDashboardLayout, ScreenSize, IInsight, ISettings } from "@gooddata/sdk-model";
|
1
|
+
import { IDashboardLayout, ScreenSize, IInsight, ISettings, IDashboardLayoutContainerDirection } from "@gooddata/sdk-model";
|
2
2
|
import { ExtendedDashboardWidget, IItemWithWidth } from "../../types/layoutTypes.js";
|
3
3
|
import { ILayoutItemPath } from "../../../types.js";
|
4
4
|
import { ObjRefMap } from "../../../_staging/metadata/objRefMap.js";
|
@@ -20,5 +20,5 @@ export declare function getChildWidgetLayoutPaths(layoutItem: IDashboardLayout<E
|
|
20
20
|
* For other widgets (including nested layouts with "row" direction), it returns their paths and
|
21
21
|
* minimum widths directly.
|
22
22
|
*/
|
23
|
-
export declare function getChildWidgetLayoutPathsWithMinWidths(layout: IDashboardLayout<ExtendedDashboardWidget>, parentPath: ILayoutItemPath, settings: ISettings, insightMap: ObjRefMap<IInsight>, screen: ScreenSize): IItemWithWidth[];
|
23
|
+
export declare function getChildWidgetLayoutPathsWithMinWidths(layout: IDashboardLayout<ExtendedDashboardWidget>, parentPath: ILayoutItemPath, settings: ISettings, insightMap: ObjRefMap<IInsight>, screen: ScreenSize, parentDirection: IDashboardLayoutContainerDirection): IItemWithWidth[];
|
24
24
|
//# sourceMappingURL=containerWidthSanitization.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"containerWidthSanitization.d.ts","sourceRoot":"","sources":["../../../../src/model/commandHandlers/layout/containerWidthSanitization.ts"],"names":[],"mappings":"AAEA,OAAO,
|
1
|
+
{"version":3,"file":"containerWidthSanitization.d.ts","sourceRoot":"","sources":["../../../../src/model/commandHandlers/layout/containerWidthSanitization.ts"],"names":[],"mappings":"AAEA,OAAO,EACH,gBAAgB,EAChB,UAAU,EACV,QAAQ,EACR,SAAS,EAET,kCAAkC,EACrC,MAAM,qBAAqB,CAAC;AAE7B,OAAO,EAAE,uBAAuB,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAC;AAOrF,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAEpD,OAAO,EAAE,SAAS,EAAE,MAAM,yCAAyC,CAAC;AAEpE,eAAO,MAAM,mBAAmB,WACpB,iBAAiB,uBAAuB,CAAC,kBACjC,cAAc,EAAE,UACxB,UAAU,qBAOrB,CAAC;AAKF;;;;;;;;;GASG;AACH,wBAAgB,yBAAyB,CACrC,UAAU,EAAE,gBAAgB,CAAC,uBAAuB,CAAC,EACrD,cAAc,EAAE,eAAe,EAC/B,oBAAoB,UAAQ,GAC7B,eAAe,EAAE,CAUnB;AAED;;;;;GAKG;AACH,wBAAgB,sCAAsC,CAClD,MAAM,EAAE,gBAAgB,CAAC,uBAAuB,CAAC,EACjD,UAAU,EAAE,eAAe,EAC3B,QAAQ,EAAE,SAAS,EACnB,UAAU,EAAE,SAAS,CAAC,QAAQ,CAAC,EAC/B,MAAM,EAAE,UAAU,EAClB,eAAe,EAAE,kCAAkC,GACpD,cAAc,EAAE,CAiClB"}
|
@@ -1,7 +1,7 @@
|
|
1
1
|
// (C) 2025 GoodData Corporation
|
2
|
-
import { isDashboardLayout } from "@gooddata/sdk-model";
|
2
|
+
import { isDashboardLayout, } from "@gooddata/sdk-model";
|
3
3
|
import { findItem } from "../../../_staging/layout/coordinates.js";
|
4
|
-
import { implicitLayoutItemSizeFromXlSize, getMinWidth } from "../../../_staging/layout/sizing.js";
|
4
|
+
import { implicitLayoutItemSizeFromXlSize, getMinWidth, determineWidthForScreen, } from "../../../_staging/layout/sizing.js";
|
5
5
|
import { getLayoutConfiguration } from "../../../_staging/dashboard/flexibleLayout/layoutConfiguration.js";
|
6
6
|
export const getUpdatedSizesOnly = (layout, itemsWithSizes, screen) => {
|
7
7
|
return itemsWithSizes.filter(({ itemPath, width }) => {
|
@@ -36,7 +36,7 @@ export function getChildWidgetLayoutPaths(layoutItem, layoutItemPath, processAll
|
|
36
36
|
* For other widgets (including nested layouts with "row" direction), it returns their paths and
|
37
37
|
* minimum widths directly.
|
38
38
|
*/
|
39
|
-
export function getChildWidgetLayoutPathsWithMinWidths(layout, parentPath, settings, insightMap, screen) {
|
39
|
+
export function getChildWidgetLayoutPathsWithMinWidths(layout, parentPath, settings, insightMap, screen, parentDirection) {
|
40
40
|
return layout.sections.flatMap((section, sectionIndex) => section.items.flatMap((item, itemIndex) => {
|
41
41
|
const currentPath = [...parentPath, { sectionIndex, itemIndex }];
|
42
42
|
if (item.widget === undefined) {
|
@@ -45,15 +45,18 @@ export function getChildWidgetLayoutPathsWithMinWidths(layout, parentPath, setti
|
|
45
45
|
if (isDashboardLayout(item.widget) && getLayoutDirection(item.widget) === "column") {
|
46
46
|
// For nested layouts with a column direction, process children recursively and include
|
47
47
|
// the container itself
|
48
|
-
const childItems = getChildWidgetLayoutPathsWithMinWidths(item.widget, currentPath, settings, insightMap, screen);
|
49
48
|
const containerMinWidth = getMinWidth(item.widget, insightMap, screen, settings, "column");
|
49
|
+
const childItems = getChildWidgetLayoutPathsWithMinWidths(item.widget, currentPath, settings, insightMap, screen, "column");
|
50
50
|
return [...childItems, { itemPath: currentPath, width: containerMinWidth }];
|
51
51
|
}
|
52
52
|
else {
|
53
53
|
// For other widgets (including nested layouts with a row direction, layout will never be
|
54
|
-
// a column at this point), return their path and minimum default width
|
54
|
+
// a column at this point), return their path and minimum default width or
|
55
|
+
// current width when they are inside of column group (= stretched and can not be smaller).
|
55
56
|
const minWidth = getMinWidth(item.widget, insightMap, screen, settings, "row");
|
56
|
-
|
57
|
+
const currentWidth = determineWidthForScreen(screen, item.size);
|
58
|
+
const width = parentDirection === "column" ? currentWidth : minWidth;
|
59
|
+
return [{ itemPath: currentPath, width }];
|
57
60
|
}
|
58
61
|
}));
|
59
62
|
}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"containerWidthSanitization.js","sourceRoot":"","sources":["../../../../src/model/commandHandlers/layout/containerWidthSanitization.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAEhC,OAAO,
|
1
|
+
{"version":3,"file":"containerWidthSanitization.js","sourceRoot":"","sources":["../../../../src/model/commandHandlers/layout/containerWidthSanitization.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAEhC,OAAO,EAKH,iBAAiB,GAEpB,MAAM,qBAAqB,CAAC;AAG7B,OAAO,EAAE,QAAQ,EAAE,MAAM,yCAAyC,CAAC;AACnE,OAAO,EACH,gCAAgC,EAChC,WAAW,EACX,uBAAuB,GAC1B,MAAM,oCAAoC,CAAC;AAE5C,OAAO,EAAE,sBAAsB,EAAE,MAAM,mEAAmE,CAAC;AAG3G,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAC/B,MAAiD,EACjD,cAAgC,EAChC,MAAkB,EACpB,EAAE;IACA,OAAO,cAAc,CAAC,MAAM,CAAC,CAAC,EAAE,QAAQ,EAAE,KAAK,EAAE,EAAE,EAAE;QACjD,MAAM,SAAS,GAAG,QAAQ,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;QAC7C,MAAM,iBAAiB,GAAG,gCAAgC,CAAC,SAAS,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;QAC9E,OAAO,iBAAiB,CAAC,MAAM,CAAC,EAAE,SAAS,KAAK,KAAK,CAAC;IAC1D,CAAC,CAAC,CAAC;AACP,CAAC,CAAC;AAEF,MAAM,kBAAkB,GAAG,CAAC,MAAiD,EAAE,EAAE,CAC7E,sBAAsB,CAAC,MAAM,CAAC,CAAC,SAAS,CAAC;AAE7C;;;;;;;;;GASG;AACH,MAAM,UAAU,yBAAyB,CACrC,UAAqD,EACrD,cAA+B,EAC/B,oBAAoB,GAAG,KAAK;IAE5B,OAAO,UAAU,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC,OAAO,EAAE,YAAY,EAAE,EAAE,CACzD,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,IAAI,EAAE,SAAS,EAAE,EAAE;QACtC,MAAM,WAAW,GAAoB,CAAC,GAAG,cAAc,EAAE,EAAE,YAAY,EAAE,SAAS,EAAE,CAAC,CAAC;QACtF,OAAO,iBAAiB,CAAC,IAAI,CAAC,MAAM,CAAC;YACjC,CAAC,oBAAoB,IAAI,kBAAkB,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,QAAQ,CAAC;YACtE,CAAC,CAAC,CAAC,WAAW,EAAE,GAAG,yBAAyB,CAAC,IAAI,CAAC,MAAM,EAAE,WAAW,EAAE,oBAAoB,CAAC,CAAC;YAC7F,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC;IACxB,CAAC,CAAC,CACL,CAAC;AACN,CAAC;AAED;;;;;GAKG;AACH,MAAM,UAAU,sCAAsC,CAClD,MAAiD,EACjD,UAA2B,EAC3B,QAAmB,EACnB,UAA+B,EAC/B,MAAkB,EAClB,eAAmD;IAEnD,OAAO,MAAM,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC,OAAO,EAAE,YAAY,EAAE,EAAE,CACrD,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,IAAI,EAAE,SAAS,EAAE,EAAE;QACtC,MAAM,WAAW,GAAoB,CAAC,GAAG,UAAU,EAAE,EAAE,YAAY,EAAE,SAAS,EAAE,CAAC,CAAC;QAClF,IAAI,IAAI,CAAC,MAAM,KAAK,SAAS,EAAE,CAAC;YAC5B,OAAO,EAAE,CAAC;QACd,CAAC;QAED,IAAI,iBAAiB,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,kBAAkB,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,QAAQ,EAAE,CAAC;YACjF,uFAAuF;YACvF,uBAAuB;YACvB,MAAM,iBAAiB,GAAG,WAAW,CAAC,IAAI,CAAC,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,QAAQ,EAAE,QAAQ,CAAC,CAAC;YAC3F,MAAM,UAAU,GAAG,sCAAsC,CACrD,IAAI,CAAC,MAAM,EACX,WAAW,EACX,QAAQ,EACR,UAAU,EACV,MAAM,EACN,QAAQ,CACX,CAAC;YAEF,OAAO,CAAC,GAAG,UAAU,EAAE,EAAE,QAAQ,EAAE,WAAW,EAAE,KAAK,EAAE,iBAAiB,EAAE,CAAC,CAAC;QAChF,CAAC;aAAM,CAAC;YACJ,yFAAyF;YACzF,0EAA0E;YAC1E,2FAA2F;YAC3F,MAAM,QAAQ,GAAG,WAAW,CAAC,IAAI,CAAC,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,CAAC,CAAC;YAC/E,MAAM,YAAY,GAAG,uBAAuB,CAAC,MAAM,EAAE,IAAI,CAAC,IAAI,CAAC,CAAC;YAChE,MAAM,KAAK,GAAG,eAAe,KAAK,QAAQ,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,CAAC,QAAQ,CAAC;YACrE,OAAO,CAAC,EAAE,QAAQ,EAAE,WAAW,EAAE,KAAK,EAAE,CAAC,CAAC;QAC9C,CAAC;IACL,CAAC,CAAC,CACL,CAAC;AACN,CAAC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"toggleLayoutDirectionHandler.d.ts","sourceRoot":"","sources":["../../../../src/model/commandHandlers/layout/toggleLayoutDirectionHandler.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,YAAY,CAAC;AAW1C,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAE9D,OAAO,EAA0B,sBAAsB,EAAE,MAAM,wBAAwB,CAAC;AACxF,OAAO,EAAE,qBAAqB,EAAE,MAAM,0BAA0B,CAAC;
|
1
|
+
{"version":3,"file":"toggleLayoutDirectionHandler.d.ts","sourceRoot":"","sources":["../../../../src/model/commandHandlers/layout/toggleLayoutDirectionHandler.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,YAAY,CAAC;AAW1C,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAE9D,OAAO,EAA0B,sBAAsB,EAAE,MAAM,wBAAwB,CAAC;AACxF,OAAO,EAAE,qBAAqB,EAAE,MAAM,0BAA0B,CAAC;AA0CjE,wBAAiB,4BAA4B,CACzC,GAAG,EAAE,gBAAgB,EACrB,GAAG,EAAE,qBAAqB,GAC3B,YAAY,CAAC,sBAAsB,CAAC,CAqCtC"}
|
@@ -12,7 +12,7 @@ function findChildItemsWithNewWidth({ payload: { layoutPath, direction } }, layo
|
|
12
12
|
const parent = layoutPath === undefined ? layout : findItem(layout, layoutPath);
|
13
13
|
if (isDashboardLayoutItem(parent) && isDashboardLayout(parent.widget)) {
|
14
14
|
return direction === "row"
|
15
|
-
? getChildWidgetLayoutPathsWithMinWidths(parent.widget, parentPath, settings, insightMap, screen)
|
15
|
+
? getChildWidgetLayoutPathsWithMinWidths(parent.widget, parentPath, settings, insightMap, screen, direction)
|
16
16
|
: getChildWidgetLayoutPaths(parent.widget, parentPath).map((itemPath) => ({
|
17
17
|
itemPath,
|
18
18
|
width: parent.size.xl.gridWidth,
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"toggleLayoutDirectionHandler.js","sourceRoot":"","sources":["../../../../src/model/commandHandlers/layout/toggleLayoutDirectionHandler.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,GAAG,EAAE,MAAM,EAAE,MAAM,oBAAoB,CAAC;AACjD,OAAO,EACH,iBAAiB,EAKjB,qBAAqB,GACxB,MAAM,qBAAqB,CAAC;AAG7B,OAAO,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AAC5D,OAAO,EAAE,sBAAsB,EAA0B,MAAM,wBAAwB,CAAC;AAGxF,OAAO,EAAE,YAAY,EAAE,YAAY,EAAE,MAAM,uCAAuC,CAAC;AACnF,OAAO,EAAE,iBAAiB,EAAE,MAAM,2CAA2C,CAAC;AAC9E,OAAO,EAAE,cAAc,EAAE,MAAM,uCAAuC,CAAC;AACvE,OAAO,EAAE,QAAQ,EAAE,MAAM,yCAAyC,CAAC;AAGnE,OAAO,EACH,sCAAsC,EACtC,yBAAyB,EACzB,mBAAmB,GACtB,MAAM,iCAAiC,CAAC;AAEzC,SAAS,0BAA0B,CAC/B,EAAE,OAAO,EAAE,EAAE,UAAU,EAAE,SAAS,EAAE,EAAyB,EAC7D,MAAiD,EACjD,UAA+B,EAC/B,QAAmB,EACnB,MAAkB;IAElB,MAAM,UAAU,GAAG,UAAU,KAAK,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,UAAU,CAAC;IAC9D,MAAM,MAAM,GAAG,UAAU,KAAK,SAAS,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,QAAQ,CAAC,MAAM,EAAE,UAAU,CAAC,CAAC;IAEhF,IAAI,qBAAqB,CAAC,MAAM,CAAC,IAAI,iBAAiB,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC;QACpE,OAAO,SAAS,KAAK,KAAK;YACtB,CAAC,CAAC,sCAAsC,
|
1
|
+
{"version":3,"file":"toggleLayoutDirectionHandler.js","sourceRoot":"","sources":["../../../../src/model/commandHandlers/layout/toggleLayoutDirectionHandler.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@gooddata/sdk-ui-dashboard",
|
3
|
-
"version": "10.33.0-alpha.
|
3
|
+
"version": "10.33.0-alpha.70",
|
4
4
|
"description": "GoodData SDK - Dashboard Component",
|
5
5
|
"repository": {
|
6
6
|
"type": "git",
|
@@ -60,17 +60,17 @@
|
|
60
60
|
"@codemirror/language": "~6.11.0",
|
61
61
|
"@lezer/highlight": "~1.2.1",
|
62
62
|
"@react-aria/interactions": "^3",
|
63
|
-
"@gooddata/sdk-backend-base": "10.33.0-alpha.
|
64
|
-
"@gooddata/sdk-model": "10.33.0-alpha.
|
65
|
-
"@gooddata/sdk-
|
66
|
-
"@gooddata/sdk-ui
|
67
|
-
"@gooddata/sdk-
|
68
|
-
"@gooddata/sdk-ui-
|
69
|
-
"@gooddata/sdk-ui-
|
70
|
-
"@gooddata/sdk-ui-kit": "10.33.0-alpha.
|
71
|
-
"@gooddata/sdk-ui-
|
72
|
-
"@gooddata/
|
73
|
-
"@gooddata/
|
63
|
+
"@gooddata/sdk-backend-base": "10.33.0-alpha.70",
|
64
|
+
"@gooddata/sdk-model": "10.33.0-alpha.70",
|
65
|
+
"@gooddata/sdk-backend-spi": "10.33.0-alpha.70",
|
66
|
+
"@gooddata/sdk-ui": "10.33.0-alpha.70",
|
67
|
+
"@gooddata/sdk-ui-ext": "10.33.0-alpha.70",
|
68
|
+
"@gooddata/sdk-ui-filters": "10.33.0-alpha.70",
|
69
|
+
"@gooddata/sdk-ui-geo": "10.33.0-alpha.70",
|
70
|
+
"@gooddata/sdk-ui-kit": "10.33.0-alpha.70",
|
71
|
+
"@gooddata/sdk-ui-theme-provider": "10.33.0-alpha.70",
|
72
|
+
"@gooddata/sdk-ui-vis-commons": "10.33.0-alpha.70",
|
73
|
+
"@gooddata/util": "10.33.0-alpha.70"
|
74
74
|
},
|
75
75
|
"peerDependencies": {
|
76
76
|
"react": "^16.10.0 || ^17.0.0 || ^18.0.0",
|
@@ -122,9 +122,9 @@
|
|
122
122
|
"typescript": "5.3.3",
|
123
123
|
"vitest": "3.0.8",
|
124
124
|
"vitest-dom": "0.1.1",
|
125
|
-
"@gooddata/
|
126
|
-
"@gooddata/
|
127
|
-
"@gooddata/sdk-backend-mockingbird": "10.33.0-alpha.
|
125
|
+
"@gooddata/i18n-toolkit": "10.33.0-alpha.70",
|
126
|
+
"@gooddata/reference-workspace": "10.33.0-alpha.70",
|
127
|
+
"@gooddata/sdk-backend-mockingbird": "10.33.0-alpha.70"
|
128
128
|
},
|
129
129
|
"scripts": {
|
130
130
|
"clean": "rm -rf ci dist esm coverage *.log styles/css tsconfig.tsbuildinfo",
|