@integry/sdk 4.7.0 → 4.7.1

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": "@integry/sdk",
3
- "version": "4.7.0",
3
+ "version": "4.7.1",
4
4
  "description": "Integry SDK",
5
5
  "main": "dist/umd/index.umd.js",
6
6
  "module": "dist/esm/index.csm.js",
@@ -219,6 +219,8 @@ const MultipurposeField = (props: MultipurposeFieldProps) => {
219
219
  newValue = newValue.replace(tag.text, `{${tag.value}}`);
220
220
  });
221
221
  newValue = newValue.trim();
222
+ // remove zero width space
223
+ newValue = newValue.replace(/\u200B/g, '');
222
224
  if (removeWhitespace(newValue).length === 0) {
223
225
  el.value = '';
224
226
  newValue = '';