@khanacademy/math-input 14.2.1 → 14.2.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 +9 -0
- package/dist/es/index.js +3 -2
- package/dist/es/index.js.map +1 -1
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/components/aphrodite-css-transition-group/transition-child.tsx +2 -1
- package/tsconfig-build.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @khanacademy/math-input
|
|
2
2
|
|
|
3
|
+
## 14.2.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#787](https://github.com/Khan/perseus/pull/787) [`ed00ee59`](https://github.com/Khan/perseus/commit/ed00ee59dcdeb20a66709c6b7d3474da55d58e4d) Thanks [@jeremywiebe](https://github.com/jeremywiebe)! - Fix a bug where the mobile keypad didn't animate in the first time it appeared.
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`79403e06`](https://github.com/Khan/perseus/commit/79403e06eedb597d7818d6c858bbba6f51ff3fe1)]:
|
|
10
|
+
- @khanacademy/perseus-core@1.3.0
|
|
11
|
+
|
|
3
12
|
## 14.2.1
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
package/dist/es/index.js
CHANGED
|
@@ -20,7 +20,7 @@ import * as Redux from 'redux';
|
|
|
20
20
|
|
|
21
21
|
// This file is processed by a Rollup plugin (replace) to inject the production
|
|
22
22
|
const libName = "@khanacademy/math-input";
|
|
23
|
-
const libVersion = "14.2.
|
|
23
|
+
const libVersion = "14.2.2";
|
|
24
24
|
addLibraryVersionToPerseusDebug(libName, libVersion);
|
|
25
25
|
|
|
26
26
|
function _extends() {
|
|
@@ -5295,7 +5295,8 @@ class TransitionChild extends React.Component {
|
|
|
5295
5295
|
}
|
|
5296
5296
|
queueClass(removeClassName, addClassName) {
|
|
5297
5297
|
this.classNameQueue.push([removeClassName, addClassName]);
|
|
5298
|
-
|
|
5298
|
+
// Queue operation for after the next paint.
|
|
5299
|
+
this.props.schedule.timeout(this.flushClassNameQueue, 0);
|
|
5299
5300
|
}
|
|
5300
5301
|
render() {
|
|
5301
5302
|
const {
|