@gooddata/sdk-ui-ext 11.36.0-alpha.3 → 11.36.0-alpha.6
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 +63 -115
- package/esm/internal/assets/radar/bucket-title-measures.svg +1 -0
- package/esm/internal/assets/radar/bucket-title-segment.svg +1 -0
- package/esm/internal/assets/radar/bucket-title-trend.svg +1 -0
- package/esm/internal/components/VisualizationCatalog.js +2 -0
- package/esm/internal/components/configurationControls/RadarGridLineShapeControl.d.ts +8 -0
- package/esm/internal/components/configurationControls/RadarGridLineShapeControl.js +13 -0
- package/esm/internal/components/configurationControls/RadarRenderAsControl.d.ts +8 -0
- package/esm/internal/components/configurationControls/RadarRenderAsControl.js +13 -0
- package/esm/internal/components/configurationControls/colors/ColorsSection.d.ts +4 -1
- package/esm/internal/components/configurationControls/colors/ColorsSection.js +2 -3
- package/esm/internal/components/configurationPanels/RadarChartConfigurationPanel.d.ts +11 -0
- package/esm/internal/components/configurationPanels/RadarChartConfigurationPanel.js +58 -0
- package/esm/internal/components/pluggableVisualizations/PluggableColumnBarCharts.js +1 -3
- package/esm/internal/components/pluggableVisualizations/alerts.js +2 -1
- package/esm/internal/components/pluggableVisualizations/areaChart/PluggableAreaChart.js +2 -4
- package/esm/internal/components/pluggableVisualizations/baseChart/PluggableBaseChart.d.ts +0 -8
- package/esm/internal/components/pluggableVisualizations/baseChart/PluggableBaseChart.js +3 -17
- package/esm/internal/components/pluggableVisualizations/bubbleChart/PluggableBubbleChart.js +1 -2
- package/esm/internal/components/pluggableVisualizations/bulletChart/PluggableBulletChart.js +2 -4
- package/esm/internal/components/pluggableVisualizations/comboChart/PluggableComboChart.js +1 -2
- package/esm/internal/components/pluggableVisualizations/comboChart/PluggableComboChartDeprecated.js +1 -1
- package/esm/internal/components/pluggableVisualizations/drillDownUtil.js +1 -0
- package/esm/internal/components/pluggableVisualizations/geoAreaChart/PluggableGeoAreaChart.js +1 -2
- package/esm/internal/components/pluggableVisualizations/geoChart/PluggableGeoPushpinChart.js +1 -3
- package/esm/internal/components/pluggableVisualizations/geoChartNext/PluggableGeoPushpinChartNext.js +1 -3
- package/esm/internal/components/pluggableVisualizations/headline/PluggableHeadline.js +3 -3
- package/esm/internal/components/pluggableVisualizations/heatMap/PluggableHeatmap.js +1 -2
- package/esm/internal/components/pluggableVisualizations/lineChart/PluggableLineChart.js +2 -4
- package/esm/internal/components/pluggableVisualizations/pieChart/PluggablePieChart.js +1 -2
- package/esm/internal/components/pluggableVisualizations/pivotTable/PluggablePivotTable.js +2 -2
- package/esm/internal/components/pluggableVisualizations/pivotTableNext/PluggablePivotTableNext.js +2 -2
- package/esm/internal/components/pluggableVisualizations/radarChart/PluggableRadarChart.d.ts +49 -0
- package/esm/internal/components/pluggableVisualizations/radarChart/PluggableRadarChart.js +180 -0
- package/esm/internal/components/pluggableVisualizations/radarChart/RadarChartDescriptor.d.ts +11 -0
- package/esm/internal/components/pluggableVisualizations/radarChart/RadarChartDescriptor.js +47 -0
- package/esm/internal/components/pluggableVisualizations/repeater/PluggableRepeater.js +1 -5
- package/esm/internal/components/pluggableVisualizations/sankeyChart/PluggableSankeyChart.js +1 -2
- package/esm/internal/components/pluggableVisualizations/scatterPlot/PluggableScatterPlot.js +1 -2
- package/esm/internal/components/pluggableVisualizations/treeMap/PluggableTreemap.js +2 -4
- package/esm/internal/components/pluggableVisualizations/waterfallChart/PluggableWaterfallChart.js +2 -4
- package/esm/internal/components/pluggableVisualizations/xirr/PluggableXirr.js +1 -1
- package/esm/internal/constants/dropdowns.d.ts +2 -0
- package/esm/internal/constants/dropdowns.js +8 -0
- package/esm/internal/constants/supportedProperties.d.ts +1 -0
- package/esm/internal/constants/supportedProperties.js +14 -0
- package/esm/internal/constants/uiConfig.d.ts +1 -12
- package/esm/internal/constants/uiConfig.js +25 -12
- package/esm/internal/translations/en-US.localization-bundle.d.ts +52 -0
- package/esm/internal/translations/en-US.localization-bundle.js +52 -0
- package/esm/internal/utils/bucketHelper.d.ts +1 -1
- package/esm/internal/utils/bucketHelper.js +8 -11
- package/esm/internal/utils/dimensions.js +2 -1
- package/esm/internal/utils/filters/sanitizeGeoReferencePointFilters.d.ts +1 -1
- package/esm/internal/utils/filters/sanitizeGeoReferencePointFilters.js +7 -19
- package/esm/internal/utils/uiConfigHelpers/headlineUiConfigHelper.d.ts +2 -2
- package/esm/internal/utils/uiConfigHelpers/headlineUiConfigHelper.js +4 -7
- package/esm/internal/utils/uiConfigHelpers/pivotTableNextUiConfigHelper.d.ts +1 -1
- package/esm/internal/utils/uiConfigHelpers/pivotTableNextUiConfigHelper.js +4 -4
- package/esm/internal/utils/uiConfigHelpers/pivotTableUiConfigHelper.d.ts +1 -1
- package/esm/internal/utils/uiConfigHelpers/pivotTableUiConfigHelper.js +4 -4
- package/esm/internal/utils/uiConfigHelpers/radarChartUiConfigHelper.d.ts +3 -0
- package/esm/internal/utils/uiConfigHelpers/radarChartUiConfigHelper.js +58 -0
- package/esm/internal/utils/visualizationsHelper.js +1 -1
- package/esm/locales.d.ts +30 -0
- package/esm/locales.js +13 -0
- package/package.json +21 -21
package/esm/locales.d.ts
CHANGED
|
@@ -164,6 +164,36 @@ export declare const messages: {
|
|
|
164
164
|
vertical: {
|
|
165
165
|
id: string;
|
|
166
166
|
};
|
|
167
|
+
radarGridSectionTitle: {
|
|
168
|
+
id: string;
|
|
169
|
+
};
|
|
170
|
+
radarGridLineShapeLabel: {
|
|
171
|
+
id: string;
|
|
172
|
+
};
|
|
173
|
+
radarGridLineShapePolygon: {
|
|
174
|
+
id: string;
|
|
175
|
+
};
|
|
176
|
+
radarGridLineShapeCircle: {
|
|
177
|
+
id: string;
|
|
178
|
+
};
|
|
179
|
+
radarRenderAsLabel: {
|
|
180
|
+
id: string;
|
|
181
|
+
};
|
|
182
|
+
radarRenderAsFilled: {
|
|
183
|
+
id: string;
|
|
184
|
+
};
|
|
185
|
+
radarRenderAsOutline: {
|
|
186
|
+
id: string;
|
|
187
|
+
};
|
|
188
|
+
radarLabelsSubsection: {
|
|
189
|
+
id: string;
|
|
190
|
+
};
|
|
191
|
+
radarSpokeLabels: {
|
|
192
|
+
id: string;
|
|
193
|
+
};
|
|
194
|
+
radarRadialLabels: {
|
|
195
|
+
id: string;
|
|
196
|
+
};
|
|
167
197
|
dataLabelsAuto: {
|
|
168
198
|
id: string;
|
|
169
199
|
};
|
package/esm/locales.js
CHANGED
|
@@ -62,6 +62,9 @@ export const titles = defineMessages({
|
|
|
62
62
|
segment_treemap: { id: "dashboard.bucket.segment_title.treemap" },
|
|
63
63
|
segment_pushpin: { id: "dashboard.bucket.segment_title.pushpin" },
|
|
64
64
|
trend_line: { id: "dashboard.bucket.trend_title.line" },
|
|
65
|
+
measures_radar: { id: "dashboard.bucket.measures_title.radar" },
|
|
66
|
+
trend_radar: { id: "dashboard.bucket.trend_title.radar" },
|
|
67
|
+
segment_radar: { id: "dashboard.bucket.segment_title.radar" },
|
|
65
68
|
columns_table: { id: "dashboard.bucket.columns_title.table" },
|
|
66
69
|
attribute_repeater: { id: "dashboard.bucket.attribute_title.repeater" },
|
|
67
70
|
columns_repeater: { id: "dashboard.bucket.columns_title.repeater" },
|
|
@@ -146,6 +149,16 @@ export const messages = defineMessages({
|
|
|
146
149
|
orientationTitle: { id: "properties.orientation.title" },
|
|
147
150
|
horizontal: { id: "properties.orientation.horizontal" },
|
|
148
151
|
vertical: { id: "properties.orientation.vertical" },
|
|
152
|
+
radarGridSectionTitle: { id: "properties.radar.grid.title" },
|
|
153
|
+
radarGridLineShapeLabel: { id: "properties.radar.gridLineShape.label" },
|
|
154
|
+
radarGridLineShapePolygon: { id: "properties.radar.gridLineShape.polygon" },
|
|
155
|
+
radarGridLineShapeCircle: { id: "properties.radar.gridLineShape.circle" },
|
|
156
|
+
radarRenderAsLabel: { id: "properties.radar.renderAs.label" },
|
|
157
|
+
radarRenderAsFilled: { id: "properties.radar.renderAs.filled" },
|
|
158
|
+
radarRenderAsOutline: { id: "properties.radar.renderAs.outline" },
|
|
159
|
+
radarLabelsSubsection: { id: "properties.radar.labels.title" },
|
|
160
|
+
radarSpokeLabels: { id: "properties.radar.spokeLabels" },
|
|
161
|
+
radarRadialLabels: { id: "properties.radar.radialLabels" },
|
|
149
162
|
dataLabelsAuto: { id: "properties.canvas.dataLabels.auto" },
|
|
150
163
|
dataLabelsShow: { id: "properties.canvas.dataLabels.show" },
|
|
151
164
|
dataLabelsHide: { id: "properties.canvas.dataLabels.hide" },
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gooddata/sdk-ui-ext",
|
|
3
|
-
"version": "11.36.0-alpha.
|
|
3
|
+
"version": "11.36.0-alpha.6",
|
|
4
4
|
"description": "GoodData.UI SDK - Extensions",
|
|
5
5
|
"license": "LicenseRef-LICENSE",
|
|
6
6
|
"author": "GoodData Corporation",
|
|
@@ -64,20 +64,20 @@
|
|
|
64
64
|
"ts-invariant": "0.10.3",
|
|
65
65
|
"tslib": "2.8.1",
|
|
66
66
|
"uuid": "11.1.0",
|
|
67
|
-
"@gooddata/sdk-backend-base": "11.36.0-alpha.
|
|
68
|
-
"@gooddata/sdk-backend-spi": "11.36.0-alpha.
|
|
69
|
-
"@gooddata/sdk-
|
|
70
|
-
"@gooddata/sdk-ui": "11.36.0-alpha.
|
|
71
|
-
"@gooddata/sdk-
|
|
72
|
-
"@gooddata/sdk-ui-charts": "11.36.0-alpha.
|
|
73
|
-
"@gooddata/sdk-ui-filters": "11.36.0-alpha.
|
|
74
|
-
"@gooddata/sdk-ui-
|
|
75
|
-
"@gooddata/sdk-ui-
|
|
76
|
-
"@gooddata/sdk-ui-pivot": "11.36.0-alpha.
|
|
77
|
-
"@gooddata/sdk-ui-semantic-search": "11.36.0-alpha.
|
|
78
|
-
"@gooddata/sdk-ui-
|
|
79
|
-
"@gooddata/sdk-ui-
|
|
80
|
-
"@gooddata/util": "11.36.0-alpha.
|
|
67
|
+
"@gooddata/sdk-backend-base": "11.36.0-alpha.6",
|
|
68
|
+
"@gooddata/sdk-backend-spi": "11.36.0-alpha.6",
|
|
69
|
+
"@gooddata/sdk-model": "11.36.0-alpha.6",
|
|
70
|
+
"@gooddata/sdk-ui": "11.36.0-alpha.6",
|
|
71
|
+
"@gooddata/sdk-embedding": "11.36.0-alpha.6",
|
|
72
|
+
"@gooddata/sdk-ui-charts": "11.36.0-alpha.6",
|
|
73
|
+
"@gooddata/sdk-ui-filters": "11.36.0-alpha.6",
|
|
74
|
+
"@gooddata/sdk-ui-geo": "11.36.0-alpha.6",
|
|
75
|
+
"@gooddata/sdk-ui-kit": "11.36.0-alpha.6",
|
|
76
|
+
"@gooddata/sdk-ui-pivot": "11.36.0-alpha.6",
|
|
77
|
+
"@gooddata/sdk-ui-semantic-search": "11.36.0-alpha.6",
|
|
78
|
+
"@gooddata/sdk-ui-theme-provider": "11.36.0-alpha.6",
|
|
79
|
+
"@gooddata/sdk-ui-vis-commons": "11.36.0-alpha.6",
|
|
80
|
+
"@gooddata/util": "11.36.0-alpha.6"
|
|
81
81
|
},
|
|
82
82
|
"devDependencies": {
|
|
83
83
|
"@microsoft/api-documenter": "^7.17.0",
|
|
@@ -125,12 +125,12 @@
|
|
|
125
125
|
"typescript": "5.9.3",
|
|
126
126
|
"vitest": "4.1.0",
|
|
127
127
|
"vitest-dom": "0.1.1",
|
|
128
|
-
"@gooddata/eslint-config": "11.36.0-alpha.
|
|
129
|
-
"@gooddata/i18n-toolkit": "11.36.0-alpha.
|
|
130
|
-
"@gooddata/oxlint-config": "11.36.0-alpha.
|
|
131
|
-
"@gooddata/reference-workspace": "11.36.0-alpha.
|
|
132
|
-
"@gooddata/
|
|
133
|
-
"@gooddata/
|
|
128
|
+
"@gooddata/eslint-config": "11.36.0-alpha.6",
|
|
129
|
+
"@gooddata/i18n-toolkit": "11.36.0-alpha.6",
|
|
130
|
+
"@gooddata/oxlint-config": "11.36.0-alpha.6",
|
|
131
|
+
"@gooddata/reference-workspace": "11.36.0-alpha.6",
|
|
132
|
+
"@gooddata/sdk-backend-mockingbird": "11.36.0-alpha.6",
|
|
133
|
+
"@gooddata/stylelint-config": "11.36.0-alpha.6"
|
|
134
134
|
},
|
|
135
135
|
"peerDependencies": {
|
|
136
136
|
"react": "^18.0.0 || ^19.0.0",
|