@gooddata/sdk-ui-ext 11.50.0-alpha.1 → 11.50.0-alpha.3
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/configurationControls/conditionalFormatting/CfDateValueDropdown.d.ts +25 -0
- package/esm/internal/components/configurationControls/conditionalFormatting/CfDateValueDropdown.d.ts.map +1 -0
- package/esm/internal/components/configurationControls/conditionalFormatting/CfDateValueDropdown.js +140 -0
- package/esm/internal/components/configurationControls/conditionalFormatting/CfSelect.d.ts.map +1 -1
- package/esm/internal/components/configurationControls/conditionalFormatting/CfSelect.js +1 -1
- package/esm/internal/components/configurationControls/conditionalFormatting/ConditionEditor.d.ts +6 -3
- package/esm/internal/components/configurationControls/conditionalFormatting/ConditionEditor.d.ts.map +1 -1
- package/esm/internal/components/configurationControls/conditionalFormatting/ConditionEditor.js +40 -36
- package/esm/internal/components/configurationControls/conditionalFormatting/ConditionalFormattingDialog.d.ts +7 -2
- package/esm/internal/components/configurationControls/conditionalFormatting/ConditionalFormattingDialog.d.ts.map +1 -1
- package/esm/internal/components/configurationControls/conditionalFormatting/ConditionalFormattingDialog.js +17 -8
- package/esm/internal/components/configurationControls/conditionalFormatting/ConditionalFormattingSection.d.ts +7 -2
- package/esm/internal/components/configurationControls/conditionalFormatting/ConditionalFormattingSection.d.ts.map +1 -1
- package/esm/internal/components/configurationControls/conditionalFormatting/ConditionalFormattingSection.js +20 -8
- package/esm/internal/components/configurationControls/conditionalFormatting/conditionalFormattingModel.d.ts +54 -19
- package/esm/internal/components/configurationControls/conditionalFormatting/conditionalFormattingModel.d.ts.map +1 -1
- package/esm/internal/components/configurationControls/conditionalFormatting/conditionalFormattingModel.js +160 -30
- package/esm/internal/components/configurationControls/conditionalFormatting/useCfDateFilterOptions.d.ts +12 -0
- package/esm/internal/components/configurationControls/conditionalFormatting/useCfDateFilterOptions.d.ts.map +1 -0
- package/esm/internal/components/configurationControls/conditionalFormatting/useCfDateFilterOptions.js +44 -0
- package/esm/internal/components/configurationPanels/PieChartConfigurationPanel.d.ts.map +1 -1
- package/esm/internal/components/configurationPanels/PieChartConfigurationPanel.js +3 -2
- package/esm/internal/components/configurationPanels/PivotTableConfigurationPanel.d.ts +6 -1
- package/esm/internal/components/configurationPanels/PivotTableConfigurationPanel.d.ts.map +1 -1
- package/esm/internal/components/configurationPanels/PivotTableConfigurationPanel.js +2 -2
- package/esm/internal/components/pluggableVisualizations/pivotTableNext/PluggablePivotTableNext.d.ts +3 -0
- package/esm/internal/components/pluggableVisualizations/pivotTableNext/PluggablePivotTableNext.d.ts.map +1 -1
- package/esm/internal/components/pluggableVisualizations/pivotTableNext/PluggablePivotTableNext.js +14 -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 +73 -1
- package/esm/internal/translations/en-US.localization-bundle.d.ts.map +1 -1
- package/esm/internal/translations/en-US.localization-bundle.js +76 -4
- package/esm/internal/utils/translations.d.ts.map +1 -1
- package/esm/internal/utils/translations.js +2 -1
- package/esm/locales.d.ts +36 -1
- package/esm/locales.d.ts.map +1 -1
- package/esm/locales.js +22 -1
- package/esm/tsdoc-metadata.json +1 -1
- package/package.json +21 -21
- package/styles/css/main.css +4 -0
- package/styles/css/main.css.map +1 -1
- package/styles/internal/css/conditional_formatting.css +4 -0
- package/styles/internal/css/conditional_formatting.css.map +1 -1
- package/styles/internal/scss/conditional_formatting.scss +6 -0
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
import { type ReactNode } from "react";
|
|
2
|
+
import { type IAnalyticalBackend } from "@gooddata/sdk-backend-spi";
|
|
2
3
|
import { type ISeparators } from "@gooddata/sdk-model";
|
|
3
|
-
import { type ICfTargetData } from "../configurationControls/conditionalFormatting/conditionalFormattingModel.js";
|
|
4
|
+
import { type ICfDateSettings, type ICfTargetData } from "../configurationControls/conditionalFormatting/conditionalFormattingModel.js";
|
|
4
5
|
import { ConfigurationPanelContent, type IConfigurationPanelContentProps } from "./ConfigurationPanelContent.js";
|
|
5
6
|
import { type SectionName } from "./sectionName.js";
|
|
6
7
|
interface IPivotTableConfigurationPanelProps extends IConfigurationPanelContentProps {
|
|
7
8
|
cfTargetData?: ICfTargetData;
|
|
9
|
+
/** Backend + workspace let the CF section fetch the workspace date-filter preset catalog. */
|
|
10
|
+
cfBackend?: IAnalyticalBackend;
|
|
11
|
+
cfWorkspace?: string;
|
|
12
|
+
cfDateSettings?: ICfDateSettings;
|
|
8
13
|
separators?: ISeparators;
|
|
9
14
|
}
|
|
10
15
|
export declare class PivotTableConfigurationPanel extends ConfigurationPanelContent<IPivotTableConfigurationPanelProps> {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PivotTableConfigurationPanel.d.ts","sourceRoot":"","sources":["../../../../src/internal/components/configurationPanels/PivotTableConfigurationPanel.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAKvC,OAAO,EACH,KAAK,WAAW,EAInB,MAAM,qBAAqB,CAAC;AAa7B,OAAO,
|
|
1
|
+
{"version":3,"file":"PivotTableConfigurationPanel.d.ts","sourceRoot":"","sources":["../../../../src/internal/components/configurationPanels/PivotTableConfigurationPanel.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAKvC,OAAO,EAAE,KAAK,kBAAkB,EAAE,MAAM,2BAA2B,CAAC;AACpE,OAAO,EACH,KAAK,WAAW,EAInB,MAAM,qBAAqB,CAAC;AAa7B,OAAO,EACH,KAAK,eAAe,EACpB,KAAK,aAAa,EACrB,MAAM,8EAA8E,CAAC;AAQtF,OAAO,EACH,yBAAyB,EACzB,KAAK,+BAA+B,EACvC,MAAM,gCAAgC,CAAC;AACxC,OAAO,EAAE,KAAK,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAGpD,UAAU,kCAAmC,SAAQ,+BAA+B;IAChF,YAAY,CAAC,EAAE,aAAa,CAAC;IAC7B,6FAA6F;IAC7F,SAAS,CAAC,EAAE,kBAAkB,CAAC;IAC/B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,cAAc,CAAC,EAAE,eAAe,CAAC;IACjC,UAAU,CAAC,EAAE,WAAW,CAAC;CAC5B;AAED,qBAAa,4BAA6B,SAAQ,yBAAyB,CAAC,kCAAkC,CAAC;IAC3G,UAAmB,iBAAiB,CAAC,WAAW,CAAC,EAAE,WAAW,GAAG,OAAO,CAgBvE;IAED,SAAS,CAAC,wBAAwB,IAAI,SAAS,CAwB9C;IAED,OAAO,CAAC,mBAAmB;IAS3B,OAAO,CAAC,yBAAyB;IAYjC,OAAO,CAAC,sCAAsC;IAU9C,OAAO,CAAC,mBAAmB;IAqD3B,OAAO,CAAC,kCAAkC;IA8B1C,OAAO,CAAC,mBAAmB;CAY9B"}
|
|
@@ -73,8 +73,8 @@ export class PivotTableConfigurationPanel extends ConfigurationPanelContent {
|
|
|
73
73
|
return panelConfig.supportsAttributeHierarchies ? (_jsx(ConfigSection, { id: "canvas_section", className: "gd-table-canvas-section", title: messages["canvasTitle"].id, propertiesMeta: propertiesMeta, pushData: pushData, children: canvasSection })) : (canvasSection);
|
|
74
74
|
}
|
|
75
75
|
renderConditionalFormattingSection() {
|
|
76
|
-
const { properties, propertiesMeta, insight, cfTargetData, separators, pushData, isLoading } = this.props;
|
|
77
|
-
return (_jsx(ConditionalFormattingSection, { properties: properties, propertiesMeta: propertiesMeta, insight: insight, targetData: cfTargetData, separators: separators, pushData: pushData, isLoading: isLoading }));
|
|
76
|
+
const { properties, propertiesMeta, insight, cfTargetData, cfBackend, cfWorkspace, cfDateSettings, separators, pushData, isLoading, } = this.props;
|
|
77
|
+
return (_jsx(ConditionalFormattingSection, { properties: properties, propertiesMeta: propertiesMeta, insight: insight, targetData: cfTargetData, backend: cfBackend, workspace: cfWorkspace, dateSettings: cfDateSettings, separators: separators, pushData: pushData, isLoading: isLoading }));
|
|
78
78
|
}
|
|
79
79
|
renderPagingSection() {
|
|
80
80
|
const { properties, pushData, isLoading, propertiesMeta } = this.props;
|
package/esm/internal/components/pluggableVisualizations/pivotTableNext/PluggablePivotTableNext.d.ts
CHANGED
|
@@ -16,6 +16,9 @@ export declare class PluggablePivotTableNext extends AbstractPluggableVisualizat
|
|
|
16
16
|
private unmountFun;
|
|
17
17
|
private readonly settings;
|
|
18
18
|
private backendCapabilities;
|
|
19
|
+
private cfBackend;
|
|
20
|
+
private cfWorkspace;
|
|
21
|
+
private cfDateSettings;
|
|
19
22
|
private environment;
|
|
20
23
|
private cfTargetData;
|
|
21
24
|
constructor(props: IVisConstruct);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PluggablePivotTableNext.d.ts","sourceRoot":"","sources":["../../../../../src/internal/components/pluggableVisualizations/pivotTableNext/PluggablePivotTableNext.tsx"],"names":[],"mappings":"AAIA,OAAO,
|
|
1
|
+
{"version":3,"file":"PluggablePivotTableNext.d.ts","sourceRoot":"","sources":["../../../../../src/internal/components/pluggableVisualizations/pivotTableNext/PluggablePivotTableNext.tsx"],"names":[],"mappings":"AAIA,OAAO,EAGH,KAAK,iBAAiB,EACzB,MAAM,2BAA2B,CAAC;AACnC,OAAO,EACH,KAAK,UAAU,EACf,KAAK,QAAQ,EACb,KAAK,kBAAkB,EACvB,KAAK,SAAS,EAYjB,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EAIH,KAAK,wBAAwB,EAEhC,MAAM,kBAAkB,CAAC;AAM1B,OAAO,EAIH,KAAK,oBAAoB,EAC5B,MAAM,6BAA6B,CAAC;AAKrC,OAAO,EAEH,KAAK,iBAAiB,EACtB,KAAK,uBAAuB,EAC5B,KAAK,UAAU,EACf,KAAK,eAAe,EACpB,KAAK,aAAa,EAClB,KAAK,SAAS,EACd,KAAK,wBAAwB,EAGhC,MAAM,sCAAsC,CAAC;AAmC9C,OAAO,EAAE,8BAA8B,EAAE,MAAM,sCAAsC,CAAC;AAiBtF,wBAAgB,0BAA0B,CACtC,MAAM,EAAE,UAAU,EAClB,WAAW,EAAE,wBAAwB,EACrC,QAAQ,EAAE,SAAS,GACpB,oBAAoB,CAoBtB;AAED;;;;;GAKG;AACH,qBAAa,uBAAwB,SAAQ,8BAA8B;IACvE,OAAO,CAAC,SAAS,CAAiB;IAClC,OAAO,CAAC,UAAU,CAAkB;IACpC,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAY;IACrC,OAAO,CAAC,mBAAmB,CAAuB;IAElD,OAAO,CAAC,SAAS,CAAqB;IACtC,OAAO,CAAC,WAAW,CAAS;IAC5B,OAAO,CAAC,cAAc,CAAkB;IACxC,OAAO,CAAC,WAAW,CAAuC;IAE1D,OAAO,CAAC,YAAY,CAAqB;IAEzC,YAAY,KAAK,EAAE,aAAa,EAqB/B;IAEM,OAAO,IAAI,IAAI,CAErB;IAEM,yBAAyB,CAC5B,cAAc,EAAE,eAAe,EAC/B,sBAAsB,CAAC,EAAE,eAAe,GACzC,OAAO,CAAC,uBAAuB,CAAC,CA8GlC;IAEe,8BAA8B,CAC1C,mBAAmB,EAAE,QAAQ,EAC7B,gBAAgB,EAAE,iBAAiB,EACnC,0BAA0B,EAAE,OAAO,GACpC,QAAQ,CAWV;IAED,OAAO,CAAC,kBAAkB;IAInB,YAAY,CACf,OAAO,EAAE,SAAS,EAClB,OAAO,EAAE,kBAAkB,EAC3B,gBAAgB,EAAE,iBAAiB,0DActC;IAED,SAAS,CAAC,oBAAoB,CAAC,uBAAuB,EAAE,wBAAwB,GAAG,IAAI,CActF;IAKD,OAAO,CAAC,cAAc,CAIpB;IAIF,OAAO,CAAC,oBAAoB,CAO1B;IAEF,OAAO,CAAC,yBAAyB,CAe/B;IAEF,UAAmB,wBAAwB,CACvC,OAAO,EAAE,SAAS,EAClB,OAAO,EAAE,kBAAkB,EAC3B,qBAAqB,EAAE,GAAG,GAC3B,IAAI,CASN;IAED,UAAmB,iBAAiB,CAAC,OAAO,EAAE,kBAAkB,GAAG,OAAO,CAOzE;IAED,SAAS,CAAC,mBAAmB,CACzB,OAAO,EAAE,SAAS,EAClB,OAAO,EAAE,kBAAkB,EAC3B,gBAAgB,EAAE,iBAAiB,GACpC,IAAI,CAmFN;IAED,SAAS,CAAC,wBAAwB,CAAC,OAAO,EAAE,kBAAkB,EAAE,OAAO,EAAE,SAAS,GAAG,IAAI,CA6BxF;IAED,SAAS,CAAC,aAAa,CAAC,OAAO,EAAE,kBAAkB,EAAE,yBAAyB,CAAC,EAAE,GAAG,GAAG,UAAU,EAAE,CAElG;IAED,OAAO,CAAC,wBAAwB;IAYhC,OAAO,CAAC,oBAAoB;IA8B5B,OAAO,CAAC,eAAe;IAavB,OAAO,CAAC,cAAc;CAmCzB"}
|
package/esm/internal/components/pluggableVisualizations/pivotTableNext/PluggablePivotTableNext.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
// (C) 2025-2026 GoodData Corporation
|
|
3
3
|
import { cloneDeep, isEmpty, isEqual } from "lodash-es";
|
|
4
|
-
import { bucketAttributes, bucketMeasures, insightBucket, insightBuckets, insightFilters, insightHasDataDefined, insightProperties, insightSanitize, insightSorts, } from "@gooddata/sdk-model";
|
|
4
|
+
import { bucketAttributes, bucketMeasures, insightBucket, insightBuckets, insightFilters, insightHasDataDefined, insightProperties, insightSanitize, insightSorts, resolveWeekStart, } from "@gooddata/sdk-model";
|
|
5
5
|
import { BucketNames, VisualizationTypes, } from "@gooddata/sdk-ui";
|
|
6
6
|
import { CorePivotTableNext, } from "@gooddata/sdk-ui-pivot/next";
|
|
7
7
|
import { METRIC } from "../../../constants/bucket.js";
|
|
@@ -52,6 +52,10 @@ export class PluggablePivotTableNext extends AbstractPluggableVisualization {
|
|
|
52
52
|
unmountFun;
|
|
53
53
|
settings;
|
|
54
54
|
backendCapabilities;
|
|
55
|
+
// Conditional formatting's date conditions fetch the workspace date-filter preset catalog.
|
|
56
|
+
cfBackend;
|
|
57
|
+
cfWorkspace;
|
|
58
|
+
cfDateSettings;
|
|
55
59
|
environment;
|
|
56
60
|
// Populated on data view; the config panel re-renders on load completion and reads it.
|
|
57
61
|
cfTargetData = {};
|
|
@@ -67,6 +71,14 @@ export class PluggablePivotTableNext extends AbstractPluggableVisualization {
|
|
|
67
71
|
this.propertiesAffectingReferencePoint = PROPERTIES_AFFECTING_REFERENCE_POINT;
|
|
68
72
|
this.initializeProperties(props.visualizationProperties);
|
|
69
73
|
this.backendCapabilities = props.backend.capabilities;
|
|
74
|
+
this.cfBackend = props.backend;
|
|
75
|
+
this.cfWorkspace = props.projectId;
|
|
76
|
+
// Shares the dashboard's week-start derivation (resolveWeekStart); dateFormat mirrors
|
|
77
|
+
// selectDateFormat, which is just the raw setting.
|
|
78
|
+
this.cfDateSettings = {
|
|
79
|
+
dateFormat: this.settings.responsiveUiDateFormat,
|
|
80
|
+
weekStart: resolveWeekStart(this.settings),
|
|
81
|
+
};
|
|
70
82
|
}
|
|
71
83
|
unmount() {
|
|
72
84
|
this.unmountFun([this.getElement(), this.getConfigPanelElement()]);
|
|
@@ -302,7 +314,7 @@ export class PluggablePivotTableNext extends AbstractPluggableVisualization {
|
|
|
302
314
|
const panelConfig = {
|
|
303
315
|
supportsAttributeHierarchies: this.backendCapabilities.supportsAttributeHierarchies,
|
|
304
316
|
};
|
|
305
|
-
this.renderFun(_jsx(PivotTableConfigurationPanel, { locale: this.locale, properties: this.visualizationProperties, propertiesMeta: this.propertiesMeta, insight: insight, cfTargetData: this.cfTargetData, separators: options.config?.separators, pushData: this.handlePushData, isError: this.getIsError(), isLoading: this.isLoading, featureFlags: this.settings, panelConfig: panelConfig, configurationPanelRenderers: options.custom?.configurationPanelRenderers }), configPanelElement);
|
|
317
|
+
this.renderFun(_jsx(PivotTableConfigurationPanel, { locale: this.locale, properties: this.visualizationProperties, propertiesMeta: this.propertiesMeta, insight: insight, cfTargetData: this.cfTargetData, cfBackend: this.cfBackend, cfWorkspace: this.cfWorkspace, cfDateSettings: this.cfDateSettings, separators: options.config?.separators, pushData: this.handlePushData, isError: this.getIsError(), isLoading: this.isLoading, featureFlags: this.settings, panelConfig: panelConfig, configurationPanelRenderers: options.custom?.configurationPanelRenderers }), configPanelElement);
|
|
306
318
|
}
|
|
307
319
|
}
|
|
308
320
|
getDimensions(insight, customVisualizationConfig) {
|
|
@@ -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;
|
|
@@ -2535,6 +2567,10 @@ export declare const en_US: {
|
|
|
2535
2567
|
text: string;
|
|
2536
2568
|
crowdinContext: string;
|
|
2537
2569
|
};
|
|
2570
|
+
"properties.conditionalFormatting.rule.invalidValue": {
|
|
2571
|
+
text: string;
|
|
2572
|
+
crowdinContext: string;
|
|
2573
|
+
};
|
|
2538
2574
|
"properties.conditionalFormatting.rule.edit": {
|
|
2539
2575
|
text: string;
|
|
2540
2576
|
crowdinContext: string;
|
|
@@ -2623,6 +2659,42 @@ export declare const en_US: {
|
|
|
2623
2659
|
text: string;
|
|
2624
2660
|
crowdinContext: string;
|
|
2625
2661
|
};
|
|
2662
|
+
"properties.conditionalFormatting.dialog.selectPeriod": {
|
|
2663
|
+
text: string;
|
|
2664
|
+
crowdinContext: string;
|
|
2665
|
+
};
|
|
2666
|
+
"properties.conditionalFormatting.dialog.error.dateUnresolvable": {
|
|
2667
|
+
text: string;
|
|
2668
|
+
crowdinContext: string;
|
|
2669
|
+
};
|
|
2670
|
+
"properties.conditionalFormatting.dateOperator.allTime": {
|
|
2671
|
+
text: string;
|
|
2672
|
+
crowdinContext: string;
|
|
2673
|
+
};
|
|
2674
|
+
"properties.conditionalFormatting.dateOperator.isOn": {
|
|
2675
|
+
text: string;
|
|
2676
|
+
crowdinContext: string;
|
|
2677
|
+
};
|
|
2678
|
+
"properties.conditionalFormatting.dateOperator.isNotOn": {
|
|
2679
|
+
text: string;
|
|
2680
|
+
crowdinContext: string;
|
|
2681
|
+
};
|
|
2682
|
+
"properties.conditionalFormatting.dateOperator.isAfter": {
|
|
2683
|
+
text: string;
|
|
2684
|
+
crowdinContext: string;
|
|
2685
|
+
};
|
|
2686
|
+
"properties.conditionalFormatting.dateOperator.isOnOrAfter": {
|
|
2687
|
+
text: string;
|
|
2688
|
+
crowdinContext: string;
|
|
2689
|
+
};
|
|
2690
|
+
"properties.conditionalFormatting.dateOperator.isBefore": {
|
|
2691
|
+
text: string;
|
|
2692
|
+
crowdinContext: string;
|
|
2693
|
+
};
|
|
2694
|
+
"properties.conditionalFormatting.dateOperator.isOnOrBefore": {
|
|
2695
|
+
text: string;
|
|
2696
|
+
crowdinContext: string;
|
|
2697
|
+
};
|
|
2626
2698
|
"properties.conditionalFormatting.operator.all": {
|
|
2627
2699
|
text: string;
|
|
2628
2700
|
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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6sFjB,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"
|
|
@@ -2537,6 +2569,10 @@ export const en_US = {
|
|
|
2537
2569
|
"text": "Column not found",
|
|
2538
2570
|
"crowdinContext": "Badge on a rule whose target column is no longer present on the insight."
|
|
2539
2571
|
},
|
|
2572
|
+
"properties.conditionalFormatting.rule.invalidValue": {
|
|
2573
|
+
"text": "Invalid value",
|
|
2574
|
+
"crowdinContext": "Badge on a rule whose stored conditions no longer validate against the target — e.g. a date period that stopped aligning after the attribute's granularity changed."
|
|
2575
|
+
},
|
|
2540
2576
|
"properties.conditionalFormatting.rule.edit": {
|
|
2541
2577
|
"text": "Edit rule",
|
|
2542
2578
|
"crowdinContext": "Accessible label for the button that edits a conditional-formatting rule."
|
|
@@ -2625,6 +2661,42 @@ export const en_US = {
|
|
|
2625
2661
|
"text": "“From” must be less than or equal to “To”.",
|
|
2626
2662
|
"crowdinContext": "Inline validation error shown when the lower bound of a between/not-between condition is greater than the upper bound."
|
|
2627
2663
|
},
|
|
2664
|
+
"properties.conditionalFormatting.dialog.selectPeriod": {
|
|
2665
|
+
"text": "Select period",
|
|
2666
|
+
"crowdinContext": "Placeholder of the date-period picker before a period is chosen in a date condition."
|
|
2667
|
+
},
|
|
2668
|
+
"properties.conditionalFormatting.dialog.error.dateUnresolvable": {
|
|
2669
|
+
"text": "The value cannot be resolved. Select it again.",
|
|
2670
|
+
"crowdinContext": "Inline validation error shown when a date condition's stored period cannot be resolved (malformed value or unsupported granularity)."
|
|
2671
|
+
},
|
|
2672
|
+
"properties.conditionalFormatting.dateOperator.allTime": {
|
|
2673
|
+
"text": "All time",
|
|
2674
|
+
"crowdinContext": "Date condition that matches any cell with a date value (empty cells are covered by the separate Is empty condition)."
|
|
2675
|
+
},
|
|
2676
|
+
"properties.conditionalFormatting.dateOperator.isOn": {
|
|
2677
|
+
"text": "Is on",
|
|
2678
|
+
"crowdinContext": "Date condition matching cells whose date lies within the selected period."
|
|
2679
|
+
},
|
|
2680
|
+
"properties.conditionalFormatting.dateOperator.isNotOn": {
|
|
2681
|
+
"text": "Is not on",
|
|
2682
|
+
"crowdinContext": "Date condition matching cells whose date lies outside the selected period."
|
|
2683
|
+
},
|
|
2684
|
+
"properties.conditionalFormatting.dateOperator.isAfter": {
|
|
2685
|
+
"text": "Is after",
|
|
2686
|
+
"crowdinContext": "Date condition matching cells whose date is after the selected period ends."
|
|
2687
|
+
},
|
|
2688
|
+
"properties.conditionalFormatting.dateOperator.isOnOrAfter": {
|
|
2689
|
+
"text": "Is on or after",
|
|
2690
|
+
"crowdinContext": "Date condition matching cells whose date lies within the selected period or after it."
|
|
2691
|
+
},
|
|
2692
|
+
"properties.conditionalFormatting.dateOperator.isBefore": {
|
|
2693
|
+
"text": "Is before",
|
|
2694
|
+
"crowdinContext": "Date condition matching cells whose date is before the selected period starts."
|
|
2695
|
+
},
|
|
2696
|
+
"properties.conditionalFormatting.dateOperator.isOnOrBefore": {
|
|
2697
|
+
"text": "Is on or before",
|
|
2698
|
+
"crowdinContext": "Date condition matching cells whose date lies within the selected period or before it."
|
|
2699
|
+
},
|
|
2628
2700
|
"properties.conditionalFormatting.operator.all": {
|
|
2629
2701
|
"text": "All values",
|
|
2630
2702
|
"crowdinContext": "Conditional-formatting operator that always matches."
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"translations.d.ts","sourceRoot":"","sources":["../../../src/internal/utils/translations.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AAE5C,OAAO,EAEH,KAAK,aAAa,EAErB,MAAM,kBAAkB,CAAC;AAG1B,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAC;AAE/D,wBAAgB,cAAc,CAC1B,aAAa,EAAE,MAAM,GAAG,SAAS,EACjC,IAAI,CAAC,EAAE,SAAS,EAChB,MAAM,GAAE;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;CAAO,GACvC,MAAM,CAKR;AAED,wBAAgB,0BAA0B,CAAC,aAAa,EAAE,aAAa,EAAE,EAAE,IAAI,EAAE,SAAS,GAAG,aAAa,EAAE,CAM3G;AAQD;;GAEG;AACH,eAAO,MAAM,gBAAgB,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"translations.d.ts","sourceRoot":"","sources":["../../../src/internal/utils/translations.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AAE5C,OAAO,EAEH,KAAK,aAAa,EAErB,MAAM,kBAAkB,CAAC;AAG1B,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAC;AAE/D,wBAAgB,cAAc,CAC1B,aAAa,EAAE,MAAM,GAAG,SAAS,EACjC,IAAI,CAAC,EAAE,SAAS,EAChB,MAAM,GAAE;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;CAAO,GACvC,MAAM,CAKR;AAED,wBAAgB,0BAA0B,CAAC,aAAa,EAAE,aAAa,EAAE,EAAE,IAAI,EAAE,SAAS,GAAG,aAAa,EAAE,CAM3G;AAQD;;GAEG;AACH,eAAO,MAAM,gBAAgB,UAAU,CAAC;AAyDxC;;;;;GAKG;AACH,eAAO,MAAM,eAAe,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,OAAO,CAAC,aAAa,CAAoC,CAAC;AAE5G,eAAO,MAAM,gBAAgB;;;;CAK5B,CAAC"}
|
|
@@ -54,7 +54,8 @@ const asyncSdkUiExtTranslations = {
|
|
|
54
54
|
};
|
|
55
55
|
/**
|
|
56
56
|
* Asynchronously loads translations for the specified locale, merging sdk-ui-ext translations
|
|
57
|
-
* with sdk-ui translations.
|
|
57
|
+
* with sdk-ui translations. en-US is layered underneath so freshly authored ids (present only in
|
|
58
|
+
* en-US until Crowdin delivers) don't render as raw ids on other locales.
|
|
58
59
|
*
|
|
59
60
|
* @param locale - The locale to load translations for
|
|
60
61
|
* @returns Promise resolving to merged translations object
|
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
|
};
|
|
@@ -982,6 +1006,9 @@ export declare const conditionalFormattingMessages: {
|
|
|
982
1006
|
ruleInvalid: {
|
|
983
1007
|
id: string;
|
|
984
1008
|
};
|
|
1009
|
+
ruleInvalidValue: {
|
|
1010
|
+
id: string;
|
|
1011
|
+
};
|
|
985
1012
|
ruleEdit: {
|
|
986
1013
|
id: string;
|
|
987
1014
|
};
|
|
@@ -1048,6 +1075,14 @@ export declare const conditionalFormattingMessages: {
|
|
|
1048
1075
|
dialogErrorRangeOrder: {
|
|
1049
1076
|
id: string;
|
|
1050
1077
|
};
|
|
1078
|
+
dialogSelectPeriod: {
|
|
1079
|
+
id: string;
|
|
1080
|
+
};
|
|
1081
|
+
dialogErrorDateUnresolvable: {
|
|
1082
|
+
id: string;
|
|
1083
|
+
};
|
|
1051
1084
|
};
|
|
1052
1085
|
export declare const conditionalFormattingOperatorMessages: Record<ConditionalFormattingOperator, MessageDescriptor>;
|
|
1086
|
+
/** Date targets reuse the shared operator constants but relabel them (All time, Is on, Is after…). */
|
|
1087
|
+
export declare const conditionalFormattingDateOperatorMessages: Partial<Record<ConditionalFormattingOperator, MessageDescriptor>>;
|
|
1053
1088
|
//# sourceMappingURL=locales.d.ts.map
|
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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+BxC,CAAC;AAEH,eAAO,MAAM,qCAAqC,EAAE,MAAM,CAAC,6BAA6B,EAAE,iBAAiB,CAmBrG,CAAC;AAEP,wGAAsG;AACtG,eAAO,MAAM,yCAAyC,EAAE,OAAO,CAC3D,MAAM,CAAC,6BAA6B,EAAE,iBAAiB,CAAC,CAS1D,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" },
|
|
@@ -478,6 +486,7 @@ export const conditionalFormattingMessages = defineMessages({
|
|
|
478
486
|
rulesLabel: { id: "properties.conditionalFormatting.rulesLabel" },
|
|
479
487
|
addRule: { id: "properties.conditionalFormatting.addRule" },
|
|
480
488
|
ruleInvalid: { id: "properties.conditionalFormatting.rule.invalid" },
|
|
489
|
+
ruleInvalidValue: { id: "properties.conditionalFormatting.rule.invalidValue" },
|
|
481
490
|
ruleEdit: { id: "properties.conditionalFormatting.rule.edit" },
|
|
482
491
|
ruleDelete: { id: "properties.conditionalFormatting.rule.delete" },
|
|
483
492
|
dialogAddTitle: { id: "properties.conditionalFormatting.dialog.addTitle" },
|
|
@@ -500,6 +509,8 @@ export const conditionalFormattingMessages = defineMessages({
|
|
|
500
509
|
dialogCancel: { id: "properties.conditionalFormatting.dialog.cancel" },
|
|
501
510
|
dialogSave: { id: "properties.conditionalFormatting.dialog.save" },
|
|
502
511
|
dialogErrorRangeOrder: { id: "properties.conditionalFormatting.dialog.error.rangeOrder" },
|
|
512
|
+
dialogSelectPeriod: { id: "properties.conditionalFormatting.dialog.selectPeriod" },
|
|
513
|
+
dialogErrorDateUnresolvable: { id: "properties.conditionalFormatting.dialog.error.dateUnresolvable" },
|
|
503
514
|
});
|
|
504
515
|
export const conditionalFormattingOperatorMessages = defineMessages({
|
|
505
516
|
ALL: { id: "properties.conditionalFormatting.operator.all" },
|
|
@@ -520,3 +531,13 @@ export const conditionalFormattingOperatorMessages = defineMessages({
|
|
|
520
531
|
IS_EMPTY: { id: "properties.conditionalFormatting.operator.isEmpty" },
|
|
521
532
|
IS_NOT_EMPTY: { id: "properties.conditionalFormatting.operator.isNotEmpty" },
|
|
522
533
|
});
|
|
534
|
+
/** Date targets reuse the shared operator constants but relabel them (All time, Is on, Is after…). */
|
|
535
|
+
export const conditionalFormattingDateOperatorMessages = defineMessages({
|
|
536
|
+
ALL: { id: "properties.conditionalFormatting.dateOperator.allTime" },
|
|
537
|
+
EQUAL_TO: { id: "properties.conditionalFormatting.dateOperator.isOn" },
|
|
538
|
+
NOT_EQUAL_TO: { id: "properties.conditionalFormatting.dateOperator.isNotOn" },
|
|
539
|
+
GREATER_THAN: { id: "properties.conditionalFormatting.dateOperator.isAfter" },
|
|
540
|
+
GREATER_THAN_OR_EQUAL_TO: { id: "properties.conditionalFormatting.dateOperator.isOnOrAfter" },
|
|
541
|
+
LESS_THAN: { id: "properties.conditionalFormatting.dateOperator.isBefore" },
|
|
542
|
+
LESS_THAN_OR_EQUAL_TO: { id: "properties.conditionalFormatting.dateOperator.isOnOrBefore" },
|
|
543
|
+
});
|