impaktapps-ui-builder 1.0.280 → 1.0.300

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 (30) hide show
  1. package/dist/impaktapps-ui-builder.es.js +140 -92
  2. package/dist/impaktapps-ui-builder.es.js.map +1 -1
  3. package/dist/impaktapps-ui-builder.umd.js +12 -12
  4. package/dist/impaktapps-ui-builder.umd.js.map +1 -1
  5. package/dist/src/impaktapps-ui-builder/builder/build/buildStackBarLineGraph.d.ts +2 -0
  6. package/dist/src/impaktapps-ui-builder/builder/build/uischema/box.d.ts +1 -0
  7. package/dist/src/impaktapps-ui-builder/builder/build/uischema/graph.d.ts +25 -0
  8. package/dist/src/impaktapps-ui-builder/builder/build/uischema/wrapperSection.d.ts +3 -1
  9. package/dist/src/impaktapps-ui-builder/runtime/services/service.d.ts +0 -1
  10. package/package.json +1 -1
  11. package/src/impaktapps-ui-builder/builder/build/buildAreaGraph.ts +2 -2
  12. package/src/impaktapps-ui-builder/builder/build/buildArray.ts +10 -6
  13. package/src/impaktapps-ui-builder/builder/build/buildCamera.ts +1 -1
  14. package/src/impaktapps-ui-builder/builder/build/buildFileInput.ts +3 -0
  15. package/src/impaktapps-ui-builder/builder/build/buildImage.ts +6 -3
  16. package/src/impaktapps-ui-builder/builder/build/buildStackBarLineGraph.ts +66 -0
  17. package/src/impaktapps-ui-builder/builder/build/buildUiSchema.ts +4 -4
  18. package/src/impaktapps-ui-builder/builder/build/buildWrapperSection.ts +7 -3
  19. package/src/impaktapps-ui-builder/builder/build/uischema/box.ts +2 -1
  20. package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +26 -23
  21. package/src/impaktapps-ui-builder/builder/build/uischema/graph.ts +16 -0
  22. package/src/impaktapps-ui-builder/builder/build/uischema/wrapperSection.ts +3 -1
  23. package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/schema.ts +1 -8
  24. package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/uiSchema.ts +17 -0
  25. package/src/impaktapps-ui-builder/builder/services/component.ts +102 -103
  26. package/src/impaktapps-ui-builder/runtime/services/service.ts +1 -8
  27. package/dist/src/impaktapps-ui-builder/builder/build/buildHierarchyChart.d.ts +0 -1
  28. package/dist/src/impaktapps-ui-builder/builder/build/uischema/hierarchyChart.d.ts +0 -22
  29. package/src/impaktapps-ui-builder/builder/build/buildHierarchyChart.ts +0 -38
  30. package/src/impaktapps-ui-builder/builder/build/uischema/hierarchyChart.ts +0 -13
@@ -12,29 +12,28 @@ import { getFormdataFromSessionStorage, validateAndShowErrors, okHandler, saveFo
12
12
  const sectionLabels = {
13
13
  Select: ["Core", "Properties", "Value", "Events", "Style", "Validation"],
14
14
  MultipleSelect: ["Core", "Properties", "Value", "Events", "Style", "Validation"],
15
- Table: ["Core", "Components", "Properties", "Events", "Style", ],
16
- LeaderBoard: ["Core", "Components", "Properties", "Events", "Style", ],
17
- WrapperSection: ["Core", "Components", "Properties", "Style", ],
18
- HorizontalLayout: ["Core", "Components", "Properties", "Style", ],
15
+ Table: ["Core", "Components", "Properties", "Events", "Style",],
16
+ LeaderBoard: ["Core", "Components", "Properties", "Events", "Style",],
17
+ WrapperSection: ["Core", "Components", "Properties", "Style",],
18
+ HorizontalLayout: ["Core", "Components", "Properties", "Style",],
19
19
  TabSection: ["Core", "Components", "Properties", "Style", "Validation"],
20
20
  SpeedoMeter: ["Core", "Properties", "Events", "Style",],
21
21
  card: ["Core", "Properties", "Events", "Style", "Validation"],
22
22
  UploadFile: ["Core", "Events", "Style", "Validation"],
23
23
  Graph: ["Core", "Properties", "Events", "Style", "Validation"],
24
24
  DownloadFile: ["Core", "Events", "Style", "Validation"],
25
- Box: ["Core", "Properties" , "Events", "Style", "Validation"],
25
+ Box: ["Core", "Properties", "Events", "Style", "Validation"],
26
26
  Properties: ["Core", "Properties", "Events", "Style", "Validation"],
27
27
  ProgressBarCard: ["Core", "Properties", "Events", "Style"],
28
- ProgressBar:["Core", "Properties", "Events", "Style", ],
29
- RankCard: ["Core", "Properties", "Events", "Style", ],
28
+ ProgressBar: ["Core", "Properties", "Events", "Style",],
29
+ RankCard: ["Core", "Properties", "Events", "Style",],
30
30
  MetricCard: ["Core", "Properties", "Events", "Style", "Validation"],
31
- HierarchyChart: ["Core","Components","Properties", "Events", "Style", "Validation"],
32
31
  Slider: ["Core", "Components", "Events", "Style", "Validation"],
33
32
  Timer: ["Core", "Events", "Style",],
34
- Rank: ["Core", "Events", "Style", ],
33
+ Rank: ["Core", "Events", "Style",],
35
34
  Button: ["Core", "Properties", "Events", "Style", "Validation"],
36
- ButtonGroup: ["Core","Components","Properties", "Events", "Style", "Validation"],
37
- Array: ["Core", "Components", "Properties","Events","Validation"],
35
+ ButtonGroup: ["Core", "Components", "Properties", "Events", "Style", "Validation"],
36
+ Array: ["Core", "Components", "Properties", "Events", "Style", "Validation"],
38
37
  Radio: ["Core", "Properties", "Events", "Style", "Validation"],
39
38
  Text: ["Core", "Properties", "Events", "Style", "Validation"],
40
39
  TextArea: ["Core", "Properties", "Events", "Style", "Validation"],
@@ -45,13 +44,13 @@ const sectionLabels = {
45
44
  InputSlider: ["Core", "Properties", "Events", "Style", "Validation"],
46
45
  TreeMap: ["Core", "Components", "Properties", "Events", "Style"],
47
46
  ColumnGroup: ["Core", "Components"],
48
- Thought: ["Core", "Properties", "Events", "Style", ],
47
+ Thought: ["Core", "Properties", "Events", "Style",],
49
48
  Date: ["Core", "Properties", "Events", "Style", "Validation"],
50
49
  DateTime: ["Core", "Properties", "Events", "Style", "Validation"],
51
- Image: ["Core", "Properties","Style"],
52
- FileInput: ["Core","Properties","Events", "Style", "Validation"],
53
- Camera:["Core","Properties","Events", "Style", "Validation"],
54
- OTP_Input: ["Core","Properties","Events", "Style", "Validation"],
50
+ Image: ["Core", "Properties", "Events", "Style"],
51
+ FileInput: ["Core", "Properties", "Events", "Style", "Validation"],
52
+ Camera: ["Core", "Properties", "Events", "Style", "Validation"],
53
+ OTP_Input: ["Core", "Properties", "Events", "Style", "Validation"],
55
54
  }
56
55
 
57
56
  export function refreshPage(type: string, store: any) {
@@ -75,12 +74,12 @@ export function refreshPage(type: string, store: any) {
75
74
  // Get Widget Type of parent
76
75
  const path = store.searchParams?.get("path");
77
76
  const lastDotIndex = path.lastIndexOf('.')
78
- const parentPath = path.slice(0,lastDotIndex)
77
+ const parentPath = path.slice(0, lastDotIndex)
79
78
 
80
79
  const parentObj = _.get(currentConfig, parentPath)
81
80
 
82
- if(parentObj?.type === "Table" || parentObj?.type === "ColumnGroup"){
83
- UiSchema.elements[0].elements[0].elements[4] =
81
+ if (parentObj?.type === "Table" || parentObj?.type === "ColumnGroup") {
82
+ UiSchema.elements[0].elements[0].elements[4] =
84
83
  {
85
84
  type: "Control",
86
85
  scope: "#/properties/columnFormat",
@@ -95,7 +94,7 @@ export function refreshPage(type: string, store: any) {
95
94
  },
96
95
  },
97
96
  };
98
- UiSchema.elements[0].elements[0].elements[6] =
97
+ UiSchema.elements[0].elements[0].elements[6] =
99
98
  {
100
99
  type: "Control",
101
100
  scope: "#/properties/filteringOptions",
@@ -110,7 +109,7 @@ export function refreshPage(type: string, store: any) {
110
109
  },
111
110
  },
112
111
  };
113
- UiSchema.elements[0].elements[0].elements[5] =
112
+ UiSchema.elements[0].elements[0].elements[5] =
114
113
  {
115
114
  type: "Control",
116
115
  scope: "#/properties/enableFilter",
@@ -125,49 +124,49 @@ export function refreshPage(type: string, store: any) {
125
124
  },
126
125
  },
127
126
  },
128
- UiSchema.elements[0].elements[0].elements[7] =
129
- {
130
- type: "Control",
131
- scope: "#/properties/enableSorting",
132
- options: {
133
- widget: "RadioInputField",
134
- },
135
- config: {
136
- layout: { xs: 6, sm: 6, md: 4, lg: 3 },
137
- main: {
138
- label: "Enable Sorting",
139
- options: ["Yes", "No"],
127
+ UiSchema.elements[0].elements[0].elements[7] =
128
+ {
129
+ type: "Control",
130
+ scope: "#/properties/enableSorting",
131
+ options: {
132
+ widget: "RadioInputField",
140
133
  },
141
- },
142
- },
143
- UiSchema.elements[0].elements[0].elements[8] =
144
- {
145
- type: "Control",
146
- scope: "#/properties/columnKey",
147
- config: {
148
- layout: { xs: 6, sm: 6, md: 4, lg: 3 },
149
- main: {
150
- label: "Column Key",
134
+ config: {
135
+ layout: { xs: 6, sm: 6, md: 4, lg: 3 },
136
+ main: {
137
+ label: "Enable Sorting",
138
+ options: ["Yes", "No"],
139
+ },
151
140
  },
152
141
  },
153
- options: {
154
- widget: "InputField",
155
- },
156
- },
157
- UiSchema.elements[0].elements[0].elements[9] =
158
- {
159
- type: "Control",
160
- scope: "#/properties/elementType",
161
- options: {
162
- widget: "SelectInputField",
163
- },
164
- config: {
165
- layout: { xs: 6, sm: 6, md: 4, lg: 3 },
166
- main: {
167
- label: "Element Type",
142
+ UiSchema.elements[0].elements[0].elements[8] =
143
+ {
144
+ type: "Control",
145
+ scope: "#/properties/columnKey",
146
+ config: {
147
+ layout: { xs: 6, sm: 6, md: 4, lg: 3 },
148
+ main: {
149
+ label: "Column Key",
150
+ },
151
+ },
152
+ options: {
153
+ widget: "InputField",
168
154
  },
169
155
  },
170
- }
156
+ UiSchema.elements[0].elements[0].elements[9] =
157
+ {
158
+ type: "Control",
159
+ scope: "#/properties/elementType",
160
+ options: {
161
+ widget: "SelectInputField",
162
+ },
163
+ config: {
164
+ layout: { xs: 6, sm: 6, md: 4, lg: 3 },
165
+ main: {
166
+ label: "Element Type",
167
+ },
168
+ },
169
+ }
171
170
  UiSchema.elements[0].elements[0].elements[10] = {
172
171
  type: "Control",
173
172
  scope: "#/properties/dateFormat",
@@ -192,8 +191,8 @@ export function refreshPage(type: string, store: any) {
192
191
  },
193
192
  }
194
193
  }
195
- if(parentObj?.type === "LeaderBoard"){
196
- UiSchema.elements[0].elements[0].elements[4] =
194
+ if (parentObj?.type === "LeaderBoard") {
195
+ UiSchema.elements[0].elements[0].elements[4] =
197
196
  {
198
197
  type: "Control",
199
198
  scope: "#/properties/columnFormat",
@@ -209,7 +208,7 @@ export function refreshPage(type: string, store: any) {
209
208
  };
210
209
  }
211
210
 
212
- if (sessionStorage.getItem("copiedConfig") ) {
211
+ if (sessionStorage.getItem("copiedConfig")) {
213
212
  this.ElementPathSetter(UiSchema);
214
213
  }
215
214
  store.setUiSchema(UiSchema);
@@ -235,33 +234,33 @@ export default (store: any, dynamicData: any, submitHandler: any, service: any)
235
234
  if (sessionStorage.getItem("copiedConfig")) {
236
235
  schema.properties.RemoveItemButton.disabled = false;
237
236
  }
238
-
237
+
239
238
  const config = JSON.parse(sessionStorage.getItem("pageFormdata"));
240
239
  const path = store.searchParams?.get("path");
241
240
  const id = store.searchParams?.get("id")
242
241
 
243
- let pathArray = [{label: config.name ?? "NewPage", path: `/PageMaster${id ? `?id=${id}` : ''}`}];
242
+ let pathArray = [{ label: config.name ?? "NewPage", path: `/PageMaster${id ? `?id=${id}` : ''}` }];
244
243
 
245
244
  if (path) {
246
- const pathArrayAll = path.split(".");
247
- const arr: any = []
248
- pathArrayAll.map((e: string, i: number) => {
249
- if (i === 0) {
250
- arr.push(e)
251
- return;
252
- }
253
- arr.push(`${arr[i - 1]}.${e}`)
254
- })
245
+ const pathArrayAll = path.split(".");
246
+ const arr: any = []
247
+ pathArrayAll.map((e: string, i: number) => {
248
+ if (i === 0) {
249
+ arr.push(e)
250
+ return;
251
+ }
252
+ arr.push(`${arr[i - 1]}.${e}`)
253
+ })
255
254
 
256
255
 
257
- arr.map((e) => {
258
- const data = _.get(config, e)
259
- pathArray.push({
260
- label: data?.name || data?.eventType || "NewComponent",
261
- path: `/Component?path=${e}${id ? `&id=${id}` : ''}`
262
- });
263
- })
264
- }
256
+ arr.map((e) => {
257
+ const data = _.get(config, e)
258
+ pathArray.push({
259
+ label: data?.name || data?.eventType || "NewComponent",
260
+ path: `/Component?path=${e}${id ? `&id=${id}` : ''}`
261
+ });
262
+ })
263
+ }
265
264
 
266
265
  schema.properties.pageName.path = pathArray
267
266
  return schema;
@@ -278,7 +277,7 @@ export default (store: any, dynamicData: any, submitHandler: any, service: any)
278
277
  },
279
278
  editComponents: function () {
280
279
 
281
- if (validateAndShowErrors(store)) return;
280
+ if (validateAndShowErrors(store)) return;
282
281
  const rowId = dynamicData.path.split(".")[1];
283
282
  const path = store.searchParams?.get("path");
284
283
  const id = store.searchParams?.get("id");
@@ -318,7 +317,7 @@ export default (store: any, dynamicData: any, submitHandler: any, service: any)
318
317
  },
319
318
  widgetAddClickHandler: function () {
320
319
 
321
- if (validateAndShowErrors(store)) return;
320
+ if (validateAndShowErrors(store)) return;
322
321
  if (!Array.isArray(store.formData.elements)) {
323
322
  store.formData.elements = []
324
323
  }
@@ -331,7 +330,7 @@ export default (store: any, dynamicData: any, submitHandler: any, service: any)
331
330
 
332
331
  },
333
332
  eventEditHandler: function () {
334
- if (validateAndShowErrors(store)) return;
333
+ if (validateAndShowErrors(store)) return;
335
334
  const rowId = dynamicData.path.split(".")[1];
336
335
  const path = store.searchParams?.get("path");
337
336
  const id = store.searchParams?.get("id");
@@ -340,7 +339,7 @@ export default (store: any, dynamicData: any, submitHandler: any, service: any)
340
339
  store.navigate(`/ComponentEvents?path=${finalPath}&id=${id}`)
341
340
  },
342
341
  eventAddHandler: function () {
343
- if (validateAndShowErrors(store)) return;
342
+ if (validateAndShowErrors(store)) return;
344
343
  const path = store.searchParams?.get("path");
345
344
  const id = store.searchParams?.get("id");
346
345
  if (!Array.isArray(store.formData.events)) {
@@ -378,8 +377,8 @@ export default (store: any, dynamicData: any, submitHandler: any, service: any)
378
377
  const copiedElementPath = this.elementPathHandler(parentPathOfCopiedComponent, rowId, elementType);
379
378
  const copiedFormData = getFormdataFromSessionStorage(copiedElementPath);
380
379
 
381
- this.ElementPathSetter(uiSchema,copiedFormData);
382
- sessionStorage.setItem('copiedConfig',JSON.stringify(copiedFormData));
380
+ this.ElementPathSetter(uiSchema, copiedFormData);
381
+ sessionStorage.setItem('copiedConfig', JSON.stringify(copiedFormData));
383
382
  store.setNotify({
384
383
  SuccessMessage: `${elementType} Copied Successfully`,
385
384
  Success: true,
@@ -418,7 +417,7 @@ export default (store: any, dynamicData: any, submitHandler: any, service: any)
418
417
  Fail: true,
419
418
  });
420
419
  }
421
- else if(copiedConfig.name && elementType === "Events"){
420
+ else if (copiedConfig.name && elementType === "Events") {
422
421
  store.setNotify({
423
422
  FailMessage: notificationMessages.Component,
424
423
  Fail: true,
@@ -446,29 +445,29 @@ export default (store: any, dynamicData: any, submitHandler: any, service: any)
446
445
  },
447
446
  ElementPathSetter: function (uiSchema: any, copiedFormData?: any) {
448
447
  const formData = copiedFormData || JSON.parse(sessionStorage.getItem("copiedConfig"));
449
- if(uiSchema?.elements?.[1]?.elements?.[0]?.config?.main?.headerIcons){
450
- uiSchema.elements[1].elements[0].config.main.headerIcons.elements[1].widget.config.main.tooltipMessage = `Copied Component: ${formData.name}`;
448
+ if (uiSchema?.elements?.[1]?.elements?.[0]?.config?.main?.headerIcons) {
449
+ uiSchema.elements[1].elements[0].config.main.headerIcons.elements[1].widget.config.main.tooltipMessage = `Copied Component: ${formData.name}`;
451
450
  }
452
- else if(uiSchema?.elements?.[0]?.elements?.[1]?.elements?.[0]?.config?.main?.headerIcons){
453
- uiSchema.elements[0].elements[1].elements[0].config.main.headerIcons.elements[1].widget.config.main.tooltipMessage = `Copied Component: ${formData.name}`;
451
+ else if (uiSchema?.elements?.[0]?.elements?.[1]?.elements?.[0]?.config?.main?.headerIcons) {
452
+ uiSchema.elements[0].elements[1].elements[0].config.main.headerIcons.elements[1].widget.config.main.tooltipMessage = `Copied Component: ${formData.name}`;
454
453
  }
455
454
 
456
-
457
- if(uiSchema?.elements?.[1]?.elements?.[1]?.config?.main?.headerIcons){
458
- uiSchema.elements[1].elements[1].config.main.headerIcons.elements[1].widget.config.main.tooltipMessage = `Copied Event: ${formData.eventType}`;
455
+
456
+ if (uiSchema?.elements?.[1]?.elements?.[1]?.config?.main?.headerIcons) {
457
+ uiSchema.elements[1].elements[1].config.main.headerIcons.elements[1].widget.config.main.tooltipMessage = `Copied Event: ${formData.eventType}`;
459
458
  }
460
- else if(uiSchema?.elements?.[0]?.elements?.[1]?.config?.main?.headerIcons){
461
- uiSchema.elements[0].elements[1].config.main.headerIcons.elements[1].widget.config.main.tooltipMessage = `Copied Component: ${formData.eventType}`;
459
+ else if (uiSchema?.elements?.[0]?.elements?.[1]?.config?.main?.headerIcons) {
460
+ uiSchema.elements[0].elements[1].config.main.headerIcons.elements[1].widget.config.main.tooltipMessage = `Copied Component: ${formData.eventType}`;
462
461
  }
463
462
  },
464
463
 
465
-
466
- onNavigatePopupYes: function() {
467
- try{
464
+
465
+ onNavigatePopupYes: function () {
466
+ try {
468
467
  store.navigate(sessionStorage.getItem("pendingNavigatePath"))
469
468
  store.updateDialog(`pageNamepopup`)
470
469
  }
471
- catch(e){
470
+ catch (e) {
472
471
  store.updateDialog(`pageNamepopup`)
473
472
  store.setNotify({
474
473
  FailMessage: "Couldn't navigate page",
@@ -476,8 +475,8 @@ export default (store: any, dynamicData: any, submitHandler: any, service: any)
476
475
  })
477
476
  }
478
477
  },
479
- onNavigatePopupNo: function() {
480
- store.updateDialog(`pageNamepopup`)
478
+ onNavigatePopupNo: function () {
479
+ store.updateDialog(`pageNamepopup`)
481
480
  }
482
481
  }
483
482
  };
@@ -80,7 +80,7 @@ export default (funcParams: funcParamsProps) => {
80
80
  const config = pageData?.config;
81
81
  const uiSchema = pageData?.uiSchema;
82
82
  const event = new CustomEvent('pageNameChanged', {
83
- detail: { pageName: config.label, hasBackIcon: config.hasBackIcon === "NO" ? false : true }
83
+ detail: { pageName: config.label, pageIconUrl: config.pageIconUrl, hasBackIcon: config.hasBackIcon === "NO" ? false : true }
84
84
  });
85
85
  window.dispatchEvent(event)
86
86
  const theme = funcParams?.store?.theme?.myTheme;
@@ -173,13 +173,6 @@ export default (funcParams: funcParamsProps) => {
173
173
  const response = await this.callExecuteEvents(paginationValues, apiBody, "onLoad");
174
174
  return response?.data;
175
175
  },
176
- onNodeExpandChange: async function (param) {
177
- const apiBody = [
178
- { key: "expandedNodeId", value: param.expandedNodeId }
179
- ]
180
- const response = await this.callExecuteEvents(param, apiBody, "onLoad");
181
- return response?.data;
182
- },
183
176
  getSelectOptions: async function (param) {
184
177
  if (param.serachValue !== "" && param.serachValue !== undefined) {
185
178
  const apiBody = [
@@ -1 +0,0 @@
1
- export declare const buildHierarchyChart: (config: any, componentScope: any, store: any) => any;
@@ -1,22 +0,0 @@
1
- export declare const HierarchyChart: {
2
- type: string;
3
- scope: string;
4
- options: {
5
- widget: string;
6
- };
7
- config: {
8
- layout: {
9
- xs: number;
10
- sm: number;
11
- md: number;
12
- lg: number;
13
- };
14
- main: {};
15
- style: {
16
- containerStyle: {};
17
- labelStyle: {
18
- margin: {};
19
- };
20
- };
21
- };
22
- };
@@ -1,38 +0,0 @@
1
- import { HierarchyChart } from "./uischema/hierarchyChart";
2
- import _ from "lodash";
3
- import { createLayoutFormat } from "./buildConfig";
4
-
5
- export const buildHierarchyChart = (config, componentScope, store) => {
6
- const hierarchyChart: any = _.cloneDeep(HierarchyChart);
7
-
8
- hierarchyChart.scope = componentScope;
9
- if (config.style) {
10
- hierarchyChart.config.style = JSON.parse(config.style)
11
- }
12
- if (config.layout) {
13
- hierarchyChart.config.layout = createLayoutFormat(config.layout)
14
- }
15
- if (config.linkType) {
16
- hierarchyChart.config.main.linkType = config.linkType;
17
- }
18
- if (config.stepPercent) {
19
- hierarchyChart.config.main.stepPercent = config.stepPercent;
20
- }
21
- if (config.nodeWidth) {
22
- hierarchyChart.config.main.nodeWidth = config.nodeWidth;
23
- }
24
- if (config.nodeHeight) {
25
- hierarchyChart.config.main.nodeHeight = config.nodeHeight;
26
- }
27
- if (config.chartHeight) {
28
- hierarchyChart.config.main.chartHeight = config.chartHeight;
29
- }
30
- if (config.lazyLoading) {
31
- hierarchyChart.config.main.lazyLoading = config.lazyLoading === "YES" ? true : false;
32
- }
33
- if (config.isExpandAll) {
34
- hierarchyChart.config.main.isExpandAll = config.isExpandAll === "YES" ? true : false;
35
- }
36
- return hierarchyChart;
37
- }
38
-
@@ -1,13 +0,0 @@
1
- export const HierarchyChart = {
2
- type: "Control",
3
- scope: "#/properties/HierarchyChart",
4
- options: {
5
- widget: "HierarchyChart",
6
- },
7
- config: {
8
- layout: {xs :12,sm:12,md:12,lg:12},
9
- main: {
10
- },
11
- style:{ containerStyle: {},labelStyle:{margin:{}} }
12
- },
13
- };