impaktapps-ui-builder 0.0.382-alpha.207 → 0.0.382-alpha.208
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 +6 -7
- 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/dist/src/impaktapps-ui-builder/builder/services/pageMaster.d.ts +0 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/uiSchema.ts +6 -7
- package/src/impaktapps-ui-builder/builder/services/pageMaster.ts +0 -4
|
@@ -284,9 +284,9 @@ const PageMasterUiSchema = {
|
|
|
284
284
|
widget: "Box"
|
|
285
285
|
},
|
|
286
286
|
config: {
|
|
287
|
-
layout:
|
|
287
|
+
layout: 12,
|
|
288
288
|
main: {
|
|
289
|
-
heading: "Are you sure"
|
|
289
|
+
heading: "Are you sure you want to delete the record ?"
|
|
290
290
|
}
|
|
291
291
|
}
|
|
292
292
|
},
|
|
@@ -297,13 +297,14 @@ const PageMasterUiSchema = {
|
|
|
297
297
|
widget: "Button"
|
|
298
298
|
},
|
|
299
299
|
config: {
|
|
300
|
+
layout: 3.5,
|
|
300
301
|
main: {
|
|
301
302
|
name: "No",
|
|
302
303
|
startIcon: "ApproveIcon",
|
|
303
304
|
variant: "contained",
|
|
304
305
|
color: "info",
|
|
305
306
|
type: "text",
|
|
306
|
-
onClick: "
|
|
307
|
+
onClick: "deletePopUpComponent",
|
|
307
308
|
size: "small"
|
|
308
309
|
},
|
|
309
310
|
style: {
|
|
@@ -320,13 +321,14 @@ const PageMasterUiSchema = {
|
|
|
320
321
|
widget: "Button"
|
|
321
322
|
},
|
|
322
323
|
config: {
|
|
324
|
+
layout: 3.5,
|
|
323
325
|
main: {
|
|
324
326
|
name: "Yes",
|
|
325
327
|
startIcon: "ApproveIcon",
|
|
326
328
|
variant: "contained",
|
|
327
329
|
color: "info",
|
|
328
330
|
type: "text",
|
|
329
|
-
onClick: "
|
|
331
|
+
onClick: "Delete_Components",
|
|
330
332
|
size: "small"
|
|
331
333
|
},
|
|
332
334
|
style: {
|
|
@@ -7742,9 +7744,6 @@ var pageMaster = (funcParams) => {
|
|
|
7742
7744
|
},
|
|
7743
7745
|
deletePopUpComponent: function() {
|
|
7744
7746
|
store2.updateDialog("popUpComponent");
|
|
7745
|
-
},
|
|
7746
|
-
testDelComp: function() {
|
|
7747
|
-
console.log("yes fun called");
|
|
7748
7747
|
}
|
|
7749
7748
|
};
|
|
7750
7749
|
};
|