oolib 2.129.6 → 2.129.8

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.
@@ -143,9 +143,10 @@ var TextInput = function (props) {
143
143
  })];
144
144
  case 3:
145
145
  pluginResponse = _a.sent();
146
- console.log({ pluginResponse: pluginResponse });
147
- if (pluginResponse)
148
- return [2 /*return*/, pluginResponse];
146
+ //if plugin responds with undefined, it means it found no error. hence lets pass the 'success info' to passValidationErrorToFormValidation
147
+ if (!pluginResponse)
148
+ passValidationErrorToFormValidation('success');
149
+ setValidationStatus(pluginResponse);
149
150
  _a.label = 4;
150
151
  case 4: return [2 /*return*/];
151
152
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oolib",
3
- "version": "2.129.6",
3
+ "version": "2.129.8",
4
4
  "description": " OKE Component Library",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",