impaktapps-ui-builder 0.0.100 → 0.0.101

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.
Files changed (56) hide show
  1. package/dist/impaktapps-ui-builder.es.js +1825 -1436
  2. package/dist/impaktapps-ui-builder.es.js.map +1 -1
  3. package/dist/impaktapps-ui-builder.umd.js +16 -16
  4. package/dist/impaktapps-ui-builder.umd.js.map +1 -1
  5. package/dist/src/impaktapps-ui-builder/builder/build/buildThoughtOfTheDay.d.ts +1 -0
  6. package/dist/src/impaktapps-ui-builder/builder/build/uischema/button.d.ts +0 -1
  7. package/dist/src/impaktapps-ui-builder/builder/build/uischema/card.d.ts +90 -23
  8. package/dist/src/impaktapps-ui-builder/builder/build/uischema/eventSection.d.ts +55 -2
  9. package/dist/src/impaktapps-ui-builder/builder/build/uischema/graph.d.ts +52 -22
  10. package/dist/src/impaktapps-ui-builder/builder/build/uischema/leaderBoard.d.ts +10 -301
  11. package/dist/src/impaktapps-ui-builder/builder/build/uischema/progressBar.d.ts +6 -1
  12. package/dist/src/impaktapps-ui-builder/builder/build/uischema/tableSection.d.ts +50 -2
  13. package/dist/src/impaktapps-ui-builder/builder/build/uischema/thoughtOfTheDay.d.ts +17 -0
  14. package/dist/src/impaktapps-ui-builder/builder/build/uischema/timer.d.ts +1 -14
  15. package/dist/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/schema.d.ts +3 -0
  16. package/dist/src/impaktapps-ui-builder/builder/elements/UiSchema/event/schema.d.ts +3 -0
  17. package/dist/src/impaktapps-ui-builder/builder/services/component.d.ts +8 -2
  18. package/dist/src/impaktapps-ui-builder/builder/services/event.d.ts +5 -0
  19. package/dist/src/impaktapps-ui-builder/builder/services/pageMaster.d.ts +5 -0
  20. package/dist/src/impaktapps-ui-builder/builder/services/utils.d.ts +1 -1
  21. package/package.json +5 -1
  22. package/src/impaktapps-ui-builder/builder/build/buildCard.ts +7 -3
  23. package/src/impaktapps-ui-builder/builder/build/buildConfig.ts +1 -1
  24. package/src/impaktapps-ui-builder/builder/build/buildHorizontalBarGraph.ts +18 -14
  25. package/src/impaktapps-ui-builder/builder/build/buildInputSlider.ts +1 -1
  26. package/src/impaktapps-ui-builder/builder/build/buildLeaderboard.ts +18 -13
  27. package/src/impaktapps-ui-builder/builder/build/buildLineGraph.ts +10 -2
  28. package/src/impaktapps-ui-builder/builder/build/buildPieGraph.ts +4 -15
  29. package/src/impaktapps-ui-builder/builder/build/buildRankCard.ts +4 -10
  30. package/src/impaktapps-ui-builder/builder/build/buildStackBarGraph.ts +16 -4
  31. package/src/impaktapps-ui-builder/builder/build/buildThoughtOfTheDay.ts +22 -0
  32. package/src/impaktapps-ui-builder/builder/build/buildUiSchema.ts +7 -0
  33. package/src/impaktapps-ui-builder/builder/build/buildUplaodFile.ts +16 -19
  34. package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +17 -10
  35. package/src/impaktapps-ui-builder/builder/build/uischema/button.ts +0 -1
  36. package/src/impaktapps-ui-builder/builder/build/uischema/card.ts +102 -46
  37. package/src/impaktapps-ui-builder/builder/build/uischema/eventSection.ts +44 -0
  38. package/src/impaktapps-ui-builder/builder/build/uischema/graph.ts +13 -28
  39. package/src/impaktapps-ui-builder/builder/build/uischema/leaderBoard.ts +10 -366
  40. package/src/impaktapps-ui-builder/builder/build/uischema/progressBar.ts +1 -1
  41. package/src/impaktapps-ui-builder/builder/build/uischema/rankCard.ts +1 -1
  42. package/src/impaktapps-ui-builder/builder/build/uischema/runnerBoyProgressBar.ts +1 -1
  43. package/src/impaktapps-ui-builder/builder/build/uischema/tableSection.ts +45 -1
  44. package/src/impaktapps-ui-builder/builder/build/uischema/thoughtOfTheDay.ts +14 -0
  45. package/src/impaktapps-ui-builder/builder/build/uischema/timer.ts +2 -16
  46. package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/schema.ts +5 -1
  47. package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/uiSchema.ts +271 -154
  48. package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/schema.ts +4 -1
  49. package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/uiSchema.ts +327 -120
  50. package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/schema.ts +4 -1
  51. package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/uiSchema.ts +188 -65
  52. package/src/impaktapps-ui-builder/builder/services/component.ts +94 -8
  53. package/src/impaktapps-ui-builder/builder/services/event.ts +19 -4
  54. package/src/impaktapps-ui-builder/builder/services/pageMaster.ts +20 -2
  55. package/src/impaktapps-ui-builder/builder/services/utils.ts +2 -2
  56. package/src/impaktapps-ui-builder/runtime/services/events.ts +23 -19
@@ -3,7 +3,6 @@ import buildUiSchema from "./buildUiSchema";
3
3
  import _ from "lodash";
4
4
  import { createLayoutFormat } from "./buildConfig";
5
5
 
6
-
7
6
  export const buildLeaderBoard = (config) => {
8
7
  const LeaderBoard: any = _.cloneDeep(leaderBoard)
9
8
  if (config.elements) {
@@ -14,29 +13,35 @@ export const buildLeaderBoard = (config) => {
14
13
  const widgetSchema = { widget: buildUiSchema(e), accessorKey: e.name, header: e.label || e.name, };
15
14
  return { ...widgetSchema };
16
15
  })
17
- LeaderBoard.elements[9].elements = modifyColumns;
16
+ LeaderBoard.elements = modifyColumns;
18
17
  }
19
18
  LeaderBoard.config.main.label = config.label
20
19
  if (config.name) {
21
- LeaderBoard.elements[0].scope = `#/properties/${config.name}/properties/firstImage`;
22
- LeaderBoard.elements[3].scope = `#/properties/${config.name}/properties/firstName`
23
- LeaderBoard.elements[1].scope = `#/properties/${config.name}/properties/secondImage`;
24
- LeaderBoard.elements[4].scope = `#/properties/${config.name}/properties/secondName`
25
- LeaderBoard.elements[2].scope = `#/properties/${config.name}/properties/thirdImage`;
26
- LeaderBoard.elements[5].scope = `#/properties/${config.name}/properties/thirdName`
27
- LeaderBoard.elements[9].scope = `#/properties/${config.name}/properties/table`
20
+ LeaderBoard.scope=`#/properties/${config.name}`
28
21
  }
29
22
  if (config.firstImage) {
30
- LeaderBoard.elements[0].config.main.url = config.firstImage;
23
+ LeaderBoard.config.main.firstImage = config.firstImage;
31
24
  }
32
25
  if (config.secondImage) {
33
- LeaderBoard.elements[1].config.main.url = config.secondImage;
26
+ LeaderBoard.config.main.secondImage = config.secondImage;
34
27
  }
35
- if (config.secondImage) {
36
- LeaderBoard.elements[2].config.main.url = config.thirdImage;
28
+ if (config.thirdImage) {
29
+ LeaderBoard.config.main.thirdImage = config.thirdImage;
30
+ }
31
+ if (config.nameKey) {
32
+ LeaderBoard.config.main.nameKey = config.nameKey;
33
+ }
34
+ if (config.imageKey) {
35
+ LeaderBoard.config.main.imageKey = config.imageKey;
36
+ }
37
+ if (config.scoreKey) {
38
+ LeaderBoard.config.main.scoreKey = config.scoreKey;
37
39
  }
38
40
  if (config.layout) {
39
41
  LeaderBoard.config.layout = createLayoutFormat(config.layout);
40
42
  }
43
+ if (config.style) {
44
+ LeaderBoard.config.style = JSON.parse(config.style)
45
+ }
41
46
  return LeaderBoard
42
47
  }
@@ -11,6 +11,11 @@ export const buildLineGraph = (config, componentScope) => {
11
11
  if (config.height) {
12
12
  lineGraph.config.style.containerStyle.height = config.height;
13
13
  }
14
+ if (config.leftMargin) {
15
+ lineGraph.config.style.labelStyle.margin ={
16
+ left: config.leftMargin
17
+ }
18
+ }
14
19
  if (config.bottomLabel) {
15
20
  lineGraph.config.main.bottomLabel = config.bottomLabel;
16
21
  }
@@ -24,10 +29,13 @@ export const buildLineGraph = (config, componentScope) => {
24
29
  lineGraph.config.main.leftLabel = config.leftLabel;
25
30
  }
26
31
  if (config.legendHide) {
27
- lineGraph.config.main.legendAvailabe = config.legendHide==="YES"?false:true;
32
+ lineGraph.config.main.legendAvailable = config.legendHide==="YES"?false:true;
33
+ }
34
+ if (config.bottomAxisAngle) {
35
+ lineGraph.config.main.bottomAxisAngle = config.bottomAxisAngle==="YES"?true:false;
28
36
  }
29
37
  if (config.legendLabels) {
30
- lineGraph.config.main.tooltipDataKey = flatObjectValueInArray(config.legendLabels);
38
+ lineGraph.config.main.legendLabels = flatObjectValueInArray(config.legendLabels);
31
39
  }
32
40
 
33
41
  if (config.pieArcColors) {
@@ -7,33 +7,22 @@ export const buildPieGraph = (config, componentScope) => {
7
7
  pieGraph.config.layout = createLayoutFormat(config.layout);
8
8
  }
9
9
  if (config.height) {
10
- pieGraph.config.style =
11
- {
12
- containerStyle: {
13
- height: config.height
14
- }
15
- };
16
-
10
+ pieGraph.config.style.containerStyle.height = config.height;
17
11
  }
18
12
  if (config.legendHide) {
19
- pieGraph.config.main.legendAvailabe = config.legendHide === "YES" ? false : true;
13
+ pieGraph.config.main.legendAvailable = config.legendHide === "YES" ? false : true;
20
14
  }
21
15
  pieGraph.scope = componentScope;
22
16
  pieGraph.config.main.header = config.heading;
23
17
 
24
18
  if (config.legendLabels) {
25
- pieGraph.config.main.tooltipDataKey = flatObjectValueInArray(config.legendLabels);
19
+ pieGraph.config.main.legendLabels = flatObjectValueInArray(config.legendLabels);
26
20
  }
27
21
  if (config.xAxisValue) {
28
22
  pieGraph.config.main.xAxisValue = config.xAxisValue;
29
23
  }
30
24
  if (config.pieArcColors) {
31
- pieGraph.config.style = {
32
- pieStyle: {
33
- colorRange: flatObjectValueInArray(config.pieArcColors)
34
- }
35
- }
36
-
25
+ pieGraph.config.style.pieStyle.colorRange = flatObjectValueInArray(config.pieArcColors);
37
26
  }
38
27
  return pieGraph;
39
28
  }
@@ -6,17 +6,11 @@ export const buildRankCard = (config,componentScope) =>{
6
6
  const rankCard: any = _.cloneDeep(RankCard);
7
7
  rankCard.scope = componentScope;
8
8
 
9
- if(config.image){
10
- rankCard.config.main.url = config.image;
11
- }
12
- if(config.title){
13
- rankCard.config.main.title = config.title
14
- }
15
- if(config.description){
16
- rankCard.config.main.description = config.description
17
- }
18
9
  if(config.rank){
19
- rankCard.config.main.rank = `#${config.rank}`
10
+ rankCard.config.main.rank = `${config.rank}`
11
+ }
12
+ if(config.height){
13
+ rankCard.config.main.height = `${config.height}px`
20
14
  }
21
15
  if(config.layout){
22
16
  rankCard.config.layout = createLayoutFormat(config.layout)
@@ -1,4 +1,4 @@
1
- import { createLayoutFormat } from "./buildConfig";
1
+ import { createLayoutFormat, flatObjectValueInArray } from "./buildConfig";
2
2
  import { BarGraph } from "./uischema/graph";
3
3
  import _ from "lodash";
4
4
 
@@ -9,11 +9,18 @@ export const buildStackbarGraph = (config:any,componentScope:string) => {
9
9
  }
10
10
  if (config.legendHide) {
11
11
  barGraph.config.main.legendAvailable = config.legendHide;
12
+ barGraph.config.main.legendAvailable = config.legendHide==="YES"?false:true;
12
13
  }
13
- barGraph.config.main.type = config.graphType;
14
+ if (config.bottomAxisAngle) {
15
+ barGraph.config.main.bottomAxisAngle = config.bottomAxisAngle==="YES"?true:false;
16
+ }
17
+ barGraph.config.main.type = config?.graphType ?? "BarGraph";
14
18
  barGraph.config.main.header = config.heading;
15
- if (config.barColor) {
16
- barGraph.config.barStyle.color = config.barColor;
19
+ if (config.legendLabels) {
20
+ barGraph.config.main.legendLabels = flatObjectValueInArray(config.legendLabels);
21
+ }
22
+ if (config.pieArcColors) {
23
+ barGraph.config.style.barStyle.colorRange = flatObjectValueInArray(config.pieArcColors);
17
24
  }
18
25
  if (config.xAxisValue) {
19
26
  barGraph.config.main.xAxisValue = config.xAxisValue;
@@ -21,6 +28,11 @@ export const buildStackbarGraph = (config:any,componentScope:string) => {
21
28
  if (config.height) {
22
29
  barGraph.config.style.containerStyle.height = config.height;
23
30
  }
31
+ if (config.leftMargin) {
32
+ barGraph.config.style.labelStyle.margin ={
33
+ left: config.leftMargin
34
+ }
35
+ }
24
36
  if (config.bottomLabel) {
25
37
  barGraph.config.main.bottomLabel = config.bottomLabel;
26
38
  }
@@ -0,0 +1,22 @@
1
+ import Thought from "./uischema/thoughtOfTheDay";
2
+ import _ from "lodash";
3
+ import { createLayoutFormat } from "./buildConfig";
4
+
5
+ export const buildThoughtOfTheDay = (config,componentScope) =>{
6
+ const thought: any = _.cloneDeep(Thought);
7
+ thought.scope = componentScope;
8
+
9
+ if(config.thought){
10
+ thought.config.main.thought = `${config.thought}`
11
+ }
12
+ if(config.layout){
13
+ thought.config.layout = createLayoutFormat(config.layout)
14
+ }
15
+ if(config.label){
16
+ thought.config.main.label = config.label;
17
+ }
18
+ if (config.style) {
19
+ thought.config.style = JSON.parse(config.style)
20
+ }
21
+ return thought;
22
+ }
@@ -39,6 +39,7 @@ import { buildPopUp } from "./buildPop";
39
39
  import { buildDataGrid } from "./buildDataGrid";
40
40
  import { buildInputSlider } from "./buildInputSlider";
41
41
  import { buildTreeMap } from "./buildTreeMap";
42
+ import { buildThoughtOfTheDay } from "./buildThoughtOfTheDay";
42
43
  export let schema = {
43
44
  type: "object",
44
45
  properties: {},
@@ -264,6 +265,9 @@ const buildUiSchema = (config: any, store?: any) => {
264
265
  case "HorizontalStackBarGraph":
265
266
  elements = buildHorizontalBarGraph(config, componentScope);
266
267
  break;
268
+ default:
269
+ elements = buildStackbarGraph(config, componentScope);
270
+ break;
267
271
  }
268
272
  break;
269
273
  case "ProgressBar":
@@ -300,6 +304,9 @@ const buildUiSchema = (config: any, store?: any) => {
300
304
  case "LeaderBoard":
301
305
  elements = buildLeaderBoard(config);
302
306
  break;
307
+ case "Thought":
308
+ elements = buildThoughtOfTheDay(config, componentScope);
309
+ break;
303
310
  default:
304
311
  schema = {
305
312
  type: "object",
@@ -2,23 +2,20 @@ import { uploadFile } from "./uischema/file";
2
2
  import _ from "lodash";
3
3
  import { createLayoutFormat } from "./buildConfig";
4
4
 
5
- export const buildUploadFile = (config,componentScope)=>{
6
- const UploadFile: any = _.cloneDeep(uploadFile);
7
-
8
- UploadFile.scope = componentScope;
9
- UploadFile.config.main.label = config.label;
10
- if (config.layout) {
11
- UploadFile.config.layout = config.layout;
12
- }
13
- if(config.layout){
14
- uploadFile.config.layout = createLayoutFormat(config.layout)
15
- }
16
- if (config.style) {
17
- UploadFile.config.style = config.style;
18
- }
19
- if (config.required) {
20
- UploadFile.config.main.required = true;
21
- }
22
- UploadFile.config.main.errorMessage = config.errorMessage;
23
- return UploadFile;
5
+ export const buildUploadFile = (config, componentScope) => {
6
+ const UploadFile: any = _.cloneDeep(uploadFile);
7
+
8
+ UploadFile.scope = componentScope;
9
+ UploadFile.config.main.label = config.label;
10
+ if (config.layout) {
11
+ UploadFile.config.layout = createLayoutFormat(config.layout)
12
+ }
13
+ if (config.style) {
14
+ UploadFile.config.style = config.style;
15
+ }
16
+ if (config.required) {
17
+ UploadFile.config.main.required = true;
18
+ }
19
+ UploadFile.config.main.errorMessage = config.errorMessage;
20
+ return UploadFile;
24
21
  }
@@ -172,7 +172,7 @@ export const buildWrapper = (label: string, elements: any[]) => {
172
172
  width: "108%"
173
173
  },
174
174
  componentsBoxStyle: {
175
- marginLeft: "24px",
175
+ marginLeft: "12px",
176
176
  },
177
177
  defaultStyle: true
178
178
  },
@@ -343,19 +343,18 @@ export const buildPropertiesSection = function (type: String) {
343
343
  case "RankCard":
344
344
  uiSchema.elements = [
345
345
  getInputField("rank", "Rank"),
346
- getInputField("image", "Image Url"),
347
- getInputField("title", "Card Title"),
348
- getInputField("description", "Card Description"),
349
- emptyBox("RankCardEmpty1"), emptyBox("RankCardEmpty2")];
346
+ getInputField("height", "Height"),
347
+ emptyBox("RankCardEmpty1", {xs: 0, sm: 0, md: 4, lg: 4 })];
350
348
  break;
351
349
  case "LeaderBoard":
352
350
  uiSchema.elements = [
353
- getInputField("valueLabel", "Value Label"),
354
351
  getInputField("firstImage", "First Image url"),
355
352
  getInputField("secondImage", "Second Image url"),
356
353
  getInputField("thirdImage", "Third Image url"),
357
- emptyBox("LeaderBoardEmpty1"), emptyBox("LeaderBoardEmpty2"),
358
- getTextArea("functionCode", "Write Compare Code", false),
354
+ getInputField("nameKey", "Key for Name"),
355
+ getInputField("imageKey", "Key for Image"),
356
+ getInputField("scoreKey", "Key for comparing parameter"),
357
+ emptyBox("LeaderBoardEmpty1", {xs: 6, sm: 6, md: 0, lg: 0 }),
359
358
  ];
360
359
  break;
361
360
  case "CardSlider":
@@ -376,8 +375,9 @@ export const buildPropertiesSection = function (type: String) {
376
375
  uiSchema.elements = [
377
376
  getInputField("url", "Image Url"),
378
377
  getInputField("label", "Label"),
378
+ getInputField("titleIcon", "Unicode of Icon for title"),
379
379
  getInputField("description", "Description"),
380
- emptyBox("cardEmpty", {xs: 6, sm: 6, md: 0, lg: 0 })
380
+ emptyBox("cardEmpty", {xs: 0, sm: 0, md: 8, lg: 8 })
381
381
  ];
382
382
  break;
383
383
  case "Button":
@@ -411,7 +411,9 @@ export const buildPropertiesSection = function (type: String) {
411
411
  getRadioInputField("legendHide", "Legend Hide", ["YES", "No"]),
412
412
  getInputField("yAxisValue", "Y-AxisValue"),
413
413
  getInputField("xAxisValue", "X-AxisValue"),
414
- emptyBox("GraphEmpty2"),
414
+ getRadioInputField("bottomAxisAngle", "Bottom Axis Angled", ["YES", "No"]),
415
+ getInputField("leftMargin", "Left Margin"),
416
+ emptyBox("GraphEmpty1", {xs: 6, sm: 0, md: 8, lg: 8 }),
415
417
  getArrayControl("legendLabels", "label"),
416
418
  getArrayControl("pieArcColors", "color"),
417
419
  ];
@@ -483,6 +485,11 @@ export const buildPropertiesSection = function (type: String) {
483
485
  emptyBox("MultipleSelectEmpty2")
484
486
  ]
485
487
  break;
488
+ case "Thought":
489
+ uiSchema.elements = [
490
+ getTextArea("thought", "Today's thought", false),
491
+ ]
492
+ break;
486
493
  }
487
494
  return uiSchema;
488
495
  };
@@ -9,7 +9,6 @@ export default {
9
9
  main: {
10
10
  name: "Compare",
11
11
  variant: "contained",
12
- color: "info",
13
12
  type: "text",
14
13
  startIcon:"",
15
14
  styleDefault:false,
@@ -2,34 +2,39 @@ export default function Card(theme){
2
2
  const uiSchema = {
3
3
  type: "WrapperLayout",
4
4
  config: {
5
- main: {
6
- },
5
+ main: {},
7
6
  wrapperStyle: {
8
-
7
+ position: "relative",
8
+ top: "50%",
9
+ transform: "translateY(-50%)"
9
10
  },
10
11
  componentsBoxStyle: {
12
+ boxShadow: "0px 2px 4px rgba(0, 0, 0, 0.1)",
11
13
  flexDirection: "row",
12
14
  flexWrap: "nowrap",
13
- width: "100%",
15
+ width: "100% !important",
14
16
  background: "transparent",
15
- border: `1.5px solid ${theme.palette.primary.main}`,
16
- borderRadius: "20px",
17
- padding: "0px 20px 0px 20px",
17
+ border: `1.5px solid ${theme.palette.primary.light}`,
18
+ borderRadius: "8px",
19
+ padding: "0px 4px",
20
+ height: "100%",
21
+ alignItems: "center",
22
+ marginLeft: "0px",
18
23
  "&: hover": {
19
- background: `${theme.palette.primary.main}`,
20
- border: `1.5px solid black`,
21
- "& p": {
22
- color: "white"
23
- }
24
- }
24
+ background: `${theme.palette.primary.main}`,
25
+ border: `1.5px solid black`,
26
+ "& p": {
27
+ color: "white",
28
+ },
29
+ },
25
30
  },
26
- layout: { xs: 12, sm: 12, md: 6, lg: 6, },
31
+ layout: { xs: 12, sm: 12, md: 6, lg: 6 },
27
32
  },
28
33
  elements: [
29
34
  {
30
35
  type: "HorizontalLayout",
31
36
  config: {
32
- layout: 8
37
+ layout: 8,
33
38
  },
34
39
  elements: [
35
40
  {
@@ -37,17 +42,16 @@ export default function Card(theme){
37
42
  config: {
38
43
  main: {
39
44
  columnSpacing: 0,
40
- gap: 0
45
+ gap: 0,
41
46
  },
42
47
  wrapperStyle: {
43
- marginTop: "4px",
44
- background: "transparent"
48
+ background: "transparent",
45
49
  },
46
50
  componentsBoxStyle: {
47
51
  flexDirection: "column",
48
52
  flexWrap: "nowrap",
49
- width: '100%',
50
- height: 'inherit',
53
+ width: "100%",
54
+ height: "inherit",
51
55
  background: "transparent",
52
56
  borderRadius: "0px",
53
57
  },
@@ -55,27 +59,80 @@ export default function Card(theme){
55
59
  },
56
60
  elements: [
57
61
  {
58
- type: "Control",
59
- scope: "#/properties/programType",
62
+ type: "WrapperLayout",
60
63
  config: {
61
64
  main: {
62
- heading: "$5000.00",
65
+ columnSpacing: 0,
66
+ gap: 0,
63
67
  },
64
- style: {
65
- color: "black",
66
- display: "flex",
67
- fontSize: { xs: "24px", md: "28px" },
68
- fontWeight: "bold",
69
- background: "inherit",
70
- justifyContent: "flex-start",
71
- width: "calc(100%+8px)",
72
- margin: "-8px",
68
+ wrapperStyle: {
69
+ background: "transparent",
70
+ },
71
+ componentsBoxStyle: {
72
+ flexDirection: "row",
73
+ flexWrap: "nowrap",
74
+ width: "100%",
75
+ height: "0",
76
+ background: "transparent",
77
+ borderRadius: "0px",
78
+ marginLeft: "-10px",
79
+ marginTop: "-8px",
80
+ justifyContent: "start",
81
+ position: "relative"
73
82
  },
74
83
  layout: 12,
75
84
  },
76
- options: {
77
- widget: "Box",
78
- },
85
+ elements: [
86
+ {
87
+ type: "Control",
88
+ scope: "#/properties/programType",
89
+ config: {
90
+ main: {
91
+ heading: "",
92
+ },
93
+ style: {
94
+ color: "black",
95
+ display: "flex",
96
+ fontSize: { xs: "24px", md: "28px" },
97
+ fontWeight: "bold",
98
+ background: "inherit",
99
+ justifyContent: "flex-start",
100
+ width: "auto",
101
+ margin: "-8px",
102
+ height: 0
103
+ },
104
+ // layout: 1,
105
+ },
106
+ options: {
107
+ widget: "Box",
108
+ },
109
+ },
110
+ {
111
+ type: "Control",
112
+ scope: "#/properties/programType",
113
+ config: {
114
+ main: {
115
+ heading: "5000.00",
116
+ },
117
+ style: {
118
+ color: "black",
119
+ display: "flex",
120
+ fontSize: { xs: "24px", md: "28px" },
121
+ fontWeight: "bold",
122
+ background: "inherit",
123
+ justifyContent: "flex-start",
124
+ width: "auto",
125
+ margin: "-8px",
126
+ position: "absolute",
127
+ left: "8px"
128
+ },
129
+ // layout: 11,
130
+ },
131
+ options: {
132
+ widget: "Box",
133
+ },
134
+ },
135
+ ],
79
136
  },
80
137
  {
81
138
  type: "Control",
@@ -90,20 +147,21 @@ export default function Card(theme){
90
147
  justifyContent: "center",
91
148
  textWrap: "wrap",
92
149
  background: "inherit",
93
- width: "calc(100%+8pc)",
150
+ width: "calc(100%+8px)",
94
151
  margin: "-8px",
95
- lineHeight: "1"
152
+ marginTop: "12px",
153
+ lineHeight: "1",
96
154
  },
97
155
  layout: 12,
98
156
  },
99
-
157
+
100
158
  options: {
101
159
  widget: "Box",
102
160
  },
103
161
  },
104
- ]
162
+ ],
105
163
  },
106
- ]
164
+ ],
107
165
  },
108
166
  {
109
167
  type: "Control",
@@ -114,16 +172,15 @@ export default function Card(theme){
114
172
  },
115
173
  style: {
116
174
  containerStyle: {
117
- height: '100%',
175
+ height: "100%",
118
176
  display: "flex",
119
- justifyContent: "center"
177
+ justifyContent: "end",
120
178
  },
121
179
  imageStyle: {
122
- // width: "none",
123
- height: '100%',
124
180
  fontSize: "none",
125
181
  padding: "4px",
126
- marginLeft: "8px"
182
+ margin: "0px 0px 0px 8px",
183
+ height: "64px",
127
184
  },
128
185
  },
129
186
  layout: 4,
@@ -132,7 +189,6 @@ export default function Card(theme){
132
189
  widget: "Image",
133
190
  },
134
191
  },
135
-
136
192
  ],
137
193
  };
138
194
 
@@ -35,6 +35,29 @@ export const EventSection = (theme)=>{
35
35
  },
36
36
  }
37
37
  },
38
+ {
39
+ widget: {
40
+ type: "Control",
41
+ scope: "#/properties/Paste_Event",
42
+
43
+ options: {
44
+ widget: "IconButton",
45
+ },
46
+ config: {
47
+ main: {
48
+ // color: "info",
49
+ onClick: "copyPasteElement",
50
+ size: "small",
51
+ icon: "PasteIcon",
52
+ iconLabel: "Paste",
53
+ styleDefault: true,
54
+ },
55
+ style: {
56
+ mt: "6px",
57
+ },
58
+ },
59
+ }
60
+ },
38
61
  ]
39
62
  },
40
63
  disableAction: true,
@@ -98,6 +121,27 @@ export const EventSection = (theme)=>{
98
121
  },
99
122
  },
100
123
  },
124
+ {
125
+ header: "Copy",
126
+ field: "Copy_Event",
127
+ flex: 1,
128
+ widget: {
129
+ type: "Control",
130
+ scope: "#/properties/Copy_Event",
131
+ options: {
132
+ widget: "IconButton",
133
+ },
134
+ config: {
135
+ main: {
136
+ icon: "FileCopyIcon",
137
+ // color: "error",
138
+ onClick: "copyPasteElement",
139
+ tooltipMessage: "Reject This Record",
140
+ styleDefault: true,
141
+ },
142
+ },
143
+ },
144
+ },
101
145
  ]
102
146
  }]}
103
147
  return uiSchema