impaktapps-ui-builder 0.0.382-alpha.312 → 0.0.382-alpha.314
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/dist/impaktapps-ui-builder.es.js +15 -14
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +7 -7
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/uiSchema.ts +161 -70
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/uiSchema.ts +2 -2
- package/src/impaktapps-ui-builder/builder/services/pageMaster.ts +1 -0
|
@@ -378,7 +378,7 @@ const PageMasterUiSchema = {
|
|
|
378
378
|
},
|
|
379
379
|
{
|
|
380
380
|
type: "Control",
|
|
381
|
-
scope: "#/properties/
|
|
381
|
+
scope: "#/properties/popUpPageMasterEvent",
|
|
382
382
|
options: {
|
|
383
383
|
widget: "PopUp"
|
|
384
384
|
},
|
|
@@ -421,7 +421,7 @@ const PageMasterUiSchema = {
|
|
|
421
421
|
},
|
|
422
422
|
{
|
|
423
423
|
type: "Control",
|
|
424
|
-
scope: "#/properties/
|
|
424
|
+
scope: "#/properties/ConfirmDeleteEventButton",
|
|
425
425
|
options: {
|
|
426
426
|
widget: "Button"
|
|
427
427
|
},
|
|
@@ -433,14 +433,14 @@ const PageMasterUiSchema = {
|
|
|
433
433
|
variant: "contained",
|
|
434
434
|
color: "info",
|
|
435
435
|
type: "text",
|
|
436
|
-
onClick: "
|
|
436
|
+
onClick: "deleteEvent",
|
|
437
437
|
size: "small"
|
|
438
438
|
}
|
|
439
439
|
}
|
|
440
440
|
},
|
|
441
441
|
{
|
|
442
442
|
type: "Control",
|
|
443
|
-
scope: "#/properties/
|
|
443
|
+
scope: "#/properties/CancelDeleteEventButton",
|
|
444
444
|
options: {
|
|
445
445
|
widget: "Button"
|
|
446
446
|
},
|
|
@@ -452,7 +452,7 @@ const PageMasterUiSchema = {
|
|
|
452
452
|
variant: "contained",
|
|
453
453
|
color: "info",
|
|
454
454
|
type: "text",
|
|
455
|
-
onClick: "
|
|
455
|
+
onClick: "deletePopUpEvent",
|
|
456
456
|
size: "small"
|
|
457
457
|
}
|
|
458
458
|
}
|
|
@@ -461,7 +461,7 @@ const PageMasterUiSchema = {
|
|
|
461
461
|
},
|
|
462
462
|
{
|
|
463
463
|
type: "Control",
|
|
464
|
-
scope: "#/properties/
|
|
464
|
+
scope: "#/properties/popUpPageMasterComponent",
|
|
465
465
|
options: {
|
|
466
466
|
widget: "PopUp"
|
|
467
467
|
},
|
|
@@ -474,7 +474,7 @@ const PageMasterUiSchema = {
|
|
|
474
474
|
},
|
|
475
475
|
main: {}
|
|
476
476
|
},
|
|
477
|
-
|
|
477
|
+
elements: [
|
|
478
478
|
{
|
|
479
479
|
type: "Control",
|
|
480
480
|
scope: "#/properties/label",
|
|
@@ -504,7 +504,7 @@ const PageMasterUiSchema = {
|
|
|
504
504
|
},
|
|
505
505
|
{
|
|
506
506
|
type: "Control",
|
|
507
|
-
scope: "#/properties/
|
|
507
|
+
scope: "#/properties/ConfirmDeleteCompButton",
|
|
508
508
|
options: {
|
|
509
509
|
widget: "Button"
|
|
510
510
|
},
|
|
@@ -516,26 +516,26 @@ const PageMasterUiSchema = {
|
|
|
516
516
|
variant: "contained",
|
|
517
517
|
color: "info",
|
|
518
518
|
type: "text",
|
|
519
|
-
onClick: "
|
|
519
|
+
onClick: "Delete_Components",
|
|
520
520
|
size: "small"
|
|
521
521
|
}
|
|
522
522
|
}
|
|
523
523
|
},
|
|
524
524
|
{
|
|
525
525
|
type: "Control",
|
|
526
|
-
scope: "#/properties/
|
|
526
|
+
scope: "#/properties/CancelDeleteCompButton",
|
|
527
527
|
options: {
|
|
528
528
|
widget: "Button"
|
|
529
529
|
},
|
|
530
530
|
config: {
|
|
531
531
|
layout: 3,
|
|
532
532
|
main: {
|
|
533
|
-
name: "
|
|
533
|
+
name: "No",
|
|
534
534
|
startIcon: "ApproveIcon",
|
|
535
535
|
variant: "contained",
|
|
536
536
|
color: "info",
|
|
537
537
|
type: "text",
|
|
538
|
-
onClick: "
|
|
538
|
+
onClick: "deletePopUpComponent",
|
|
539
539
|
size: "small"
|
|
540
540
|
}
|
|
541
541
|
}
|
|
@@ -7996,6 +7996,7 @@ var pageMaster = (funcParams) => {
|
|
|
7996
7996
|
store2.updateDialog("popUpPageMasterEvent");
|
|
7997
7997
|
},
|
|
7998
7998
|
deletePopUpComponent: function() {
|
|
7999
|
+
dynamicData2.path.split(".")[1];
|
|
7999
8000
|
store2.updateDialog("popUpPageMasterComponent");
|
|
8000
8001
|
},
|
|
8001
8002
|
deletePopUpEvent: function() {
|
|
@@ -8360,7 +8361,7 @@ const EventUiSchema = {
|
|
|
8360
8361
|
widget: "Button"
|
|
8361
8362
|
},
|
|
8362
8363
|
config: {
|
|
8363
|
-
layout:
|
|
8364
|
+
layout: 12,
|
|
8364
8365
|
main: {
|
|
8365
8366
|
name: "Yes",
|
|
8366
8367
|
startIcon: "ApproveIcon",
|
|
@@ -8379,7 +8380,7 @@ const EventUiSchema = {
|
|
|
8379
8380
|
widget: "Button"
|
|
8380
8381
|
},
|
|
8381
8382
|
config: {
|
|
8382
|
-
layout:
|
|
8383
|
+
layout: 12,
|
|
8383
8384
|
main: {
|
|
8384
8385
|
name: "No",
|
|
8385
8386
|
startIcon: "ApproveIcon",
|