@stsdti/funky-ui-kit 1.6.0 → 1.6.2

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.
@@ -22285,6 +22285,9 @@ function joinList(list, path, separator = ",") {
22285
22285
  }
22286
22286
  return localList.join(separator);
22287
22287
  }
22288
+ const isNumeric = (value) => {
22289
+ return /^-?\d+(?:\.\d+)?$/.test(String(value));
22290
+ };
22288
22291
  const _sfc_main$1t = {
22289
22292
  __name: "AppFileDropZone",
22290
22293
  emits: ["files-dropped"],
@@ -85585,6 +85588,7 @@ export {
85585
85588
  getStyleFromObject,
85586
85589
  hasValue,
85587
85590
  isEqualLoose,
85591
+ isNumeric,
85588
85592
  joinList,
85589
85593
  makeArray,
85590
85594
  mergeObjectWithoutOverwrite,