impaktapps-ui-builder 0.0.382-alpha.206 → 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.
@@ -258,7 +258,7 @@ const PageMasterUiSchema = {
258
258
  type: "Control",
259
259
  scope: "#/properties/popUpComponent",
260
260
  options: {
261
- widget: "popUp"
261
+ widget: "PopUp"
262
262
  },
263
263
  config: {
264
264
  layout: {
@@ -284,9 +284,9 @@ const PageMasterUiSchema = {
284
284
  widget: "Box"
285
285
  },
286
286
  config: {
287
- layout: 8,
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: "testDelComp",
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: "testDelComp",
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
  };