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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "0.0.412-mtreemap.24",
3
+ "version": "0.0.412-mtreemap.25",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -72,7 +72,7 @@ export const EventSection = (theme)=>{
72
72
  onClick: "eventEditHandler",
73
73
  },
74
74
  style: {
75
- color: theme,
75
+ color: theme.palette.primary.main,
76
76
  },
77
77
  },
78
78
  },
@@ -365,7 +365,7 @@ export const PageMasterUiSchema: any = (theme) => {
365
365
  onClick: "editEvent",
366
366
  },
367
367
  style: {
368
- color: "#3949ab",
368
+ color: theme.palette.primary.main,
369
369
  },
370
370
  },
371
371
  },
@@ -429,6 +429,176 @@ export const PageMasterUiSchema: any = (theme) => {
429
429
  },
430
430
  },
431
431
  },
432
+ {
433
+ type: "Control",
434
+ scope: "#/properties/popUpComponentSection",
435
+ options: {
436
+ widget: "PopUp"
437
+ },
438
+ config: {
439
+ layout: {
440
+ xs: 12,
441
+ sm: 12,
442
+ md: 12,
443
+ lg: 12,
444
+ },
445
+ main: {
446
+ },
447
+ },
448
+ elements:
449
+ [
450
+ {
451
+ type: "Control",
452
+ scope: "#/properties/label",
453
+ options: {
454
+ widget: "Box",
455
+ },
456
+ config: {
457
+ layout: 12,
458
+ main: {
459
+ heading: "Are you sure you want to delete ?",
460
+ },
461
+ style: {
462
+ marginTop: "-40px"
463
+ }
464
+ },
465
+ },
466
+ {
467
+ type: "Control",
468
+ scope: "#/properties/EmptyBox",
469
+ options: {
470
+ widget: "EmptyBox",
471
+ },
472
+ config: {
473
+ main: {},
474
+ layout: { xs: 11, sm: 5.5, md: 5.5, lg: 5.5 },
475
+ },
476
+ },
477
+ {
478
+ type: "Control",
479
+ scope: "#/properties/ConfirmDeleteCompButton",
480
+ options: {
481
+ widget: "Button",
482
+ },
483
+ config: {
484
+ layout: 3,
485
+ main: {
486
+ name: "Yes",
487
+ startIcon: "ApproveIcon",
488
+ variant: "contained",
489
+ color: "info",
490
+ type: "text",
491
+ onClick: "deleteComponents",
492
+ size: "small",
493
+ },
494
+ },
495
+ },
496
+ {
497
+ type: "Control",
498
+ scope: "#/properties/CancelDeleteCompButton",
499
+ options: {
500
+ widget: "Button",
501
+ },
502
+ config: {
503
+ layout: 3,
504
+ main: {
505
+ name: "No",
506
+ startIcon: "ApproveIcon",
507
+ variant: "contained",
508
+ color: "info",
509
+ type: "text",
510
+ onClick: "deletePopUpComponent",
511
+ size: "small",
512
+ },
513
+ },
514
+ },
515
+ ]
516
+ },
517
+ {
518
+ type: "Control",
519
+ scope: "#/properties/popUpEventSection",
520
+ options: {
521
+ widget: "PopUp"
522
+ },
523
+ config: {
524
+ layout: {
525
+ xs: 12,
526
+ sm: 12,
527
+ md: 12,
528
+ lg: 12,
529
+ },
530
+ main: {
531
+ },
532
+ },
533
+ elements:
534
+ [
535
+ {
536
+ type: "Control",
537
+ scope: "#/properties/label",
538
+ options: {
539
+ widget: "Box",
540
+ },
541
+ config: {
542
+ layout: 12,
543
+ main: {
544
+ heading: "Are you sure you want to delete ?",
545
+ },
546
+ style: {
547
+ marginTop: "-40px"
548
+ }
549
+ },
550
+ },
551
+ {
552
+ type: "Control",
553
+ scope: "#/properties/EmptyBox",
554
+ options: {
555
+ widget: "EmptyBox",
556
+ },
557
+ config: {
558
+ main: {},
559
+ layout: { xs: 11, sm: 5.5, md: 5.5, lg: 5.5 },
560
+ },
561
+ },
562
+ {
563
+ type: "Control",
564
+ scope: "#/properties/ConfirmDeleteEventButton",
565
+ options: {
566
+ widget: "Button",
567
+ },
568
+ config: {
569
+ layout: 3,
570
+ main: {
571
+ name: "Yes",
572
+ startIcon: "ApproveIcon",
573
+ variant: "contained",
574
+ color: "info",
575
+ type: "text",
576
+ onClick: "deleteEvent",
577
+ size: "small",
578
+ },
579
+ },
580
+ },
581
+ {
582
+ type: "Control",
583
+ scope: "#/properties/CancelDeleteEventButton",
584
+ options: {
585
+ widget: "Button",
586
+ },
587
+ config: {
588
+ layout: 3,
589
+ main: {
590
+ name: "No",
591
+ startIcon: "ApproveIcon",
592
+ variant: "contained",
593
+ color: "info",
594
+ type: "text",
595
+ onClick: "deletePopUpEvent",
596
+ size: "small",
597
+ },
598
+ },
599
+ },
600
+ ]
601
+ },
432
602
  {
433
603
  type: "Control",
434
604
  scope: "#/properties/notify",