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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "1.0.77-test.4",
3
+ "version": "1.0.78-ActionBar.0",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -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;