impaktapps-ui-builder 1.0.77-test.4 → 1.0.78-ActionBar.0
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 +5 -2
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +6 -6
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildArray.ts +3 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +1 -1
package/package.json
CHANGED
|
@@ -15,6 +15,9 @@ export const buildArray = (config: any, componentScope: string) => {
|
|
|
15
15
|
if (config.allExpanded) {
|
|
16
16
|
array.config.main.allExpanded = config.allExpanded === "YES" ? true : false
|
|
17
17
|
}
|
|
18
|
+
if(config.disableActionBar){
|
|
19
|
+
array.config.main.disableActionBar = config.disableActionBar === "YES" ? true : false
|
|
20
|
+
}
|
|
18
21
|
if (config.style) {
|
|
19
22
|
array.config.style = JSON.parse(config.style)
|
|
20
23
|
}
|
|
@@ -264,9 +264,9 @@ 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("disableActionBar", "Disable Action Bar", ["YES", "NO"]),
|
|
267
268
|
getInputField("childElementLabel", "Child Element Label"),
|
|
268
269
|
emptyBox("empty1", { xs: 12, sm: 6, md: 4, lg: 3 }),
|
|
269
|
-
emptyBox("empty2", { xs: 0, sm: 0, md: 4, lg: 3 }),
|
|
270
270
|
|
|
271
271
|
]
|
|
272
272
|
break;
|