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

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": "0.0.101-alpha.23",
3
+ "version": "0.0.101-alpha.24",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -45,7 +45,7 @@ export default (
45
45
  schema.required = ["eventType", "Handler", "eventCode"]
46
46
 
47
47
  } else if (handlerType === "api") {
48
- uiSchema.elements[0].elements[0].elements[2] = emptyBox("emptyBox", {xs: 6,sm: 6,md: 0,lg: 3});
48
+ uiSchema.elements[0].elements[0].elements[2] = emptyBox("emptyBox", {xs: 0,sm: 0,md: 4,lg: 6});
49
49
  uiSchema.elements[0].elements[0].elements[3] = APISection;
50
50
  schema.required = ["eventType", "Handler", "method", "path"]
51
51
  } else if (handlerType === "inBuiltFunction") {
@@ -71,7 +71,7 @@ export default (
71
71
  uiSchema.elements[0].elements[0].elements[4] = getTextArea("funcParametersCode", "Write Custom Code for Functions Parameter", true);
72
72
  schema.required = ["eventType", "Handler", "inBuiltFunctionType"]
73
73
  } else if (handlerType === "refresh") {
74
- uiSchema.elements[0].elements[0].elements[2] = emptyBox("emptyBox", {xs: 6,sm: 6,md: 0,lg: 3});
74
+ uiSchema.elements[0].elements[0].elements[2] = emptyBox("emptyBox", {xs: 0,sm: 0,md: 4,lg: 6});
75
75
  uiSchema.elements[0].elements[0].elements[3] = refreshSectionUiSchema;
76
76
  schema.properties.refreshElements.required = ["value"]
77
77
  schema.properties.refreshElements.items.required = ["value"]