impaktapps-ui-builder 0.0.101-alpha.25 → 0.0.101-alpha.26
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 +4 -1
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +1 -1
- 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 +4 -1
package/package.json
CHANGED
|
@@ -90,6 +90,9 @@ const getArrayControl = (parentScope: string, childScope: string, childLabel?: s
|
|
|
90
90
|
return {
|
|
91
91
|
type: "Control",
|
|
92
92
|
scope: `#/properties/${parentScope}`,
|
|
93
|
+
options: {
|
|
94
|
+
widget: "Array"
|
|
95
|
+
},
|
|
93
96
|
config: {
|
|
94
97
|
layout: 12,
|
|
95
98
|
main: {
|
|
@@ -415,7 +418,7 @@ export const buildPropertiesSection = function (type: String) {
|
|
|
415
418
|
getInputField("xAxisValue", "X-AxisValue"),
|
|
416
419
|
getRadioInputField("bottomAxisAngle", "Bottom Axis Angled", ["YES", "No"]),
|
|
417
420
|
getInputField("leftMargin", "Left Margin"),
|
|
418
|
-
emptyBox("GraphEmpty1", {xs: 6, sm: 0, md: 8, lg:
|
|
421
|
+
emptyBox("GraphEmpty1", {xs: 6, sm: 0, md: 8, lg: 6 }),
|
|
419
422
|
getArrayControl("legendLabels", "label"),
|
|
420
423
|
getArrayControl("pieArcColors", "color"),
|
|
421
424
|
];
|