impaktapps-ui-builder 0.0.382-alpha.300 → 0.0.382-alpha.302
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 +69 -85
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +1 -1
- 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 +102 -95
|
@@ -253,91 +253,6 @@ const PageMasterUiSchema = {
|
|
|
253
253
|
}
|
|
254
254
|
}
|
|
255
255
|
]
|
|
256
|
-
},
|
|
257
|
-
{
|
|
258
|
-
type: "Control",
|
|
259
|
-
scope: "#/properties/popUpComponent",
|
|
260
|
-
options: {
|
|
261
|
-
widget: "PopUp"
|
|
262
|
-
},
|
|
263
|
-
config: {
|
|
264
|
-
layout: {
|
|
265
|
-
xs: 12,
|
|
266
|
-
sm: 12,
|
|
267
|
-
md: 12,
|
|
268
|
-
lg: 12
|
|
269
|
-
},
|
|
270
|
-
main: {}
|
|
271
|
-
},
|
|
272
|
-
elements: [
|
|
273
|
-
{
|
|
274
|
-
type: "Control",
|
|
275
|
-
scope: "#/properties/label",
|
|
276
|
-
options: {
|
|
277
|
-
widget: "Box"
|
|
278
|
-
},
|
|
279
|
-
config: {
|
|
280
|
-
layout: 12,
|
|
281
|
-
main: {
|
|
282
|
-
heading: "Are you sure you want to delete ?"
|
|
283
|
-
}
|
|
284
|
-
}
|
|
285
|
-
},
|
|
286
|
-
{
|
|
287
|
-
type: "Control",
|
|
288
|
-
scope: "#/properties/ConfirmDeleteCompButton",
|
|
289
|
-
options: {
|
|
290
|
-
widget: "Button"
|
|
291
|
-
},
|
|
292
|
-
config: {
|
|
293
|
-
layout: 3,
|
|
294
|
-
main: {
|
|
295
|
-
name: "No",
|
|
296
|
-
startIcon: "ApproveIcon",
|
|
297
|
-
variant: "contained",
|
|
298
|
-
color: "info",
|
|
299
|
-
type: "text",
|
|
300
|
-
onClick: "deletePopUpComponent",
|
|
301
|
-
size: "small"
|
|
302
|
-
},
|
|
303
|
-
style: {
|
|
304
|
-
width: { xs: "100%", sm: "100%", md: "25%", lg: "20%" }
|
|
305
|
-
}
|
|
306
|
-
}
|
|
307
|
-
},
|
|
308
|
-
{
|
|
309
|
-
type: "Control",
|
|
310
|
-
scope: "#/properties/CancelDeleteCompButton",
|
|
311
|
-
options: {
|
|
312
|
-
widget: "Button"
|
|
313
|
-
},
|
|
314
|
-
config: {
|
|
315
|
-
layout: 3,
|
|
316
|
-
main: {
|
|
317
|
-
name: "Yes",
|
|
318
|
-
startIcon: "ApproveIcon",
|
|
319
|
-
variant: "contained",
|
|
320
|
-
color: "info",
|
|
321
|
-
type: "text",
|
|
322
|
-
onClick: "deletePopUpComponent",
|
|
323
|
-
size: "small"
|
|
324
|
-
},
|
|
325
|
-
style: {
|
|
326
|
-
width: { xs: "100%", sm: "100%", md: "25%", lg: "20%" }
|
|
327
|
-
}
|
|
328
|
-
}
|
|
329
|
-
},
|
|
330
|
-
{
|
|
331
|
-
type: "Control",
|
|
332
|
-
scope: "#/properties/emptyBox",
|
|
333
|
-
options: {
|
|
334
|
-
widget: "Box"
|
|
335
|
-
},
|
|
336
|
-
config: {
|
|
337
|
-
layout: 6
|
|
338
|
-
}
|
|
339
|
-
}
|
|
340
|
-
]
|
|
341
256
|
}
|
|
342
257
|
]
|
|
343
258
|
},
|
|
@@ -461,6 +376,75 @@ const PageMasterUiSchema = {
|
|
|
461
376
|
}
|
|
462
377
|
]
|
|
463
378
|
},
|
|
379
|
+
{
|
|
380
|
+
type: "Control",
|
|
381
|
+
scope: "#/properties/popUpComponent",
|
|
382
|
+
options: {
|
|
383
|
+
widget: "PopUp"
|
|
384
|
+
},
|
|
385
|
+
config: {
|
|
386
|
+
layout: {
|
|
387
|
+
xs: 12,
|
|
388
|
+
sm: 12,
|
|
389
|
+
md: 12,
|
|
390
|
+
lg: 12
|
|
391
|
+
},
|
|
392
|
+
main: {
|
|
393
|
+
label: "PopUp",
|
|
394
|
+
fullScreen: false,
|
|
395
|
+
fullWidth: false,
|
|
396
|
+
maxWidth: false,
|
|
397
|
+
alignItems: false,
|
|
398
|
+
spacing: 2
|
|
399
|
+
}
|
|
400
|
+
},
|
|
401
|
+
elements: [
|
|
402
|
+
{
|
|
403
|
+
type: "Control",
|
|
404
|
+
scope: "#/properties/ConfirmDeleteCompButton",
|
|
405
|
+
options: {
|
|
406
|
+
widget: "Button"
|
|
407
|
+
},
|
|
408
|
+
config: {
|
|
409
|
+
layout: 3,
|
|
410
|
+
main: {
|
|
411
|
+
name: "Yes",
|
|
412
|
+
startIcon: "ApproveIcon",
|
|
413
|
+
variant: "contained",
|
|
414
|
+
color: "info",
|
|
415
|
+
type: "text",
|
|
416
|
+
onClick: "Delete_Components",
|
|
417
|
+
size: "small"
|
|
418
|
+
},
|
|
419
|
+
style: {
|
|
420
|
+
width: { xs: "100%", sm: "100%", md: "25%", lg: "20%" }
|
|
421
|
+
}
|
|
422
|
+
}
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
type: "Control",
|
|
426
|
+
scope: "#/properties/CancelDeleteCompButton",
|
|
427
|
+
options: {
|
|
428
|
+
widget: "Button"
|
|
429
|
+
},
|
|
430
|
+
config: {
|
|
431
|
+
layout: 3,
|
|
432
|
+
main: {
|
|
433
|
+
name: "No",
|
|
434
|
+
startIcon: "ApproveIcon",
|
|
435
|
+
variant: "contained",
|
|
436
|
+
color: "info",
|
|
437
|
+
type: "text",
|
|
438
|
+
onClick: "deletePopUpComponent",
|
|
439
|
+
size: "small"
|
|
440
|
+
},
|
|
441
|
+
style: {
|
|
442
|
+
width: { xs: "100%", sm: "100%", md: "25%", lg: "20%" }
|
|
443
|
+
}
|
|
444
|
+
}
|
|
445
|
+
}
|
|
446
|
+
]
|
|
447
|
+
},
|
|
464
448
|
{
|
|
465
449
|
type: "Control",
|
|
466
450
|
scope: "#/properties/btn",
|