impaktapps-ui-builder 0.0.290 → 0.0.292

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": "0.0.290",
3
+ "version": "0.0.292",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -101,7 +101,7 @@ async function mergeFormdata(handlerResponse: any, componentName: string, eventC
101
101
  }
102
102
  })
103
103
  }
104
- else if(eventConfig.type = "MultipleSelect" && !(_.isEmpty(handlerResponse) && handlerResponse)){
104
+ else if(eventConfig.type === "MultipleSelect" && !(_.isEmpty(handlerResponse) && handlerResponse)){
105
105
  store.setSchema((pre) => {
106
106
  return {
107
107
  ...pre, properties: {
@@ -103,7 +103,7 @@ export default (funcParams: funcParamsProps) => {
103
103
  getSelectOptions: async function (param) {
104
104
  if (param.serachValue !== "" && param.serachValue !== undefined) {
105
105
  const apiBody = [
106
- { key: "serachValue", value: param.serachValue },
106
+ { key: "searchValue", value: param.serachValue },
107
107
  { key: "currentValue", value: param.currentValue }
108
108
  ]
109
109
  return await this.updateConfigApiBody(param, apiBody)