impaktapps-ui-builder 0.0.101-alpha.91 → 0.0.101-alpha.92
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 +3 -3
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +9 -9
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/services/component.ts +3 -0
- package/src/impaktapps-ui-builder/builder/services/event.ts +0 -2
package/package.json
CHANGED
|
@@ -371,6 +371,9 @@ export default (store: any, dynamicData: any, submitHandler: any, service: any)
|
|
|
371
371
|
if(uiSchema?.elements?.[1]?.elements?.[0]?.config?.main?.headerIcons){
|
|
372
372
|
uiSchema.elements[1].elements[0].config.main.headerIcons.elements[1].widget.config.main.tooltipMessage = `Copied Path: ${formData.name}`;
|
|
373
373
|
}
|
|
374
|
+
else if(uiSchema?.elements?.[1]?.elements?.[1]?.config?.main?.headerIcons){
|
|
375
|
+
uiSchema.elements[1].elements[1].config.main.headerIcons.elements[1].widget.config.main.tooltipMessage = `Copied Path: ${formData.name}`;
|
|
376
|
+
}
|
|
374
377
|
}
|
|
375
378
|
}
|
|
376
379
|
};
|
|
@@ -152,7 +152,6 @@ export default (
|
|
|
152
152
|
});
|
|
153
153
|
});
|
|
154
154
|
}
|
|
155
|
-
console.log("pathArray>>",pathArray)
|
|
156
155
|
schema.properties.pageName.path = pathArray;
|
|
157
156
|
store.setSchema(schema);
|
|
158
157
|
store.setUiSchema(uiSchema);
|
|
@@ -194,7 +193,6 @@ export default (
|
|
|
194
193
|
});
|
|
195
194
|
});
|
|
196
195
|
}
|
|
197
|
-
console.log("pathArray>>",pathArray)
|
|
198
196
|
schema.properties.pageName.path = _.cloneDeep(pathArray);
|
|
199
197
|
return schema;
|
|
200
198
|
},
|