impaktapps-ui-builder 0.0.382-alpha.204 → 0.0.382-alpha.206

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "0.0.382-alpha.204",
3
+ "version": "0.0.382-alpha.206",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -217,14 +217,106 @@ export const PageMasterUiSchema: any = {
217
217
  main: {
218
218
  icon: "RejectIcon",
219
219
  color: "error",
220
- onClick: "Delete_Components",
220
+ onClick: "deletePopUpComponent",
221
221
  tooltipMessage: "Reject This Record",
222
222
  },
223
223
  },
224
224
  },
225
225
  }
226
226
  ]
227
- }]},
227
+ },
228
+ {
229
+ type: "Control",
230
+ scope: "#/properties/popUpComponent",
231
+ options:{
232
+ widget: "popUp"
233
+ },
234
+ config:{
235
+ layout: {
236
+ xs: 12,
237
+ sm: 12,
238
+ md: 12,
239
+ lg: 12,
240
+ },
241
+ main: {
242
+ label: "PopUpComponent",
243
+ fullScreen:false,
244
+ fullWidth:false,
245
+ maxWidth:false,
246
+ alignItems:false,
247
+ spacing:2
248
+ },
249
+ },
250
+ elements:
251
+ [
252
+ {
253
+ type: "Control",
254
+ scope: "#/properties/label",
255
+
256
+ options: {
257
+ widget: "Box",
258
+ },
259
+ config: {
260
+ layout: 8,
261
+ main: {
262
+ heading: "Are you sure",
263
+ },
264
+ },
265
+ },
266
+ {
267
+ type: "Control",
268
+ scope: "#/properties/ConfirmDeleteButton1",
269
+ options: {
270
+ widget: "Button",
271
+ },
272
+ config: {
273
+ // layout: 11.7,
274
+ main: {
275
+ name: "No",
276
+ startIcon: "ApproveIcon",
277
+ variant: "contained",
278
+ color: "info",
279
+ type: "text",
280
+ onClick: "testDelComp",
281
+ size: "small",
282
+ },
283
+ style: {
284
+ marginBottom: "8px",
285
+ width:{xs:"100%",sm:"100%",md:"25%",lg:"20%"},
286
+ float: "left",
287
+ },
288
+ },
289
+ },
290
+ {
291
+ type: "Control",
292
+ scope: "#/properties/CancelDeleteButton1",
293
+ options: {
294
+ widget: "Button",
295
+ },
296
+ config: {
297
+ // layout: 11.7,
298
+ main: {
299
+ name: "Yes",
300
+ startIcon: "ApproveIcon",
301
+ variant: "contained",
302
+ color: "info",
303
+ type: "text",
304
+ onClick: "testDelComp",
305
+ // Delete_Components
306
+ size: "small",
307
+ },
308
+
309
+ style: {
310
+ marginBottom: "8px",
311
+ width:{xs:"100%",sm:"100%",md:"25%",lg:"20%"},
312
+ float: "right",
313
+ },
314
+ },
315
+ },
316
+ ]
317
+ }
318
+ ]
319
+ },
228
320
  {
229
321
  type: "WrapperLayout",
230
322
  config: {
@@ -346,96 +438,6 @@ export const PageMasterUiSchema: any = {
346
438
  },
347
439
  ]
348
440
  },
349
- {
350
- type: "Control",
351
- scope: "#/properties/popUpComponent",
352
- options:{
353
- widget: "popUp"
354
- },
355
- config:{
356
- layout: {
357
- xs: 12,
358
- sm: 12,
359
- md: 12,
360
- lg: 12,
361
- },
362
- main: {
363
- label: "PopUpComponent",
364
- fullScreen:false,
365
- fullWidth:false,
366
- maxWidth:false,
367
- alignItems:false,
368
- spacing:2
369
- },
370
- },
371
- elements:
372
- [
373
- {
374
- type: "Control",
375
- scope: "#/properties/pageMaster",
376
-
377
- options: {
378
- widget: "Box",
379
- },
380
- config: {
381
- layout: 8,
382
- main: {
383
- heading: "Are you sure",
384
- },
385
- },
386
- },
387
- {
388
- type: "Control",
389
- scope: "#/properties/ConfirmDeleteButton1",
390
- options: {
391
- widget: "Button",
392
- },
393
- config: {
394
- // layout: 11.7,
395
- main: {
396
- name: "No",
397
- startIcon: "ApproveIcon",
398
- variant: "contained",
399
- color: "info",
400
- type: "text",
401
- onClick: "testDelComp",
402
- size: "small",
403
- },
404
- style: {
405
- marginBottom: "8px",
406
- width:{xs:"100%",sm:"100%",md:"25%",lg:"20%"},
407
- float: "left",
408
- },
409
- },
410
- },
411
- {
412
- type: "Control",
413
- scope: "#/properties/CancelDeleteButton1",
414
- options: {
415
- widget: "Button",
416
- },
417
- config: {
418
- // layout: 11.7,
419
- main: {
420
- name: "Yes",
421
- startIcon: "ApproveIcon",
422
- variant: "contained",
423
- color: "info",
424
- type: "text",
425
- onClick: "testDelComp",
426
- // Delete_Components
427
- size: "small",
428
- },
429
-
430
- style: {
431
- marginBottom: "8px",
432
- width:{xs:"100%",sm:"100%",md:"25%",lg:"20%"},
433
- float: "right",
434
- },
435
- },
436
- },
437
- ]
438
- }
439
441
  ]
440
442
  },
441
443