impaktapps-ui-builder 0.0.970 → 0.0.972

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",
3
+ "version": "0.0.972",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -58,9 +58,6 @@ export const EventSection = (theme)=>{
58
58
  },
59
59
  }
60
60
  },
61
-
62
-
63
- //////////////////////////
64
61
  ]
65
62
  },
66
63
  disableAction: true,
@@ -218,7 +218,9 @@ export const componentBasicUiSchema: any = (theme)=>{
218
218
  },
219
219
  style: {
220
220
  color: "#535557",
221
- marginLeft: "-10px"
221
+ marginLeft: "-10px",
222
+ fontSize: "12px",
223
+ marginTop: "4px"
222
224
  },
223
225
  },
224
226
  },
@@ -423,7 +423,9 @@ export const PageMasterUiSchema: any = (theme) => {
423
423
  },
424
424
  style: {
425
425
  color: "#535557",
426
- marginLeft: "-30px"
426
+ marginLeft: "-30px",
427
+ fontSize: "12px",
428
+ marginTop: "4px"
427
429
  },
428
430
  },
429
431
  },
@@ -241,7 +241,6 @@ export const EventUiSchema: any = (theme) => {
241
241
  }
242
242
  },
243
243
  },
244
-
245
244
  {
246
245
  type: "Control",
247
246
  scope: "#/properties/copiedElementDetails",
@@ -256,7 +255,9 @@ export const EventUiSchema: any = (theme) => {
256
255
  },
257
256
  style: {
258
257
  color: "#535557",
259
- marginLeft: "-10px"
258
+ marginLeft: "-10px",
259
+ fontSize: "12px",
260
+ marginTop: "4px"
260
261
  },
261
262
  },
262
263
  },
@@ -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 Element: ${formData.name}` : `Event Type: ${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
  }
@@ -87,6 +87,7 @@ export default (
87
87
  }
88
88
  if (sessionStorage.getItem("copiedConfig") ) {
89
89
  Component(store, dynamicData, submitHandler, service).ElementPathSetter(uiSchema);
90
+ schema.properties.RemoveItemButton.disabled = false;
90
91
  }
91
92
  store.setSchema(schema)
92
93
  store.setUiSchema(uiSchema)