impaktapps-ui-builder 0.0.101-alpha.22 → 0.0.101-alpha.23

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.
@@ -9543,18 +9543,6 @@ const refreshSectionUiSchema = {
9543
9543
  }
9544
9544
  ]
9545
9545
  };
9546
- var emptyBox = {
9547
- type: "Control",
9548
- scope: "#/properties/emptyBox",
9549
- options: {
9550
- widget: "EmptyBox"
9551
- },
9552
- config: {
9553
- layout: { xs: 0, sm: 4, md: 4, lg: 4 },
9554
- main: {},
9555
- style: {}
9556
- }
9557
- };
9558
9546
  var event = (store2, dynamicData2, submitHandler, service2, functionsName) => {
9559
9547
  return {
9560
9548
  setPage: async function() {
@@ -9585,7 +9573,7 @@ var event = (store2, dynamicData2, submitHandler, service2, functionsName) => {
9585
9573
  uiSchema.elements[0].elements[0].elements[4] = getTextArea("eventCode", "Write Custom Code", false);
9586
9574
  schema2.required = ["eventType", "Handler", "eventCode"];
9587
9575
  } else if (handlerType === "api") {
9588
- uiSchema.elements[0].elements[0].elements[2] = emptyBox;
9576
+ uiSchema.elements[0].elements[0].elements[2] = emptyBox$1("emptyBox", { xs: 6, sm: 6, md: 0, lg: 3 });
9589
9577
  uiSchema.elements[0].elements[0].elements[3] = APISection;
9590
9578
  schema2.required = ["eventType", "Handler", "method", "path"];
9591
9579
  } else if (handlerType === "inBuiltFunction") {
@@ -9605,7 +9593,7 @@ var event = (store2, dynamicData2, submitHandler, service2, functionsName) => {
9605
9593
  uiSchema.elements[0].elements[0].elements[4] = getTextArea("funcParametersCode", "Write Custom Code for Functions Parameter", true);
9606
9594
  schema2.required = ["eventType", "Handler", "inBuiltFunctionType"];
9607
9595
  } else if (handlerType === "refresh") {
9608
- uiSchema.elements[0].elements[0].elements[2] = emptyBox;
9596
+ uiSchema.elements[0].elements[0].elements[2] = emptyBox$1("emptyBox", { xs: 6, sm: 6, md: 0, lg: 3 });
9609
9597
  uiSchema.elements[0].elements[0].elements[3] = refreshSectionUiSchema;
9610
9598
  schema2.properties.refreshElements.required = ["value"];
9611
9599
  schema2.properties.refreshElements.items.required = ["value"];
@@ -11662,6 +11650,18 @@ const buildRadio = (config2, componentScope2) => {
11662
11650
  }
11663
11651
  return Radio;
11664
11652
  };
11653
+ var emptyBox = {
11654
+ type: "Control",
11655
+ scope: "#/properties/emptyBox",
11656
+ options: {
11657
+ widget: "EmptyBox"
11658
+ },
11659
+ config: {
11660
+ layout: { xs: 0, sm: 4, md: 4, lg: 4 },
11661
+ main: {},
11662
+ style: {}
11663
+ }
11664
+ };
11665
11665
  const buildEmptyBox = (config2, componentScope2) => {
11666
11666
  const EmptyBox = _.cloneDeep(emptyBox);
11667
11667
  if (config2.layout) {