@doenet/doenetml-iframe 0.7.20-dev.336 → 0.7.20-dev.337

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/index.js CHANGED
@@ -26093,7 +26093,7 @@ function requestBootSlot(id2, grant) {
26093
26093
  return;
26094
26094
  }
26095
26095
  bootQueue.push({ id: id2, requestOrder: ++bootRequestCounter, grant });
26096
- pumpBootQueue();
26096
+ grantBootSlots();
26097
26097
  }
26098
26098
  function cancelBootRequest(id2) {
26099
26099
  const idx = bootQueue.findIndex((r2) => r2.id === id2);
@@ -26103,10 +26103,10 @@ function cancelBootRequest(id2) {
26103
26103
  }
26104
26104
  function releaseBootSlot(id2) {
26105
26105
  if (bootSlotHolders.delete(id2)) {
26106
- pumpBootQueue();
26106
+ grantBootSlots();
26107
26107
  }
26108
26108
  }
26109
- function pumpBootQueue() {
26109
+ function grantBootSlots() {
26110
26110
  const max2 = effectiveMaxBoots ?? Infinity;
26111
26111
  while (bootQueue.length > 0 && bootSlotHolders.size < max2) {
26112
26112
  let best = 0;
@@ -63397,7 +63397,7 @@ function ExternalVirtualKeyboard({
63397
63397
  }
63398
63398
  );
63399
63399
  }
63400
- const version = "0.7.20-dev.336";
63400
+ const version = "0.7.20-dev.337";
63401
63401
  const latestDoenetmlVersion = version;
63402
63402
  function subscribeToPinnedTheme() {
63403
63403
  return () => {