@pie-lib/math-input 8.1.1-next.2 → 8.1.1-next.57
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.json +17 -0
- package/CHANGELOG.md +1172 -0
- package/LICENSE.md +5 -0
- package/lib/horizontal-keypad.js +96 -0
- package/lib/horizontal-keypad.js.map +1 -0
- package/lib/index.js +69 -0
- package/lib/index.js.map +1 -0
- package/lib/keypad/index.js +413 -0
- package/lib/keypad/index.js.map +1 -0
- package/lib/keypad/keys-layout.js +22 -0
- package/lib/keypad/keys-layout.js.map +1 -0
- package/lib/keys/basic-operators.js +33 -0
- package/lib/keys/basic-operators.js.map +1 -0
- package/lib/keys/chars.js +12 -0
- package/lib/keys/chars.js.map +1 -0
- package/lib/keys/comparison.js +39 -0
- package/lib/keys/comparison.js.map +1 -0
- package/lib/keys/constants.js +37 -0
- package/lib/keys/constants.js.map +1 -0
- package/lib/keys/digits.js +46 -0
- package/lib/keys/digits.js.map +1 -0
- package/lib/keys/edit.js +14 -0
- package/lib/keys/edit.js.map +1 -0
- package/lib/keys/exponent.js +30 -0
- package/lib/keys/exponent.js.map +1 -0
- package/lib/keys/fractions.js +29 -0
- package/lib/keys/fractions.js.map +1 -0
- package/lib/keys/geometry.js +140 -0
- package/lib/keys/geometry.js.map +1 -0
- package/lib/keys/grades.js +259 -0
- package/lib/keys/grades.js.map +1 -0
- package/lib/keys/index.js +35 -0
- package/lib/keys/index.js.map +1 -0
- package/lib/keys/log.js +27 -0
- package/lib/keys/log.js.map +1 -0
- package/lib/keys/logic.js +19 -0
- package/lib/keys/logic.js.map +1 -0
- package/lib/keys/matrices.js +19 -0
- package/lib/keys/matrices.js.map +1 -0
- package/lib/keys/misc.js +62 -0
- package/lib/keys/misc.js.map +1 -0
- package/lib/keys/navigation.js +20 -0
- package/lib/keys/navigation.js.map +1 -0
- package/lib/keys/operators.js +15 -0
- package/lib/keys/operators.js.map +1 -0
- package/lib/keys/statistics.js +40 -0
- package/lib/keys/statistics.js.map +1 -0
- package/lib/keys/sub-sup.js +19 -0
- package/lib/keys/sub-sup.js.map +1 -0
- package/lib/keys/trigonometry.js +45 -0
- package/lib/keys/trigonometry.js.map +1 -0
- package/lib/keys/utils.js +87 -0
- package/lib/keys/utils.js.map +1 -0
- package/lib/keys/vars.js +24 -0
- package/lib/keys/vars.js.map +1 -0
- package/lib/math-input.js +141 -0
- package/lib/math-input.js.map +1 -0
- package/lib/mq/common-mq-styles.js +102 -0
- package/lib/mq/common-mq-styles.js.map +1 -0
- package/lib/mq/custom-elements.js +20 -0
- package/lib/mq/custom-elements.js.map +1 -0
- package/lib/mq/index.js +28 -0
- package/lib/mq/index.js.map +1 -0
- package/lib/mq/input.js +186 -0
- package/lib/mq/input.js.map +1 -0
- package/lib/mq/mathquill-instance.js +52 -0
- package/lib/mq/mathquill-instance.js.map +1 -0
- package/lib/mq/static.js +301 -0
- package/lib/mq/static.js.map +1 -0
- package/lib/updateSpans.js +19 -0
- package/lib/updateSpans.js.map +1 -0
- package/package.json +18 -33
- package/src/__tests__/horizontal-keypad.test.jsx +463 -0
- package/src/__tests__/index.test.js +247 -0
- package/src/__tests__/math-input-test.jsx +45 -0
- package/src/__tests__/updateSpans.test.js +297 -0
- package/src/horizontal-keypad.jsx +69 -0
- package/src/index.jsx +28 -0
- package/src/keypad/__tests__/index.test.jsx +25 -0
- package/src/keypad/__tests__/keys-layout.test.js +14 -0
- package/src/keypad/index.jsx +439 -0
- package/src/keypad/keys-layout.js +16 -0
- package/src/keys/__tests__/utils.test.js +57 -0
- package/src/keys/basic-operators.js +32 -0
- package/src/keys/chars.js +5 -0
- package/src/keys/comparison.js +28 -0
- package/src/keys/constants.js +35 -0
- package/src/keys/digits.js +40 -0
- package/src/keys/edit.js +3 -0
- package/src/keys/exponent.js +28 -0
- package/src/keys/fractions.js +26 -0
- package/src/keys/geometry.js +144 -0
- package/src/keys/grades.js +367 -0
- package/src/keys/index.js +20 -0
- package/src/keys/log.js +22 -0
- package/src/keys/logic.js +15 -0
- package/src/keys/matrices.js +15 -0
- package/src/keys/misc.js +65 -0
- package/src/keys/navigation.js +8 -0
- package/src/keys/operators.js +10 -0
- package/src/keys/statistics.js +38 -0
- package/src/keys/sub-sup.js +15 -0
- package/src/keys/trigonometry.js +15 -0
- package/src/keys/utils.js +66 -0
- package/src/keys/vars.js +19 -0
- package/src/math-input.jsx +119 -0
- package/src/mq/__tests__/custom-elements.test.js +342 -0
- package/src/mq/__tests__/input.test.jsx +40 -0
- package/src/mq/__tests__/mathquill-instance.test.js +67 -0
- package/src/mq/__tests__/static.test.jsx +33 -0
- package/src/mq/common-mq-styles.js +109 -0
- package/src/mq/custom-elements.js +11 -0
- package/src/mq/index.js +5 -0
- package/src/mq/input.jsx +166 -0
- package/src/mq/mathquill-instance.js +45 -0
- package/src/mq/static.jsx +290 -0
- package/src/updateSpans.js +15 -0
- package/dist/_virtual/_rolldown/runtime.js +0 -11
- package/dist/horizontal-keypad.d.ts +0 -31
- package/dist/horizontal-keypad.js +0 -57
- package/dist/index.d.ts +0 -18
- package/dist/index.js +0 -19
- package/dist/keypad/accessible-keypad.d.ts +0 -37
- package/dist/keypad/accessible-keypad.js +0 -614
- package/dist/keypad/index.d.ts +0 -2
- package/dist/keypad/keys-layout.d.ts +0 -15
- package/dist/keypad/keys-layout.js +0 -5
- package/dist/keypad/model.d.ts +0 -28
- package/dist/keypad/model.js +0 -4
- package/dist/keys/basic-operators.d.ts +0 -13
- package/dist/keys/basic-operators.js +0 -30
- package/dist/keys/chars.d.ts +0 -13
- package/dist/keys/comparison.d.ts +0 -12
- package/dist/keys/comparison.js +0 -32
- package/dist/keys/constants.d.ts +0 -12
- package/dist/keys/constants.js +0 -35
- package/dist/keys/digits.d.ts +0 -23
- package/dist/keys/digits.js +0 -34
- package/dist/keys/edit.d.ts +0 -14
- package/dist/keys/edit.js +0 -9
- package/dist/keys/exponent.d.ts +0 -12
- package/dist/keys/exponent.js +0 -28
- package/dist/keys/fractions.d.ts +0 -11
- package/dist/keys/fractions.js +0 -27
- package/dist/keys/geometry.d.ts +0 -31
- package/dist/keys/geometry.js +0 -127
- package/dist/keys/grades.d.ts +0 -17
- package/dist/keys/grades.js +0 -414
- package/dist/keys/index.d.ts +0 -14
- package/dist/keys/index.js +0 -50
- package/dist/keys/log.d.ts +0 -11
- package/dist/keys/log.js +0 -25
- package/dist/keys/logic.d.ts +0 -10
- package/dist/keys/logic.js +0 -13
- package/dist/keys/matrices.d.ts +0 -10
- package/dist/keys/matrices.js +0 -17
- package/dist/keys/misc.d.ts +0 -18
- package/dist/keys/misc.js +0 -60
- package/dist/keys/navigation.d.ts +0 -10
- package/dist/keys/navigation.js +0 -13
- package/dist/keys/operators.d.ts +0 -9
- package/dist/keys/operators.js +0 -11
- package/dist/keys/statistics.d.ts +0 -13
- package/dist/keys/statistics.js +0 -38
- package/dist/keys/sub-sup.d.ts +0 -10
- package/dist/keys/sub-sup.js +0 -17
- package/dist/keys/trigonometry.d.ts +0 -14
- package/dist/keys/trigonometry.js +0 -43
- package/dist/keys/utils.d.ts +0 -13
- package/dist/keys/utils.js +0 -24
- package/dist/keys/vars.d.ts +0 -11
- package/dist/keys/vars.js +0 -22
- package/dist/math-input.d.ts +0 -30
- package/dist/mq/common-mq-styles.d.ts +0 -225
- package/dist/mq/common-mq-styles.js +0 -54
- package/dist/mq/custom-elements.d.ts +0 -10
- package/dist/mq/custom-elements.js +0 -10
- package/dist/mq/index.d.ts +0 -12
- package/dist/mq/index.js +0 -12
- package/dist/mq/input.d.ts +0 -35
- package/dist/mq/input.js +0 -83
- package/dist/mq/static.d.ts +0 -43
- package/dist/mq/static.js +0 -142
- package/dist/updateSpans.d.ts +0 -10
- package/dist/updateSpans.js +0 -9
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,1172 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
+
|
|
6
|
+
# [8.1.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@8.1.0-next.1...@pie-lib/math-input@8.1.0) (2026-05-07)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
9
|
+
|
|
10
|
+
# [8.1.0-next.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@8.1.0-next.0...@pie-lib/math-input@8.1.0-next.1) (2026-05-07)
|
|
11
|
+
|
|
12
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
13
|
+
|
|
14
|
+
# [8.1.0-next.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@7.2.0-next.7...@pie-lib/math-input@8.1.0-next.0) (2026-05-06)
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
- **math-input:** bump @pie-framework/mathquill to 1.2.1-beta.1 with jQuery shim fixes PIE-16 PIE-20 ([3eaa8fd](https://github.com/pie-framework/pie-lib/commit/3eaa8fd410d8668c2d085cca4a4995a7e66d774f))
|
|
19
|
+
- **math-toolbar:** update math keypad colors and styles for improved UI consistency PD-5530 ([713c283](https://github.com/pie-framework/pie-lib/commit/713c283a11e1cff6568da7010e98e0b84df164ab))
|
|
20
|
+
- refactor release script, force publish math-input ([d397e7b](https://github.com/pie-framework/pie-lib/commit/d397e7b992e28f7a1eaa68798410cdff167f55a5))
|
|
21
|
+
- remove default mui uppercase button style PD-5649 ([4f35483](https://github.com/pie-framework/pie-lib/commit/4f354832a7656ff640ca7d6a2b9baab2fd000b53))
|
|
22
|
+
|
|
23
|
+
### Features
|
|
24
|
+
|
|
25
|
+
- **math-input:** add hover styles for keypad buttons and update color definitions PD-5530 ([a3cb101](https://github.com/pie-framework/pie-lib/commit/a3cb101e5f326df14d0ae8454689ee18218744db))
|
|
26
|
+
- **math-input:** centralize MathQuill init; export registerEmbed and applyStaticMath PIE-57 ([43350d8](https://github.com/pie-framework/pie-lib/commit/43350d8d8cee0b64a8c6d2c585985d406eaa6871))
|
|
27
|
+
|
|
28
|
+
## [8.0.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@8.0.0...@pie-lib/math-input@8.0.1) (2026-04-28)
|
|
29
|
+
|
|
30
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
31
|
+
|
|
32
|
+
# [7.2.0-next.12](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@7.2.0-next.11...@pie-lib/math-input@7.2.0-next.12) (2026-04-09)
|
|
33
|
+
|
|
34
|
+
### Features
|
|
35
|
+
|
|
36
|
+
- **math-input:** centralize MathQuill init; export registerEmbed and applyStaticMath PIE-57 ([43350d8](https://github.com/pie-framework/pie-lib/commit/43350d8d8cee0b64a8c6d2c585985d406eaa6871))
|
|
37
|
+
|
|
38
|
+
# [7.2.0-next.11](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@7.2.0-next.10...@pie-lib/math-input@7.2.0-next.11) (2026-04-03)
|
|
39
|
+
|
|
40
|
+
### Bug Fixes
|
|
41
|
+
|
|
42
|
+
- **math-input:** bump @pie-framework/mathquill to 1.2.1-beta.1 with jQuery shim fixes PIE-16 PIE-20 ([3eaa8fd](https://github.com/pie-framework/pie-lib/commit/3eaa8fd410d8668c2d085cca4a4995a7e66d774f))
|
|
43
|
+
|
|
44
|
+
# [7.2.0-next.10](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@7.2.0-next.9...@pie-lib/math-input@7.2.0-next.10) (2026-03-25)
|
|
45
|
+
|
|
46
|
+
### Features
|
|
47
|
+
|
|
48
|
+
- **math-input:** add hover styles for keypad buttons and update color definitions PD-5530 ([a3cb101](https://github.com/pie-framework/pie-lib/commit/a3cb101e5f326df14d0ae8454689ee18218744db))
|
|
49
|
+
|
|
50
|
+
# [7.2.0-next.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@7.2.0-next.8...@pie-lib/math-input@7.2.0-next.9) (2026-03-18)
|
|
51
|
+
|
|
52
|
+
### Bug Fixes
|
|
53
|
+
|
|
54
|
+
- **math-toolbar:** update math keypad colors and styles for improved UI consistency PD-5530 ([713c283](https://github.com/pie-framework/pie-lib/commit/713c283a11e1cff6568da7010e98e0b84df164ab))
|
|
55
|
+
- remove default mui uppercase button style PD-5649 ([4f35483](https://github.com/pie-framework/pie-lib/commit/4f354832a7656ff640ca7d6a2b9baab2fd000b53))
|
|
56
|
+
|
|
57
|
+
# [7.2.0-next.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@7.2.0-next.7...@pie-lib/math-input@7.2.0-next.8) (2026-03-11)
|
|
58
|
+
|
|
59
|
+
### Bug Fixes
|
|
60
|
+
|
|
61
|
+
- refactor release script, force publish math-input ([d397e7b](https://github.com/pie-framework/pie-lib/commit/d397e7b992e28f7a1eaa68798410cdff167f55a5))
|
|
62
|
+
|
|
63
|
+
# [7.2.0-next.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@7.2.0-next.6...@pie-lib/math-input@7.2.0-next.7) (2026-03-11)
|
|
64
|
+
|
|
65
|
+
### Bug Fixes
|
|
66
|
+
|
|
67
|
+
- bump pie-framework/mathquill PD-5791 ([6dd160a](https://github.com/pie-framework/pie-lib/commit/6dd160a980fd53c2acd704b503266863c24bcf23))
|
|
68
|
+
|
|
69
|
+
# [7.2.0-next.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@7.2.0-next.5...@pie-lib/math-input@7.2.0-next.6) (2026-03-09)
|
|
70
|
+
|
|
71
|
+
### Features
|
|
72
|
+
|
|
73
|
+
- remove jQuery dependency via MathQuill 1.2.0-beta.0 Interface v3 shim PD-5791 ([d427f32](https://github.com/pie-framework/pie-lib/commit/d427f32d5547de9610579d83b454c568def7ea74))
|
|
74
|
+
|
|
75
|
+
# [7.2.0-next.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@7.2.0-next.4...@pie-lib/math-input@7.2.0-next.5) (2026-03-04)
|
|
76
|
+
|
|
77
|
+
### Bug Fixes
|
|
78
|
+
|
|
79
|
+
- **math-input:** adjust padding for empty elements in long division PD-5661 ([7196165](https://github.com/pie-framework/pie-lib/commit/71961651b7e9be81d2c5c935ef368d18d6fe1c41))
|
|
80
|
+
- **math-input:** fontFamily styling for delete button PD-5612 ([0118a78](https://github.com/pie-framework/pie-lib/commit/0118a785df81de52211beef6eb1b9724cd4c01bf))
|
|
81
|
+
|
|
82
|
+
# [7.2.0-next.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@7.2.0-next.2...@pie-lib/math-input@7.2.0-next.4) (2026-02-26)
|
|
83
|
+
|
|
84
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
85
|
+
|
|
86
|
+
# [7.2.0-next.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@7.2.0-next.1...@pie-lib/math-input@7.2.0-next.2) (2026-02-25)
|
|
87
|
+
|
|
88
|
+
### Bug Fixes
|
|
89
|
+
|
|
90
|
+
- **math-input:** keyboard fix - consolidate styles into StyledLatexButtonWrapper ([e7d0c26](https://github.com/pie-framework/pie-lib/commit/e7d0c26542c7b682241b8df5a79e6c989398583d))
|
|
91
|
+
|
|
92
|
+
# [7.1.0-next.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@7.1.0-next.1...@pie-lib/math-input@7.1.0-next.3) (2026-01-27)
|
|
93
|
+
|
|
94
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
95
|
+
|
|
96
|
+
# [7.1.0-next.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.31.1...@pie-lib/math-input@7.1.0-next.1) (2026-01-26)
|
|
97
|
+
|
|
98
|
+
### Bug Fixes
|
|
99
|
+
|
|
100
|
+
- fixed circular dependencies and bumped versions, plus image upload handling [PD-5141] ([7b5fbc9](https://github.com/pie-framework/pie-lib/commit/7b5fbc9126446916d42d6b3597232a231567b2d8))
|
|
101
|
+
- math toolbar colors ([1308b62](https://github.com/pie-framework/pie-lib/commit/1308b62031128b61952f299419bcbe46e914ee6f))
|
|
102
|
+
- remove exports and publish ([#2068](https://github.com/pie-framework/pie-lib/issues/2068)) ([60a96cd](https://github.com/pie-framework/pie-lib/commit/60a96cde0ec65f6b1cac0ae329aa33a0abc50d05))
|
|
103
|
+
|
|
104
|
+
### Features
|
|
105
|
+
|
|
106
|
+
- bump react and react-dom ([01dc19e](https://github.com/pie-framework/pie-lib/commit/01dc19e88bbc8d372c561d1511df1a82937d45af))
|
|
107
|
+
- initial work for tiptap changes [PD-5141] ([d73e617](https://github.com/pie-framework/pie-lib/commit/d73e6179c01e1497688c630da98213b31e9f4938))
|
|
108
|
+
- packages/math-input mui update PD-5268 ([b2603ad](https://github.com/pie-framework/pie-lib/commit/b2603ad0901b4b1611b7cd06ae3610c5822090b0))
|
|
109
|
+
- sync latest changes from dev ([c936e9c](https://github.com/pie-framework/pie-lib/commit/c936e9c7f9e095e7d9b9805ac2bf72bd271e05f1))
|
|
110
|
+
|
|
111
|
+
# [7.0.0-next.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.31.2-next.0...@pie-lib/math-input@7.0.0-next.0) (2026-01-19)
|
|
112
|
+
|
|
113
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
114
|
+
|
|
115
|
+
## [6.31.2-next.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.45.0-mui-update.0...@pie-lib/math-input@6.31.2-next.0) (2026-01-19)
|
|
116
|
+
|
|
117
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
118
|
+
|
|
119
|
+
## [6.31.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.27.0...@pie-lib/math-input@6.31.1) (2025-10-22)
|
|
120
|
+
|
|
121
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
122
|
+
|
|
123
|
+
# [6.31.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.27.0...@pie-lib/math-input@6.31.0) (2025-10-16)
|
|
124
|
+
|
|
125
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
126
|
+
|
|
127
|
+
# [6.30.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.27.0...@pie-lib/math-input@6.30.0) (2025-10-16)
|
|
128
|
+
|
|
129
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
130
|
+
|
|
131
|
+
# [6.29.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.27.0...@pie-lib/math-input@6.29.0) (2025-10-16)
|
|
132
|
+
|
|
133
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
134
|
+
|
|
135
|
+
# [6.28.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.27.0...@pie-lib/math-input@6.28.0) (2025-10-16)
|
|
136
|
+
|
|
137
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
138
|
+
|
|
139
|
+
# [6.27.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.27.0) (2025-09-25)
|
|
140
|
+
|
|
141
|
+
### Bug Fixes
|
|
142
|
+
|
|
143
|
+
- fixed pie-lib/icons import [PD-5126](<[dcb506c](https://github.com/pie-framework/pie-lib/commit/dcb506c914a177f6d88bf73247a023bfe71dac1f)>)
|
|
144
|
+
|
|
145
|
+
### Features
|
|
146
|
+
|
|
147
|
+
- split pie-toolbox into multiple packages [PD-5126](<[7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2)>)
|
|
148
|
+
|
|
149
|
+
# [6.26.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.25.0...@pie-lib/math-input@6.26.0) (2025-09-18)
|
|
150
|
+
|
|
151
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
152
|
+
|
|
153
|
+
# [6.25.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.24.0...@pie-lib/math-input@6.25.0) (2025-09-18)
|
|
154
|
+
|
|
155
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
156
|
+
|
|
157
|
+
# [6.24.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.24.0) (2025-09-18)
|
|
158
|
+
|
|
159
|
+
### Bug Fixes
|
|
160
|
+
|
|
161
|
+
- fixed pie-lib/icons import [PD-5126](<[dcb506c](https://github.com/pie-framework/pie-lib/commit/dcb506c914a177f6d88bf73247a023bfe71dac1f)>)
|
|
162
|
+
|
|
163
|
+
### Features
|
|
164
|
+
|
|
165
|
+
- split pie-toolbox into multiple packages [PD-5126](<[7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2)>)
|
|
166
|
+
|
|
167
|
+
# [6.23.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.22.0...@pie-lib/math-input@6.23.0) (2025-09-17)
|
|
168
|
+
|
|
169
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
170
|
+
|
|
171
|
+
# [6.22.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.21.0...@pie-lib/math-input@6.22.0) (2025-09-17)
|
|
172
|
+
|
|
173
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
174
|
+
|
|
175
|
+
# [6.21.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.20.1...@pie-lib/math-input@6.21.0) (2025-09-17)
|
|
176
|
+
|
|
177
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
178
|
+
|
|
179
|
+
## [6.20.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.20.1) (2025-08-11)
|
|
180
|
+
|
|
181
|
+
### Bug Fixes
|
|
182
|
+
|
|
183
|
+
- fixed pie-lib/icons import [PD-5126](<[dcb506c](https://github.com/pie-framework/pie-lib/commit/dcb506c914a177f6d88bf73247a023bfe71dac1f)>)
|
|
184
|
+
|
|
185
|
+
### Features
|
|
186
|
+
|
|
187
|
+
- split pie-toolbox into multiple packages [PD-5126](<[7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2)>)
|
|
188
|
+
|
|
189
|
+
# [6.20.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.20.0) (2025-08-07)
|
|
190
|
+
|
|
191
|
+
### Features
|
|
192
|
+
|
|
193
|
+
- split pie-toolbox into multiple packages [PD-5126](<[7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2)>)
|
|
194
|
+
|
|
195
|
+
# [6.19.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.19.0) (2025-07-31)
|
|
196
|
+
|
|
197
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
198
|
+
|
|
199
|
+
# [6.18.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.18.0) (2025-07-31)
|
|
200
|
+
|
|
201
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
202
|
+
|
|
203
|
+
# [6.17.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.17.0) (2025-07-31)
|
|
204
|
+
|
|
205
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
206
|
+
|
|
207
|
+
# [6.16.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.16.0) (2025-07-31)
|
|
208
|
+
|
|
209
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
210
|
+
|
|
211
|
+
# [6.15.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.15.0) (2025-07-31)
|
|
212
|
+
|
|
213
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
214
|
+
|
|
215
|
+
# [6.14.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.14.0) (2025-07-31)
|
|
216
|
+
|
|
217
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
218
|
+
|
|
219
|
+
# [6.16.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.16.0) (2025-07-31)
|
|
220
|
+
|
|
221
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
222
|
+
|
|
223
|
+
# [6.15.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.15.0) (2025-07-31)
|
|
224
|
+
|
|
225
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
226
|
+
|
|
227
|
+
# [6.14.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.14.0) (2025-07-31)
|
|
228
|
+
|
|
229
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
230
|
+
|
|
231
|
+
# [6.15.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.15.0) (2025-07-31)
|
|
232
|
+
|
|
233
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
234
|
+
|
|
235
|
+
# [6.14.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.14.0) (2025-07-31)
|
|
236
|
+
|
|
237
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
238
|
+
|
|
239
|
+
# [6.13.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.13.0) (2025-07-31)
|
|
240
|
+
|
|
241
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
242
|
+
|
|
243
|
+
# [6.13.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.13.0) (2025-07-31)
|
|
244
|
+
|
|
245
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
246
|
+
|
|
247
|
+
# [6.14.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.14.0) (2025-07-31)
|
|
248
|
+
|
|
249
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
250
|
+
|
|
251
|
+
# [6.13.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.13.0) (2025-07-31)
|
|
252
|
+
|
|
253
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
254
|
+
|
|
255
|
+
# [6.12.0-beta.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.12.0-beta.8) (2025-07-25)
|
|
256
|
+
|
|
257
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
258
|
+
|
|
259
|
+
# [6.12.0-beta.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.12.0-beta.7) (2025-07-25)
|
|
260
|
+
|
|
261
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
262
|
+
|
|
263
|
+
# [6.12.0-beta.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.12.0-beta.7) (2025-07-25)
|
|
264
|
+
|
|
265
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
266
|
+
|
|
267
|
+
# [6.12.0-beta.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.12.0-beta.6) (2025-07-25)
|
|
268
|
+
|
|
269
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
270
|
+
|
|
271
|
+
# [6.12.0-beta.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.12.0-beta.6) (2025-07-25)
|
|
272
|
+
|
|
273
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
274
|
+
|
|
275
|
+
# [6.12.0-beta.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.12.0-beta.5) (2025-07-25)
|
|
276
|
+
|
|
277
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
278
|
+
|
|
279
|
+
# [6.12.0-beta.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.12.0-beta.5) (2025-07-25)
|
|
280
|
+
|
|
281
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
282
|
+
|
|
283
|
+
# [6.12.0-beta.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.12.0-beta.4) (2025-07-25)
|
|
284
|
+
|
|
285
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
286
|
+
|
|
287
|
+
# [6.12.0-beta.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.12.0-beta.3) (2025-07-25)
|
|
288
|
+
|
|
289
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
290
|
+
|
|
291
|
+
# [6.12.0-beta.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.12.0-beta.4) (2025-07-23)
|
|
292
|
+
|
|
293
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
294
|
+
|
|
295
|
+
# [6.12.0-beta.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.12.0-beta.3) (2025-07-23)
|
|
296
|
+
|
|
297
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
298
|
+
|
|
299
|
+
# [6.12.0-beta.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.12.0-beta.3) (2025-07-20)
|
|
300
|
+
|
|
301
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
302
|
+
|
|
303
|
+
# [6.12.0-beta.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.12.0-beta.2) (2025-07-20)
|
|
304
|
+
|
|
305
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
306
|
+
|
|
307
|
+
# [6.12.0-beta.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.12.0-beta.1) (2025-07-20)
|
|
308
|
+
|
|
309
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
310
|
+
|
|
311
|
+
# [6.12.0-beta.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.12.0-beta.2) (2025-07-20)
|
|
312
|
+
|
|
313
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
314
|
+
|
|
315
|
+
# [6.12.0-beta.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.12.0-beta.1) (2025-07-20)
|
|
316
|
+
|
|
317
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
318
|
+
|
|
319
|
+
# [6.12.0-beta.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.12.0-beta.1) (2025-07-20)
|
|
320
|
+
|
|
321
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
322
|
+
|
|
323
|
+
# [6.12.0-beta.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.12.0-beta.0) (2025-07-20)
|
|
324
|
+
|
|
325
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
326
|
+
|
|
327
|
+
# [6.13.0-beta.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.13.0-beta.0) (2025-07-15)
|
|
328
|
+
|
|
329
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
330
|
+
|
|
331
|
+
# [6.12.0-beta.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.12.0-beta.0) (2025-07-15)
|
|
332
|
+
|
|
333
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
334
|
+
|
|
335
|
+
## [6.11.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.3...@pie-lib/math-input@6.11.4) (2023-07-04)
|
|
336
|
+
|
|
337
|
+
### Bug Fixes
|
|
338
|
+
|
|
339
|
+
- prevent crash PD-2150 ([3491c09](https://github.com/pie-framework/pie-lib/commit/3491c09aa5ad947e1248254e79043e5a909d2cde))
|
|
340
|
+
|
|
341
|
+
## [6.11.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.2...@pie-lib/math-input@6.11.3) (2023-06-24)
|
|
342
|
+
|
|
343
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
344
|
+
|
|
345
|
+
## [6.11.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.1...@pie-lib/math-input@6.11.2) (2023-05-22)
|
|
346
|
+
|
|
347
|
+
### Bug Fixes
|
|
348
|
+
|
|
349
|
+
- made sure font roboto is used for insert special characters PD-1914 ([cc875de](https://github.com/pie-framework/pie-lib/commit/cc875de6f04a673ca614c5072f9e4efc3bc71a70))
|
|
350
|
+
|
|
351
|
+
## [6.11.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.0...@pie-lib/math-input@6.11.1) (2023-04-19)
|
|
352
|
+
|
|
353
|
+
### Bug Fixes
|
|
354
|
+
|
|
355
|
+
- **eslint:** fix eslint problems-PD-2732 ([9eb9976](https://github.com/pie-framework/pie-lib/commit/9eb9976749753da86e1057a07bd2cfc65bf64ae4))
|
|
356
|
+
- **math-input:** add required import for MathQuill-PD-2732 ([532d786](https://github.com/pie-framework/pie-lib/commit/532d7866fa48a5f9ac68f6d26f31b0e28ac54acf))
|
|
357
|
+
|
|
358
|
+
# [6.11.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.10.13...@pie-lib/math-input@6.11.0) (2023-04-07)
|
|
359
|
+
|
|
360
|
+
### Features
|
|
361
|
+
|
|
362
|
+
- **math-input:** add two exponent buttons to the grade 3-5 math editor PD-2728 ([b7b87a5](https://github.com/pie-framework/pie-lib/commit/b7b87a5c0c2ca2c3e600cdac696cab3c0a576e87))
|
|
363
|
+
|
|
364
|
+
## [6.10.13](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.10.12...@pie-lib/math-input@6.10.13) (2023-03-20)
|
|
365
|
+
|
|
366
|
+
### Bug Fixes
|
|
367
|
+
|
|
368
|
+
- **math-input:** add important to mq button padding to fix issue in IBX with css priority PD-2702 ([3e40576](https://github.com/pie-framework/pie-lib/commit/3e405767f070ec22cf9315ef9f852f8c8c7d6228))
|
|
369
|
+
|
|
370
|
+
## [6.10.12](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.10.10...@pie-lib/math-input@6.10.12) (2023-01-31)
|
|
371
|
+
|
|
372
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
373
|
+
|
|
374
|
+
## [6.10.10](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.10.9...@pie-lib/math-input@6.10.10) (2023-01-31)
|
|
375
|
+
|
|
376
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
377
|
+
|
|
378
|
+
## [6.10.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.10.8...@pie-lib/math-input@6.10.9) (2023-01-31)
|
|
379
|
+
|
|
380
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
381
|
+
|
|
382
|
+
## [6.10.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.10.7...@pie-lib/math-input@6.10.8) (2023-01-31)
|
|
383
|
+
|
|
384
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
385
|
+
|
|
386
|
+
## [6.10.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.10.4...@pie-lib/math-input@6.10.7) (2023-01-31)
|
|
387
|
+
|
|
388
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
389
|
+
|
|
390
|
+
## [6.10.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.10.2...@pie-lib/math-input@6.10.4) (2023-01-31)
|
|
391
|
+
|
|
392
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
393
|
+
|
|
394
|
+
## [6.10.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.10.0...@pie-lib/math-input@6.10.2) (2023-01-31)
|
|
395
|
+
|
|
396
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
397
|
+
|
|
398
|
+
# [6.10.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.9.0...@pie-lib/math-input@6.10.0) (2023-01-03)
|
|
399
|
+
|
|
400
|
+
### Features
|
|
401
|
+
|
|
402
|
+
- **math-input:** solve eslint error ([b4489aa](https://github.com/pie-framework/pie-lib/commit/b4489aad65d5a92989ea32294589b5a030019ecb))
|
|
403
|
+
|
|
404
|
+
# [6.9.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.8.4...@pie-lib/math-input@6.9.0) (2022-12-19)
|
|
405
|
+
|
|
406
|
+
### Features
|
|
407
|
+
|
|
408
|
+
- **math-input:** add aria label property for latex buttons ([5aa5b35](https://github.com/pie-framework/pie-lib/commit/5aa5b351c969e13a6a225c7c3d5015e70a3d1c18))
|
|
409
|
+
- **math-input:** add labels to math-operators and buttons that screen readers can use ([ad64881](https://github.com/pie-framework/pie-lib/commit/ad648818c060de1fad9c30b62d3bf73d8d7481fb))
|
|
410
|
+
- **math-input:** refactor ([71bd61c](https://github.com/pie-framework/pie-lib/commit/71bd61cb1e0efb5b2a3e0119eea0239a4863e9ac))
|
|
411
|
+
- **math-input:** update snapshots ([4fe88e1](https://github.com/pie-framework/pie-lib/commit/4fe88e1264667218b59ecfd956e205ae22d0f2a6))
|
|
412
|
+
|
|
413
|
+
## [6.8.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.8.3...@pie-lib/math-input@6.8.4) (2022-11-23)
|
|
414
|
+
|
|
415
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
416
|
+
|
|
417
|
+
## [6.8.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.8.2...@pie-lib/math-input@6.8.3) (2022-11-17)
|
|
418
|
+
|
|
419
|
+
### Bug Fixes
|
|
420
|
+
|
|
421
|
+
- PD-1858 not working with the fraction button in Advanced Multi mode (mq.Static) PD-2030 PD-2031 ([46d1168](https://github.com/pie-framework/pie-lib/commit/46d116874c063524c764cb6d7035fed6bfa84dfb))
|
|
422
|
+
|
|
423
|
+
## [6.8.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.8.1...@pie-lib/math-input@6.8.2) (2022-11-14)
|
|
424
|
+
|
|
425
|
+
### Bug Fixes
|
|
426
|
+
|
|
427
|
+
- PD-1858 (Math editor tweak to better handle the entry of mixed numbers) - not working with a mixed number if the integer part is multi-digit PD-1858, PD-2029, PD-2030, PD-2031 ([158e76a](https://github.com/pie-framework/pie-lib/commit/158e76a48bec66b1f026811bb1856fa4af5668f3))
|
|
428
|
+
- PD-1858 not working with a mixed number if the integer part is multi-digit PD-2029 ([773f51c](https://github.com/pie-framework/pie-lib/commit/773f51cc54a2af72a1e9bd225ba9be27d8b1de52))
|
|
429
|
+
|
|
430
|
+
## [6.8.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.8.0...@pie-lib/math-input@6.8.1) (2022-08-30)
|
|
431
|
+
|
|
432
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
433
|
+
|
|
434
|
+
# [6.8.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.7.2...@pie-lib/math-input@6.8.0) (2022-08-29)
|
|
435
|
+
|
|
436
|
+
### Features
|
|
437
|
+
|
|
438
|
+
- parse latex when there's an integer and a space before a fraction (remove white space) - wip - PD-1858 ([13995de](https://github.com/pie-framework/pie-lib/commit/13995de67283a3c800f41ee8221f6d2e3f10a7ad))
|
|
439
|
+
- parse latex when there's an integer and a space before a fraction (remove white space) PD-1858 ([85654e5](https://github.com/pie-framework/pie-lib/commit/85654e54b9feef656c0002e9d1b2bda2394f398e))
|
|
440
|
+
- **math-input:** feedback ([6b6ee68](https://github.com/pie-framework/pie-lib/commit/6b6ee6852c6226c446a498ad64c2b43e23f9c154))
|
|
441
|
+
- **math-input:** Make math-input style inline with mathjax's one ([e988f63](https://github.com/pie-framework/pie-lib/commit/e988f635f6f75cbe882b3bf7efb716de13fd893d))
|
|
442
|
+
|
|
443
|
+
## [6.7.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.7.1...@pie-lib/math-input@6.7.2) (2022-07-19)
|
|
444
|
+
|
|
445
|
+
### Bug Fixes
|
|
446
|
+
|
|
447
|
+
- bump mathquill to 1.1.3 ([48b84c5](https://github.com/pie-framework/pie-lib/commit/48b84c534cbf519e172a80d18a48b26eda3cf7e6))
|
|
448
|
+
|
|
449
|
+
## [6.7.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.7.0...@pie-lib/math-input@6.7.1) (2022-07-18)
|
|
450
|
+
|
|
451
|
+
### Reverts
|
|
452
|
+
|
|
453
|
+
- Revert "feat(math-toolbar): Make math-toolbar style inline with mathjax for Geometry" ([fee3f22](https://github.com/pie-framework/pie-lib/commit/fee3f22897a03d1d5c892f731dfc441dba9ed10f))
|
|
454
|
+
- Revert "feat(math-toolbar): Make math-toolbar preview style inline with mathjax" ([bb86c35](https://github.com/pie-framework/pie-lib/commit/bb86c35ed56228c673020faf5ea089fb99418fd8))
|
|
455
|
+
|
|
456
|
+
# [6.7.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.6.10...@pie-lib/math-input@6.7.0) (2022-07-18)
|
|
457
|
+
|
|
458
|
+
### Features
|
|
459
|
+
|
|
460
|
+
- **characters:** special character accents span 2 rows, added border for visibility [PD-1462](<[c60b0bc](https://github.com/pie-framework/pie-lib/commit/c60b0bc8ff45cc01f53bc752fd5dd64da623f6be)>)
|
|
461
|
+
- **math-toolbar:** Make math-toolbar preview style inline with mathjax ([266b1bc](https://github.com/pie-framework/pie-lib/commit/266b1bc9a277530fd653edfacbb836596957dd33))
|
|
462
|
+
- **math-toolbar:** Make math-toolbar style inline with mathjax for Geometry ([811bde0](https://github.com/pie-framework/pie-lib/commit/811bde0aa97633822fa3260666e298e841b6b9f7))
|
|
463
|
+
- **plugins:** added special characters adding capabilities [PD-1462](<[b9f41e1](https://github.com/pie-framework/pie-lib/commit/b9f41e11f44df140a66145d0b04558ca2b0ea48e)>)
|
|
464
|
+
|
|
465
|
+
## [6.6.10](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.6.9...@pie-lib/math-input@6.6.10) (2022-06-13)
|
|
466
|
+
|
|
467
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
468
|
+
|
|
469
|
+
## [6.6.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.6.8...@pie-lib/math-input@6.6.9) (2022-04-12)
|
|
470
|
+
|
|
471
|
+
### Bug Fixes
|
|
472
|
+
|
|
473
|
+
- **math-input:** PD-1669 handle latex with errors in keypad buttons ([6b36f17](https://github.com/pie-framework/pie-lib/commit/6b36f175deffbd0a0fe021f4f7a11d7c4f14a014))
|
|
474
|
+
|
|
475
|
+
## [6.6.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.6.7...@pie-lib/math-input@6.6.8) (2022-02-04)
|
|
476
|
+
|
|
477
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
478
|
+
|
|
479
|
+
## [6.6.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.6.6...@pie-lib/math-input@6.6.7) (2022-01-10)
|
|
480
|
+
|
|
481
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
482
|
+
|
|
483
|
+
## [6.6.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.6.5...@pie-lib/math-input@6.6.6) (2021-10-04)
|
|
484
|
+
|
|
485
|
+
### Bug Fixes
|
|
486
|
+
|
|
487
|
+
- **math-input:** Fixed left-right arrow button ([6109149](https://github.com/pie-framework/pie-lib/commit/6109149))
|
|
488
|
+
|
|
489
|
+
## [6.6.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.6.4...@pie-lib/math-input@6.6.5) (2021-10-04)
|
|
490
|
+
|
|
491
|
+
### Bug Fixes
|
|
492
|
+
|
|
493
|
+
- **math-input:** create proper latex expression for log base button ([ca0c3f0](https://github.com/pie-framework/pie-lib/commit/ca0c3f0))
|
|
494
|
+
- **math-input:** Made overarc button consistent with the others PD-1315 ([8726469](https://github.com/pie-framework/pie-lib/commit/8726469))
|
|
495
|
+
- **math-input:** Made segment, ray and line buttons more consistent PD-1315 ([e7e4e29](https://github.com/pie-framework/pie-lib/commit/e7e4e29))
|
|
496
|
+
|
|
497
|
+
## [6.6.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.6.3...@pie-lib/math-input@6.6.4) (2021-09-20)
|
|
498
|
+
|
|
499
|
+
### Bug Fixes
|
|
500
|
+
|
|
501
|
+
- **math-input, math-toolbar:** Adjusted parallelogram button size ([699431e](https://github.com/pie-framework/pie-lib/commit/699431e))
|
|
502
|
+
|
|
503
|
+
## [6.6.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.6.2...@pie-lib/math-input@6.6.3) (2021-09-16)
|
|
504
|
+
|
|
505
|
+
### Bug Fixes
|
|
506
|
+
|
|
507
|
+
- **math-input:** render measured angle as m + angle sign PD-368 ([670fb56](https://github.com/pie-framework/pie-lib/commit/670fb56))
|
|
508
|
+
|
|
509
|
+
## [6.6.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.6.1...@pie-lib/math-input@6.6.2) (2021-09-08)
|
|
510
|
+
|
|
511
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
512
|
+
|
|
513
|
+
## [6.6.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.6.0...@pie-lib/math-input@6.6.1) (2021-09-08)
|
|
514
|
+
|
|
515
|
+
### Bug Fixes
|
|
516
|
+
|
|
517
|
+
- **math-input:** default latex when received is wrong ([d872f60](https://github.com/pie-framework/pie-lib/commit/d872f60))
|
|
518
|
+
- **math-input:** default latex when received is wrong (2) ([dc71307](https://github.com/pie-framework/pie-lib/commit/dc71307))
|
|
519
|
+
- **math-input:** fix e button on advanced algebra math editor PD-1280 ([dbfb53b](https://github.com/pie-framework/pie-lib/commit/dbfb53b))
|
|
520
|
+
- **math-input:** Fixed arrows button for pits ([66dd6a9](https://github.com/pie-framework/pie-lib/commit/66dd6a9))
|
|
521
|
+
|
|
522
|
+
# [6.6.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.5.14...@pie-lib/math-input@6.6.0) (2021-08-30)
|
|
523
|
+
|
|
524
|
+
### Bug Fixes
|
|
525
|
+
|
|
526
|
+
- **math-input:** Fixed custom keys behavior and changed label for (),[] and absolute value PD-1251 ([39f2ddb](https://github.com/pie-framework/pie-lib/commit/39f2ddb))
|
|
527
|
+
- **math-toolbar:** Made segment, ray and line more consistent PD-1264 ([1a2ad37](https://github.com/pie-framework/pie-lib/commit/1a2ad37))
|
|
528
|
+
- **math-toolbar & math-input:** render parallel sign with bigger font PD-1258 ([418fc28](https://github.com/pie-framework/pie-lib/commit/418fc28))
|
|
529
|
+
|
|
530
|
+
### Features
|
|
531
|
+
|
|
532
|
+
- **math-input, math-toolbar:** add long division button in math editor PD-888 ([3056990](https://github.com/pie-framework/pie-lib/commit/3056990))
|
|
533
|
+
|
|
534
|
+
## [6.5.14](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.5.12...@pie-lib/math-input@6.5.14) (2021-06-25)
|
|
535
|
+
|
|
536
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
537
|
+
|
|
538
|
+
## [6.5.12](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.5.11...@pie-lib/math-input@6.5.12) (2021-06-25)
|
|
539
|
+
|
|
540
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
541
|
+
|
|
542
|
+
## [6.5.11](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.5.10...@pie-lib/math-input@6.5.11) (2021-04-06)
|
|
543
|
+
|
|
544
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
545
|
+
|
|
546
|
+
## [6.5.10](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.5.9...@pie-lib/math-input@6.5.10) (2021-03-22)
|
|
547
|
+
|
|
548
|
+
### Bug Fixes
|
|
549
|
+
|
|
550
|
+
- **math-toolbar:** fix double arrow button style mentioned in PD-48 ([145b060](https://github.com/pie-framework/pie-lib/commit/145b060))
|
|
551
|
+
|
|
552
|
+
## [6.5.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.5.8...@pie-lib/math-input@6.5.9) (2021-03-15)
|
|
553
|
+
|
|
554
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
555
|
+
|
|
556
|
+
## [6.5.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.5.7...@pie-lib/math-input@6.5.8) (2021-03-03)
|
|
557
|
+
|
|
558
|
+
### Bug Fixes
|
|
559
|
+
|
|
560
|
+
- rename the 'Everything' math editor as the 'Miscellaneous' math editor ([6b5c0b3](https://github.com/pie-framework/pie-lib/commit/6b5c0b3))
|
|
561
|
+
|
|
562
|
+
## [6.5.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.5.6...@pie-lib/math-input@6.5.7) (2021-03-02)
|
|
563
|
+
|
|
564
|
+
### Bug Fixes
|
|
565
|
+
|
|
566
|
+
- override math input and math toolbar style for ibx PD-774 ([0969756](https://github.com/pie-framework/pie-lib/commit/0969756))
|
|
567
|
+
|
|
568
|
+
## [6.5.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.5.5...@pie-lib/math-input@6.5.6) (2021-03-01)
|
|
569
|
+
|
|
570
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
571
|
+
|
|
572
|
+
## [6.5.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.5.4...@pie-lib/math-input@6.5.5) (2021-03-01)
|
|
573
|
+
|
|
574
|
+
### Bug Fixes
|
|
575
|
+
|
|
576
|
+
- In some situations, math editors will not accept keyboard entry. PD-655 ([876de31](https://github.com/pie-framework/pie-lib/commit/876de31))
|
|
577
|
+
|
|
578
|
+
## [6.5.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.5.3...@pie-lib/math-input@6.5.4) (2021-02-15)
|
|
579
|
+
|
|
580
|
+
### Bug Fixes
|
|
581
|
+
|
|
582
|
+
- demo ([affa119](https://github.com/pie-framework/pie-lib/commit/affa119))
|
|
583
|
+
|
|
584
|
+
## [6.5.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.5.1...@pie-lib/math-input@6.5.3) (2021-02-15)
|
|
585
|
+
|
|
586
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
587
|
+
|
|
588
|
+
## [6.5.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.5.0...@pie-lib/math-input@6.5.1) (2020-08-11)
|
|
589
|
+
|
|
590
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
591
|
+
|
|
592
|
+
# [6.5.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.4.20...@pie-lib/math-input@6.5.0) (2020-06-05)
|
|
593
|
+
|
|
594
|
+
### Features
|
|
595
|
+
|
|
596
|
+
- **math-input:** tooltip keypad support added ([7ae60a3](https://github.com/pie-framework/pie-lib/commit/7ae60a3))
|
|
597
|
+
|
|
598
|
+
## [6.4.20](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.4.19...@pie-lib/math-input@6.4.20) (2020-05-15)
|
|
599
|
+
|
|
600
|
+
### Bug Fixes
|
|
601
|
+
|
|
602
|
+
- Remove duplicated key for Grade 8 - HS. PD-39 ([94497d0](https://github.com/pie-framework/pie-lib/commit/94497d0))
|
|
603
|
+
|
|
604
|
+
## [6.4.19](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.4.18...@pie-lib/math-input@6.4.19) (2020-05-06)
|
|
605
|
+
|
|
606
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
607
|
+
|
|
608
|
+
## [6.4.18](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.4.17...@pie-lib/math-input@6.4.18) (2020-05-05)
|
|
609
|
+
|
|
610
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
611
|
+
|
|
612
|
+
## [6.4.17](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.4.16...@pie-lib/math-input@6.4.17) (2020-04-28)
|
|
613
|
+
|
|
614
|
+
### Bug Fixes
|
|
615
|
+
|
|
616
|
+
- PD-69: A legacy multi-part item consisting of two equation response interactions appears with no response areas ([fff4ec7](https://github.com/pie-framework/pie-lib/commit/fff4ec7))
|
|
617
|
+
|
|
618
|
+
## [6.4.16](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.4.15...@pie-lib/math-input@6.4.16) (2020-04-27)
|
|
619
|
+
|
|
620
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
621
|
+
|
|
622
|
+
## [6.4.15](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.4.14...@pie-lib/math-input@6.4.15) (2020-04-21)
|
|
623
|
+
|
|
624
|
+
### Bug Fixes
|
|
625
|
+
|
|
626
|
+
- PD-155: The "pink" background-color set on .mq-empty is overwritten by mathquill.css with "transparent". Added "important" to prevent this. ([18e4ef7](https://github.com/pie-framework/pie-lib/commit/18e4ef7))
|
|
627
|
+
- PD-156: Formatting issues with math editor buttons, specifically in IBX. Updated design for arrows and line, fixed fonts issue (different then expected + various function buttons are capitalized). ([61be51c](https://github.com/pie-framework/pie-lib/commit/61be51c))
|
|
628
|
+
- PD-157: In IBX specifically, characters on math editors are too small. (because they are overwritten) ([3792162](https://github.com/pie-framework/pie-lib/commit/3792162))
|
|
629
|
+
- PD-158: In Item Preview specifically, in IBX only, the math editor radical button and the "squared" button are not correctly labeled ([12f3cd5](https://github.com/pie-framework/pie-lib/commit/12f3cd5))
|
|
630
|
+
|
|
631
|
+
## [6.4.14](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.4.13...@pie-lib/math-input@6.4.14) (2020-04-14)
|
|
632
|
+
|
|
633
|
+
### Bug Fixes
|
|
634
|
+
|
|
635
|
+
- **math-input:** remove extra subscript button from statistics keyset - PD-38 ([17a0659](https://github.com/pie-framework/pie-lib/commit/17a0659))
|
|
636
|
+
|
|
637
|
+
## [6.4.13](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.4.12...@pie-lib/math-input@6.4.13) (2020-04-08)
|
|
638
|
+
|
|
639
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
640
|
+
|
|
641
|
+
## [6.4.12](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.4.11...@pie-lib/math-input@6.4.12) (2020-03-31)
|
|
642
|
+
|
|
643
|
+
### Bug Fixes
|
|
644
|
+
|
|
645
|
+
- remove require (bad es import) ([5c1e025](https://github.com/pie-framework/pie-lib/commit/5c1e025))
|
|
646
|
+
|
|
647
|
+
## [6.4.11](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.4.10...@pie-lib/math-input@6.4.11) (2020-03-31)
|
|
648
|
+
|
|
649
|
+
### Bug Fixes
|
|
650
|
+
|
|
651
|
+
- rm ExportNamespaceSpecifier ([970e2ed](https://github.com/pie-framework/pie-lib/commit/970e2ed))
|
|
652
|
+
|
|
653
|
+
## [6.4.10](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.4.9...@pie-lib/math-input@6.4.10) (2020-03-31)
|
|
654
|
+
|
|
655
|
+
### Bug Fixes
|
|
656
|
+
|
|
657
|
+
- correct module path ([b6b5b6f](https://github.com/pie-framework/pie-lib/commit/b6b5b6f))
|
|
658
|
+
|
|
659
|
+
## [6.4.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.4.8...@pie-lib/math-input@6.4.9) (2020-03-31)
|
|
660
|
+
|
|
661
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
662
|
+
|
|
663
|
+
## [6.4.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.4.7...@pie-lib/math-input@6.4.8) (2020-03-30)
|
|
664
|
+
|
|
665
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
666
|
+
|
|
667
|
+
## [6.4.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.4.6...@pie-lib/math-input@6.4.7) (2020-03-30)
|
|
668
|
+
|
|
669
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
670
|
+
|
|
671
|
+
## [6.4.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.4.5...@pie-lib/math-input@6.4.6) (2020-03-30)
|
|
672
|
+
|
|
673
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
674
|
+
|
|
675
|
+
## [6.4.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.4.4...@pie-lib/math-input@6.4.5) (2020-03-30)
|
|
676
|
+
|
|
677
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
678
|
+
|
|
679
|
+
## [6.4.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.4.3...@pie-lib/math-input@6.4.4) (2020-03-30)
|
|
680
|
+
|
|
681
|
+
### Bug Fixes
|
|
682
|
+
|
|
683
|
+
- correct export syntax ([db7fcc0](https://github.com/pie-framework/pie-lib/commit/db7fcc0))
|
|
684
|
+
|
|
685
|
+
## [6.4.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.4.2...@pie-lib/math-input@6.4.3) (2020-03-30)
|
|
686
|
+
|
|
687
|
+
### Bug Fixes
|
|
688
|
+
|
|
689
|
+
- correct export syntax ([10c40b1](https://github.com/pie-framework/pie-lib/commit/10c40b1))
|
|
690
|
+
|
|
691
|
+
## [6.4.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.4.1...@pie-lib/math-input@6.4.2) (2020-03-30)
|
|
692
|
+
|
|
693
|
+
### Bug Fixes
|
|
694
|
+
|
|
695
|
+
- add module prop to package.json ([df40020](https://github.com/pie-framework/pie-lib/commit/df40020))
|
|
696
|
+
|
|
697
|
+
## [6.4.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.4.0...@pie-lib/math-input@6.4.1) (2020-03-18)
|
|
698
|
+
|
|
699
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
700
|
+
|
|
701
|
+
# [6.4.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.3.11...@pie-lib/math-input@6.4.0) (2020-03-06)
|
|
702
|
+
|
|
703
|
+
### Bug Fixes
|
|
704
|
+
|
|
705
|
+
- **math-input:** fix Static rootblock logic, failsafe for finding math block id ch3518 ([08df6db](https://github.com/pie-framework/pie-lib/commit/08df6db))
|
|
706
|
+
|
|
707
|
+
### Features
|
|
708
|
+
|
|
709
|
+
- bump @pie-framework/mathquill@^1.0.0 ([d43c5c5](https://github.com/pie-framework/pie-lib/commit/d43c5c5))
|
|
710
|
+
- bump @pie-framework/mathquill@^1.1.0 ([31dbed8](https://github.com/pie-framework/pie-lib/commit/31dbed8))
|
|
711
|
+
|
|
712
|
+
## [6.3.11](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.3.10...@pie-lib/math-input@6.3.11) (2020-02-11)
|
|
713
|
+
|
|
714
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
715
|
+
|
|
716
|
+
## [6.3.10](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.3.9...@pie-lib/math-input@6.3.10) (2020-02-05)
|
|
717
|
+
|
|
718
|
+
### Bug Fixes
|
|
719
|
+
|
|
720
|
+
- 6287: Setting equation editor as a string (eg: '6') works as well (In OT, a math editor for an Equation Response item is missing a critical button as well as many other expected buttons) ([a21f04b](https://github.com/pie-framework/pie-lib/commit/a21f04b))
|
|
721
|
+
|
|
722
|
+
## [6.3.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.3.8...@pie-lib/math-input@6.3.9) (2020-01-27)
|
|
723
|
+
|
|
724
|
+
### Bug Fixes
|
|
725
|
+
|
|
726
|
+
- 6264: Math editor in OT has button labels that are very small and impact legibility and usability (don't use rem to determine font size, use percentage instead) ([94f9d3b](https://github.com/pie-framework/pie-lib/commit/94f9d3b))
|
|
727
|
+
- 6264: Math editor in OT has button labels that are very small and impact legibility and usability (don't use rem to determine font size) ([da50c12](https://github.com/pie-framework/pie-lib/commit/da50c12))
|
|
728
|
+
|
|
729
|
+
## [6.3.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.3.7...@pie-lib/math-input@6.3.8) (2019-12-19)
|
|
730
|
+
|
|
731
|
+
### Bug Fixes
|
|
732
|
+
|
|
733
|
+
- rm bad import ([fe6673d](https://github.com/pie-framework/pie-lib/commit/fe6673d))
|
|
734
|
+
|
|
735
|
+
## [6.3.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.3.6...@pie-lib/math-input@6.3.7) (2019-12-18)
|
|
736
|
+
|
|
737
|
+
### Bug Fixes
|
|
738
|
+
|
|
739
|
+
- do not add keys if they already exist in keyset [ch5653](<[fbccf3b](https://github.com/pie-framework/pie-lib/commit/fbccf3b)>)
|
|
740
|
+
|
|
741
|
+
## [6.3.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.3.5...@pie-lib/math-input@6.3.6) (2019-11-05)
|
|
742
|
+
|
|
743
|
+
### Bug Fixes
|
|
744
|
+
|
|
745
|
+
- handle latex parsing errors PIE-145 ([99905ea](https://github.com/pie-framework/pie-lib/commit/99905ea))
|
|
746
|
+
|
|
747
|
+
## [6.3.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.3.4...@pie-lib/math-input@6.3.5) (2019-08-21)
|
|
748
|
+
|
|
749
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
750
|
+
|
|
751
|
+
## [6.3.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.3.3...@pie-lib/math-input@6.3.4) (2019-07-08)
|
|
752
|
+
|
|
753
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
754
|
+
|
|
755
|
+
## [6.3.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.3.2...@pie-lib/math-input@6.3.3) (2019-07-05)
|
|
756
|
+
|
|
757
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
758
|
+
|
|
759
|
+
## [6.3.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.3.1...@pie-lib/math-input@6.3.2) (2019-07-02)
|
|
760
|
+
|
|
761
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
762
|
+
|
|
763
|
+
## [6.3.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.3.0...@pie-lib/math-input@6.3.1) (2019-06-17)
|
|
764
|
+
|
|
765
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
766
|
+
|
|
767
|
+
# [6.3.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.2.5...@pie-lib/math-input@6.3.0) (2019-06-12)
|
|
768
|
+
|
|
769
|
+
### Features
|
|
770
|
+
|
|
771
|
+
- version bumps ([23eb54f](https://github.com/pie-framework/pie-lib/commit/23eb54f))
|
|
772
|
+
|
|
773
|
+
## [6.2.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.2.4...@pie-lib/math-input@6.2.5) (2019-06-05)
|
|
774
|
+
|
|
775
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
776
|
+
|
|
777
|
+
## [6.2.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.2.3...@pie-lib/math-input@6.2.4) (2019-05-14)
|
|
778
|
+
|
|
779
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
780
|
+
|
|
781
|
+
## [6.2.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.2.2...@pie-lib/math-input@6.2.3) (2019-05-09)
|
|
782
|
+
|
|
783
|
+
### Bug Fixes
|
|
784
|
+
|
|
785
|
+
- **math-input:** fix trigo keypad buttons ([cdd7649](https://github.com/pie-framework/pie-lib/commit/cdd7649))
|
|
786
|
+
|
|
787
|
+
## [6.2.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.2.1...@pie-lib/math-input@6.2.2) (2019-05-08)
|
|
788
|
+
|
|
789
|
+
### Bug Fixes
|
|
790
|
+
|
|
791
|
+
- **math-input:** keypad operator fixes and styling adjustments ([c18757a](https://github.com/pie-framework/pie-lib/commit/c18757a))
|
|
792
|
+
|
|
793
|
+
## [6.2.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.2.0...@pie-lib/math-input@6.2.1) (2019-05-03)
|
|
794
|
+
|
|
795
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
796
|
+
|
|
797
|
+
# [6.2.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.1.0...@pie-lib/math-input@6.2.0) (2019-05-02)
|
|
798
|
+
|
|
799
|
+
### Features
|
|
800
|
+
|
|
801
|
+
- **mask-markup:** merging with the develop branch ([0153c1a](https://github.com/pie-framework/pie-lib/commit/0153c1a))
|
|
802
|
+
|
|
803
|
+
# [6.1.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.0.0...@pie-lib/math-input@6.1.0) (2019-05-01)
|
|
804
|
+
|
|
805
|
+
### Features
|
|
806
|
+
|
|
807
|
+
- **math-input:** custom keys support and extended keypads ([bcb136a](https://github.com/pie-framework/pie-lib/commit/bcb136a))
|
|
808
|
+
|
|
809
|
+
# [6.0.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.4.3...@pie-lib/math-input@6.0.0) (2019-04-17)
|
|
810
|
+
|
|
811
|
+
### Features
|
|
812
|
+
|
|
813
|
+
- **math-input:** static math answer block support updated to formulaV2 ([24d5341](https://github.com/pie-framework/pie-lib/commit/24d5341))
|
|
814
|
+
|
|
815
|
+
### BREAKING CHANGES
|
|
816
|
+
|
|
817
|
+
- **math-input:** answer block mathquill mathfields now have a new id definition when declared
|
|
818
|
+
|
|
819
|
+
## [5.4.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.4.2...@pie-lib/math-input@5.4.3) (2019-04-12)
|
|
820
|
+
|
|
821
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
822
|
+
|
|
823
|
+
## [5.4.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.4.1...@pie-lib/math-input@5.4.2) (2019-04-12)
|
|
824
|
+
|
|
825
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
826
|
+
|
|
827
|
+
## [5.4.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.4.0...@pie-lib/math-input@5.4.1) (2019-04-11)
|
|
828
|
+
|
|
829
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
830
|
+
|
|
831
|
+
# [5.4.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.3.2...@pie-lib/math-input@5.4.0) (2019-04-10)
|
|
832
|
+
|
|
833
|
+
### Features
|
|
834
|
+
|
|
835
|
+
- **math-input:** no decimals support added ([48b1c39](https://github.com/pie-framework/pie-lib/commit/48b1c39))
|
|
836
|
+
|
|
837
|
+
## [5.3.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.3.1...@pie-lib/math-input@5.3.2) (2019-04-05)
|
|
838
|
+
|
|
839
|
+
### Bug Fixes
|
|
840
|
+
|
|
841
|
+
- static math diffing algorithm fix for spaces ([2ce8bac](https://github.com/pie-framework/pie-lib/commit/2ce8bac))
|
|
842
|
+
|
|
843
|
+
## [5.3.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.3.0...@pie-lib/math-input@5.3.1) (2019-04-04)
|
|
844
|
+
|
|
845
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
846
|
+
|
|
847
|
+
# [5.3.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.2.0...@pie-lib/math-input@5.3.0) (2019-04-04)
|
|
848
|
+
|
|
849
|
+
### Bug Fixes
|
|
850
|
+
|
|
851
|
+
- shouldComponentUpdate correctly checks latex ([a49c68b](https://github.com/pie-framework/pie-lib/commit/a49c68b))
|
|
852
|
+
|
|
853
|
+
### Features
|
|
854
|
+
|
|
855
|
+
- use [@pie-framework](https://github.com/pie-framework)/mathquill - our fork with extras ([7fc47a7](https://github.com/pie-framework/pie-lib/commit/7fc47a7))
|
|
856
|
+
|
|
857
|
+
# [5.2.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.1.13...@pie-lib/math-input@5.2.0) (2019-03-26)
|
|
858
|
+
|
|
859
|
+
### Bug Fixes
|
|
860
|
+
|
|
861
|
+
- continued mathquill math-input work ([f4c6d67](https://github.com/pie-framework/pie-lib/commit/f4c6d67))
|
|
862
|
+
|
|
863
|
+
### Features
|
|
864
|
+
|
|
865
|
+
- math-input static subfield setter on props ([a4651d9](https://github.com/pie-framework/pie-lib/commit/a4651d9))
|
|
866
|
+
|
|
867
|
+
## [5.1.13](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.1.12...@pie-lib/math-input@5.1.13) (2019-03-15)
|
|
868
|
+
|
|
869
|
+
### Bug Fixes
|
|
870
|
+
|
|
871
|
+
- rm child prepack in favour of root prepack ([381d8d6](https://github.com/pie-framework/pie-lib/commit/381d8d6))
|
|
872
|
+
|
|
873
|
+
## [5.1.12](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.1.11...@pie-lib/math-input@5.1.12) (2019-03-14)
|
|
874
|
+
|
|
875
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
876
|
+
|
|
877
|
+
## [5.1.11](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.1.10...@pie-lib/math-input@5.1.11) (2019-03-14)
|
|
878
|
+
|
|
879
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
880
|
+
|
|
881
|
+
## [5.1.10](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.1.9...@pie-lib/math-input@5.1.10) (2019-03-14)
|
|
882
|
+
|
|
883
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
884
|
+
|
|
885
|
+
## [5.1.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.1.8...@pie-lib/math-input@5.1.9) (2019-03-14)
|
|
886
|
+
|
|
887
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
888
|
+
|
|
889
|
+
## [5.1.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.1.7...@pie-lib/math-input@5.1.8) (2019-03-13)
|
|
890
|
+
|
|
891
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
892
|
+
|
|
893
|
+
## [5.1.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.1.6...@pie-lib/math-input@5.1.7) (2019-03-13)
|
|
894
|
+
|
|
895
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
896
|
+
|
|
897
|
+
## [5.1.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.1.5...@pie-lib/math-input@5.1.6) (2019-03-13)
|
|
898
|
+
|
|
899
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
900
|
+
|
|
901
|
+
## [5.1.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.1.3...@pie-lib/math-input@5.1.5) (2019-03-12)
|
|
902
|
+
|
|
903
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
904
|
+
|
|
905
|
+
## [5.1.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.1.2...@pie-lib/math-input@5.1.3) (2019-03-12)
|
|
906
|
+
|
|
907
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
908
|
+
|
|
909
|
+
## [5.1.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.1.1...@pie-lib/math-input@5.1.2) (2019-03-11)
|
|
910
|
+
|
|
911
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
912
|
+
|
|
913
|
+
## [5.1.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.1.0...@pie-lib/math-input@5.1.1) (2019-03-11)
|
|
914
|
+
|
|
915
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
916
|
+
|
|
917
|
+
# [5.1.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.0.4...@pie-lib/math-input@5.1.0) (2019-02-20)
|
|
918
|
+
|
|
919
|
+
### Features
|
|
920
|
+
|
|
921
|
+
- **math-toolbar:** configurable keypad for extra button variety ([f219ae1](https://github.com/pie-framework/pie-lib/commit/f219ae1))
|
|
922
|
+
|
|
923
|
+
## [5.0.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.0.3...@pie-lib/math-input@5.0.4) (2019-02-13)
|
|
924
|
+
|
|
925
|
+
### Bug Fixes
|
|
926
|
+
|
|
927
|
+
- fraction button in HorizontalKeypad ([0d5d896](https://github.com/pie-framework/pie-lib/commit/0d5d896))
|
|
928
|
+
- remove unnecessary mathquill wrappers in favor of [@pie-lib](https://github.com/pie-lib)/math-input and small styling fixes ([b29bc9a](https://github.com/pie-framework/pie-lib/commit/b29bc9a))
|
|
929
|
+
- use export '\*' for mq ([1d8200b](https://github.com/pie-framework/pie-lib/commit/1d8200b))
|
|
930
|
+
|
|
931
|
+
## [5.0.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.0.2...@pie-lib/math-input@5.0.3) (2019-02-11)
|
|
932
|
+
|
|
933
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
934
|
+
|
|
935
|
+
## [5.0.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.0.0...@pie-lib/math-input@5.0.2) (2019-02-11)
|
|
936
|
+
|
|
937
|
+
### Bug Fixes
|
|
938
|
+
|
|
939
|
+
- version bump ([4591a50](https://github.com/pie-framework/pie-lib/commit/4591a50))
|
|
940
|
+
|
|
941
|
+
# [5.0.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@4.7.3...@pie-lib/math-input@5.0.0) (2019-02-11)
|
|
942
|
+
|
|
943
|
+
### Bug Fixes
|
|
944
|
+
|
|
945
|
+
- nav w/ HorizontalKeypad ([79a72be](https://github.com/pie-framework/pie-lib/commit/79a72be))
|
|
946
|
+
|
|
947
|
+
### Features
|
|
948
|
+
|
|
949
|
+
- new ui + layout ([2f6fdba](https://github.com/pie-framework/pie-lib/commit/2f6fdba))
|
|
950
|
+
|
|
951
|
+
### BREAKING CHANGES
|
|
952
|
+
|
|
953
|
+
- - The ui is quite different now
|
|
954
|
+
- Some of the old components are gone (except for HorizontalKeypad which
|
|
955
|
+
is retained for backward compatibility).
|
|
956
|
+
|
|
957
|
+
## [4.7.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@4.7.2...@pie-lib/math-input@4.7.3) (2019-02-05)
|
|
958
|
+
|
|
959
|
+
### Bug Fixes
|
|
960
|
+
|
|
961
|
+
- version bump ([caaf960](https://github.com/pie-framework/pie-lib/commit/caaf960))
|
|
962
|
+
|
|
963
|
+
## [4.7.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@4.7.1...@pie-lib/math-input@4.7.2) (2019-02-05)
|
|
964
|
+
|
|
965
|
+
### Bug Fixes
|
|
966
|
+
|
|
967
|
+
- **math-input:** styling fixes to adjust for most recent material-ui ([b466358](https://github.com/pie-framework/pie-lib/commit/b466358))
|
|
968
|
+
|
|
969
|
+
## [4.7.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@4.7.0...@pie-lib/math-input@4.7.1) (2019-01-30)
|
|
970
|
+
|
|
971
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
972
|
+
|
|
973
|
+
# [4.7.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@4.6.0...@pie-lib/math-input@4.7.0) (2019-01-30)
|
|
974
|
+
|
|
975
|
+
### Features
|
|
976
|
+
|
|
977
|
+
- libs version bump ([b9476a9](https://github.com/pie-framework/pie-lib/commit/b9476a9))
|
|
978
|
+
|
|
979
|
+
<a name="4.6.0"></a>
|
|
980
|
+
|
|
981
|
+
# [4.6.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@4.5.2...@pie-lib/math-input@4.6.0) (2018-12-18)
|
|
982
|
+
|
|
983
|
+
### Features
|
|
984
|
+
|
|
985
|
+
- **math-toolbar:** answer block initial implementation ([2200ee4](https://github.com/pie-framework/pie-lib/commit/2200ee4))
|
|
986
|
+
- **math-toolbar:** version bumps ([e88dc9a](https://github.com/pie-framework/pie-lib/commit/e88dc9a))
|
|
987
|
+
|
|
988
|
+
<a name="4.5.2"></a>
|
|
989
|
+
|
|
990
|
+
## [4.5.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@4.5.0...@pie-lib/math-input@4.5.2) (2018-12-18)
|
|
991
|
+
|
|
992
|
+
### Bug Fixes
|
|
993
|
+
|
|
994
|
+
- version bump ([3dcbea9](https://github.com/pie-framework/pie-lib/commit/3dcbea9))
|
|
995
|
+
|
|
996
|
+
<a name="4.5.0"></a>
|
|
997
|
+
|
|
998
|
+
# [4.5.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@4.4.1...@pie-lib/math-input@4.5.0) (2018-12-18)
|
|
999
|
+
|
|
1000
|
+
### Features
|
|
1001
|
+
|
|
1002
|
+
- **math-toolbar:** answer block column for keypad and related functionality ([2fd700a](https://github.com/pie-framework/pie-lib/commit/2fd700a))
|
|
1003
|
+
|
|
1004
|
+
<a name="4.4.1"></a>
|
|
1005
|
+
|
|
1006
|
+
## [4.4.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@4.4.0...@pie-lib/math-input@4.4.1) (2018-11-27)
|
|
1007
|
+
|
|
1008
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
1009
|
+
|
|
1010
|
+
<a name="4.4.0"></a>
|
|
1011
|
+
|
|
1012
|
+
# [4.4.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@4.3.0...@pie-lib/math-input@4.4.0) (2018-11-27)
|
|
1013
|
+
|
|
1014
|
+
### Features
|
|
1015
|
+
|
|
1016
|
+
- **math-toolbar:** changed from ssh to https for the mathquill forked repo ([7364008](https://github.com/pie-framework/pie-lib/commit/7364008))
|
|
1017
|
+
|
|
1018
|
+
<a name="4.3.0"></a>
|
|
1019
|
+
|
|
1020
|
+
# [4.3.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@4.2.3...@pie-lib/math-input@4.3.0) (2018-11-27)
|
|
1021
|
+
|
|
1022
|
+
### Features
|
|
1023
|
+
|
|
1024
|
+
- **math-input:** added some new symbols to the math-input ([56062aa](https://github.com/pie-framework/pie-lib/commit/56062aa))
|
|
1025
|
+
|
|
1026
|
+
<a name="4.2.3"></a>
|
|
1027
|
+
|
|
1028
|
+
## [4.2.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@4.2.2...@pie-lib/math-input@4.2.3) (2018-09-12)
|
|
1029
|
+
|
|
1030
|
+
### Bug Fixes
|
|
1031
|
+
|
|
1032
|
+
- githead ([3e485e0](https://github.com/pie-framework/pie-lib/commit/3e485e0))
|
|
1033
|
+
- rm githead ([a1523aa](https://github.com/pie-framework/pie-lib/commit/a1523aa))
|
|
1034
|
+
|
|
1035
|
+
<a name="4.2.2"></a>
|
|
1036
|
+
|
|
1037
|
+
## [4.2.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@4.2.0...@pie-lib/math-input@4.2.2) (2018-09-12)
|
|
1038
|
+
|
|
1039
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
1040
|
+
|
|
1041
|
+
<a name="4.2.1"></a>
|
|
1042
|
+
|
|
1043
|
+
## [4.2.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@4.2.0...@pie-lib/math-input@4.2.1) (2018-09-12)
|
|
1044
|
+
|
|
1045
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
1046
|
+
|
|
1047
|
+
<a name="4.2.0"></a>
|
|
1048
|
+
|
|
1049
|
+
# [4.2.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@4.1.0...@pie-lib/math-input@4.2.0) (2018-07-25)
|
|
1050
|
+
|
|
1051
|
+
### Features
|
|
1052
|
+
|
|
1053
|
+
- Update toolbar api to provide better separation between react components and slate and move math editing to toolbar to simplify ui ([b694a29](https://github.com/pie-framework/pie-lib/commit/b694a29))
|
|
1054
|
+
|
|
1055
|
+
<a name="3.1.0"></a>
|
|
1056
|
+
|
|
1057
|
+
# [3.1.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@3.0.9...@pie-lib/math-input@3.1.0) (2018-05-16)
|
|
1058
|
+
|
|
1059
|
+
### Features
|
|
1060
|
+
|
|
1061
|
+
- upgrade material-ui -> [@material-ui](https://github.com/material-ui)/core@^1.0.0-rc.1 ([017ef63](https://github.com/pie-framework/pie-lib/commit/017ef63))
|
|
1062
|
+
|
|
1063
|
+
<a name="3.0.9"></a>
|
|
1064
|
+
|
|
1065
|
+
## [3.0.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@3.0.8...@pie-lib/math-input@3.0.9) (2018-05-09)
|
|
1066
|
+
|
|
1067
|
+
### Bug Fixes
|
|
1068
|
+
|
|
1069
|
+
- **lint:** automatic lint fixes ([7c9a2a4](https://github.com/pie-framework/pie-lib/commit/7c9a2a4))
|
|
1070
|
+
- **lint:** lint fixes ([f059583](https://github.com/pie-framework/pie-lib/commit/f059583))
|
|
1071
|
+
|
|
1072
|
+
<a name="3.0.8"></a>
|
|
1073
|
+
|
|
1074
|
+
## [3.0.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@3.0.7...@pie-lib/math-input@3.0.8) (2018-04-30)
|
|
1075
|
+
|
|
1076
|
+
### Bug Fixes
|
|
1077
|
+
|
|
1078
|
+
- **dependencies:** set material-ui version to ^1.0.0-beta.44 ([6fd66bc](https://github.com/pie-framework/pie-lib/commit/6fd66bc))
|
|
1079
|
+
|
|
1080
|
+
<a name="3.0.7"></a>
|
|
1081
|
+
|
|
1082
|
+
## [3.0.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@3.0.6...@pie-lib/math-input@3.0.7) (2018-04-30)
|
|
1083
|
+
|
|
1084
|
+
### Bug Fixes
|
|
1085
|
+
|
|
1086
|
+
- **dependencies:** roll back material-ui ([5167d1f](https://github.com/pie-framework/pie-lib/commit/5167d1f))
|
|
1087
|
+
|
|
1088
|
+
<a name="3.0.6"></a>
|
|
1089
|
+
|
|
1090
|
+
## [3.0.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@3.0.5...@pie-lib/math-input@3.0.6) (2018-04-30)
|
|
1091
|
+
|
|
1092
|
+
### Bug Fixes
|
|
1093
|
+
|
|
1094
|
+
- **dependencies:** lock material-ui to 1.0.0-beta.44 ([60df8e6](https://github.com/pie-framework/pie-lib/commit/60df8e6))
|
|
1095
|
+
|
|
1096
|
+
<a name="3.0.5"></a>
|
|
1097
|
+
|
|
1098
|
+
## [3.0.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@3.0.4...@pie-lib/math-input@3.0.5) (2018-04-30)
|
|
1099
|
+
|
|
1100
|
+
### Bug Fixes
|
|
1101
|
+
|
|
1102
|
+
- **dependencies:** lock material-ui to 1.0.0-beta.43 ([2a3e087](https://github.com/pie-framework/pie-lib/commit/2a3e087))
|
|
1103
|
+
- **dependencies:** upgrade material-ui ([b94b50e](https://github.com/pie-framework/pie-lib/commit/b94b50e))
|
|
1104
|
+
|
|
1105
|
+
<a name="3.0.4"></a>
|
|
1106
|
+
|
|
1107
|
+
## [3.0.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@3.0.3...@pie-lib/math-input@3.0.4) (2018-04-24)
|
|
1108
|
+
|
|
1109
|
+
### Bug Fixes
|
|
1110
|
+
|
|
1111
|
+
- **dependencies:** version bump ([3317784](https://github.com/pie-framework/pie-lib/commit/3317784))
|
|
1112
|
+
|
|
1113
|
+
<a name="3.0.3"></a>
|
|
1114
|
+
|
|
1115
|
+
## [3.0.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@3.0.2...@pie-lib/math-input@3.0.3) (2018-04-20)
|
|
1116
|
+
|
|
1117
|
+
### Bug Fixes
|
|
1118
|
+
|
|
1119
|
+
- **editable-math-input:** fix props ([078de38](https://github.com/pie-framework/pie-lib/commit/078de38))
|
|
1120
|
+
|
|
1121
|
+
<a name="3.0.2"></a>
|
|
1122
|
+
|
|
1123
|
+
## [3.0.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@3.0.1...@pie-lib/math-input@3.0.2) (2018-04-20)
|
|
1124
|
+
|
|
1125
|
+
### Bug Fixes
|
|
1126
|
+
|
|
1127
|
+
- **ssr:** throw error if MQ is undefined ([f91a405](https://github.com/pie-framework/pie-lib/commit/f91a405))
|
|
1128
|
+
- **test:** normalize tests ([b86b3d9](https://github.com/pie-framework/pie-lib/commit/b86b3d9))
|
|
1129
|
+
|
|
1130
|
+
<a name="3.0.1"></a>
|
|
1131
|
+
|
|
1132
|
+
## [3.0.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@3.0.0...@pie-lib/math-input@3.0.1) (2018-04-19)
|
|
1133
|
+
|
|
1134
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
1135
|
+
|
|
1136
|
+
<a name="2.0.0"></a>
|
|
1137
|
+
|
|
1138
|
+
# [2.0.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@1.3.3...@pie-lib/math-input@2.0.0) (2018-04-16)
|
|
1139
|
+
|
|
1140
|
+
### Bug Fixes
|
|
1141
|
+
|
|
1142
|
+
- **dependencies:** version bump react ([1c2b53d](https://github.com/pie-framework/pie-lib/commit/1c2b53d))
|
|
1143
|
+
|
|
1144
|
+
### BREAKING CHANGES
|
|
1145
|
+
|
|
1146
|
+
- **dependencies:** requires react@^16.3.1
|
|
1147
|
+
|
|
1148
|
+
<a name="1.3.3"></a>
|
|
1149
|
+
|
|
1150
|
+
## [1.3.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@1.3.2...@pie-lib/math-input@1.3.3) (2018-04-02)
|
|
1151
|
+
|
|
1152
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
1153
|
+
|
|
1154
|
+
<a name="1.3.2"></a>
|
|
1155
|
+
|
|
1156
|
+
## [1.3.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@1.3.1...@pie-lib/math-input@1.3.2) (2018-03-28)
|
|
1157
|
+
|
|
1158
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
1159
|
+
|
|
1160
|
+
<a name="1.3.1"></a>
|
|
1161
|
+
|
|
1162
|
+
## 1.3.1 (2018-03-06)
|
|
1163
|
+
|
|
1164
|
+
**Note:** Version bump only for package @pie-lib/math-input
|
|
1165
|
+
|
|
1166
|
+
<a name="1.3.0"></a>
|
|
1167
|
+
|
|
1168
|
+
# 1.3.0 (2018-03-06)
|
|
1169
|
+
|
|
1170
|
+
### Features
|
|
1171
|
+
|
|
1172
|
+
- **math-input:** add math-input pkg ([5e58759](https://github.com/pie-framework/pie-lib/commit/5e58759))
|