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
package/package.json
CHANGED
|
@@ -16,7 +16,7 @@ export const buildArray = (config: any, componentScope: string) => {
|
|
|
16
16
|
array.config.main.allExpanded = config.allExpanded === "YES" ? true : false
|
|
17
17
|
}
|
|
18
18
|
if(config.disableActionBar){
|
|
19
|
-
array.config.main.
|
|
19
|
+
array.config.main.disableActions = config.disableActions === "YES" ? true : false
|
|
20
20
|
}
|
|
21
21
|
if (config.style) {
|
|
22
22
|
array.config.style = JSON.parse(config.style)
|
|
@@ -264,7 +264,7 @@ export const buildPropertiesSection = function (type: String) {
|
|
|
264
264
|
case "Array": // // allExpanded childElementLabel label
|
|
265
265
|
uiSchema.elements = [
|
|
266
266
|
getRadioInputField("allExpanded", "Initial Expand", ["YES", "NO"]),
|
|
267
|
-
getRadioInputField("
|
|
267
|
+
getRadioInputField("disableActions", "Disable Actions", ["YES", "NO"]),
|
|
268
268
|
getInputField("childElementLabel", "Child Element Label"),
|
|
269
269
|
emptyBox("empty1", { xs: 12, sm: 6, md: 4, lg: 3 }),
|
|
270
270
|
|