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
|
@@ -8286,7 +8286,7 @@ const buildPropertiesSection = function(type) {
|
|
|
8286
8286
|
getSelectField("variant", "Variant"),
|
|
8287
8287
|
getInputField("toolTip", "Tooltip"),
|
|
8288
8288
|
getSelectField("toolTipPosition", "Tooltip Position"),
|
|
8289
|
-
getRadioInputField("grouping", "
|
|
8289
|
+
getRadioInputField("grouping", "Grouping", ["YES", "NO"]),
|
|
8290
8290
|
emptyBox$1("SelectEmpty", { xs: 0, sm: 0, md: 4, lg: 6 })
|
|
8291
8291
|
];
|
|
8292
8292
|
break;
|
|
@@ -8296,7 +8296,7 @@ const buildPropertiesSection = function(type) {
|
|
|
8296
8296
|
getSelectField("variant", "Variant"),
|
|
8297
8297
|
getInputField("toolTip", "Tooltip"),
|
|
8298
8298
|
getSelectField("toolTipPosition", "Tooltip Position"),
|
|
8299
|
-
getRadioInputField("grouping", "
|
|
8299
|
+
getRadioInputField("grouping", "Grouping", ["YES", "NO"]),
|
|
8300
8300
|
emptyBox$1("MultipleSelectEmpty", { xs: 6, sm: 6, md: 8, lg: 9 })
|
|
8301
8301
|
];
|
|
8302
8302
|
break;
|
|
@@ -10940,7 +10940,7 @@ var service = (funcParams) => {
|
|
|
10940
10940
|
return response == null ? void 0 : response.data;
|
|
10941
10941
|
},
|
|
10942
10942
|
getSelectOptions: async function(param) {
|
|
10943
|
-
if (param.serachValue !== void 0) {
|
|
10943
|
+
if (param.serachValue !== "" && param.serachValue !== void 0) {
|
|
10944
10944
|
const apiBody = [
|
|
10945
10945
|
{ key: "searchValue", value: param.serachValue },
|
|
10946
10946
|
{ key: "currentValue", value: param.currentValue }
|