@gooddata/sdk-ui-gen-ai 11.41.0-alpha.1 → 11.41.0-alpha.2
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.
|
@@ -253,8 +253,8 @@ const renderScatterPlot = (locale, visualization, buckets, filters, sortBy, colo
|
|
|
253
253
|
};
|
|
254
254
|
const renderTable = (locale, buckets, filters, sortBy, onError, onSuccess, onDrill, props) => {
|
|
255
255
|
const TableComponent = props.enableNewPivotTable ? PivotTableNext : PivotTable;
|
|
256
|
-
const { metrics, attribute, columns } = buckets;
|
|
257
|
-
return (_jsx(TableComponent, { locale: locale, measures: metrics,
|
|
256
|
+
const { metrics, attribute, trend, view, stack, segment, columns } = buckets;
|
|
257
|
+
return (_jsx(TableComponent, { locale: locale, measures: metrics, filters: filters, sortBy: sortBy, columns: [...columns, ...stack, ...segment].filter(Boolean), rows: [...attribute, ...trend, ...view].filter(Boolean), config: props.enableNewPivotTable ? { agGridToken: props.agGridToken } : undefined, drillableItems: props.drillableItems, onDrill: onDrill, onError: onError, onExportReady: onSuccess, execConfig: props.execConfig }));
|
|
258
258
|
};
|
|
259
259
|
const renderHeadline = (locale, theme, buckets, filters, colorPalette, onError, onSuccess, onDrill, props) => {
|
|
260
260
|
const { metrics, secondary_metrics } = buckets;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gooddata/sdk-ui-gen-ai",
|
|
3
|
-
"version": "11.41.0-alpha.
|
|
3
|
+
"version": "11.41.0-alpha.2",
|
|
4
4
|
"description": "GoodData GenAI SDK",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "GoodData Corporation",
|
|
@@ -56,18 +56,18 @@
|
|
|
56
56
|
"reselect": "5.1.1",
|
|
57
57
|
"tslib": "2.8.1",
|
|
58
58
|
"uuid": "11.1.0",
|
|
59
|
-
"@gooddata/
|
|
60
|
-
"@gooddata/sdk-
|
|
61
|
-
"@gooddata/
|
|
62
|
-
"@gooddata/sdk-ui-charts": "11.41.0-alpha.
|
|
63
|
-
"@gooddata/sdk-ui": "11.41.0-alpha.
|
|
64
|
-
"@gooddata/sdk-ui-dashboard": "11.41.0-alpha.
|
|
65
|
-
"@gooddata/sdk-ui-filters": "11.41.0-alpha.
|
|
66
|
-
"@gooddata/sdk-ui-
|
|
67
|
-
"@gooddata/sdk-ui-
|
|
68
|
-
"@gooddata/sdk-ui-semantic-search": "11.41.0-alpha.
|
|
69
|
-
"@gooddata/sdk-ui-theme-provider": "11.41.0-alpha.
|
|
70
|
-
"@gooddata/util": "11.41.0-alpha.
|
|
59
|
+
"@gooddata/sdk-backend-spi": "11.41.0-alpha.2",
|
|
60
|
+
"@gooddata/sdk-model": "11.41.0-alpha.2",
|
|
61
|
+
"@gooddata/api-client-tiger": "11.41.0-alpha.2",
|
|
62
|
+
"@gooddata/sdk-ui-charts": "11.41.0-alpha.2",
|
|
63
|
+
"@gooddata/sdk-ui": "11.41.0-alpha.2",
|
|
64
|
+
"@gooddata/sdk-ui-dashboard": "11.41.0-alpha.2",
|
|
65
|
+
"@gooddata/sdk-ui-filters": "11.41.0-alpha.2",
|
|
66
|
+
"@gooddata/sdk-ui-kit": "11.41.0-alpha.2",
|
|
67
|
+
"@gooddata/sdk-ui-pivot": "11.41.0-alpha.2",
|
|
68
|
+
"@gooddata/sdk-ui-semantic-search": "11.41.0-alpha.2",
|
|
69
|
+
"@gooddata/sdk-ui-theme-provider": "11.41.0-alpha.2",
|
|
70
|
+
"@gooddata/util": "11.41.0-alpha.2"
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|
|
73
73
|
"@microsoft/api-documenter": "^7.17.0",
|
|
@@ -110,13 +110,13 @@
|
|
|
110
110
|
"typescript": "5.9.3",
|
|
111
111
|
"vitest": "4.1.8",
|
|
112
112
|
"vitest-dom": "0.1.1",
|
|
113
|
-
"@gooddata/eslint-config": "11.41.0-alpha.
|
|
114
|
-
"@gooddata/i18n-toolkit": "11.41.0-alpha.
|
|
115
|
-
"@gooddata/
|
|
116
|
-
"@gooddata/
|
|
117
|
-
"@gooddata/sdk-backend-mockingbird": "11.41.0-alpha.
|
|
118
|
-
"@gooddata/
|
|
119
|
-
"@gooddata/
|
|
113
|
+
"@gooddata/eslint-config": "11.41.0-alpha.2",
|
|
114
|
+
"@gooddata/i18n-toolkit": "11.41.0-alpha.2",
|
|
115
|
+
"@gooddata/reference-workspace": "11.41.0-alpha.2",
|
|
116
|
+
"@gooddata/oxlint-config": "11.41.0-alpha.2",
|
|
117
|
+
"@gooddata/sdk-backend-mockingbird": "11.41.0-alpha.2",
|
|
118
|
+
"@gooddata/stylelint-config": "11.41.0-alpha.2",
|
|
119
|
+
"@gooddata/sdk-ui-theme-provider": "11.41.0-alpha.2"
|
|
120
120
|
},
|
|
121
121
|
"peerDependencies": {
|
|
122
122
|
"react": "^18.0.0 || ^19.0.0",
|