impaktapps-ui-builder 1.0.4 → 1.0.9-4.card.2

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 (80) hide show
  1. package/dist/impaktapps-ui-builder.es.js +704 -684
  2. package/dist/impaktapps-ui-builder.es.js.map +1 -1
  3. package/dist/impaktapps-ui-builder.umd.js +14 -14
  4. package/dist/impaktapps-ui-builder.umd.js.map +1 -1
  5. package/dist/src/impaktapps-ui-builder/builder/build/buildArray.d.ts +1 -11
  6. package/dist/src/impaktapps-ui-builder/builder/build/buildConfig.d.ts +1 -1
  7. package/dist/src/impaktapps-ui-builder/builder/build/buildHorizontalLayout.d.ts +1 -0
  8. package/dist/src/impaktapps-ui-builder/builder/build/buildImage.d.ts +1 -0
  9. package/dist/src/impaktapps-ui-builder/builder/build/uischema/apiSection.d.ts +1 -3
  10. package/dist/src/impaktapps-ui-builder/builder/build/uischema/box.d.ts +9 -2
  11. package/dist/src/impaktapps-ui-builder/builder/build/uischema/button.d.ts +6 -1
  12. package/dist/src/impaktapps-ui-builder/builder/build/uischema/card.d.ts +2 -0
  13. package/dist/src/impaktapps-ui-builder/builder/build/uischema/coreSection.d.ts +82 -72
  14. package/dist/src/impaktapps-ui-builder/builder/build/uischema/eventSection.d.ts +18 -50
  15. package/dist/src/impaktapps-ui-builder/builder/build/uischema/horizontalLayout.d.ts +13 -0
  16. package/dist/src/impaktapps-ui-builder/builder/build/uischema/refresh.d.ts +0 -3
  17. package/dist/src/impaktapps-ui-builder/builder/build/uischema/table.d.ts +1 -0
  18. package/dist/src/impaktapps-ui-builder/builder/build/uischema/tableSection.d.ts +14 -65
  19. package/dist/src/impaktapps-ui-builder/builder/build/uischema/validationSections.d.ts +48 -38
  20. package/dist/src/impaktapps-ui-builder/builder/build/uischema/valueTab.d.ts +0 -3
  21. package/dist/src/impaktapps-ui-builder/builder/build/uischema/wrapperSection.d.ts +1 -0
  22. package/dist/src/impaktapps-ui-builder/runtime/services/service.d.ts +3 -0
  23. package/package.json +1 -1
  24. package/src/impaktapps-ui-builder/builder/build/buildAadharCard.ts +2 -2
  25. package/src/impaktapps-ui-builder/builder/build/buildArray.ts +31 -15
  26. package/src/impaktapps-ui-builder/builder/build/buildButton.ts +1 -1
  27. package/src/impaktapps-ui-builder/builder/build/buildCheckbox.ts +1 -1
  28. package/src/impaktapps-ui-builder/builder/build/buildConfig.ts +20 -16
  29. package/src/impaktapps-ui-builder/builder/build/buildDataGrid.ts +2 -2
  30. package/src/impaktapps-ui-builder/builder/build/buildDate.ts +6 -0
  31. package/src/impaktapps-ui-builder/builder/build/buildDownloadFile.ts +1 -0
  32. package/src/impaktapps-ui-builder/builder/build/buildFileInput.ts +4 -1
  33. package/src/impaktapps-ui-builder/builder/build/buildHorizontalBarGraph.ts +1 -1
  34. package/src/impaktapps-ui-builder/builder/build/buildHorizontalLayout.ts +15 -0
  35. package/src/impaktapps-ui-builder/builder/build/buildImage.ts +35 -0
  36. package/src/impaktapps-ui-builder/builder/build/buildLabel.ts +3 -0
  37. package/src/impaktapps-ui-builder/builder/build/buildLeaderboard.ts +1 -1
  38. package/src/impaktapps-ui-builder/builder/build/buildLineGraph.ts +1 -1
  39. package/src/impaktapps-ui-builder/builder/build/buildMultiSelect.ts +3 -0
  40. package/src/impaktapps-ui-builder/builder/build/buildPieGraph.ts +1 -1
  41. package/src/impaktapps-ui-builder/builder/build/buildPop.ts +2 -2
  42. package/src/impaktapps-ui-builder/builder/build/buildRadio.ts +1 -1
  43. package/src/impaktapps-ui-builder/builder/build/buildSelect.ts +3 -0
  44. package/src/impaktapps-ui-builder/builder/build/buildStackBarGraph.ts +1 -1
  45. package/src/impaktapps-ui-builder/builder/build/buildTabSection.ts +3 -0
  46. package/src/impaktapps-ui-builder/builder/build/buildText.ts +6 -0
  47. package/src/impaktapps-ui-builder/builder/build/buildTextArea.ts +2 -2
  48. package/src/impaktapps-ui-builder/builder/build/buildThoughtOfTheDay.ts +1 -1
  49. package/src/impaktapps-ui-builder/builder/build/buildTreeMap.ts +2 -1
  50. package/src/impaktapps-ui-builder/builder/build/buildUiSchema.ts +27 -14
  51. package/src/impaktapps-ui-builder/builder/build/buildWrapperSection.ts +1 -1
  52. package/src/impaktapps-ui-builder/builder/build/uischema/apiSection.ts +0 -6
  53. package/src/impaktapps-ui-builder/builder/build/uischema/array.ts +1 -1
  54. package/src/impaktapps-ui-builder/builder/build/uischema/box.ts +4 -2
  55. package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +146 -130
  56. package/src/impaktapps-ui-builder/builder/build/uischema/button.ts +1 -1
  57. package/src/impaktapps-ui-builder/builder/build/uischema/card.ts +5 -3
  58. package/src/impaktapps-ui-builder/builder/build/uischema/coreSection.ts +58 -119
  59. package/src/impaktapps-ui-builder/builder/build/uischema/dateInputField.ts +2 -2
  60. package/src/impaktapps-ui-builder/builder/build/uischema/emptyBox.ts +1 -1
  61. package/src/impaktapps-ui-builder/builder/build/uischema/eventSection.ts +30 -54
  62. package/src/impaktapps-ui-builder/builder/build/uischema/file.ts +3 -3
  63. package/src/impaktapps-ui-builder/builder/build/uischema/horizontalLayout.ts +11 -0
  64. package/src/impaktapps-ui-builder/builder/build/uischema/multiSelect.ts +2 -2
  65. package/src/impaktapps-ui-builder/builder/build/uischema/refresh.ts +0 -3
  66. package/src/impaktapps-ui-builder/builder/build/uischema/selectInputField.ts +1 -1
  67. package/src/impaktapps-ui-builder/builder/build/uischema/table.ts +1 -0
  68. package/src/impaktapps-ui-builder/builder/build/uischema/tableSection.ts +29 -54
  69. package/src/impaktapps-ui-builder/builder/build/uischema/textInputField.ts +1 -1
  70. package/src/impaktapps-ui-builder/builder/build/uischema/validationSections.ts +58 -113
  71. package/src/impaktapps-ui-builder/builder/build/uischema/valueTab.ts +0 -3
  72. package/src/impaktapps-ui-builder/builder/build/uischema/wrapperSection.ts +1 -0
  73. package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/schema.ts +51 -15
  74. package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/uiSchema.ts +60 -118
  75. package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/schema.ts +1 -1
  76. package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/uiSchema.ts +77 -106
  77. package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/schema.ts +9 -4
  78. package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/uiSchema.ts +31 -55
  79. package/src/impaktapps-ui-builder/builder/services/component.ts +10 -4
  80. package/src/impaktapps-ui-builder/runtime/services/service.ts +22 -118
@@ -100,129 +100,71 @@ export const componentBasicUiSchema: any = (theme) => {
100
100
  widget: "EmptyBox",
101
101
  },
102
102
  },
103
- // {
104
- // type: "Control",
105
- // scope: "#/properties/layout",
106
- // options: {
107
- // widget: "Array",
108
- // },
109
- // config: {
110
- // layout: 12,
111
- // main: {
112
- // label: "Layout",
113
- // childElementLabel: "Layout",
114
- // },
115
- // style: {
116
- // marginLeft: "-24px",
117
- // marginBottom: "24px !important",
118
- // labelStyle: {
119
- // marginLeft: "24px",
120
- // },
121
- // detailsStyle: {
122
- // marginLeft: "24px",
123
- // }
124
- // }
125
- // },
126
- // elements: [
127
- // {
128
- // type: "Control",
129
- // scope: "#/properties/key",
130
- // options: {
131
- // widget: "SelectInputField",
132
- // },
133
- // config: {
134
- // layout: { xs: 6, sm: 6, md: 4, lg: 4 },
135
- // main: {
136
- // label: "Screen Size",
137
-
138
- // },
139
- // },
140
- // },
141
- // {
142
- // type: "Control",
143
- // scope: "#/properties/value",
144
-
145
- // options: {
146
- // widget: "InputField",
147
- // },
148
- // config: {
149
- // layout: { xs: 6, sm: 6, md: 4, lg: 4 },
150
- // main: {
151
- // label: "Value",
152
- // type:"number",
153
- // helperText:'Number should be in range of 0 to 12',
154
- // errorMessage:"Number Can't be greater than 12 and can't be less than 0.",
155
-
156
- // },
157
- // },
158
- // },
159
- // {
160
- // type: "Control",
161
- // scope: "#/properties/proc",
162
- // config: {
163
- // layout: { xs: 0, sm: 0, md: 4, lg: 4 },
164
- // },
165
- // options: {
166
- // widget: "EmptyBox",
167
- // },
168
- // },
169
- // ],
170
- // },
171
103
  {
172
- type: "Control",
173
- scope: "#/properties/layout",
104
+ type: "Control",
105
+ scope: "#/properties/layout",
106
+ config: {
174
107
  layout: 12,
175
- options: {
176
- detail: {
177
- type: "HorizontalLayout",
178
- elements: [
179
- {
180
- type: "Control",
181
- scope: "#/properties/key",
182
- options: {
183
- widget: "SelectInputField",
184
- },
185
- config: {
186
- layout: { xs: 6, sm: 6, md: 4, lg: 4 },
187
- main: {
188
- label: "Screen Size",
189
-
190
- },
191
- },
192
- },
193
- {
194
- type: "Control",
195
- scope: "#/properties/value",
196
-
197
- options: {
198
- widget: "InputField",
199
- },
200
- config: {
201
- layout: { xs: 6, sm: 6, md: 4, lg: 4 },
202
- main: {
203
- label: "Value",
204
- type: "number",
205
- // freeSolo:true,
206
- helperText: 'Number should be in range of 0 to 12',
207
- errorMessage: "Number Can't be greater than 12 and can't be less than 0.",
108
+ main: {
109
+ label: "Layout",
110
+ childElementLabel: "Layout",
111
+ },
112
+ style: {
113
+ marginLeft: "-24px",
114
+ marginBottom: "24px !important",
115
+ labelStyle: {
116
+ marginLeft: "24px",
117
+ },
118
+ detailsStyle: {
119
+ marginLeft: "24px",
120
+ }
121
+ }
122
+ },
123
+ elements: [
124
+ {
125
+ type: "Control",
126
+ scope: "#/properties/key",
127
+ options: {
128
+ widget: "SelectInputField",
129
+ },
130
+ config: {
131
+ layout: { xs: 6, sm: 6, md: 4, lg: 4 },
132
+ main: {
133
+ label: "Screen Size",
134
+
135
+ },
136
+ },
137
+ },
138
+ {
139
+ type: "Control",
140
+ scope: "#/properties/value",
208
141
 
209
- },
210
- },
211
- },
212
- {
213
- type: "Control",
214
- scope: "#/properties/proc",
215
- config: {
216
- layout: { xs: 0, sm: 0, md: 4, lg: 4 },
217
- },
218
- options: {
219
- widget: "EmptyBox",
220
- },
221
- },
222
- ],
142
+ options: {
143
+ widget: "InputField",
144
+ },
145
+ config: {
146
+ layout: { xs: 6, sm: 6, md: 4, lg: 4 },
147
+ main: {
148
+ label: "Value",
149
+ type:"number",
150
+ helperText:'Number should be in range of 0 to 12',
151
+ errorMessage:"Number Can't be greater than 12 and can't be less than 0.",
152
+
153
+ },
223
154
  },
224
155
  },
225
- },
156
+ {
157
+ type: "Control",
158
+ scope: "#/properties/proc",
159
+ config: {
160
+ layout: { xs: 0, sm: 0, md: 4, lg: 4 },
161
+ },
162
+ options: {
163
+ widget: "EmptyBox",
164
+ },
165
+ },
166
+ ],
167
+ }
226
168
  ],
227
169
  },
228
170
  ],
@@ -45,5 +45,5 @@ export const PageMasterSchema = {
45
45
  disabled: true
46
46
  }
47
47
  },
48
- required:["template","name", "label"]
48
+ required:["name", "label"]
49
49
  }
@@ -50,11 +50,26 @@ export const PageMasterUiSchema: any = (theme) => {
50
50
  },
51
51
  },
52
52
  },
53
+ {
54
+ type: "Control",
55
+ scope: "#/properties/hasBackIcon",
56
+
57
+ options: {
58
+ widget: "RadioInputField",
59
+ },
60
+ config: {
61
+ layout: { xs: 12, sm: 6, md: 4, lg: 3 },
62
+ main: {
63
+ label: "Back Icon",
64
+ options: [{label: "Yes",const: "YES"}, {label: "No",const: "NO"}],
65
+ },
66
+ },
67
+ },
53
68
  {
54
69
  type: "Control",
55
70
  scope: "#/properties/EmptyBox",
56
71
  config: {
57
- layout: { xs: 0, sm: 0, md: 4, lg: 6 },
72
+ layout: { xs: 0, sm: 6, md: 0, lg: 3 },
58
73
  },
59
74
  options: {
60
75
  widget: "EmptyBox",
@@ -159,91 +174,70 @@ export const PageMasterUiSchema: any = (theme) => {
159
174
  disableAction: true,
160
175
  disableSelection: true,
161
176
  enableDrag: true,
162
- }
163
- },
164
- elements: [
165
- {
166
- accessorKey: "name",
167
- header: "Name",
168
- size: 300,
169
- type: "string"
170
177
  },
171
- {
172
- accessorKey: "type",
173
- header: "Type",
174
- size: 300,
175
- type: "string"
176
- },
177
- {
178
- header: "Edit",
179
- field: "Reject_Records",
180
- size: 150,
181
- type: "action",
182
- widget: {
178
+ action: [
179
+ {
183
180
  type: "Control",
184
181
  scope: "#/properties/RejectButton",
185
182
  options: {
186
- widget: "IconButton",
183
+ widget: "Button",
187
184
  },
188
185
  config: {
189
186
  main: {
190
- icon: "TableEditIcon",
187
+ size: "small",
188
+ startIcon: "EditIcon",
191
189
  onClick: "Edit_Components",
192
190
  tooltipMessage: "Edit This Record",
193
- },
194
- style: {
195
- fill: theme.palette.primary.main,
196
- "& :hover": {
197
- fill: theme.palette.primary.dark,
198
- },
191
+ name: "Edit"
199
192
  },
200
193
  },
201
194
  },
202
- },
203
- {
204
- header: "Delete",
205
- field: "Reject_Records",
206
- size: 150,
207
- type: "action",
208
- widget: {
195
+ {
209
196
  type: "Control",
210
197
  scope: "#/properties/RejectButton",
211
198
  options: {
212
- widget: "IconButton",
199
+ widget: "Button",
213
200
  },
214
201
  config: {
215
202
  main: {
216
- icon: "Bin",
203
+ size: "small",
204
+ startIcon: "Bin",
217
205
  onClick: "deletePopUpComponent",
218
206
  tooltipMessage: "Reject This Record",
219
- },
220
- style: {
221
- fill: theme.palette.primary.main,
222
- "& :hover": {
223
- fill: theme.palette.primary.dark,
224
- },
207
+ name: "Delete"
225
208
  },
226
209
  },
227
210
  },
228
- },
229
- {
230
- header: "Copy",
231
- field: "Copy_Component",
232
- flex: 1,
233
- widget: {
211
+ {
234
212
  type: "Control",
235
213
  scope: "#/properties/Copy_Component",
236
214
  options: {
237
- widget: "IconButton",
215
+ widget: "Button",
238
216
  },
239
217
  config: {
240
218
  main: {
241
- icon: "FileCopyIcon",
219
+ size: "small",
220
+ startIcon: "FileCopyIcon",
242
221
  onClick: "copyPasteElement",
243
- styleDefault: true,
222
+ styleDefault: false,
223
+ name: "Copy"
244
224
  },
245
225
  },
246
226
  },
227
+ ]
228
+ },
229
+ elements: [
230
+ {
231
+ accessorKey: "name",
232
+ header: "Name",
233
+ size: 300,
234
+ type: "string"
235
+ },
236
+ {
237
+ accessorKey: "type",
238
+ header: "Type",
239
+ size: 300,
240
+ type: "string"
247
241
  },
248
242
  ]
249
243
  },
@@ -321,93 +315,70 @@ export const PageMasterUiSchema: any = (theme) => {
321
315
  enableDrag: true,
322
316
 
323
317
  },
324
- },
325
- elements: [
326
-
327
- {
328
- accessorKey: "eventType",
329
- header: "Event's Type",
330
- size: 300,
331
- type: "string"
332
- },
333
- {
334
- accessorKey: "Handler",
335
- header: "Handler",
336
- size: 200,
337
- type: "string"
338
- },
339
- {
340
- accessorKey: "Edit_Approve_Records",
341
- header: "Edit",
342
- type: "action",
343
- size: 150,
344
- widget: {
318
+ action: [
319
+ {
345
320
  type: "Control",
346
321
  scope: "#/properties/Edit_Records",
347
322
  options: {
348
- widget: "IconButton",
323
+ widget: "Button",
349
324
  },
350
325
  config: {
351
326
  main: {
352
327
  size: "small",
353
- icon: "TableEditIcon",
328
+ startIcon: "EditIcon",
354
329
  tooltipMessage: "Edit This Record",
355
330
  onClick: "editEvent",
356
- },
357
- style: {
358
- fill: theme.palette.primary.main,
359
- "& :hover": {
360
- fill: theme.palette.primary.dark,
361
- },
331
+ name: "Edit"
362
332
  },
363
333
  },
364
334
  },
365
- },
366
- {
367
- accessorKey: "Reject_Records",
368
- header: "Delete",
369
- type: "action",
370
- size: 150,
371
- widget: {
335
+ {
372
336
  type: "Control",
373
337
  scope: "#/properties/RejectButton",
374
338
  options: {
375
- widget: "IconButton",
339
+ widget: "Button",
376
340
  },
377
341
  config: {
378
342
  main: {
379
- icon: "Bin",
343
+ size: "small",
344
+ startIcon: "Bin",
380
345
  tooltipMessage: "Reject This Record",
381
346
  onClick: "deletePopUpEvent",
382
- },
383
- style: {
384
- fill: theme.palette.primary.main,
385
- "& :hover": {
386
- fill: theme.palette.primary.dark,
387
- },
347
+ name: "Delete"
388
348
  },
389
349
  },
390
350
  },
391
- },
392
- {
393
- header: "Copy",
394
- field: "Copy_Event",
395
- type: "action",
396
- size: 150,
397
- widget: {
351
+ {
398
352
  type: "Control",
399
353
  scope: "#/properties/Copy_Event",
400
354
  options: {
401
- widget: "IconButton",
355
+ widget: "Button",
402
356
  },
403
357
  config: {
404
358
  main: {
405
- icon: "FileCopyIcon",
359
+ size: "small",
360
+ startIcon: "FileCopyIcon",
406
361
  onClick: "copyPasteElement",
407
362
  styleDefault: true,
363
+ name: "Copy"
408
364
  },
409
365
  },
410
366
  },
367
+ ]
368
+ },
369
+ elements: [
370
+
371
+ {
372
+ accessorKey: "eventType",
373
+ header: "Event's Type",
374
+ size: 300,
375
+ type: "string"
376
+ },
377
+ {
378
+ accessorKey: "Handler",
379
+ header: "Handler",
380
+ size: 200,
381
+ type: "string"
411
382
  },
412
383
  ]
413
384
  },
@@ -46,11 +46,16 @@ export const EventSchema = {
46
46
  { title: "Start", const: "onStart" },
47
47
  { title: "Cell Render", const: "onCellRenderer" },
48
48
  { title: "Upload", const: "onUpload" },
49
+ { title: "FileDelete", const: "onFileDelete" },
50
+ { title: "Download", const: "onDownload" },
49
51
  { title: "Back", const: "onBack" },
50
52
  { title: "Next", const: "onNext" },
51
53
  { title: "Row Movement", const: "onRowMovement" },
52
54
  { title: "Download", const: "onDownload" },
53
- { title: "Fail", const: "Fail" }
55
+ { title: "Fail", const: "Fail" },
56
+ { title: "Key Down", const: "onKeyDown" },
57
+
58
+
54
59
  ]
55
60
  },
56
61
  Handler: {
@@ -84,12 +89,12 @@ export const EventSchema = {
84
89
  },
85
90
  },
86
91
  },
87
- RemoveItemButton:{
92
+ RemoveItemButton: {
88
93
  disabled: true,
89
94
  },
90
95
  pageName: {
91
- path: [{label: "defaultLabel", path: "defaultPath"}]
96
+ path: [{ label: "defaultLabel", path: "defaultPath" }]
92
97
  },
93
98
  },
94
- required:["eventType","Handler"]
99
+ required: ["eventType", "Handler"]
95
100
  }
@@ -145,94 +145,70 @@ export const EventUiSchema: any = (theme) => {
145
145
  enableDrag: true,
146
146
 
147
147
  },
148
- },
149
- elements: [
150
-
151
- {
152
- accessorKey: "eventType",
153
- header: "Event's Type",
154
- size: 300,
155
- type: "string"
156
- },
157
- {
158
- accessorKey: "Handler",
159
- header: "Handler",
160
- size: 200,
161
- type: "string"
162
- },
163
- {
164
- accessorKey: "Edit_Approve_Records",
165
- header: "Edit",
166
- type: "action",
167
- size: 150,
168
- widget: {
148
+ action: [
149
+ {
169
150
  type: "Control",
170
151
  scope: "#/properties/Edit_Records",
171
152
  options: {
172
- widget: "IconButton",
153
+ widget: "Button",
173
154
  },
174
155
  config: {
175
156
  main: {
176
157
  size: "small",
177
- icon: "TableEditIcon",
158
+ startIcon: "EditIcon",
178
159
  tooltipMessage: "Edit This Record",
179
160
  onClick: "editEvent",
180
- },
181
- style: {
182
- fill: theme.palette.primary.main,
183
- "& :hover": {
184
- fill: theme.palette.primary.dark,
185
- },
161
+ name: "Edit"
186
162
  },
187
163
  },
188
164
  },
189
- },
190
- {
191
- accessorKey: "Reject_Records",
192
- header: "Delete",
193
- type: "action",
194
- size: 150,
195
- widget: {
165
+ {
196
166
  type: "Control",
197
167
  scope: "#/properties/RejectButton",
198
168
  options: {
199
- widget: "IconButton",
169
+ widget: "Button",
200
170
  },
201
171
  config: {
202
172
  main: {
203
- icon: "Bin",
173
+ startIcon: "Bin",
204
174
  tooltipMessage: "Reject This Record",
205
175
  onClick: "deletePopUpEvent",
206
- },
207
- style: {
208
- fill: theme.palette.primary.main,
209
- "& :hover": {
210
- fill: theme.palette.primary.dark,
211
- },
176
+ name: "Delete",
177
+ size: "small"
212
178
  },
213
179
  },
214
180
  },
215
- },
216
-
217
- {
218
- header: "Copy",
219
- field: "Copy_Event",
220
- type: "action",
221
- size: 150,
222
- widget: {
181
+ {
223
182
  type: "Control",
224
183
  scope: "#/properties/Copy_Event",
225
184
  options: {
226
- widget: "IconButton",
185
+ widget: "Button",
227
186
  },
228
187
  config: {
229
188
  main: {
230
- icon: "FileCopyIcon",
189
+ startIcon: "FileCopyIcon",
231
190
  onClick: "copyPasteElement",
232
- styleDefault: true,
191
+ styleDefault: false,
192
+ name: "Copy",
193
+ size: "small"
233
194
  },
234
195
  },
235
196
  },
197
+ ]
198
+ },
199
+ elements: [
200
+
201
+ {
202
+ accessorKey: "eventType",
203
+ header: "Event's Type",
204
+ size: 300,
205
+ type: "string"
206
+ },
207
+ {
208
+ accessorKey: "Handler",
209
+ header: "Handler",
210
+ size: 200,
211
+ type: "string"
236
212
  },
237
213
  ]
238
214
  }