impaktapps-ui-builder 1.0.91 → 1.0.92
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 +11 -3
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +4 -4
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildArray.ts +8 -2
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +3 -1
|
@@ -7657,7 +7657,9 @@ const buildPropertiesSection = function(type) {
|
|
|
7657
7657
|
case "Array":
|
|
7658
7658
|
uiSchema.elements = [
|
|
7659
7659
|
getRadioInputField("allExpanded", "Initial Expand", ["YES", "NO"]),
|
|
7660
|
-
getRadioInputField("
|
|
7660
|
+
getRadioInputField("disableAddButton ", "Disable Add Button", ["YES", "NO"]),
|
|
7661
|
+
getRadioInputField("disableExpandAllButton ", "Disable Expand Buttons", ["YES", "NO"]),
|
|
7662
|
+
getRadioInputField("disableRowActions ", "Disable Row Actions", ["YES", "NO"]),
|
|
7661
7663
|
getInputField("childElementLabel", "Child Element Label"),
|
|
7662
7664
|
emptyBox$1("empty1", { xs: 12, sm: 6, md: 4, lg: 3 })
|
|
7663
7665
|
];
|
|
@@ -11843,8 +11845,14 @@ const buildArray = (config2, componentScope2) => {
|
|
|
11843
11845
|
if (config2.allExpanded) {
|
|
11844
11846
|
array.config.main.allExpanded = config2.allExpanded === "YES" ? true : false;
|
|
11845
11847
|
}
|
|
11846
|
-
if (config2.
|
|
11847
|
-
array.config.main.
|
|
11848
|
+
if (config2.disableAddButton) {
|
|
11849
|
+
array.config.main.disableAddButton = config2.disableAddButton === "YES" ? true : false;
|
|
11850
|
+
}
|
|
11851
|
+
if (config2.disableExpandAllButton) {
|
|
11852
|
+
array.config.main.disableExpandAllButton = config2.disableExpandAllButton === "YES" ? true : false;
|
|
11853
|
+
}
|
|
11854
|
+
if (config2.disableRowActions) {
|
|
11855
|
+
array.config.main.disableRowActions = config2.disableRowActions === "YES" ? true : false;
|
|
11848
11856
|
}
|
|
11849
11857
|
if (config2.style) {
|
|
11850
11858
|
array.config.style = JSON.parse(config2.style);
|