impaktapps-ui-builder 0.0.382-alpha.200 → 0.0.382-alpha.201
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 +1 -1
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/uiSchema.ts +3 -3
- package/src/impaktapps-ui-builder/builder/services/component.ts +6 -0
package/package.json
CHANGED
|
@@ -217,7 +217,7 @@ export const PageMasterUiSchema: any = {
|
|
|
217
217
|
main: {
|
|
218
218
|
icon: "RejectIcon",
|
|
219
219
|
color: "error",
|
|
220
|
-
onClick: "
|
|
220
|
+
onClick: "deletePopUp",
|
|
221
221
|
tooltipMessage: "Reject This Record",
|
|
222
222
|
},
|
|
223
223
|
},
|
|
@@ -399,7 +399,7 @@ export const PageMasterUiSchema: any = {
|
|
|
399
399
|
variant: "contained",
|
|
400
400
|
color: "info",
|
|
401
401
|
type: "text",
|
|
402
|
-
onClick: "
|
|
402
|
+
onClick: "Delete_Components",
|
|
403
403
|
size: "small",
|
|
404
404
|
},
|
|
405
405
|
style: {
|
|
@@ -423,7 +423,7 @@ export const PageMasterUiSchema: any = {
|
|
|
423
423
|
variant: "contained",
|
|
424
424
|
color: "info",
|
|
425
425
|
type: "text",
|
|
426
|
-
onClick: "
|
|
426
|
+
onClick: "Delete_Components",
|
|
427
427
|
size: "small",
|
|
428
428
|
},
|
|
429
429
|
style: {
|
|
@@ -112,6 +112,12 @@ export default (store: any, dynamicData: any, submitHandler: any, service: any)
|
|
|
112
112
|
const data = path ? _.get(response, path) : response;
|
|
113
113
|
store.setFormdata(data);
|
|
114
114
|
},
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
|
|
115
121
|
deleteEvent: function () {
|
|
116
122
|
const path = store.searchParams?.get("path");
|
|
117
123
|
const rowId = dynamicData.path.split(".")[1];
|