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/dist/impaktapps-ui-builder.es.js +3 -3
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +7 -7
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +2 -2
- package/src/impaktapps-ui-builder/runtime/services/service.ts +1 -1
package/package.json
CHANGED
|
@@ -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", "
|
|
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", "
|
|
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 }
|