impaktapps-ui-builder 0.0.101-alpha.84 → 0.0.101-alpha.86
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 +116 -2
- 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/Component/uiSchema.ts +56 -56
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/uiSchema.ts +57 -56
- package/src/impaktapps-ui-builder/builder/services/component.ts +1 -1
package/package.json
CHANGED
|
@@ -262,64 +262,64 @@ export const componentBasicUiSchema: any = (theme)=>{
|
|
|
262
262
|
},
|
|
263
263
|
],
|
|
264
264
|
},
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
265
|
+
{
|
|
266
|
+
type: "HorizontalLayout",
|
|
267
|
+
config: {
|
|
268
|
+
layout:{xs:12,sm: 6}
|
|
269
|
+
},
|
|
270
|
+
elements: [
|
|
271
|
+
{
|
|
272
|
+
type: "Control",
|
|
273
|
+
scope: "#/properties/RemoveItemButton",
|
|
274
|
+
options: {
|
|
275
|
+
widget: "IconButton",
|
|
276
|
+
},
|
|
277
|
+
config: {
|
|
278
|
+
layout: { xs: 1, sm: 1 },
|
|
279
|
+
main: {
|
|
280
|
+
onClick: "RemoveItemButton",
|
|
281
|
+
size: "large",
|
|
282
|
+
icon: "RejectIcon",
|
|
283
|
+
styleDefault: true,
|
|
284
|
+
},
|
|
285
|
+
style:{
|
|
286
|
+
marginLeft: "-10px"
|
|
287
|
+
}
|
|
288
|
+
},
|
|
289
|
+
},
|
|
290
290
|
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
291
|
+
{
|
|
292
|
+
type: "Control",
|
|
293
|
+
scope: "#/properties/copiedElementDetails",
|
|
294
294
|
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
295
|
+
options: {
|
|
296
|
+
widget: "Box",
|
|
297
|
+
},
|
|
298
|
+
config: {
|
|
299
|
+
layout: { xs: 6, sm: 6 },
|
|
300
|
+
main: {
|
|
301
|
+
heading: "No element copied",
|
|
302
|
+
},
|
|
303
|
+
style: {
|
|
304
|
+
color: "#535557",
|
|
305
|
+
marginLeft: "-10px",
|
|
306
|
+
fontSize: "12px",
|
|
307
|
+
marginTop: "4px"
|
|
308
|
+
},
|
|
309
|
+
},
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
type: "Control",
|
|
313
|
+
scope: "#/properties/EmptyBox",
|
|
314
|
+
options: {
|
|
315
|
+
widget: "EmptyBox",
|
|
316
|
+
},
|
|
317
|
+
config: {
|
|
318
|
+
layout: { xs: 1, sm: 5 },
|
|
319
|
+
},
|
|
320
|
+
},
|
|
321
|
+
]
|
|
322
|
+
},
|
|
323
323
|
|
|
324
324
|
{
|
|
325
325
|
type: "WrapperLayout",
|
|
@@ -161,6 +161,7 @@ export const PageMasterUiSchema: any = (theme) => {
|
|
|
161
161
|
icon: "TablePaste",
|
|
162
162
|
iconLabel: "Paste",
|
|
163
163
|
styleDefault: true,
|
|
164
|
+
title: ""
|
|
164
165
|
},
|
|
165
166
|
style: {
|
|
166
167
|
mt: "6px",
|
|
@@ -436,64 +437,64 @@ export const PageMasterUiSchema: any = (theme) => {
|
|
|
436
437
|
|
|
437
438
|
],
|
|
438
439
|
},
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
440
|
+
{
|
|
441
|
+
type: "HorizontalLayout",
|
|
442
|
+
config: {
|
|
443
|
+
layout:{xs:12,sm: 9}
|
|
444
|
+
},
|
|
445
|
+
elements: [
|
|
446
|
+
{
|
|
447
|
+
type: "Control",
|
|
448
|
+
scope: "#/properties/RemoveItemButton",
|
|
449
|
+
options: {
|
|
450
|
+
widget: "IconButton",
|
|
451
|
+
},
|
|
452
|
+
config: {
|
|
453
|
+
layout: { xs: 1, sm: 1 },
|
|
454
|
+
main: {
|
|
455
|
+
onClick: "RemoveItemButton",
|
|
456
|
+
size: "large",
|
|
457
|
+
icon: "RejectIcon",
|
|
458
|
+
styleDefault: true,
|
|
459
|
+
},
|
|
460
|
+
style:{
|
|
461
|
+
marginLeft: "-5px"
|
|
462
|
+
}
|
|
463
|
+
},
|
|
464
|
+
},
|
|
464
465
|
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
466
|
+
{
|
|
467
|
+
type: "Control",
|
|
468
|
+
scope: "#/properties/copiedElementDetails",
|
|
468
469
|
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
470
|
+
options: {
|
|
471
|
+
widget: "Box",
|
|
472
|
+
},
|
|
473
|
+
config: {
|
|
474
|
+
layout: { xs: 6, sm: 6 },
|
|
475
|
+
main: {
|
|
476
|
+
heading: "No element copied",
|
|
477
|
+
},
|
|
478
|
+
style: {
|
|
479
|
+
color: "#535557",
|
|
480
|
+
marginLeft: "-30px",
|
|
481
|
+
fontSize: "12px",
|
|
482
|
+
marginTop: "4px"
|
|
483
|
+
},
|
|
484
|
+
},
|
|
485
|
+
},
|
|
486
|
+
{
|
|
487
|
+
type: "Control",
|
|
488
|
+
scope: "#/properties/EmptyBox",
|
|
489
|
+
options: {
|
|
490
|
+
widget: "EmptyBox",
|
|
491
|
+
},
|
|
492
|
+
config: {
|
|
493
|
+
layout: { xs: 1, sm: 5 },
|
|
494
|
+
},
|
|
495
|
+
},
|
|
496
|
+
]
|
|
497
|
+
},
|
|
497
498
|
{
|
|
498
499
|
scope: "#/properties/Remarks Container",
|
|
499
500
|
type: "WrapperLayout",
|
|
@@ -368,7 +368,7 @@ export default (store: any, dynamicData: any, submitHandler: any, service: any)
|
|
|
368
368
|
},
|
|
369
369
|
ElementPathSetter: function(uiSchema: any,copiedFormData?: any){
|
|
370
370
|
const formData = copiedFormData || JSON.parse(sessionStorage.getItem("copiedConfig"));
|
|
371
|
-
|
|
371
|
+
uiSchema.elements[2].elements[1].config.main.heading = `Copied Path: ${formData.pageName}`;
|
|
372
372
|
}
|
|
373
373
|
}
|
|
374
374
|
};
|