@outliant/sunrise-utils 1.1.14 → 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 CHANGED
@@ -4,10 +4,24 @@ 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
+
11
+ #### [1.1.15](https://github.com/outliant/sunrise-utils/compare/1.1.14...1.1.15)
12
+
13
+ > 13 December 2023
14
+
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)
17
+
7
18
  #### [1.1.14](https://github.com/outliant/sunrise-utils/compare/1.1.13...1.1.14)
8
19
 
20
+ > 12 December 2023
21
+
9
22
  - chore: add Is None Of field condition #85ztm47dj [`#20`](https://github.com/outliant/sunrise-utils/pull/20)
10
23
  - chore: add Is None Of field condition (WIP) #85ztm47dj [`8005104`](https://github.com/outliant/sunrise-utils/commit/8005104a15eaf5102fe3672f1a9da5d03128ba4b)
24
+ - chore(release): 1.1.14 [`a5eab66`](https://github.com/outliant/sunrise-utils/commit/a5eab66b6260353e13abc095d4f2ffdff70c020b)
11
25
 
12
26
  #### [1.1.13](https://github.com/outliant/sunrise-utils/compare/1.1.12...1.1.13)
13
27
 
@@ -1,4 +1,4 @@
1
- const { isNoneOf } = require('../common');
1
+ const { isNoneOf } = require('../../common');
2
2
 
3
3
  module.exports = (filter) => {
4
4
  switch (filter.condition) {
@@ -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: [
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@outliant/sunrise-utils",
3
3
  "description": "Helper functions for project Sunrise",
4
- "version": "1.1.14",
4
+ "version": "1.1.16",
5
5
  "license": "ISC",
6
6
  "author": "Outliant",
7
7
  "main": "index.js",