impaktapps-ui-builder 1.0.481 → 1.0.483

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.481",
3
+ "version": "1.0.483",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -689,7 +689,7 @@ export const buildPropertiesSection = function (type: String) {
689
689
  { label: "Right", value: "right" },
690
690
  { label: "Bottom", value: "bottom" }
691
691
  ]),
692
- getRadioInputField("grouping", "grouping", ["YES", "NO"]),
692
+ getRadioInputField("grouping", "Grouping", ["YES", "NO"]),
693
693
  emptyBox("SelectEmpty", { xs: 0, sm: 0, md: 4, lg: 6 })
694
694
  ]
695
695
  break;
@@ -708,7 +708,7 @@ export const buildPropertiesSection = function (type: String) {
708
708
  { label: "Right", value: "right" },
709
709
  { label: "Bottom", value: "bottom" }
710
710
  ]),
711
- getRadioInputField("grouping", "grouping", ["YES", "NO"]),
711
+ getRadioInputField("grouping", "Grouping", ["YES", "NO"]),
712
712
  emptyBox("MultipleSelectEmpty", { xs: 6, sm: 6, md: 8, lg: 9 })
713
713
  ]
714
714
  break;
@@ -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 !== undefined) {
199
+ if (param.serachValue !== "" && param.serachValue !== undefined) {
200
200
  const apiBody = [
201
201
  { key: "searchValue", value: param.serachValue },
202
202
  { key: "currentValue", value: param.currentValue }