impaktapps-ui-builder 0.0.382-alpha.312 → 0.0.382-alpha.313
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 +16 -16
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +2 -2
- 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 +89 -84
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/uiSchema.ts +2 -2
package/package.json
CHANGED
|
@@ -352,6 +352,94 @@ export const PageMasterUiSchema: any = {
|
|
|
352
352
|
|
|
353
353
|
],
|
|
354
354
|
},
|
|
355
|
+
{
|
|
356
|
+
type: "Control",
|
|
357
|
+
scope: "#/properties/popUpPageMasterEvent",
|
|
358
|
+
options:{
|
|
359
|
+
widget: "PopUp"
|
|
360
|
+
},
|
|
361
|
+
config:{
|
|
362
|
+
layout: {
|
|
363
|
+
xs: 12,
|
|
364
|
+
sm: 12,
|
|
365
|
+
md: 12,
|
|
366
|
+
lg: 12,
|
|
367
|
+
},
|
|
368
|
+
main: {
|
|
369
|
+
},
|
|
370
|
+
},
|
|
371
|
+
elemetns:[
|
|
372
|
+
{
|
|
373
|
+
type: "Control",
|
|
374
|
+
scope: "#/properties/label",
|
|
375
|
+
options: {
|
|
376
|
+
widget: "Box",
|
|
377
|
+
},
|
|
378
|
+
config: {
|
|
379
|
+
layout: 12,
|
|
380
|
+
main: {
|
|
381
|
+
heading: "Are you sure you want to delete ?",
|
|
382
|
+
},
|
|
383
|
+
style:{
|
|
384
|
+
marginTop: "-40px"
|
|
385
|
+
}
|
|
386
|
+
},
|
|
387
|
+
},
|
|
388
|
+
{
|
|
389
|
+
type: "Control",
|
|
390
|
+
scope: "#/properties/EmptyBox",
|
|
391
|
+
options: {
|
|
392
|
+
widget: "EmptyBox",
|
|
393
|
+
},
|
|
394
|
+
config: {
|
|
395
|
+
main:{},
|
|
396
|
+
layout: { xs: 11, sm: 5.5, md: 5.5, lg: 5.5 },
|
|
397
|
+
},
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
type: "Control",
|
|
401
|
+
scope: "#/properties/ConfirmDeleteEventButton",
|
|
402
|
+
options: {
|
|
403
|
+
widget: "Button",
|
|
404
|
+
},
|
|
405
|
+
config: {
|
|
406
|
+
layout: 3,
|
|
407
|
+
main: {
|
|
408
|
+
name: "Yes",
|
|
409
|
+
startIcon: "ApproveIcon",
|
|
410
|
+
variant: "contained",
|
|
411
|
+
color: "info",
|
|
412
|
+
type: "text",
|
|
413
|
+
onClick: "deleteEvent",
|
|
414
|
+
size: "small",
|
|
415
|
+
},
|
|
416
|
+
},
|
|
417
|
+
},
|
|
418
|
+
{
|
|
419
|
+
type: "Control",
|
|
420
|
+
scope: "#/properties/CancelDeleteEventButton",
|
|
421
|
+
options: {
|
|
422
|
+
widget: "Button",
|
|
423
|
+
},
|
|
424
|
+
config: {
|
|
425
|
+
layout: 3,
|
|
426
|
+
main: {
|
|
427
|
+
name: "Yes",
|
|
428
|
+
startIcon: "ApproveIcon",
|
|
429
|
+
variant: "contained",
|
|
430
|
+
color: "info",
|
|
431
|
+
type: "text",
|
|
432
|
+
onClick: "deletePopUpEvent",
|
|
433
|
+
size: "small",
|
|
434
|
+
},
|
|
435
|
+
},
|
|
436
|
+
},
|
|
437
|
+
]
|
|
438
|
+
},
|
|
439
|
+
|
|
440
|
+
|
|
441
|
+
|
|
442
|
+
|
|
355
443
|
{
|
|
356
444
|
type: "Control",
|
|
357
445
|
scope: "#/properties/popUpPageMasterComponent",
|
|
@@ -438,90 +526,7 @@ export const PageMasterUiSchema: any = {
|
|
|
438
526
|
]
|
|
439
527
|
},
|
|
440
528
|
|
|
441
|
-
|
|
442
|
-
type: "Control",
|
|
443
|
-
scope: "#/properties/popUpPageMasterEvent",
|
|
444
|
-
options:{
|
|
445
|
-
widget: "PopUp"
|
|
446
|
-
},
|
|
447
|
-
config:{
|
|
448
|
-
layout: {
|
|
449
|
-
xs: 12,
|
|
450
|
-
sm: 12,
|
|
451
|
-
md: 12,
|
|
452
|
-
lg: 12,
|
|
453
|
-
},
|
|
454
|
-
main: {
|
|
455
|
-
},
|
|
456
|
-
},
|
|
457
|
-
elemetns:[
|
|
458
|
-
{
|
|
459
|
-
type: "Control",
|
|
460
|
-
scope: "#/properties/label",
|
|
461
|
-
options: {
|
|
462
|
-
widget: "Box",
|
|
463
|
-
},
|
|
464
|
-
config: {
|
|
465
|
-
layout: 12,
|
|
466
|
-
main: {
|
|
467
|
-
heading: "Are you sure you want to delete ?",
|
|
468
|
-
},
|
|
469
|
-
style:{
|
|
470
|
-
marginTop: "-40px"
|
|
471
|
-
}
|
|
472
|
-
},
|
|
473
|
-
},
|
|
474
|
-
{
|
|
475
|
-
type: "Control",
|
|
476
|
-
scope: "#/properties/EmptyBox",
|
|
477
|
-
options: {
|
|
478
|
-
widget: "EmptyBox",
|
|
479
|
-
},
|
|
480
|
-
config: {
|
|
481
|
-
main:{},
|
|
482
|
-
layout: { xs: 11, sm: 5.5, md: 5.5, lg: 5.5 },
|
|
483
|
-
},
|
|
484
|
-
},
|
|
485
|
-
{
|
|
486
|
-
type: "Control",
|
|
487
|
-
scope: "#/properties/ConfirmDeleteEventButton",
|
|
488
|
-
options: {
|
|
489
|
-
widget: "Button",
|
|
490
|
-
},
|
|
491
|
-
config: {
|
|
492
|
-
layout: 3,
|
|
493
|
-
main: {
|
|
494
|
-
name: "Yes",
|
|
495
|
-
startIcon: "ApproveIcon",
|
|
496
|
-
variant: "contained",
|
|
497
|
-
color: "info",
|
|
498
|
-
type: "text",
|
|
499
|
-
onClick: "deleteEvent",
|
|
500
|
-
size: "small",
|
|
501
|
-
},
|
|
502
|
-
},
|
|
503
|
-
},
|
|
504
|
-
{
|
|
505
|
-
type: "Control",
|
|
506
|
-
scope: "#/properties/CancelDeleteEventButton",
|
|
507
|
-
options: {
|
|
508
|
-
widget: "Button",
|
|
509
|
-
},
|
|
510
|
-
config: {
|
|
511
|
-
layout: 3,
|
|
512
|
-
main: {
|
|
513
|
-
name: "Yes",
|
|
514
|
-
startIcon: "ApproveIcon",
|
|
515
|
-
variant: "contained",
|
|
516
|
-
color: "info",
|
|
517
|
-
type: "text",
|
|
518
|
-
onClick: "deletePopUpEvent",
|
|
519
|
-
size: "small",
|
|
520
|
-
},
|
|
521
|
-
},
|
|
522
|
-
},
|
|
523
|
-
]
|
|
524
|
-
},
|
|
529
|
+
|
|
525
530
|
|
|
526
531
|
{
|
|
527
532
|
type: "Control",
|
|
@@ -290,7 +290,7 @@ export const EventUiSchema: any = {
|
|
|
290
290
|
widget: "Button",
|
|
291
291
|
},
|
|
292
292
|
config: {
|
|
293
|
-
layout:
|
|
293
|
+
layout: 12,
|
|
294
294
|
main: {
|
|
295
295
|
name: "Yes",
|
|
296
296
|
startIcon: "ApproveIcon",
|
|
@@ -309,7 +309,7 @@ export const EventUiSchema: any = {
|
|
|
309
309
|
widget: "Button",
|
|
310
310
|
},
|
|
311
311
|
config: {
|
|
312
|
-
layout:
|
|
312
|
+
layout: 12,
|
|
313
313
|
main: {
|
|
314
314
|
name: "No",
|
|
315
315
|
startIcon: "ApproveIcon",
|