@outliant/sunrise-utils 1.1.15 → 1.1.16
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 +7 -0
- package/lib/fieldConditions.js +8 -8
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,9 +4,16 @@ All notable changes to this project will be documented in this file. Dates are d
|
|
|
4
4
|
|
|
5
5
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
6
6
|
|
|
7
|
+
#### [1.1.16](https://github.com/outliant/sunrise-utils/compare/1.1.15...1.1.16)
|
|
8
|
+
|
|
9
|
+
- chore: update is none of filter #85ztm47dj [`#22`](https://github.com/outliant/sunrise-utils/pull/22)
|
|
10
|
+
|
|
7
11
|
#### [1.1.15](https://github.com/outliant/sunrise-utils/compare/1.1.14...1.1.15)
|
|
8
12
|
|
|
13
|
+
> 13 December 2023
|
|
14
|
+
|
|
9
15
|
- chore: update common filter import #85ztm47dj [`#21`](https://github.com/outliant/sunrise-utils/pull/21)
|
|
16
|
+
- chore(release): 1.1.15 [`4cbf8e8`](https://github.com/outliant/sunrise-utils/commit/4cbf8e86857fa5c853e5403aba89413701a0e032)
|
|
10
17
|
|
|
11
18
|
#### [1.1.14](https://github.com/outliant/sunrise-utils/compare/1.1.13...1.1.14)
|
|
12
19
|
|
package/lib/fieldConditions.js
CHANGED
|
@@ -20,6 +20,10 @@ module.exports.conditions = {
|
|
|
20
20
|
label: 'Is any of',
|
|
21
21
|
value: 'is_any_of'
|
|
22
22
|
},
|
|
23
|
+
{
|
|
24
|
+
label: 'Is None Of',
|
|
25
|
+
value: 'is_none_of'
|
|
26
|
+
},
|
|
23
27
|
{
|
|
24
28
|
label: 'Contains Any',
|
|
25
29
|
value: 'contains_any'
|
|
@@ -27,10 +31,6 @@ module.exports.conditions = {
|
|
|
27
31
|
{
|
|
28
32
|
label: 'Contains None',
|
|
29
33
|
value: 'contains_none'
|
|
30
|
-
},
|
|
31
|
-
{
|
|
32
|
-
label: 'Is None Of',
|
|
33
|
-
value: 'is_none_of'
|
|
34
34
|
}
|
|
35
35
|
],
|
|
36
36
|
textarea: [
|
|
@@ -54,6 +54,10 @@ module.exports.conditions = {
|
|
|
54
54
|
label: 'Is any of',
|
|
55
55
|
value: 'is_any_of'
|
|
56
56
|
},
|
|
57
|
+
{
|
|
58
|
+
label: 'Is None Of',
|
|
59
|
+
value: 'is_none_of'
|
|
60
|
+
},
|
|
57
61
|
{
|
|
58
62
|
label: 'Contains Any',
|
|
59
63
|
value: 'contains_any'
|
|
@@ -61,10 +65,6 @@ module.exports.conditions = {
|
|
|
61
65
|
{
|
|
62
66
|
label: 'Contains None',
|
|
63
67
|
value: 'contains_none'
|
|
64
|
-
},
|
|
65
|
-
{
|
|
66
|
-
label: 'Is None Of',
|
|
67
|
-
value: 'is_none_of'
|
|
68
68
|
}
|
|
69
69
|
],
|
|
70
70
|
number: [
|