impaktapps-ui-builder 1.0.78-ActionBar.0 → 1.0.78-ActionBar.1
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 +2 -2
- 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/buildArray.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +1 -1
|
@@ -7661,7 +7661,7 @@ const buildPropertiesSection = function(type) {
|
|
|
7661
7661
|
case "Array":
|
|
7662
7662
|
uiSchema.elements = [
|
|
7663
7663
|
getRadioInputField("allExpanded", "Initial Expand", ["YES", "NO"]),
|
|
7664
|
-
getRadioInputField("
|
|
7664
|
+
getRadioInputField("disableActions", "Disable Actions", ["YES", "NO"]),
|
|
7665
7665
|
getInputField("childElementLabel", "Child Element Label"),
|
|
7666
7666
|
emptyBox$1("empty1", { xs: 12, sm: 6, md: 4, lg: 3 })
|
|
7667
7667
|
];
|
|
@@ -11860,7 +11860,7 @@ const buildArray = (config2, componentScope2) => {
|
|
|
11860
11860
|
array.config.main.allExpanded = config2.allExpanded === "YES" ? true : false;
|
|
11861
11861
|
}
|
|
11862
11862
|
if (config2.disableActionBar) {
|
|
11863
|
-
array.config.main.
|
|
11863
|
+
array.config.main.disableActions = config2.disableActions === "YES" ? true : false;
|
|
11864
11864
|
}
|
|
11865
11865
|
if (config2.style) {
|
|
11866
11866
|
array.config.style = JSON.parse(config2.style);
|