mathjs 10.6.1 → 10.6.4
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/HISTORY.md +20 -0
- package/lib/browser/math.js +6 -6
- package/lib/browser/math.js.map +1 -1
- package/lib/cjs/function/arithmetic/ceil.js +8 -8
- package/lib/cjs/function/arithmetic/floor.js +8 -8
- package/lib/cjs/header.js +2 -2
- package/lib/cjs/version.js +1 -1
- package/lib/esm/version.js +1 -1
- package/package.json +17 -17
- package/types/index.d.ts +20 -25
- package/types/index.ts +52 -0
package/HISTORY.md
CHANGED
@@ -1,5 +1,25 @@
|
|
1
1
|
# History
|
2
2
|
|
3
|
+
# 2022-06-28, version 10.6.4
|
4
|
+
|
5
|
+
- Improve TypeScript definitions of the `factory` function, thanks @mattvague.
|
6
|
+
|
7
|
+
|
8
|
+
# 2022-06-24, version 10.6.3
|
9
|
+
|
10
|
+
- Revert the TypeScript definition fixes for `factory` applied in `v10.6.2`,
|
11
|
+
they give some complications.
|
12
|
+
|
13
|
+
|
14
|
+
# 2022-06-24, version 10.6.2
|
15
|
+
|
16
|
+
- Improve TypeScript definitions of `ParenthesisNode`. Thanks @mattvague.
|
17
|
+
- Change the TypeScript definition of `MathNodeCommon['type']` into a less
|
18
|
+
strict string, so it is possible to extend with new Node classes.
|
19
|
+
Thanks @mattvague.
|
20
|
+
- Improve TypeScript definitions of the `factory` function, thanks @mattvague.
|
21
|
+
|
22
|
+
|
3
23
|
# 2022-05-31, version 10.6.1
|
4
24
|
|
5
25
|
- Improve the TypeScript types For `OperatorNode`: you can now define generic
|