@rjsf/utils 6.0.0-beta.14 → 6.0.0-beta.15

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
@@ -2996,8 +2996,8 @@ function getTemplate(name, registry, uiOptions = {}) {
2996
2996
  }
2997
2997
 
2998
2998
  // src/getTestIds.ts
2999
- var import_nanoid = require("nanoid");
3000
2999
  var import_get18 = __toESM(require("lodash/get"), 1);
3000
+ var import_uniqueId = __toESM(require("lodash/uniqueId"), 1);
3001
3001
  function getTestIds() {
3002
3002
  if (typeof process === "undefined" || (0, import_get18.default)(process, "env.NODE_ENV") !== "test") {
3003
3003
  return {};
@@ -3008,7 +3008,7 @@ function getTestIds() {
3008
3008
  {
3009
3009
  get(_obj, prop) {
3010
3010
  if (!ids.has(prop)) {
3011
- ids.set(prop, (0, import_nanoid.nanoid)());
3011
+ ids.set(prop, (0, import_uniqueId.default)("test-id-"));
3012
3012
  }
3013
3013
  return ids.get(prop);
3014
3014
  }