impaktapps-ui-builder 0.0.970-test.1 → 0.0.970-test.3

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.970-test.1",
3
+ "version": "0.0.970-test.3",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -423,7 +423,8 @@ export const PageMasterUiSchema: any = (theme) => {
423
423
  },
424
424
  style: {
425
425
  color: "#535557",
426
- marginLeft: "-30px"
426
+ marginLeft: "-30px",
427
+ fontSize: "12px"
427
428
  },
428
429
  },
429
430
  },
@@ -248,7 +248,7 @@ export default (store: any, dynamicData: any, submitHandler: any, service: any)
248
248
  },
249
249
  ElementPathSetter: function(uiSchema: any,copiedFormData?: any){
250
250
  const formData = copiedFormData || JSON.parse(sessionStorage.getItem("copiedConfig"));
251
- const elementHeading = formData.name ? `Copied Path: ${formData.pageName} >${formData.name}` : `Copied Path: ${formData.pageName} >${formData.eventType}`;
251
+ const elementHeading = formData.name ? `Copied Path: ${formData.pageName}` : `Copied Path: ${formData.pageName}`;
252
252
  uiSchema.elements[2].elements[1].config.main.heading = elementHeading;
253
253
  }
254
254
  }