@gooddata/sdk-ui-ext 11.50.0-alpha.0 → 11.50.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.
- package/NOTICE +216 -203
- package/esm/internal/components/configurationControls/DataLabelsControl.d.ts +2 -1
- package/esm/internal/components/configurationControls/DataLabelsControl.d.ts.map +1 -1
- package/esm/internal/components/configurationControls/DataLabelsControl.js +6 -4
- package/esm/internal/components/configurationPanels/PieChartConfigurationPanel.d.ts.map +1 -1
- package/esm/internal/components/configurationPanels/PieChartConfigurationPanel.js +3 -2
- package/esm/internal/constants/dropdowns.d.ts +1 -0
- package/esm/internal/constants/dropdowns.d.ts.map +1 -1
- package/esm/internal/constants/dropdowns.js +20 -2
- package/esm/internal/constants/supportedProperties.d.ts.map +1 -1
- package/esm/internal/constants/supportedProperties.js +1 -0
- package/esm/internal/translations/en-US.localization-bundle.d.ts +33 -1
- package/esm/internal/translations/en-US.localization-bundle.d.ts.map +1 -1
- package/esm/internal/translations/en-US.localization-bundle.js +36 -4
- package/esm/locales.d.ts +25 -1
- package/esm/locales.d.ts.map +1 -1
- package/esm/locales.js +9 -1
- package/esm/tsdoc-metadata.json +1 -1
- package/package.json +21 -21
|
@@ -9,6 +9,7 @@ export interface IDataLabelsControlProps {
|
|
|
9
9
|
enableSeparateTotalLabels?: boolean;
|
|
10
10
|
enablePercentLabels?: boolean;
|
|
11
11
|
enableStyleSelector?: boolean;
|
|
12
|
+
enablePositionSelector?: boolean;
|
|
12
13
|
}
|
|
13
|
-
export declare function DataLabelsControl({ pushData, properties, isDisabled, showDisabledMessage, defaultValue, isTotalsDisabled, enableSeparateTotalLabels, enablePercentLabels, enableStyleSelector }: IDataLabelsControlProps): import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
export declare function DataLabelsControl({ pushData, properties, isDisabled, showDisabledMessage, defaultValue, isTotalsDisabled, enableSeparateTotalLabels, enablePercentLabels, enableStyleSelector, enablePositionSelector }: IDataLabelsControlProps): import("react/jsx-runtime").JSX.Element;
|
|
14
15
|
//# sourceMappingURL=DataLabelsControl.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DataLabelsControl.d.ts","sourceRoot":"","sources":["../../../../src/internal/components/configurationControls/DataLabelsControl.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"DataLabelsControl.d.ts","sourceRoot":"","sources":["../../../../src/internal/components/configurationControls/DataLabelsControl.tsx"],"names":[],"mappings":"AAUA,OAAO,EAAE,KAAK,wBAAwB,EAAE,MAAM,mCAAmC,CAAC;AAOlF,MAAM,WAAW,uBAAuB;IACpC,QAAQ,CAAC,EAAE,CAAC,IAAI,EAAE,GAAG,KAAK,GAAG,CAAC;IAC9B,UAAU,CAAC,EAAE,wBAAwB,CAAC;IACtC,UAAU,EAAE,OAAO,CAAC;IACpB,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B,YAAY,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IAChC,yBAAyB,CAAC,EAAE,OAAO,CAAC;IACpC,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B,sBAAsB,CAAC,EAAE,OAAO,CAAC;CACpC;AAED,wBAAgB,iBAAiB,CAAC,EAC9B,QAAQ,EACR,UAAU,EACV,UAAU,EACV,mBAA2B,EAC3B,YAAqB,EACrB,gBAAuB,EACvB,yBAAiC,EACjC,mBAAmB,EACnB,mBAA0B,EAC1B,sBAA8B,EACjC,EAAE,uBAAuB,2CAmFzB"}
|
|
@@ -2,15 +2,17 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
|
2
2
|
// (C) 2019-2026 GoodData Corporation
|
|
3
3
|
import { useIntl } from "react-intl";
|
|
4
4
|
import { messages } from "../../../locales.js";
|
|
5
|
-
import { dataLabelStyleDropdownItems, dataLabelsDropdownItems } from "../../constants/dropdowns.js";
|
|
5
|
+
import { dataLabelPositionDropdownItems, dataLabelStyleDropdownItems, dataLabelsDropdownItems, } from "../../constants/dropdowns.js";
|
|
6
6
|
import { getTranslatedDropdownItems } from "../../utils/translations.js";
|
|
7
7
|
import { CheckboxControl } from "../configurationControls/CheckboxControl.js";
|
|
8
|
+
import { ConfigSubsection } from "./ConfigSubsection.js";
|
|
8
9
|
import { DropdownControl } from "./DropdownControl.js";
|
|
9
|
-
export function DataLabelsControl({ pushData, properties, isDisabled, showDisabledMessage = false, defaultValue = "auto", isTotalsDisabled = true, enableSeparateTotalLabels = false, enablePercentLabels, enableStyleSelector = true, }) {
|
|
10
|
+
export function DataLabelsControl({ pushData, properties, isDisabled, showDisabledMessage = false, defaultValue = "auto", isTotalsDisabled = true, enableSeparateTotalLabels = false, enablePercentLabels, enableStyleSelector = true, enablePositionSelector = false, }) {
|
|
10
11
|
const intl = useIntl();
|
|
11
12
|
const dataLabels = properties?.controls?.["dataLabels"]?.visible ?? defaultValue;
|
|
12
13
|
const totalLabels = properties?.controls?.["dataLabels"]?.totalsVisible ?? defaultValue;
|
|
13
14
|
const dataLabelStyle = properties?.controls?.["dataLabels"]?.style ?? "auto";
|
|
15
|
+
const dataLabelPosition = properties?.controls?.["dataLabels"]?.position ?? "auto";
|
|
14
16
|
const percentLabels = properties?.controls?.["dataLabels"]?.percentsVisible ?? true;
|
|
15
17
|
const percentLabelsDisabled = isDisabled || !dataLabels;
|
|
16
18
|
// Decide about percents tooltip message: show info variant when not disabled,
|
|
@@ -23,6 +25,6 @@ export function DataLabelsControl({ pushData, properties, isDisabled, showDisabl
|
|
|
23
25
|
else if (!percentLabelsDisabled) {
|
|
24
26
|
percentLabelsMessageId = messages["canvasLabelsPercentagesInfo"].id;
|
|
25
27
|
}
|
|
26
|
-
return (
|
|
27
|
-
|
|
28
|
+
return (_jsx("div", { className: "s-data-labels-config", children: _jsxs(ConfigSubsection, { title: messages["labelsSubsectionTitle"].id, children: [
|
|
29
|
+
_jsx(DropdownControl, { value: dataLabels, valuePath: "dataLabels.visible", labelText: messages["dataLabelDisplay"].id, disabled: isDisabled, properties: properties, pushData: pushData, items: getTranslatedDropdownItems(dataLabelsDropdownItems, intl), showDisabledMessage: showDisabledMessage }), enableSeparateTotalLabels ? (_jsx(DropdownControl, { value: totalLabels, valuePath: "dataLabels.totalsVisible", labelText: messages["totalLabels"].id, disabled: isTotalsDisabled, properties: properties, pushData: pushData, items: getTranslatedDropdownItems(dataLabelsDropdownItems, intl), showDisabledMessage: isTotalsDisabled })) : null, enableStyleSelector ? (_jsx(DropdownControl, { value: dataLabelStyle, valuePath: "dataLabels.style", labelText: messages["dataLabelStyle"].id, disabled: isDisabled, properties: properties, pushData: pushData, items: getTranslatedDropdownItems(dataLabelStyleDropdownItems, intl), showDisabledMessage: showDisabledMessage })) : null, enablePositionSelector ? (_jsx(DropdownControl, { value: dataLabelPosition, valuePath: "dataLabels.position", labelText: messages["dataLabelPosition"].id, disabled: isDisabled, properties: properties, pushData: pushData, items: getTranslatedDropdownItems(dataLabelPositionDropdownItems, intl), showDisabledMessage: showDisabledMessage })) : null, enablePercentLabels ? (_jsx(CheckboxControl, { valuePath: "dataLabels.percentsVisible", labelText: messages["canvasLabelsPercentages"].id, properties: properties, checked: percentLabels, disabled: percentLabelsDisabled, disabledMessageId: percentLabelsMessageId, showDisabledMessage: !!percentLabelsMessageId, pushData: pushData })) : null] }) }));
|
|
28
30
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PieChartConfigurationPanel.d.ts","sourceRoot":"","sources":["../../../../src/internal/components/configurationPanels/PieChartConfigurationPanel.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAiBvC,OAAO,EAAE,yBAAyB,EAAE,MAAM,gCAAgC,CAAC;AAE3E,qBAAa,0BAA2B,SAAQ,yBAAyB;IACrE,SAAS,CAAC,wBAAwB,IAAI,SAAS,
|
|
1
|
+
{"version":3,"file":"PieChartConfigurationPanel.d.ts","sourceRoot":"","sources":["../../../../src/internal/components/configurationPanels/PieChartConfigurationPanel.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAiBvC,OAAO,EAAE,yBAAyB,EAAE,MAAM,gCAAgC,CAAC;AAE3E,qBAAa,0BAA2B,SAAQ,yBAAyB;IACrE,SAAS,CAAC,wBAAwB,IAAI,SAAS,CAsC9C;IAED,OAAO,CAAC,mBAAmB;CAK9B"}
|
|
@@ -9,10 +9,11 @@ import { DataLabelsControl } from "../configurationControls/DataLabelsControl.js
|
|
|
9
9
|
import { ConfigurationPanelContent } from "./ConfigurationPanelContent.js";
|
|
10
10
|
export class PieChartConfigurationPanel extends ConfigurationPanelContent {
|
|
11
11
|
renderConfigurationPanel() {
|
|
12
|
-
const { propertiesMeta, properties, pushData } = this.props;
|
|
12
|
+
const { propertiesMeta, properties, pushData, featureFlags } = this.props;
|
|
13
13
|
const controlsDisabled = this.isControlDisabled();
|
|
14
|
+
const donutDataLabelsEnabled = !!featureFlags?.enableDonutDataLabels;
|
|
14
15
|
return (_jsxs(BubbleHoverTrigger, { showDelay: SHOW_DELAY_DEFAULT, hideDelay: HIDE_DELAY_DEFAULT, children: [
|
|
15
|
-
_jsxs("div", { children: [this.renderColorSection(), this.renderLegendSection(), this.renderInteractionsSection(), _jsx(ConfigSection, { id: "canvas_section", title: messages["canvasTitle"].id, propertiesMeta: propertiesMeta, properties: properties, pushData: pushData, children: _jsx(DataLabelsControl, { pushData: pushData, properties: properties, isDisabled: controlsDisabled, defaultValue: false }) }), this.renderCustomTooltipSection(), this.renderAdvancedSection()] }), _jsx(Bubble, { className: this.getBubbleClassNames(), arrowOffsets: { "tc bc": [BUBBLE_ARROW_OFFSET_X, BUBBLE_ARROW_OFFSET_Y] }, alignPoints: [{ align: "tc bc" }], children: _jsx(FormattedMessage, { id: "properties.config.not_applicable" }) })
|
|
16
|
+
_jsxs("div", { children: [this.renderColorSection(), this.renderLegendSection(), this.renderInteractionsSection(), _jsx(ConfigSection, { id: "canvas_section", title: messages["canvasTitle"].id, propertiesMeta: propertiesMeta, properties: properties, pushData: pushData, children: _jsx(DataLabelsControl, { pushData: pushData, properties: properties, isDisabled: controlsDisabled, defaultValue: false, enablePositionSelector: donutDataLabelsEnabled }) }), this.renderCustomTooltipSection(), this.renderAdvancedSection()] }), _jsx(Bubble, { className: this.getBubbleClassNames(), arrowOffsets: { "tc bc": [BUBBLE_ARROW_OFFSET_X, BUBBLE_ARROW_OFFSET_Y] }, alignPoints: [{ align: "tc bc" }], children: _jsx(FormattedMessage, { id: "properties.config.not_applicable" }) })
|
|
16
17
|
] }));
|
|
17
18
|
}
|
|
18
19
|
getBubbleClassNames() {
|
|
@@ -12,6 +12,7 @@ export declare const legendPositionDropdownItems: IDropdownItem[];
|
|
|
12
12
|
export declare const orientationDropdownItems: IDropdownItem[];
|
|
13
13
|
export declare const dataLabelsDropdownItems: IDropdownItem[];
|
|
14
14
|
export declare const dataLabelStyleDropdownItems: IDropdownItem[];
|
|
15
|
+
export declare const dataLabelPositionDropdownItems: IDropdownItem[];
|
|
15
16
|
export declare const rowSizingDropdownItems: IDropdownItem[];
|
|
16
17
|
export declare const verticalAlignmentDropdownItems: IDropdownItem[];
|
|
17
18
|
export declare const textWrappingDropdownItems: IDropdownItem[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dropdowns.d.ts","sourceRoot":"","sources":["../../../src/internal/constants/dropdowns.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,KAAK,aAAa,EAAE,MAAM,2BAA2B,CAAC;AAE/D,eAAO,MAAM,6BAA6B,EAAE,aAAa,EAYxD,CAAC;AAEF,eAAO,MAAM,wBAAwB,EAAE,aAAa,EAQnD,CAAC;AAEF,eAAO,MAAM,4BAA4B,EAAE,aAAa,EAmBvD,CAAC;AAEF,eAAO,MAAM,qBAAqB,EAAE,aAAa,EAQhD,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,aAAa,EAQ9C,CAAC;AAEF,eAAO,MAAM,uBAAuB,EAAE,aAAa,EAOlD,CAAC;AAEF,eAAO,MAAM,mCAAmC,EAAE,aAAa,EAI9D,CAAC;AAEF,eAAO,MAAM,wBAAwB,EAAE,aAAa,EAInD,CAAC;AAEF,eAAO,MAAM,sBAAsB,EAAE,aAAa,EAIjD,CAAC;AAEF,eAAO,MAAM,2BAA2B,EAAE,aAAa,EAOtD,CAAC;AAEF,eAAO,MAAM,wBAAwB,EAAE,aAAa,EAOnD,CAAC;AAEF,eAAO,MAAM,uBAAuB,EAAE,aAAa,
|
|
1
|
+
{"version":3,"file":"dropdowns.d.ts","sourceRoot":"","sources":["../../../src/internal/constants/dropdowns.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,KAAK,aAAa,EAAE,MAAM,2BAA2B,CAAC;AAE/D,eAAO,MAAM,6BAA6B,EAAE,aAAa,EAYxD,CAAC;AAEF,eAAO,MAAM,wBAAwB,EAAE,aAAa,EAQnD,CAAC;AAEF,eAAO,MAAM,4BAA4B,EAAE,aAAa,EAmBvD,CAAC;AAEF,eAAO,MAAM,qBAAqB,EAAE,aAAa,EAQhD,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,aAAa,EAQ9C,CAAC;AAEF,eAAO,MAAM,uBAAuB,EAAE,aAAa,EAOlD,CAAC;AAEF,eAAO,MAAM,mCAAmC,EAAE,aAAa,EAI9D,CAAC;AAEF,eAAO,MAAM,wBAAwB,EAAE,aAAa,EAInD,CAAC;AAEF,eAAO,MAAM,sBAAsB,EAAE,aAAa,EAIjD,CAAC;AAEF,eAAO,MAAM,2BAA2B,EAAE,aAAa,EAOtD,CAAC;AAEF,eAAO,MAAM,wBAAwB,EAAE,aAAa,EAOnD,CAAC;AAEF,eAAO,MAAM,uBAAuB,EAAE,aAAa,EASlD,CAAC;AAEF,eAAO,MAAM,2BAA2B,EAAE,aAAa,EAQtD,CAAC;AAEF,eAAO,MAAM,8BAA8B,EAAE,aAAa,EASzD,CAAC;AAEF,eAAO,MAAM,sBAAsB,EAAE,aAAa,EAIjD,CAAC;AAEF,eAAO,MAAM,8BAA8B,EAAE,aAAa,EAIzD,CAAC;AAEF,eAAO,MAAM,yBAAyB,EAAE,aAAa,EAGpD,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,aAAa,EAG7C,CAAC;AAEF,eAAO,MAAM,wBAAwB,EAAE,aAAa,EAKnD,CAAC;AAEF,eAAO,MAAM,wBAAwB,EAAE,aAAa,EAKnD,CAAC;AAEF,eAAO,MAAM,0BAA0B,EAAE,aAAa,EAkBrD,CAAC;AAEF,eAAO,MAAM,0BAA0B,EAAE,aAAa,EAkBrD,CAAC;AAEF,eAAO,MAAM,4BAA4B,EAAE,aAAa,EAGvD,CAAC;AAEF,eAAO,MAAM,kCAAkC,EAAE,aAAa,EAG7D,CAAC;AAEF,eAAO,MAAM,gCAAgC,EAAE,aAAa,EAK3D,CAAC;AAEF,eAAO,MAAM,wBAAwB,EAAE,aAAa,EAyBnD,CAAC;AAEF,eAAO,MAAM,+BAA+B,EAAE,aAAa,EAkB1D,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,aAAa,EAI5C,CAAC;AAEF,eAAO,MAAM,0BAA0B,EAAE,aAAa,EAGrD,CAAC;AAEF,eAAO,MAAM,+BAA+B,EAAE,aAAa,EAG1D,CAAC"}
|
|
@@ -101,16 +101,34 @@ export const orientationDropdownItems = [
|
|
|
101
101
|
{ title: messages["vertical"].id, value: "vertical", icon: "gd-dropdown-icon-orientation-vertical" },
|
|
102
102
|
];
|
|
103
103
|
export const dataLabelsDropdownItems = [
|
|
104
|
-
{
|
|
104
|
+
{
|
|
105
|
+
title: messages["dataLabelsAuto"].id,
|
|
106
|
+
value: "auto",
|
|
107
|
+
info: messages["dataLabelsAutoInfo"].id,
|
|
108
|
+
},
|
|
105
109
|
{ type: "separator" },
|
|
106
110
|
{ title: messages["dataLabelsShow"].id, value: true },
|
|
107
111
|
{ title: messages["dataLabelsHide"].id, value: false },
|
|
108
112
|
];
|
|
109
113
|
export const dataLabelStyleDropdownItems = [
|
|
110
|
-
{
|
|
114
|
+
{
|
|
115
|
+
title: messages["dataLabelStyleAuto"].id,
|
|
116
|
+
value: "auto",
|
|
117
|
+
info: messages["dataLabelStyleAutoInfo"].id,
|
|
118
|
+
},
|
|
111
119
|
{ type: "separator" },
|
|
112
120
|
{ title: messages["dataLabelStyleBackplate"].id, value: "backplate" },
|
|
113
121
|
];
|
|
122
|
+
export const dataLabelPositionDropdownItems = [
|
|
123
|
+
{
|
|
124
|
+
title: messages["dataLabelPositionAuto"].id,
|
|
125
|
+
value: "auto",
|
|
126
|
+
info: messages["dataLabelPositionAutoInfo"].id,
|
|
127
|
+
},
|
|
128
|
+
{ type: "separator" },
|
|
129
|
+
{ title: messages["dataLabelPositionInside"].id, value: "inside" },
|
|
130
|
+
{ title: messages["dataLabelPositionOutside"].id, value: "outside" },
|
|
131
|
+
];
|
|
114
132
|
export const rowSizingDropdownItems = [
|
|
115
133
|
{ title: messages["rowHeightSmall"].id, value: "small" },
|
|
116
134
|
{ title: messages["rowHeightMedium"].id, value: "medium" },
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"supportedProperties.d.ts","sourceRoot":"","sources":["../../../src/internal/constants/supportedProperties.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,KAAK,yBAAyB,EAAE,MAAM,oCAAoC,CAAC;AAuEpF,eAAO,MAAM,4BAA4B,UAA8C,CAAC;AAIxF,eAAO,MAAM,+BAA+B,UAM3C,CAAC;AAEF,eAAO,MAAM,+BAA+B,UAO3C,CAAC;AAEF,eAAO,MAAM,iCAAiC;;CAe7C,CAAC;AAEF,eAAO,MAAM,+BAA+B;;CAiC3C,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,gCAAgC,UAa5C,CAAC;AAEF,eAAO,MAAM,8BAA8B;;CAuB1C,CAAC;AAEF,eAAO,MAAM,gCAAgC;;CAqC5C,CAAC;AAEF,eAAO,MAAM,iCAAiC,UAyB7C,CAAC;AAEF,eAAO,MAAM,gCAAgC,UAkC5C,CAAC;AAEF,eAAO,MAAM,0BAA0B,UAoBtC,CAAC;AAEF,eAAO,MAAM,6BAA6B,
|
|
1
|
+
{"version":3,"file":"supportedProperties.d.ts","sourceRoot":"","sources":["../../../src/internal/constants/supportedProperties.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,KAAK,yBAAyB,EAAE,MAAM,oCAAoC,CAAC;AAuEpF,eAAO,MAAM,4BAA4B,UAA8C,CAAC;AAIxF,eAAO,MAAM,+BAA+B,UAM3C,CAAC;AAEF,eAAO,MAAM,+BAA+B,UAO3C,CAAC;AAEF,eAAO,MAAM,iCAAiC;;CAe7C,CAAC;AAEF,eAAO,MAAM,+BAA+B;;CAiC3C,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,gCAAgC,UAa5C,CAAC;AAEF,eAAO,MAAM,8BAA8B;;CAuB1C,CAAC;AAEF,eAAO,MAAM,gCAAgC;;CAqC5C,CAAC;AAEF,eAAO,MAAM,iCAAiC,UAyB7C,CAAC;AAEF,eAAO,MAAM,gCAAgC,UAkC5C,CAAC;AAEF,eAAO,MAAM,0BAA0B,UAoBtC,CAAC;AAEF,eAAO,MAAM,6BAA6B,UAezC,CAAC;AAEF,eAAO,MAAM,gCAAgC,UAe5C,CAAC;AAEF,eAAO,MAAM,4BAA4B,UAcxC,CAAC;AAEF,eAAO,MAAM,4BAA4B,UAwBxC,CAAC;AAEF,eAAO,MAAM,iCAAiC,UA4B7C,CAAC;AAEF,eAAO,MAAM,+BAA+B,UAwB3C,CAAC;AAEF;;;;;;;GAOG;AACH,eAAO,MAAM,oCAAoC,UAGhD,CAAC;AAEF,eAAO,MAAM,4BAA4B,UAiBxC,CAAC;AAEF,eAAO,MAAM,gCAAgC,UAW5C,CAAC;AAEF,eAAO,MAAM,qCAAqC,UAgBjD,CAAC;AAEF,eAAO,MAAM,iCAAiC,UAY7C,CAAC;AAWF,eAAO,MAAM,oCAAoC,UAQhD,CAAC;AAEF,eAAO,MAAM,kCAAkC,UAW9C,CAAC;AAEF,eAAO,MAAM,6BAA6B,UAMzC,CAAC;AAEF,eAAO,MAAM,mCAAmC,EAAE,yBAIjD,CAAC;AAEF,eAAO,MAAM,6CAA6C,EAAE,yBAS3D,CAAC"}
|
|
@@ -515,7 +515,7 @@ export declare const en_US: {
|
|
|
515
515
|
text: string;
|
|
516
516
|
crowdinContext: string;
|
|
517
517
|
};
|
|
518
|
-
"properties.canvas.
|
|
518
|
+
"properties.canvas.labels.subsectionTitle": {
|
|
519
519
|
text: string;
|
|
520
520
|
crowdinContext: string;
|
|
521
521
|
};
|
|
@@ -523,6 +523,10 @@ export declare const en_US: {
|
|
|
523
523
|
text: string;
|
|
524
524
|
crowdinContext: string;
|
|
525
525
|
};
|
|
526
|
+
"properties.canvas.dataLabels.auto.info": {
|
|
527
|
+
text: string;
|
|
528
|
+
crowdinContext: string;
|
|
529
|
+
};
|
|
526
530
|
"properties.canvas.dataLabels.show": {
|
|
527
531
|
text: string;
|
|
528
532
|
crowdinContext: string;
|
|
@@ -539,10 +543,38 @@ export declare const en_US: {
|
|
|
539
543
|
text: string;
|
|
540
544
|
crowdinContext: string;
|
|
541
545
|
};
|
|
546
|
+
"properties.canvas.dataLabelStyle.auto.info": {
|
|
547
|
+
text: string;
|
|
548
|
+
crowdinContext: string;
|
|
549
|
+
};
|
|
542
550
|
"properties.canvas.dataLabelStyle.backplate": {
|
|
543
551
|
text: string;
|
|
544
552
|
crowdinContext: string;
|
|
545
553
|
};
|
|
554
|
+
"properties.canvas.dataLabelDisplay": {
|
|
555
|
+
text: string;
|
|
556
|
+
crowdinContext: string;
|
|
557
|
+
};
|
|
558
|
+
"properties.canvas.dataLabelPosition": {
|
|
559
|
+
text: string;
|
|
560
|
+
crowdinContext: string;
|
|
561
|
+
};
|
|
562
|
+
"properties.canvas.dataLabelPosition.auto": {
|
|
563
|
+
text: string;
|
|
564
|
+
crowdinContext: string;
|
|
565
|
+
};
|
|
566
|
+
"properties.canvas.dataLabelPosition.auto.info": {
|
|
567
|
+
text: string;
|
|
568
|
+
crowdinContext: string;
|
|
569
|
+
};
|
|
570
|
+
"properties.canvas.dataLabelPosition.inside": {
|
|
571
|
+
text: string;
|
|
572
|
+
crowdinContext: string;
|
|
573
|
+
};
|
|
574
|
+
"properties.canvas.dataLabelPosition.outside": {
|
|
575
|
+
text: string;
|
|
576
|
+
crowdinContext: string;
|
|
577
|
+
};
|
|
546
578
|
"properties.canvas.rowHeight": {
|
|
547
579
|
text: string;
|
|
548
580
|
crowdinContext: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"en-US.localization-bundle.d.ts","sourceRoot":"","sources":["../../../src/internal/translations/en-US.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK
|
|
1
|
+
{"version":3,"file":"en-US.localization-bundle.d.ts","sourceRoot":"","sources":["../../../src/internal/translations/en-US.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqqFjB,CAAC"}
|
|
@@ -517,14 +517,18 @@ export const en_US = {
|
|
|
517
517
|
"text": "Property is not applicable for this configuration of the visualization",
|
|
518
518
|
"crowdinContext": "Tooltip for distinct point shapes configuration option"
|
|
519
519
|
},
|
|
520
|
-
"properties.canvas.
|
|
521
|
-
"text": "
|
|
522
|
-
"crowdinContext": "
|
|
520
|
+
"properties.canvas.labels.subsectionTitle": {
|
|
521
|
+
"text": "Labels",
|
|
522
|
+
"crowdinContext": "Sub-header grouping label configuration controls (Display, Style, Position) inside the Canvas section"
|
|
523
523
|
},
|
|
524
524
|
"properties.canvas.dataLabels.auto": {
|
|
525
525
|
"text": "auto (default)",
|
|
526
526
|
"crowdinContext": "Label for automatic data labels configuration option"
|
|
527
527
|
},
|
|
528
|
+
"properties.canvas.dataLabels.auto.info": {
|
|
529
|
+
"text": "Shows labels, but hides individual ones that would overlap.",
|
|
530
|
+
"crowdinContext": "Tooltip for the auto (default) option in the Display dropdown"
|
|
531
|
+
},
|
|
528
532
|
"properties.canvas.dataLabels.show": {
|
|
529
533
|
"text": "show",
|
|
530
534
|
"crowdinContext": "Label for show data labels configuration option"
|
|
@@ -534,17 +538,45 @@ export const en_US = {
|
|
|
534
538
|
"crowdinContext": "Label for hide data labels configuration option"
|
|
535
539
|
},
|
|
536
540
|
"properties.canvas.dataLabelStyle": {
|
|
537
|
-
"text": "
|
|
541
|
+
"text": "Style",
|
|
538
542
|
"crowdinContext": "Label for data label style configuration option"
|
|
539
543
|
},
|
|
540
544
|
"properties.canvas.dataLabelStyle.auto": {
|
|
541
545
|
"text": "auto (default)",
|
|
542
546
|
"crowdinContext": "Option for automatic data label style"
|
|
543
547
|
},
|
|
548
|
+
"properties.canvas.dataLabelStyle.auto.info": {
|
|
549
|
+
"text": "Automatically colors label text for contrast.",
|
|
550
|
+
"crowdinContext": "Tooltip for the auto (default) option in the Style dropdown"
|
|
551
|
+
},
|
|
544
552
|
"properties.canvas.dataLabelStyle.backplate": {
|
|
545
553
|
"text": "backplate",
|
|
546
554
|
"crowdinContext": "Option for data label style with backplate"
|
|
547
555
|
},
|
|
556
|
+
"properties.canvas.dataLabelDisplay": {
|
|
557
|
+
"text": "Display",
|
|
558
|
+
"crowdinContext": "Label for data label visibility configuration (show / hide / auto)"
|
|
559
|
+
},
|
|
560
|
+
"properties.canvas.dataLabelPosition": {
|
|
561
|
+
"text": "Position",
|
|
562
|
+
"crowdinContext": "Label for pie/donut data label placement configuration (inside / outside / auto)"
|
|
563
|
+
},
|
|
564
|
+
"properties.canvas.dataLabelPosition.auto": {
|
|
565
|
+
"text": "auto (default)",
|
|
566
|
+
"crowdinContext": "Option for automatic label placement on pie/donut: whole-chart decision based on smallest slice size"
|
|
567
|
+
},
|
|
568
|
+
"properties.canvas.dataLabelPosition.auto.info": {
|
|
569
|
+
"text": "Places all labels inside, or all outside, if slices are too small.",
|
|
570
|
+
"crowdinContext": "Tooltip for the auto (default) option in the Position dropdown"
|
|
571
|
+
},
|
|
572
|
+
"properties.canvas.dataLabelPosition.inside": {
|
|
573
|
+
"text": "inside",
|
|
574
|
+
"crowdinContext": "Option that forces all pie/donut labels inside their slices"
|
|
575
|
+
},
|
|
576
|
+
"properties.canvas.dataLabelPosition.outside": {
|
|
577
|
+
"text": "outside",
|
|
578
|
+
"crowdinContext": "Option that places all pie/donut labels outside with leader lines"
|
|
579
|
+
},
|
|
548
580
|
"properties.canvas.rowHeight": {
|
|
549
581
|
"text": "Row height",
|
|
550
582
|
"crowdinContext": "Label of the dropdown for configuring the row height of the chart"
|
package/esm/locales.d.ts
CHANGED
|
@@ -297,7 +297,13 @@ export declare const messages: {
|
|
|
297
297
|
autoPlaceholder: {
|
|
298
298
|
id: string;
|
|
299
299
|
};
|
|
300
|
-
|
|
300
|
+
dataLabelsAutoInfo: {
|
|
301
|
+
id: string;
|
|
302
|
+
};
|
|
303
|
+
labelsSubsectionTitle: {
|
|
304
|
+
id: string;
|
|
305
|
+
};
|
|
306
|
+
dataLabelDisplay: {
|
|
301
307
|
id: string;
|
|
302
308
|
};
|
|
303
309
|
dataLabelStyle: {
|
|
@@ -306,9 +312,27 @@ export declare const messages: {
|
|
|
306
312
|
dataLabelStyleAuto: {
|
|
307
313
|
id: string;
|
|
308
314
|
};
|
|
315
|
+
dataLabelStyleAutoInfo: {
|
|
316
|
+
id: string;
|
|
317
|
+
};
|
|
309
318
|
dataLabelStyleBackplate: {
|
|
310
319
|
id: string;
|
|
311
320
|
};
|
|
321
|
+
dataLabelPosition: {
|
|
322
|
+
id: string;
|
|
323
|
+
};
|
|
324
|
+
dataLabelPositionAuto: {
|
|
325
|
+
id: string;
|
|
326
|
+
};
|
|
327
|
+
dataLabelPositionAutoInfo: {
|
|
328
|
+
id: string;
|
|
329
|
+
};
|
|
330
|
+
dataLabelPositionInside: {
|
|
331
|
+
id: string;
|
|
332
|
+
};
|
|
333
|
+
dataLabelPositionOutside: {
|
|
334
|
+
id: string;
|
|
335
|
+
};
|
|
312
336
|
totalLabels: {
|
|
313
337
|
id: string;
|
|
314
338
|
};
|
package/esm/locales.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"locales.d.ts","sourceRoot":"","sources":["../src/locales.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,iBAAiB,EAAkB,MAAM,YAAY,CAAC;AAEpE,OAAO,EAAE,KAAK,6BAA6B,EAAE,MAAM,6BAA6B,CAAC;AAGjF,eAAO,MAAM,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,iBAAiB,CA2EnD,CAAC;AAEH,eAAO,MAAM,SAAS,EAAE,MAAM,CAAC,MAAM,EAAE,iBAAiB,CAsBtD,CAAC;AAEH,eAAO,MAAM,QAAQ
|
|
1
|
+
{"version":3,"file":"locales.d.ts","sourceRoot":"","sources":["../src/locales.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,iBAAiB,EAAkB,MAAM,YAAY,CAAC;AAEpE,OAAO,EAAE,KAAK,6BAA6B,EAAE,MAAM,6BAA6B,CAAC;AAGjF,eAAO,MAAM,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,iBAAiB,CA2EnD,CAAC;AAEH,eAAO,MAAM,SAAS,EAAE,MAAM,CAAC,MAAM,EAAE,iBAAiB,CAsBtD,CAAC;AAEH,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAuQnB,CAAC;AAEH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmH7B,CAAC;AAEH,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4BxC,CAAC;AAEH,eAAO,MAAM,qCAAqC,EAAE,MAAM,CAAC,6BAA6B,EAAE,iBAAiB,CAmBrG,CAAC"}
|
package/esm/locales.js
CHANGED
|
@@ -199,10 +199,18 @@ export const messages = defineMessages({
|
|
|
199
199
|
viewportNavigationPan: { id: "properties.viewport.navigation.pan" },
|
|
200
200
|
viewportNavigationZoom: { id: "properties.viewport.navigation.zoom" },
|
|
201
201
|
autoPlaceholder: { id: "properties.auto_placeholder" },
|
|
202
|
-
|
|
202
|
+
dataLabelsAutoInfo: { id: "properties.canvas.dataLabels.auto.info" },
|
|
203
|
+
labelsSubsectionTitle: { id: "properties.canvas.labels.subsectionTitle" },
|
|
204
|
+
dataLabelDisplay: { id: "properties.canvas.dataLabelDisplay" },
|
|
203
205
|
dataLabelStyle: { id: "properties.canvas.dataLabelStyle" },
|
|
204
206
|
dataLabelStyleAuto: { id: "properties.canvas.dataLabelStyle.auto" },
|
|
207
|
+
dataLabelStyleAutoInfo: { id: "properties.canvas.dataLabelStyle.auto.info" },
|
|
205
208
|
dataLabelStyleBackplate: { id: "properties.canvas.dataLabelStyle.backplate" },
|
|
209
|
+
dataLabelPosition: { id: "properties.canvas.dataLabelPosition" },
|
|
210
|
+
dataLabelPositionAuto: { id: "properties.canvas.dataLabelPosition.auto" },
|
|
211
|
+
dataLabelPositionAutoInfo: { id: "properties.canvas.dataLabelPosition.auto.info" },
|
|
212
|
+
dataLabelPositionInside: { id: "properties.canvas.dataLabelPosition.inside" },
|
|
213
|
+
dataLabelPositionOutside: { id: "properties.canvas.dataLabelPosition.outside" },
|
|
206
214
|
totalLabels: { id: "properties.canvas.totalLabels" },
|
|
207
215
|
dataPoints: { id: "properties.canvas.dataPoints" },
|
|
208
216
|
axisLabels: { id: "properties.axis.labels" },
|
package/esm/tsdoc-metadata.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gooddata/sdk-ui-ext",
|
|
3
|
-
"version": "11.50.0-alpha.
|
|
3
|
+
"version": "11.50.0-alpha.2",
|
|
4
4
|
"description": "GoodData.UI SDK - Extensions",
|
|
5
5
|
"license": "LicenseRef-LICENSE",
|
|
6
6
|
"author": "GoodData Corporation",
|
|
@@ -63,20 +63,20 @@
|
|
|
63
63
|
"ts-invariant": "0.10.3",
|
|
64
64
|
"tslib": "2.8.1",
|
|
65
65
|
"uuid": "11.1.1",
|
|
66
|
-
"@gooddata/sdk-backend-base": "11.50.0-alpha.
|
|
67
|
-
"@gooddata/sdk-
|
|
68
|
-
"@gooddata/sdk-
|
|
69
|
-
"@gooddata/sdk-
|
|
70
|
-
"@gooddata/sdk-
|
|
71
|
-
"@gooddata/sdk-ui-charts": "11.50.0-alpha.
|
|
72
|
-
"@gooddata/sdk-ui-filters": "11.50.0-alpha.
|
|
73
|
-
"@gooddata/sdk-ui-geo": "11.50.0-alpha.
|
|
74
|
-
"@gooddata/sdk-ui-kit": "11.50.0-alpha.
|
|
75
|
-
"@gooddata/sdk-ui-pivot": "11.50.0-alpha.
|
|
76
|
-
"@gooddata/sdk-ui-
|
|
77
|
-
"@gooddata/sdk-ui-
|
|
78
|
-
"@gooddata/sdk-ui-vis-commons": "11.50.0-alpha.
|
|
79
|
-
"@gooddata/util": "11.50.0-alpha.
|
|
66
|
+
"@gooddata/sdk-backend-base": "11.50.0-alpha.2",
|
|
67
|
+
"@gooddata/sdk-embedding": "11.50.0-alpha.2",
|
|
68
|
+
"@gooddata/sdk-ui": "11.50.0-alpha.2",
|
|
69
|
+
"@gooddata/sdk-backend-spi": "11.50.0-alpha.2",
|
|
70
|
+
"@gooddata/sdk-model": "11.50.0-alpha.2",
|
|
71
|
+
"@gooddata/sdk-ui-charts": "11.50.0-alpha.2",
|
|
72
|
+
"@gooddata/sdk-ui-filters": "11.50.0-alpha.2",
|
|
73
|
+
"@gooddata/sdk-ui-geo": "11.50.0-alpha.2",
|
|
74
|
+
"@gooddata/sdk-ui-kit": "11.50.0-alpha.2",
|
|
75
|
+
"@gooddata/sdk-ui-pivot": "11.50.0-alpha.2",
|
|
76
|
+
"@gooddata/sdk-ui-theme-provider": "11.50.0-alpha.2",
|
|
77
|
+
"@gooddata/sdk-ui-semantic-search": "11.50.0-alpha.2",
|
|
78
|
+
"@gooddata/sdk-ui-vis-commons": "11.50.0-alpha.2",
|
|
79
|
+
"@gooddata/util": "11.50.0-alpha.2"
|
|
80
80
|
},
|
|
81
81
|
"devDependencies": {
|
|
82
82
|
"@microsoft/api-documenter": "^7.17.0",
|
|
@@ -124,12 +124,12 @@
|
|
|
124
124
|
"typescript": "5.9.3",
|
|
125
125
|
"vitest": "4.1.8",
|
|
126
126
|
"vitest-dom": "0.1.1",
|
|
127
|
-
"@gooddata/eslint-config": "11.50.0-alpha.
|
|
128
|
-
"@gooddata/i18n-toolkit": "11.50.0-alpha.
|
|
129
|
-
"@gooddata/oxlint-config": "11.50.0-alpha.
|
|
130
|
-
"@gooddata/
|
|
131
|
-
"@gooddata/stylelint-config": "11.50.0-alpha.
|
|
132
|
-
"@gooddata/
|
|
127
|
+
"@gooddata/eslint-config": "11.50.0-alpha.2",
|
|
128
|
+
"@gooddata/i18n-toolkit": "11.50.0-alpha.2",
|
|
129
|
+
"@gooddata/oxlint-config": "11.50.0-alpha.2",
|
|
130
|
+
"@gooddata/sdk-backend-mockingbird": "11.50.0-alpha.2",
|
|
131
|
+
"@gooddata/stylelint-config": "11.50.0-alpha.2",
|
|
132
|
+
"@gooddata/reference-workspace": "11.50.0-alpha.2"
|
|
133
133
|
},
|
|
134
134
|
"peerDependencies": {
|
|
135
135
|
"react": "^18.0.0 || ^19.0.0",
|