autoql-fe-utils 1.11.22 → 1.11.23

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/index.js CHANGED
@@ -2336,7 +2336,7 @@ var isISODate = (str) => {
2336
2336
  if (/^\d{4}-\d{2}-\d{2}$/.test(dateString)) {
2337
2337
  return false;
2338
2338
  }
2339
- if (/^\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}(\.\d{1,3})?$/.test(dateString)) {
2339
+ if (/^\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}(\.\d+)?([+-]\d{2}(:\d{2})?|Z)?$/.test(dateString)) {
2340
2340
  return true;
2341
2341
  }
2342
2342
  if (/\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}Z/.test(dateString)) {