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
package/package.json
CHANGED
|
@@ -225,101 +225,8 @@ export const PageMasterUiSchema: any = {
|
|
|
225
225
|
}
|
|
226
226
|
]
|
|
227
227
|
},
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
scope: "#/properties/popUpComponent",
|
|
231
|
-
options: {
|
|
232
|
-
widget: "PopUp"
|
|
233
|
-
},
|
|
234
|
-
config: {
|
|
235
|
-
layout: {
|
|
236
|
-
xs: 12,
|
|
237
|
-
sm: 12,
|
|
238
|
-
md: 12,
|
|
239
|
-
lg: 12,
|
|
240
|
-
},
|
|
241
|
-
main: {
|
|
242
|
-
},
|
|
243
|
-
},
|
|
244
|
-
elements:
|
|
245
|
-
[
|
|
246
|
-
{
|
|
247
|
-
type: "Control",
|
|
248
|
-
scope: "#/properties/label",
|
|
249
|
-
|
|
250
|
-
options: {
|
|
251
|
-
widget: "Box",
|
|
252
|
-
},
|
|
253
|
-
config: {
|
|
254
|
-
layout: 12,
|
|
255
|
-
main: {
|
|
256
|
-
heading: "Are you sure you want to delete ?",
|
|
257
|
-
},
|
|
258
|
-
},
|
|
259
|
-
},
|
|
260
|
-
{
|
|
261
|
-
type: "Control",
|
|
262
|
-
scope: "#/properties/ConfirmDeleteCompButton",
|
|
263
|
-
options: {
|
|
264
|
-
widget: "Button",
|
|
265
|
-
},
|
|
266
|
-
config: {
|
|
267
|
-
layout: 3,
|
|
268
|
-
main: {
|
|
269
|
-
name: "No",
|
|
270
|
-
startIcon: "ApproveIcon",
|
|
271
|
-
variant: "contained",
|
|
272
|
-
color: "info",
|
|
273
|
-
type: "text",
|
|
274
|
-
onClick: "deletePopUpComponent",
|
|
275
|
-
size: "small",
|
|
276
|
-
},
|
|
277
|
-
style: {
|
|
278
|
-
// marginBottom: "8px",
|
|
279
|
-
width: { xs: "100%", sm: "100%", md: "25%", lg: "20%" },
|
|
280
|
-
// float: "left",
|
|
281
|
-
},
|
|
282
|
-
},
|
|
283
|
-
},
|
|
284
|
-
{
|
|
285
|
-
type: "Control",
|
|
286
|
-
scope: "#/properties/CancelDeleteCompButton",
|
|
287
|
-
options: {
|
|
288
|
-
widget: "Button",
|
|
289
|
-
},
|
|
290
|
-
config: {
|
|
291
|
-
layout: 3,
|
|
292
|
-
main: {
|
|
293
|
-
name: "Yes",
|
|
294
|
-
startIcon: "ApproveIcon",
|
|
295
|
-
variant: "contained",
|
|
296
|
-
color: "info",
|
|
297
|
-
type: "text",
|
|
298
|
-
onClick: "deletePopUpComponent",
|
|
299
|
-
size: "small",
|
|
300
|
-
},
|
|
301
|
-
|
|
302
|
-
style: {
|
|
303
|
-
// marginBottom: "8px",
|
|
304
|
-
width: { xs: "100%", sm: "100%", md: "25%", lg: "20%" },
|
|
305
|
-
// float: "left",
|
|
306
|
-
},
|
|
307
|
-
},
|
|
308
|
-
},
|
|
309
|
-
{
|
|
310
|
-
type: "Control",
|
|
311
|
-
scope: "#/properties/emptyBox",
|
|
312
|
-
|
|
313
|
-
options: {
|
|
314
|
-
widget: "Box",
|
|
315
|
-
},
|
|
316
|
-
config: {
|
|
317
|
-
layout: 6,
|
|
318
|
-
},
|
|
319
|
-
},
|
|
320
|
-
]
|
|
321
|
-
},
|
|
322
|
-
]
|
|
228
|
+
|
|
229
|
+
]
|
|
323
230
|
},
|
|
324
231
|
{
|
|
325
232
|
type: "WrapperLayout",
|
|
@@ -446,6 +353,106 @@ export const PageMasterUiSchema: any = {
|
|
|
446
353
|
|
|
447
354
|
],
|
|
448
355
|
},
|
|
356
|
+
{
|
|
357
|
+
type: "Control",
|
|
358
|
+
scope: "#/properties/popUpComponent",
|
|
359
|
+
options: {
|
|
360
|
+
widget: "PopUp"
|
|
361
|
+
},
|
|
362
|
+
config: {
|
|
363
|
+
layout: {
|
|
364
|
+
xs: 12,
|
|
365
|
+
sm: 12,
|
|
366
|
+
md: 12,
|
|
367
|
+
lg: 12,
|
|
368
|
+
},
|
|
369
|
+
main: {
|
|
370
|
+
label: "PopUp",
|
|
371
|
+
fullScreen:false,
|
|
372
|
+
fullWidth:false,
|
|
373
|
+
maxWidth:false,
|
|
374
|
+
alignItems:false,
|
|
375
|
+
spacing:2
|
|
376
|
+
},
|
|
377
|
+
},
|
|
378
|
+
elements:
|
|
379
|
+
[
|
|
380
|
+
// {
|
|
381
|
+
// type: "Control",
|
|
382
|
+
// scope: "#/properties/label",
|
|
383
|
+
|
|
384
|
+
// options: {
|
|
385
|
+
// widget: "Box",
|
|
386
|
+
// },
|
|
387
|
+
// config: {
|
|
388
|
+
// layout: 12,
|
|
389
|
+
// main: {
|
|
390
|
+
// heading: "Are you sure you want to delete ?",
|
|
391
|
+
// },
|
|
392
|
+
// },
|
|
393
|
+
// },
|
|
394
|
+
{
|
|
395
|
+
type: "Control",
|
|
396
|
+
scope: "#/properties/ConfirmDeleteCompButton",
|
|
397
|
+
options: {
|
|
398
|
+
widget: "Button",
|
|
399
|
+
},
|
|
400
|
+
config: {
|
|
401
|
+
layout: 3,
|
|
402
|
+
main: {
|
|
403
|
+
name: "Yes",
|
|
404
|
+
startIcon: "ApproveIcon",
|
|
405
|
+
variant: "contained",
|
|
406
|
+
color: "info",
|
|
407
|
+
type: "text",
|
|
408
|
+
onClick: "Delete_Components",
|
|
409
|
+
size: "small",
|
|
410
|
+
},
|
|
411
|
+
style: {
|
|
412
|
+
// marginBottom: "8px",
|
|
413
|
+
width: { xs: "100%", sm: "100%", md: "25%", lg: "20%" },
|
|
414
|
+
// float: "left",
|
|
415
|
+
},
|
|
416
|
+
},
|
|
417
|
+
},
|
|
418
|
+
{
|
|
419
|
+
type: "Control",
|
|
420
|
+
scope: "#/properties/CancelDeleteCompButton",
|
|
421
|
+
options: {
|
|
422
|
+
widget: "Button",
|
|
423
|
+
},
|
|
424
|
+
config: {
|
|
425
|
+
layout: 3,
|
|
426
|
+
main: {
|
|
427
|
+
name: "No",
|
|
428
|
+
startIcon: "ApproveIcon",
|
|
429
|
+
variant: "contained",
|
|
430
|
+
color: "info",
|
|
431
|
+
type: "text",
|
|
432
|
+
onClick: "deletePopUpComponent",
|
|
433
|
+
size: "small",
|
|
434
|
+
},
|
|
435
|
+
|
|
436
|
+
style: {
|
|
437
|
+
// marginBottom: "8px",
|
|
438
|
+
width: { xs: "100%", sm: "100%", md: "25%", lg: "20%" },
|
|
439
|
+
// float: "left",
|
|
440
|
+
},
|
|
441
|
+
},
|
|
442
|
+
},
|
|
443
|
+
// {
|
|
444
|
+
// type: "Control",
|
|
445
|
+
// scope: "#/properties/emptyBox",
|
|
446
|
+
|
|
447
|
+
// options: {
|
|
448
|
+
// widget: "Box",
|
|
449
|
+
// },
|
|
450
|
+
// config: {
|
|
451
|
+
// layout: 6,
|
|
452
|
+
// },
|
|
453
|
+
// },
|
|
454
|
+
]
|
|
455
|
+
},
|
|
449
456
|
{
|
|
450
457
|
type: "Control",
|
|
451
458
|
scope: "#/properties/btn",
|