impaktapps-ui-builder 0.0.412-mtreemap.24 → 0.0.412-mtreemap.25

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.
@@ -282,7 +282,7 @@ const PageMasterUiSchema = (theme) => {
282
282
  onClick: "editEvent"
283
283
  },
284
284
  style: {
285
- color: "#3949ab"
285
+ color: theme.palette.primary.main
286
286
  }
287
287
  }
288
288
  }
@@ -342,6 +342,172 @@ const PageMasterUiSchema = (theme) => {
342
342
  }
343
343
  }
344
344
  },
345
+ {
346
+ type: "Control",
347
+ scope: "#/properties/popUpComponentSection",
348
+ options: {
349
+ widget: "PopUp"
350
+ },
351
+ config: {
352
+ layout: {
353
+ xs: 12,
354
+ sm: 12,
355
+ md: 12,
356
+ lg: 12
357
+ },
358
+ main: {}
359
+ },
360
+ elements: [
361
+ {
362
+ type: "Control",
363
+ scope: "#/properties/label",
364
+ options: {
365
+ widget: "Box"
366
+ },
367
+ config: {
368
+ layout: 12,
369
+ main: {
370
+ heading: "Are you sure you want to delete ?"
371
+ },
372
+ style: {
373
+ marginTop: "-40px"
374
+ }
375
+ }
376
+ },
377
+ {
378
+ type: "Control",
379
+ scope: "#/properties/EmptyBox",
380
+ options: {
381
+ widget: "EmptyBox"
382
+ },
383
+ config: {
384
+ main: {},
385
+ layout: { xs: 11, sm: 5.5, md: 5.5, lg: 5.5 }
386
+ }
387
+ },
388
+ {
389
+ type: "Control",
390
+ scope: "#/properties/ConfirmDeleteCompButton",
391
+ options: {
392
+ widget: "Button"
393
+ },
394
+ config: {
395
+ layout: 3,
396
+ main: {
397
+ name: "Yes",
398
+ startIcon: "ApproveIcon",
399
+ variant: "contained",
400
+ color: "info",
401
+ type: "text",
402
+ onClick: "deleteComponents",
403
+ size: "small"
404
+ }
405
+ }
406
+ },
407
+ {
408
+ type: "Control",
409
+ scope: "#/properties/CancelDeleteCompButton",
410
+ options: {
411
+ widget: "Button"
412
+ },
413
+ config: {
414
+ layout: 3,
415
+ main: {
416
+ name: "No",
417
+ startIcon: "ApproveIcon",
418
+ variant: "contained",
419
+ color: "info",
420
+ type: "text",
421
+ onClick: "deletePopUpComponent",
422
+ size: "small"
423
+ }
424
+ }
425
+ }
426
+ ]
427
+ },
428
+ {
429
+ type: "Control",
430
+ scope: "#/properties/popUpEventSection",
431
+ options: {
432
+ widget: "PopUp"
433
+ },
434
+ config: {
435
+ layout: {
436
+ xs: 12,
437
+ sm: 12,
438
+ md: 12,
439
+ lg: 12
440
+ },
441
+ main: {}
442
+ },
443
+ elements: [
444
+ {
445
+ type: "Control",
446
+ scope: "#/properties/label",
447
+ options: {
448
+ widget: "Box"
449
+ },
450
+ config: {
451
+ layout: 12,
452
+ main: {
453
+ heading: "Are you sure you want to delete ?"
454
+ },
455
+ style: {
456
+ marginTop: "-40px"
457
+ }
458
+ }
459
+ },
460
+ {
461
+ type: "Control",
462
+ scope: "#/properties/EmptyBox",
463
+ options: {
464
+ widget: "EmptyBox"
465
+ },
466
+ config: {
467
+ main: {},
468
+ layout: { xs: 11, sm: 5.5, md: 5.5, lg: 5.5 }
469
+ }
470
+ },
471
+ {
472
+ type: "Control",
473
+ scope: "#/properties/ConfirmDeleteEventButton",
474
+ options: {
475
+ widget: "Button"
476
+ },
477
+ config: {
478
+ layout: 3,
479
+ main: {
480
+ name: "Yes",
481
+ startIcon: "ApproveIcon",
482
+ variant: "contained",
483
+ color: "info",
484
+ type: "text",
485
+ onClick: "deleteEvent",
486
+ size: "small"
487
+ }
488
+ }
489
+ },
490
+ {
491
+ type: "Control",
492
+ scope: "#/properties/CancelDeleteEventButton",
493
+ options: {
494
+ widget: "Button"
495
+ },
496
+ config: {
497
+ layout: 3,
498
+ main: {
499
+ name: "No",
500
+ startIcon: "ApproveIcon",
501
+ variant: "contained",
502
+ color: "info",
503
+ type: "text",
504
+ onClick: "deletePopUpEvent",
505
+ size: "small"
506
+ }
507
+ }
508
+ }
509
+ ]
510
+ },
345
511
  {
346
512
  type: "Control",
347
513
  scope: "#/properties/notify",
@@ -6893,7 +7059,7 @@ const EventSection = (theme) => {
6893
7059
  onClick: "eventEditHandler"
6894
7060
  },
6895
7061
  style: {
6896
- color: theme
7062
+ color: theme.palette.primary.main
6897
7063
  }
6898
7064
  }
6899
7065
  }