impaktapps-ui-builder 1.0.407 → 1.0.408
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/dist/impaktapps-ui-builder.es.js +6 -4
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +3 -3
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +6 -4
|
@@ -7817,7 +7817,7 @@ const getArrayControl = (parentScope, childScope, childLabel) => {
|
|
|
7817
7817
|
]
|
|
7818
7818
|
};
|
|
7819
7819
|
};
|
|
7820
|
-
const getArrayControlMultiField = (parentScope, firstFieldScope, secondFieldScope, firstFieldLabel, secondFieldLabel) => {
|
|
7820
|
+
const getArrayControlMultiField = (parentScope, firstFieldScope, secondFieldScope, firstFieldLabel, secondFieldLabel, arrayLabel) => {
|
|
7821
7821
|
return {
|
|
7822
7822
|
type: "Control",
|
|
7823
7823
|
scope: `#/properties/${parentScope}`,
|
|
@@ -7826,7 +7826,9 @@ const getArrayControlMultiField = (parentScope, firstFieldScope, secondFieldScop
|
|
|
7826
7826
|
},
|
|
7827
7827
|
config: {
|
|
7828
7828
|
layout: 12,
|
|
7829
|
-
main: {
|
|
7829
|
+
main: {
|
|
7830
|
+
label: arrayLabel
|
|
7831
|
+
},
|
|
7830
7832
|
style: {
|
|
7831
7833
|
marginLeft: "-24px",
|
|
7832
7834
|
marginBottom: "24px !important",
|
|
@@ -8207,8 +8209,8 @@ const buildPropertiesSection = function(type) {
|
|
|
8207
8209
|
getInputField("yAxisTickCount", "Y Axis TickCount"),
|
|
8208
8210
|
getSelectField("xAxisFormatType", "X Axis Format Type"),
|
|
8209
8211
|
emptyBox$1("GraphEmpty1", { xs: 0, sm: 0, md: 4, lg: 6 }),
|
|
8210
|
-
getArrayControlMultiField("legendLabels", "key", "value", "Key", "Label"),
|
|
8211
|
-
getArrayControlMultiField("pieArcColors", "key", "value", "Key", "Color")
|
|
8212
|
+
getArrayControlMultiField("legendLabels", "key", "value", "Key", "Label", "Configure Bar Labels"),
|
|
8213
|
+
getArrayControlMultiField("pieArcColors", "key", "value", "Key", "Color", "Configure Bar Colors")
|
|
8212
8214
|
];
|
|
8213
8215
|
break;
|
|
8214
8216
|
case "WrapperSection":
|