@vue-skuilder/edit-ui 0.1.11-2 → 0.1.11-22

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.
@@ -61683,7 +61683,8 @@ const _TypeLetterQuestion = class _TypeLetterQuestion2 extends Question {
61683
61683
  if (t < 3e3) {
61684
61684
  return 1;
61685
61685
  } else {
61686
- return 1 - (t - 3e3) / 7e3 * 0.75;
61686
+ const skill = 1 - (t - 3e3) / 7e3 * 0.75;
61687
+ return Math.max(0.25, skill);
61687
61688
  }
61688
61689
  }
61689
61690
  return 0;