cubing 0.35.9 → 0.35.10

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.
@@ -5464,10 +5464,12 @@ function getConfigFromURL(prefix = "", url = location.href) {
5464
5464
 
5465
5465
  // src/cubing/twisty/views/twizzle/TwizzleLink.ts
5466
5466
  var NBSP = "\xA0";
5467
+ var OUTER_BLOCK_MOVES_EXPLANATION = "outer block moves (e.g. R, Rw, or 4r)";
5468
+ var INNER_BLOCK_MOVES_EXPLANATION = "inner block moves (e.g. M or 2-5r)";
5467
5469
  var METRIC_EXPLANATIONS = {
5468
- ["OBTM" /* OuterBlockTurnMetric */]: 'OBTM ("Outer Block Turn Metric"): rotations count as 0 turns, outer block turns count as 1 turn, slices count as 2 turns',
5469
- ["RBTM" /* RangeBlockTurnMetric */]: 'RBTM ("Range Block Turn Metric"): rotations count as 0 turns, outer block turns and inner block moves (slices or slice ranges) count as 1 turn',
5470
- ["ETM" /* ExecutionTurnMetric */]: 'ETM ("Outer Block Turn Metric"): all moves (including rotations) count as 1 turn'
5470
+ ["OBTM" /* OuterBlockTurnMetric */]: `OBTM ("Outer Block Turn Metric"): ${INNER_BLOCK_MOVES_EXPLANATION} count as 2 turns, ${OUTER_BLOCK_MOVES_EXPLANATION} count as 1 turn, rotations (e.g. x) count as 0 turns`,
5471
+ ["RBTM" /* RangeBlockTurnMetric */]: `RBTM ("Range Block Turn Metric"): ${OUTER_BLOCK_MOVES_EXPLANATION} count as 1 turn, ${INNER_BLOCK_MOVES_EXPLANATION} count as 1 turn, rotations (e.g. x) count as 0 turns`,
5472
+ ["ETM" /* ExecutionTurnMetric */]: `ETM ("Execution Turn Metric"): all moves (including rotations) count as 1 turn`
5471
5473
  };
5472
5474
  var TwizzleLink = class extends ManagedCustomElement {
5473
5475
  constructor(options) {