@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.
@@ -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]: [OP_TYPES.CONTAINS, OP_TYPES.NOT_CONTAINS],
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 = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@followupus/common",
3
- "version": "0.9.6",
3
+ "version": "0.9.7",
4
4
  "description": "followup common utils npm package with TypeScript and VSCode",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",