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/dist/impaktapps-ui-builder.es.js +11 -4
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +2 -2
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/eventSection.ts +0 -3
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/uiSchema.ts +3 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/uiSchema.ts +3 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/uiSchema.ts +3 -2
- package/src/impaktapps-ui-builder/builder/services/component.ts +1 -1
- package/src/impaktapps-ui-builder/builder/services/event.ts +1 -0
package/package.json
CHANGED
|
@@ -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
|
|
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)
|