@khanacademy/math-input 21.1.3 → 21.1.5

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/es/index.js CHANGED
@@ -16,7 +16,7 @@ import PropTypes from 'prop-types';
16
16
 
17
17
  // This file is processed by a Rollup plugin (replace) to inject the production
18
18
  const libName = "@khanacademy/math-input";
19
- const libVersion = "21.1.3";
19
+ const libVersion = "21.1.5";
20
20
  addLibraryVersionToPerseusDebug(libName, libVersion);
21
21
 
22
22
  function _extends() {
@@ -2257,7 +2257,10 @@ class MathInput extends React.Component {
2257
2257
  this.handleTouchStart(e, keypadActive, setKeypadActive);
2258
2258
  },
2259
2259
  onTouchMove: this.handleTouchMove,
2260
- onTouchEnd: this.handleTouchEnd,
2260
+ onTouchEnd: this.handleTouchEnd
2261
+ // TODO(LEMS-2656): remove TS suppression
2262
+ // @ts-expect-error: Type '(e: React.MouseEvent<HTMLDivElement>) => void' is not assignable to type '(arg1: SyntheticEvent<HTMLDivElement, Event>) => void'.
2263
+ ,
2261
2264
  onClick: e => {
2262
2265
  this.handleClick(e, keypadActive, setKeypadActive);
2263
2266
  },