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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "1.0.78-ActionBar.0",
3
+ "version": "1.0.78-ActionBar.1",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -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.disableActionBar = config.disableActionBar === "YES" ? true : false
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("disableActionBar", "Disable Action Bar", ["YES", "NO"]),
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