@linzjs/lui 17.41.3 → 17.41.4

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/lui.esm.js CHANGED
@@ -15614,14 +15614,15 @@ var parse$2 = function (value, options) {
15614
15614
  return isValidDate ? result : undefined;
15615
15615
  };
15616
15616
  var parseTextDate = function (value, options) {
15617
+ var _a;
15617
15618
  if (!value || typeof value !== 'string') {
15618
- return;
15619
+ return '';
15619
15620
  }
15620
15621
  try {
15621
- return parse$2(value, options);
15622
+ return (_a = parse$2(value, options)) !== null && _a !== void 0 ? _a : '';
15622
15623
  }
15623
- catch (_a) {
15624
- return;
15624
+ catch (_b) {
15625
+ return '';
15625
15626
  }
15626
15627
  };
15627
15628