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.
@@ -57,6 +57,5 @@ declare const _default: (funcParams: funcParamsProps) => {
57
57
  deleteEvent: () => void;
58
58
  deletePopUpEvent: () => void;
59
59
  deletePopUpComponent: () => void;
60
- testDelComp: () => void;
61
60
  };
62
61
  export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "0.0.382-alpha.206",
3
+ "version": "0.0.382-alpha.208",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -229,7 +229,7 @@ export const PageMasterUiSchema: any = {
229
229
  type: "Control",
230
230
  scope: "#/properties/popUpComponent",
231
231
  options:{
232
- widget: "popUp"
232
+ widget: "PopUp"
233
233
  },
234
234
  config:{
235
235
  layout: {
@@ -257,9 +257,9 @@ export const PageMasterUiSchema: any = {
257
257
  widget: "Box",
258
258
  },
259
259
  config: {
260
- layout: 8,
260
+ layout: 12,
261
261
  main: {
262
- heading: "Are you sure",
262
+ heading: "Are you sure you want to delete the record ?",
263
263
  },
264
264
  },
265
265
  },
@@ -270,14 +270,14 @@ export const PageMasterUiSchema: any = {
270
270
  widget: "Button",
271
271
  },
272
272
  config: {
273
- // layout: 11.7,
273
+ layout: 3.5,
274
274
  main: {
275
275
  name: "No",
276
276
  startIcon: "ApproveIcon",
277
277
  variant: "contained",
278
278
  color: "info",
279
279
  type: "text",
280
- onClick: "testDelComp",
280
+ onClick: "deletePopUpComponent",
281
281
  size: "small",
282
282
  },
283
283
  style: {
@@ -294,15 +294,14 @@ export const PageMasterUiSchema: any = {
294
294
  widget: "Button",
295
295
  },
296
296
  config: {
297
- // layout: 11.7,
297
+ layout: 3.5,
298
298
  main: {
299
299
  name: "Yes",
300
300
  startIcon: "ApproveIcon",
301
301
  variant: "contained",
302
302
  color: "info",
303
303
  type: "text",
304
- onClick: "testDelComp",
305
- // Delete_Components
304
+ onClick: "Delete_Components",
306
305
  size: "small",
307
306
  },
308
307
 
@@ -85,9 +85,5 @@ export default (funcParams: funcParamsProps) => {
85
85
  deletePopUpComponent: function(){
86
86
  store.updateDialog("popUpComponent");
87
87
  },
88
-
89
- testDelComp: function(){
90
- console.log("yes fun called");
91
- }
92
88
  }
93
89
  };