Skip to content

Commit b302c03

Browse files
authored
Merge pull request #244 from briza-insurance/feature/gus-3869
Update illogical
2 parents 1715b67 + 044291d commit b302c03

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+2955
-5664
lines changed

changelog.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# illogical changelog
22

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+
311
## 1.5.9
412

513
- Modify OVERLAP expression such that the OVERLAP of two empty arrays returns true

docs/assets/highlight.css

+19-19
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
:root {
2-
--light-hl-0: #000000;
3-
--dark-hl-0: #D4D4D4;
4-
--light-hl-1: #008000;
5-
--dark-hl-1: #6A9955;
6-
--light-hl-2: #AF00DB;
7-
--dark-hl-2: #C586C0;
8-
--light-hl-3: #001080;
9-
--dark-hl-3: #9CDCFE;
10-
--light-hl-4: #A31515;
11-
--dark-hl-4: #CE9178;
12-
--light-hl-5: #0000FF;
13-
--dark-hl-5: #569CD6;
14-
--light-hl-6: #0070C1;
15-
--dark-hl-6: #4FC1FF;
16-
--light-hl-7: #795E26;
17-
--dark-hl-7: #DCDCAA;
2+
--light-hl-0: #795E26;
3+
--dark-hl-0: #DCDCAA;
4+
--light-hl-1: #000000;
5+
--dark-hl-1: #D4D4D4;
6+
--light-hl-2: #A31515;
7+
--dark-hl-2: #CE9178;
8+
--light-hl-3: #0000FF;
9+
--dark-hl-3: #569CD6;
10+
--light-hl-4: #008000;
11+
--dark-hl-4: #6A9955;
12+
--light-hl-5: #AF00DB;
13+
--dark-hl-5: #C586C0;
14+
--light-hl-6: #001080;
15+
--dark-hl-6: #9CDCFE;
16+
--light-hl-7: #0070C1;
17+
--dark-hl-7: #4FC1FF;
1818
--light-hl-8: #098658;
1919
--dark-hl-8: #B5CEA8;
2020
--light-hl-9: #000000;
2121
--dark-hl-9: #C8C8C8;
2222
--light-hl-10: #267F99;
2323
--dark-hl-10: #4EC9B0;
24-
--light-code-background: #F5F5F5;
24+
--light-code-background: #FFFFFF;
2525
--dark-code-background: #1E1E1E;
2626
}
2727

@@ -55,7 +55,7 @@
5555
--code-background: var(--dark-code-background);
5656
} }
5757

58-
body.light {
58+
:root[data-theme='light'] {
5959
--hl-0: var(--light-hl-0);
6060
--hl-1: var(--light-hl-1);
6161
--hl-2: var(--light-hl-2);
@@ -70,7 +70,7 @@ body.light {
7070
--code-background: var(--light-code-background);
7171
}
7272

73-
body.dark {
73+
:root[data-theme='dark'] {
7474
--hl-0: var(--dark-hl-0);
7575
--hl-1: var(--dark-hl-1);
7676
--hl-2: var(--dark-hl-2);

0 commit comments

Comments
 (0)