@jsenv/navi 0.15.6 → 0.15.7

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.
@@ -7194,7 +7194,11 @@ const UITransition = ({
7194
7194
  };
7195
7195
  const update = (part, newPart) => {
7196
7196
  if (!set.has(part)) {
7197
- console.warn(`UITransition: trying to update an id that does not exist: ${part}`);
7197
+ if (set.size === 0) {
7198
+ console.warn(`UITransition: content id update "${part}" -> "${newPart}" ignored because content id set is empty`);
7199
+ return;
7200
+ }
7201
+ console.warn(`UITransition: content id update "${part}" -> "${newPart}" ignored because content id not found in set, only got [${Array.from(set).join(", ")}]`);
7198
7202
  return;
7199
7203
  }
7200
7204
  set.delete(part);