impaktapps-ui-builder 1.0.450 → 1.0.480

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "1.0.450",
3
+ "version": "1.0.480",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -37,9 +37,6 @@ const buildAreaGraph = (config:any,componentScope:string) => {
37
37
  if(config.yAxisTickCount){
38
38
  AreaGraph.config.main.yAxisTickCount = config.yAxisTickCount
39
39
  }
40
- if(config.xAxisTickCount){
41
- AreaGraph.config.main.xAxisTickCount = config.xAxisTickCount
42
- }
43
40
  if (config.xAxisValue) {
44
41
  AreaGraph.config.main.xAxisValue = config.xAxisValue;
45
42
  }
@@ -34,9 +34,6 @@ const buildStackBarLineGraph = (config:any,componentScope:string) => {
34
34
  if(config.yAxisTickCount){
35
35
  StackBarLineGraph.config.main.yAxisTickCount = config.yAxisTickCount
36
36
  }
37
- if(config.xAxisTickCount){
38
- StackBarLineGraph.config.main.xAxisTickCount = config.xAxisTickCount
39
- }
40
37
  if (config.xAxisValue) {
41
38
  StackBarLineGraph.config.main.xAxisValue = config.xAxisValue;
42
39
  }
@@ -581,13 +581,13 @@ export const buildPropertiesSection = function (type: String) {
581
581
  getRadioInputField("bottomAxisAngle", "Bottom Axis Angled", ["YES", "No"]),
582
582
  getInputField("leftMargin", "Left Margin"),
583
583
  getInputField("yAxisTickCount", "Y Axis TickCount"),
584
- getInputField("xAxisTickCount", "X Axis TickCount"),
585
584
  getSelectField("xAxisFormatType", "X Axis Format Type", [
586
585
  { label: "Date and Month", value: "Date and Month" },
587
586
  { label: "Month and Year", value: "Month and Year" }
588
587
  ]),
589
588
  getInputField("growthRateKey", "Growth Rate Key"),
590
589
  getInputField("tooltipUnit", "Tooltip Unit"),
590
+ emptyBox("GraphEmpty1", { xs: 6, sm: 6, md: 4, lg: 3 }),
591
591
  getArrayControlMultiField("legendLabels", "key", "value", "Key", "Label", "Configure Bar Labels"),
592
592
  getArrayControlMultiField("pieArcColors", "key", "value", "Key", "Color", "Configure Bar Colors"),
593
593
  ];
@@ -196,7 +196,7 @@ export default (funcParams: funcParamsProps) => {
196
196
  return response?.data;
197
197
  },
198
198
  getSelectOptions: async function (param) {
199
- if (param.serachValue !== "" && param.serachValue !== undefined) {
199
+ if ( param.serachValue !== undefined) {
200
200
  const apiBody = [
201
201
  { key: "searchValue", value: param.serachValue },
202
202
  { key: "currentValue", value: param.currentValue }