@briza/illogical 1.5.8 → 1.6.0
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 +12 -0
- package/lib/illogical.esm.js +690 -413
- package/lib/illogical.js +693 -412
- package/package.json +19 -19
- package/readme.md +103 -12
- package/types/common/type-check.d.ts +17 -0
- package/types/expression/arithmetic/divide.d.ts +14 -0
- package/types/expression/arithmetic/index.d.ts +42 -0
- package/types/expression/arithmetic/isSimplifiedArithmeticExpression.d.ts +3 -0
- package/types/expression/arithmetic/multiply.d.ts +14 -0
- package/types/expression/arithmetic/operateWithExpectedDecimals.d.ts +1 -0
- package/types/expression/arithmetic/subtract.d.ts +14 -0
- package/types/expression/arithmetic/sum.d.ts +14 -0
- package/types/index.d.ts +5 -1
- package/types/parser/index.d.ts +2 -1
package/changelog.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# illogical changelog
|
|
2
2
|
|
|
3
|
+
## 1.6.0
|
|
4
|
+
|
|
5
|
+
- Added support for Arithmetic expressions within other Comparison expressions. This allows for
|
|
6
|
+
more complex and dynamic comparisons to be made. Now, you can perform mathematical operations
|
|
7
|
+
within your conditional expressions, making them even more powerful and flexible. Whether you need
|
|
8
|
+
to calculate sums, differences, products, or divisions, the new Arithmetic expression feature has
|
|
9
|
+
got you covered. There are no breaking changes if this new kind of expression isn't being used.
|
|
10
|
+
|
|
11
|
+
## 1.5.9
|
|
12
|
+
|
|
13
|
+
- Modify OVERLAP expression such that the OVERLAP of two empty arrays returns true
|
|
14
|
+
|
|
3
15
|
## 1.5.8
|
|
4
16
|
|
|
5
17
|
- Introduce the backtick syntax for condition referencing keys that contain dot delimiters
|