impaktapps-ui-builder 0.0.382457 → 0.0.382460

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 (109) hide show
  1. package/dist/impaktapps-ui-builder.es.js +4233 -2669
  2. package/dist/impaktapps-ui-builder.es.js.map +1 -1
  3. package/dist/impaktapps-ui-builder.umd.js +15 -15
  4. package/dist/impaktapps-ui-builder.umd.js.map +1 -1
  5. package/dist/src/impaktapps-ui-builder/builder/build/buildBasicUiSchema.d.ts +4 -1
  6. package/dist/src/impaktapps-ui-builder/builder/build/buildCard.d.ts +1 -1
  7. package/dist/src/impaktapps-ui-builder/builder/build/buildConfig.d.ts +1 -1
  8. package/dist/src/impaktapps-ui-builder/builder/build/buildDate.d.ts +1 -0
  9. package/dist/src/impaktapps-ui-builder/builder/build/buildInputSlider.d.ts +1 -0
  10. package/dist/src/impaktapps-ui-builder/builder/build/buildTable.d.ts +0 -1
  11. package/dist/src/impaktapps-ui-builder/builder/build/buildThoughtOfTheDay.d.ts +1 -0
  12. package/dist/src/impaktapps-ui-builder/builder/build/buildTreeMap.d.ts +1 -0
  13. package/dist/src/impaktapps-ui-builder/builder/build/buildUiSchema.d.ts +1 -1
  14. package/dist/src/impaktapps-ui-builder/builder/build/uischema/apiSection.d.ts +36 -2
  15. package/dist/src/impaktapps-ui-builder/builder/build/uischema/box.d.ts +2 -2
  16. package/dist/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.d.ts +60 -0
  17. package/dist/src/impaktapps-ui-builder/builder/build/uischema/button.d.ts +1 -7
  18. package/dist/src/impaktapps-ui-builder/builder/build/uischema/card.d.ts +172 -86
  19. package/dist/src/impaktapps-ui-builder/builder/build/uischema/coreSection.d.ts +15 -0
  20. package/dist/src/impaktapps-ui-builder/builder/build/uischema/dateInputField.d.ts +19 -0
  21. package/dist/src/impaktapps-ui-builder/builder/build/uischema/eventSection.d.ts +121 -119
  22. package/dist/src/impaktapps-ui-builder/builder/build/uischema/file.d.ts +6 -6
  23. package/dist/src/impaktapps-ui-builder/builder/build/uischema/graph.d.ts +42 -115
  24. package/dist/src/impaktapps-ui-builder/builder/build/uischema/leaderBoard.d.ts +10 -288
  25. package/dist/src/impaktapps-ui-builder/builder/build/uischema/progressBar.d.ts +6 -1
  26. package/dist/src/impaktapps-ui-builder/builder/build/uischema/table.d.ts +2 -0
  27. package/dist/src/impaktapps-ui-builder/builder/build/uischema/tableSection.d.ts +119 -96
  28. package/dist/src/impaktapps-ui-builder/builder/build/uischema/{lazyLoadingTable.d.ts → thoughtOfTheDay.d.ts} +6 -3
  29. package/dist/src/impaktapps-ui-builder/builder/build/uischema/timer.d.ts +1 -14
  30. package/dist/src/impaktapps-ui-builder/builder/build/uischema/validationSections.d.ts +17 -2
  31. package/dist/src/impaktapps-ui-builder/builder/build/uischema/valueTab.d.ts +17 -2
  32. package/dist/src/impaktapps-ui-builder/builder/build/uischema/wrapperSection.d.ts +2 -1
  33. package/dist/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/schema.d.ts +9 -0
  34. package/dist/src/impaktapps-ui-builder/builder/elements/UiSchema/event/schema.d.ts +3 -0
  35. package/dist/src/impaktapps-ui-builder/builder/services/component.d.ts +12 -4
  36. package/dist/src/impaktapps-ui-builder/builder/services/event.d.ts +11 -2
  37. package/dist/src/impaktapps-ui-builder/builder/services/pageMaster.d.ts +16 -3
  38. package/dist/src/impaktapps-ui-builder/builder/services/utils.d.ts +4 -4
  39. package/dist/src/impaktapps-ui-builder/lib/index.d.ts +1 -1
  40. package/dist/src/impaktapps-ui-builder/runtime/services/events.d.ts +8 -5
  41. package/dist/src/impaktapps-ui-builder/runtime/services/interface.d.ts +2 -0
  42. package/dist/src/impaktapps-ui-builder/runtime/services/service.d.ts +11 -8
  43. package/package.json +5 -1
  44. package/src/impaktapps-ui-builder/builder/build/buildBasicUiSchema.ts +9 -5
  45. package/src/impaktapps-ui-builder/builder/build/buildButton.ts +0 -2
  46. package/src/impaktapps-ui-builder/builder/build/buildCard.ts +11 -7
  47. package/src/impaktapps-ui-builder/builder/build/buildConfig.ts +15 -19
  48. package/src/impaktapps-ui-builder/builder/build/buildDate.ts +12 -2
  49. package/src/impaktapps-ui-builder/builder/build/buildFileInput.ts +1 -1
  50. package/src/impaktapps-ui-builder/builder/build/buildHorizontalBarGraph.ts +22 -9
  51. package/src/impaktapps-ui-builder/builder/build/buildInputSlider.ts +46 -0
  52. package/src/impaktapps-ui-builder/builder/build/buildLeaderboard.ts +26 -19
  53. package/src/impaktapps-ui-builder/builder/build/buildLineGraph.ts +16 -2
  54. package/src/impaktapps-ui-builder/builder/build/buildPieGraph.ts +24 -23
  55. package/src/impaktapps-ui-builder/builder/build/buildProgressBar.ts +1 -1
  56. package/src/impaktapps-ui-builder/builder/build/buildRadio.ts +1 -1
  57. package/src/impaktapps-ui-builder/builder/build/buildRankCard.ts +4 -10
  58. package/src/impaktapps-ui-builder/builder/build/buildSchema.ts +1 -2
  59. package/src/impaktapps-ui-builder/builder/build/buildStackBarGraph.ts +19 -8
  60. package/src/impaktapps-ui-builder/builder/build/buildTabSection.ts +9 -2
  61. package/src/impaktapps-ui-builder/builder/build/buildTable.ts +39 -29
  62. package/src/impaktapps-ui-builder/builder/build/buildTextArea.ts +6 -0
  63. package/src/impaktapps-ui-builder/builder/build/buildThoughtOfTheDay.ts +22 -0
  64. package/src/impaktapps-ui-builder/builder/build/buildTreeMap.ts +61 -0
  65. package/src/impaktapps-ui-builder/builder/build/buildUiSchema.ts +77 -57
  66. package/src/impaktapps-ui-builder/builder/build/buildUplaodFile.ts +16 -19
  67. package/src/impaktapps-ui-builder/builder/build/buildWrapperSection.ts +16 -13
  68. package/src/impaktapps-ui-builder/builder/build/uischema/apiSection.ts +50 -27
  69. package/src/impaktapps-ui-builder/builder/build/uischema/box.ts +3 -2
  70. package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +174 -80
  71. package/src/impaktapps-ui-builder/builder/build/uischema/button.ts +1 -7
  72. package/src/impaktapps-ui-builder/builder/build/uischema/card.ts +171 -75
  73. package/src/impaktapps-ui-builder/builder/build/uischema/coreSection.ts +43 -41
  74. package/src/impaktapps-ui-builder/builder/build/uischema/dateInputField.ts +17 -7
  75. package/src/impaktapps-ui-builder/builder/build/uischema/emptyBox.ts +1 -1
  76. package/src/impaktapps-ui-builder/builder/build/uischema/eventSection.ts +78 -56
  77. package/src/impaktapps-ui-builder/builder/build/uischema/file.ts +2 -12
  78. package/src/impaktapps-ui-builder/builder/build/uischema/graph.ts +13 -141
  79. package/src/impaktapps-ui-builder/builder/build/uischema/leaderBoard.ts +10 -357
  80. package/src/impaktapps-ui-builder/builder/build/uischema/multiSelect.ts +1 -1
  81. package/src/impaktapps-ui-builder/builder/build/uischema/progressBar.ts +1 -1
  82. package/src/impaktapps-ui-builder/builder/build/uischema/rankCard.ts +1 -1
  83. package/src/impaktapps-ui-builder/builder/build/uischema/refresh.ts +15 -11
  84. package/src/impaktapps-ui-builder/builder/build/uischema/runnerBoyProgressBar.ts +1 -1
  85. package/src/impaktapps-ui-builder/builder/build/uischema/selectInputField.ts +1 -6
  86. package/src/impaktapps-ui-builder/builder/build/uischema/table.ts +5 -6
  87. package/src/impaktapps-ui-builder/builder/build/uischema/tableSection.ts +125 -97
  88. package/src/impaktapps-ui-builder/builder/build/uischema/textInputField.ts +1 -6
  89. package/src/impaktapps-ui-builder/builder/build/uischema/thoughtOfTheDay.ts +14 -0
  90. package/src/impaktapps-ui-builder/builder/build/uischema/timer.ts +2 -16
  91. package/src/impaktapps-ui-builder/builder/build/uischema/validationSections.ts +12 -12
  92. package/src/impaktapps-ui-builder/builder/build/uischema/valueTab.ts +13 -13
  93. package/src/impaktapps-ui-builder/builder/build/uischema/wrapperSection.ts +2 -1
  94. package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/schema.ts +67 -19
  95. package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/uiSchema.ts +525 -166
  96. package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/schema.ts +12 -2
  97. package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/uiSchema.ts +757 -321
  98. package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/schema.ts +7 -2
  99. package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/uiSchema.ts +516 -269
  100. package/src/impaktapps-ui-builder/builder/services/component.ts +165 -73
  101. package/src/impaktapps-ui-builder/builder/services/event.ts +74 -13
  102. package/src/impaktapps-ui-builder/builder/services/pageMaster.ts +61 -20
  103. package/src/impaktapps-ui-builder/builder/services/utils.ts +13 -14
  104. package/src/impaktapps-ui-builder/lib/index.ts +1 -1
  105. package/src/impaktapps-ui-builder/runtime/services/downloadFile.ts +1 -1
  106. package/src/impaktapps-ui-builder/runtime/services/events.ts +154 -96
  107. package/src/impaktapps-ui-builder/runtime/services/interface.ts +3 -1
  108. package/src/impaktapps-ui-builder/runtime/services/service.ts +211 -49
  109. package/src/impaktapps-ui-builder/builder/build/uischema/lazyLoadingTable.ts +0 -14
@@ -13,6 +13,15 @@ const notifyUiSchema = {
13
13
  layout: 6,
14
14
  };
15
15
 
16
+ interface funcParamsProps {
17
+ store: any,
18
+ dynamicData: any,
19
+ service: any,
20
+ userValue: any,
21
+ pageDataProvider: any,
22
+ functionsProvider?: Record<string, any>
23
+ }
24
+ let pageData: any = false;
16
25
  export const extractEvents = (eventConfig: any) => {
17
26
  function extractsConfigEvents(eventConfigObj: any) {
18
27
  if (eventConfigObj.events) {
@@ -30,72 +39,234 @@ export const extractEvents = (eventConfig: any) => {
30
39
  return elem.eventType === "Success"
31
40
  })
32
41
  if (!(!!SuccessEvent) && event.eventType === "onLoad") {
42
+ if (!(!!event.events)) {
43
+ event.events = [];
44
+ }
33
45
  event.events.push({ Handler: "mergeFormdata", eventType: "Success", type: compType, lazyLoading: eventConfig.lazyLoading === "YES" ? true : false })
34
46
  }
35
- if (!(!!SuccessEvent) && (event.eventType === "onBack" || event.eventType === "onNext"|| event.eventType === "onReset")) {
47
+ if (!(!!SuccessEvent) && (event.eventType === "onBack" || event.eventType === "onNext" || event.eventType === "onReset")) {
48
+ if (!(!!event.events)) {
49
+ event.events = [];
50
+ }
36
51
  event.events.push({ Handler: `${event.eventType}Handler`, eventType: "Success", type: compType, lazyLoading: eventConfig.lazyLoading === "YES" ? true : false })
37
52
  }
38
53
  eventGroups[event.eventType][eventConfigObj.name].push({ ...event, type: compType })
39
54
  });
40
55
  }
41
56
  }
42
-
43
57
  extractsConfigEvents(eventConfig)
44
58
  if (eventConfig?.elements) {
45
59
  eventConfig.elements.forEach(extractEvents);
46
60
  }
47
61
  return eventGroups;
48
62
  };
49
-
50
- interface funcParamsProps {
51
- store: any,
52
- dynamicData: any,
53
- config: any,
54
- uiSchema: any,
55
- schema: any,
56
- service: any,
57
- userValue: any,
58
- }
59
63
  export default (funcParams: funcParamsProps) => {
60
64
  eventGroups = {}
61
- eventGroups = extractEvents(funcParams.config)
65
+ const formDataHolder = {}
66
+ if (pageData) {
67
+ if ((!isEmpty(pageData)) && typeof pageData === "object") {
68
+ eventGroups = extractEvents(pageData?.config)
69
+ }
70
+ }
62
71
  let executeEventsParameters: handlersProps = {
63
72
  config: {}, componentName: "",
64
73
  store: funcParams.store, dynamicData: funcParams.dynamicData, userValue: funcParams.userValue, service: funcParams.service,
65
- serviceHolder: { downloadFile,download:doDownload }, eventGroups
74
+ serviceHolder: { downloadFile, download: doDownload, ...funcParams.functionsProvider }, eventGroups,
75
+ functionsProvider: funcParams.functionsProvider, formDataHolder
66
76
  };
67
77
  return {
68
78
  setPage: async function () {
69
79
  funcParams.store.setFormdata({});
80
+ funcParams.store.newData = {};
81
+ const pageBasicDetailString = sessionStorage.getItem("pagemasterMetaData")
82
+ if (pageBasicDetailString) {
83
+ pageData = JSON.parse(pageBasicDetailString)
84
+ } else {
85
+ pageData = await funcParams.pageDataProvider();
86
+ sessionStorage.setItem("pagemasterMetaData", JSON.stringify({
87
+ schema: pageData?.schema,
88
+ uiSchema: pageData?.uiSchema, config: pageData?.config
89
+ }))
90
+ }
91
+ const config = pageData?.config;
92
+ const uiSchema = pageData?.uiSchema;
93
+ const event = new CustomEvent('pageNameChanged', {
94
+ detail: { pageName: config.label }
95
+ });
96
+ window.dispatchEvent(event)
97
+ const theme = funcParams?.store?.theme?.myTheme;
98
+ uiSchema.elements.push(
99
+
100
+ {
101
+ type: "HorizontalLayout",
102
+ config: {
103
+ main: {
104
+ direction: "row",
105
+ },
106
+ style: {
107
+ flexDirection: "row",
108
+ position: "absolute",
109
+ bottom: 0,
110
+ height: "fit-content",
111
+ overflow: "hidden",
112
+ zIndex: 1000,
113
+ width: "inherit",
114
+ },
115
+ },
116
+ elements: [
117
+ {
118
+ type: "Control",
119
+ scope: "#/properties/FooterText",
120
+ options: {
121
+ widget: "Box",
122
+ },
123
+ config: {
124
+ main: {
125
+ heading: "Copywriter@ACT21.IO",
126
+ },
127
+ style: {
128
+ color: theme?.palette?.text?.disabled || "#AFAFAF",
129
+ fontSize: "12px",
130
+ textAlign: "center",
131
+ lineHeight: 2,
132
+ width: "fit-content",
133
+ left: "50%",
134
+ position: "relative",
135
+ margin: 0,
136
+ flexGrow: 1,
137
+ height: 0,
138
+ transform: "translate(-50%, 0%)",
139
+ },
140
+ },
141
+ },
142
+ {
143
+ type: "Control",
144
+ scope: "#/properties/FooterBackIcon",
145
+ options: {
146
+ widget: "Box",
147
+ },
148
+ config: {
149
+ main: {
150
+ iconName: "PrevIcon",
151
+ onClick: "backHandler",
152
+ width: "fit-content",
153
+ },
154
+ style: {
155
+ fill: theme?.palette?.primary?.main,
156
+ width: 20,
157
+ height: 0,
158
+ // margin: 0,
159
+ top: 0,
160
+ right: { xs: "12px", sm: "84px" },
161
+ position: "absolute",
162
+ fontSize: "12px",
163
+ cursor: "pointer",
164
+ ":hover": {
165
+ fill: theme?.palette?.primary?.dark,
166
+ },
167
+ marginRight: "13px",
168
+ },
169
+ },
170
+ },
171
+ {
172
+ type: "Control",
173
+ scope: "#/properties/FooterBackHandlerText",
174
+ options: {
175
+ widget: "Box",
176
+ },
177
+ config: {
178
+ main: {
179
+ heading: "Previous Page",
180
+ onClick: "backHandler",
181
+ },
182
+ style: {
183
+ display: { xs: "none", sm: "flex" },
184
+ textAlign: "left",
185
+ lineHeight: 1,
186
+ height: 0,
187
+ width: "fit-content",
188
+ color: theme?.palette?.primary?.main,
189
+ fontSize: "14px",
190
+ cursor: "pointer",
191
+ marginLeft: "2px",
192
+
193
+ top: 3,
194
+ right: "12px",
195
+ position: "absolute",
196
+ ":hover": {
197
+ color: theme?.palette?.primary?.dark,
198
+ },
199
+ marginRight: "4px",
200
+ },
201
+ },
202
+ },
203
+ ],
204
+ }
205
+ );
206
+ const schema = pageData?.schema ?? { type: "object", properties: {} };
207
+ eventGroups = extractEvents(config);
70
208
  executeEventsParameters = {
71
209
  config: {}, componentName: "",
72
210
  store: funcParams.store, dynamicData: funcParams.dynamicData, userValue: funcParams.userValue, service: funcParams.service,
73
- serviceHolder: this, eventGroups
211
+ functionsProvider: funcParams.functionsProvider,
212
+ serviceHolder: this, eventGroups, formDataHolder
74
213
  }
214
+ await executeRefreshHandler({
215
+ config: {}, componentName: "",
216
+ store: funcParams.store, dynamicData: funcParams.dynamicData, userValue: funcParams.userValue, service: funcParams.service,
217
+ serviceHolder: this, eventGroups, formDataHolder
218
+ })
75
219
  funcParams.store.setSchema(
76
220
  (pre: any) => {
77
221
  return {
78
- ...funcParams.schema, properties:
79
- { ...funcParams.schema.properties, ...pre.properties, }
222
+ ...schema,...pre, properties:
223
+ { ...schema.properties, ...pre.properties, }
80
224
  }
81
225
  }
82
226
  )
83
- funcParams.uiSchema.elements.push(notifyUiSchema);
84
- funcParams.store.setUiSchema(funcParams.uiSchema);
85
- await executeRefreshHandler({
86
- config: {}, componentName: "",
87
- store: funcParams.store, dynamicData: funcParams.dynamicData, userValue: funcParams.userValue, service: funcParams.service,
88
- serviceHolder: this, eventGroups
89
- })
227
+ uiSchema.elements.push(notifyUiSchema);
228
+ funcParams.store.setUiSchema(uiSchema);
229
+ },
230
+ onCellRenderer: (cellParams) => {
231
+ if (eventGroups.onCellRenderer) {
232
+ let finalResponse = {};
233
+ const path = funcParams.dynamicData?.tableButtonPath || funcParams?.dynamicData?.path?.split(".")[0];
234
+ for (const eventConfig of eventGroups?.onCellRenderer[path]) {
235
+ executeEventsParameters.store.functionParameters = cellParams
236
+ finalResponse = executeEvents({
237
+ ...executeEventsParameters,
238
+ config: eventConfig,
239
+ componentName: path
240
+ })
241
+ }
242
+ return finalResponse
243
+ }
244
+ return {}
245
+ },
246
+ onClick: function () {
247
+ this.callHandler("onClick")
248
+ },
249
+ onMount: function () {
250
+ this.callHandler("onMount")
90
251
  },
91
- onClick: async function () {
92
- await this.callHandler("onClick")
252
+ onFileDownload: function () {
253
+ this.callHandler("onDownload")
93
254
  },
94
- onFileDownload: async function () {
95
- await this.callHandler("onDownload")
255
+ onFileUpload: function () {
256
+ this.callHandler("onUpload")
96
257
  },
97
- onFileUpload: async function () {
98
- await this.callHandler("onUpload")
258
+ backHandler: function () {
259
+ funcParams.store.navigate(-1)
260
+ },
261
+ onRowMovement: async function (paginationValues) {
262
+ const apiBody = [
263
+ { key: "direction", value: paginationValues.rowMovement.direction },
264
+ { key: "movedRowId", value: paginationValues.rowMovement.movedRowId },
265
+ { key: "targetRowId", value: paginationValues.rowMovement.targetRowId || [] }
266
+ ]
267
+ await this.callExecuteEvents({ path: paginationValues?.path }, apiBody, "onRowMovement");
268
+ const response = await this.callExecuteEvents({ path: paginationValues?.path }, apiBody, "onLoad");
269
+ return response?.data;
99
270
  },
100
271
  onPaginationChange: async function (paginationValues) {
101
272
  const apiBody = [
@@ -105,7 +276,7 @@ export default (funcParams: funcParamsProps) => {
105
276
  { key: "filters", value: paginationValues.columnFilters || [] },
106
277
  { key: "globalFilter", value: paginationValues.globalFilter ?? '' }
107
278
  ]
108
- const response = await this.updateConfigApiBody(paginationValues, apiBody);
279
+ const response = await this.callExecuteEvents(paginationValues, apiBody, "onLoad");
109
280
  return response?.data;
110
281
  },
111
282
  getSelectOptions: async function (param) {
@@ -114,7 +285,8 @@ export default (funcParams: funcParamsProps) => {
114
285
  { key: "searchValue", value: param.serachValue },
115
286
  { key: "currentValue", value: param.currentValue }
116
287
  ]
117
- return await this.updateConfigApiBody(param, apiBody)
288
+ const response = await this.callExecuteEvents(param, apiBody);
289
+ return response?.data;
118
290
  }
119
291
  },
120
292
  onChange: async function () {
@@ -136,9 +308,9 @@ export default (funcParams: funcParamsProps) => {
136
308
  }))
137
309
  }
138
310
  },
139
- updateConfigApiBody: async function (paramValue, apiBody) {
311
+ callExecuteEvents: async function (paramValue, apiBody, eventType: string) {
140
312
  let LastCallResponse = undefined;
141
- for (const eventConfig of eventGroups?.onLoad[paramValue.path]) {
313
+ for (const eventConfig of eventGroups?.[eventType]?.[paramValue.path]) {
142
314
  if (eventConfig.body) {
143
315
  eventConfig.body = [
144
316
  ...eventConfig.body,
@@ -181,28 +353,18 @@ export default (funcParams: funcParamsProps) => {
181
353
  callHandler: async function (eventType: string, functionParameters?: any) {
182
354
  const path = funcParams.dynamicData?.tableButtonPath || funcParams.dynamicData.path.split(".")[0];
183
355
  if (eventGroups?.[eventType]?.[path] !== undefined) {
184
- for (const eventConfig of eventGroups?.[eventType]?.[path]) {
356
+ Promise.all(eventGroups?.[eventType]?.[path].map((eventConfig) => {
185
357
  executeEventsParameters.store.functionParameters = functionParameters
186
- await executeEvents({
358
+ executeEvents({
187
359
  ...executeEventsParameters,
188
360
  config: eventConfig,
189
361
  componentName: path
190
362
  })
191
- }
363
+ }))
192
364
  }
193
365
  },
194
366
  downloadFile: downloadFile,
195
- download:doDownload,
367
+ download: doDownload,
368
+ ...funcParams.functionsProvider
196
369
  };
197
370
  };
198
-
199
-
200
-
201
-
202
-
203
-
204
-
205
-
206
-
207
-
208
-
@@ -1,14 +0,0 @@
1
- export default {
2
- type: "Control",
3
- scope: "#/properties/LazyLoadingTable",
4
- options: {
5
- widget: "LazyLoadingTable",
6
- },
7
- elements:[],
8
- config: {
9
- main: {
10
- columns: {
11
- },
12
- },
13
- },
14
- };