@khanacademy/math-input 0.7.1 → 0.7.2
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/CHANGELOG.md +7 -0
- package/dist/components/keypad/button.d.ts +1 -2
- package/dist/components/keypad/button.js.flow +1 -2
- package/dist/components/keypad/keypad-page-items.d.ts +1 -2
- package/dist/components/keypad/keypad-page-items.js.flow +1 -2
- package/dist/es/index.js +1 -3
- package/dist/es/index.js.map +1 -1
- package/dist/index.js +1 -3
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/components/gesture-state-machine.js +1 -1
- package/src/components/keypad/button.tsx +1 -3
- package/src/components/keypad/keypad-page-items.tsx +1 -3
- package/src/fake-react-native-web/view.tsx +0 -1
- package/tsconfig.tsbuildinfo +1 -1
package/dist/index.js
CHANGED
|
@@ -196,8 +196,6 @@ const styles$f = aphrodite.StyleSheet.create({
|
|
|
196
196
|
});
|
|
197
197
|
|
|
198
198
|
class View extends React__namespace.Component {
|
|
199
|
-
// $FlowFixMe[signature-verification-failure]
|
|
200
|
-
|
|
201
199
|
render() {
|
|
202
200
|
const className = aphrodite.css(View.styles.initial, ...(Array.isArray(this.props.style) ? this.props.style : [this.props.style])) + (this.props.extraClassName ? " ".concat(this.props.extraClassName) : "");
|
|
203
201
|
return /*#__PURE__*/React__namespace.createElement("div", {
|
|
@@ -2759,7 +2757,7 @@ class GestureStateMachine {
|
|
|
2759
2757
|
this.swipeDisabledNodeIds = swipeDisabledNodeIds || [];
|
|
2760
2758
|
this.multiPressableKeys = multiPressableKeys || [];
|
|
2761
2759
|
|
|
2762
|
-
// TODO(charlie):
|
|
2760
|
+
// TODO(charlie): Add types for this file. It's not great that we're now
|
|
2763
2761
|
// passing around these opaque state objects.
|
|
2764
2762
|
this.touchState = {};
|
|
2765
2763
|
this.swipeState = null;
|