@followupus/common 0.9.6 → 0.9.7
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/dist/shared/shared.js +8 -1
- package/package.json +1 -1
package/dist/shared/shared.js
CHANGED
|
@@ -40,6 +40,8 @@ export const COLUMN_OP_TYPES = {
|
|
|
40
40
|
OP_TYPES.NOT_CONTAINS,
|
|
41
41
|
OP_TYPES.IS,
|
|
42
42
|
OP_TYPES.IS_NOT,
|
|
43
|
+
OP_TYPES.EMPTY,
|
|
44
|
+
OP_TYPES.NOT_EMPTY,
|
|
43
45
|
],
|
|
44
46
|
[COLUMN_TYPES.DATE]: [
|
|
45
47
|
OP_TYPES.IS,
|
|
@@ -104,7 +106,12 @@ export const AUTOMATION_OP_TYPES = {
|
|
|
104
106
|
};
|
|
105
107
|
export const DYNAMIC_VIEW_OP_TYPES = {
|
|
106
108
|
...COLUMN_OP_TYPES,
|
|
107
|
-
[COLUMN_TYPES.TEXT]: [
|
|
109
|
+
[COLUMN_TYPES.TEXT]: [
|
|
110
|
+
OP_TYPES.CONTAINS,
|
|
111
|
+
OP_TYPES.NOT_CONTAINS,
|
|
112
|
+
OP_TYPES.EMPTY,
|
|
113
|
+
OP_TYPES.NOT_EMPTY,
|
|
114
|
+
],
|
|
108
115
|
};
|
|
109
116
|
export const THEMSELVES = "self";
|
|
110
117
|
export const DATE_GROUPS = {
|