@followupus/common 0.10.29 → 0.10.30

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.
@@ -1,26 +1,26 @@
1
1
  import { IBaseCustomColumn, IBaseGroup, IFilter, IFilterCondition, IPureBoard, IBaseItem } from "./types";
2
2
  export declare const COLUMN_TYPES: {
3
3
  TEXT: string;
4
+ DROPDOWN: string;
5
+ TAGS: string;
6
+ PEOPLE: string;
7
+ NUMBER: string;
4
8
  DATE: string;
9
+ CHECKBOX: string;
10
+ LINK: string;
11
+ FILES: string;
5
12
  STATUS: string;
6
13
  PRIORITY: string;
7
- PEOPLE: string;
8
14
  EMAIL: string;
9
15
  PHONE: string;
10
16
  HOURS: string;
11
- TIME_TRACKING: string;
12
17
  TIMELINE: string;
13
18
  CURRENCY: string;
14
- NUMBER: string;
15
- DROPDOWN: string;
16
- TAGS: string;
17
- LINK: string;
18
- FILES: string;
19
- CHECKBOX: string;
20
19
  PERCENTAGE: string;
21
- AUTO_NUMBER: string;
22
20
  LINKED_COLUMN: string;
23
21
  REF_LINED_COLUMN: string;
22
+ TIME_TRACKING: string;
23
+ AUTO_NUMBER: string;
24
24
  CREATED_BY: string;
25
25
  CREATED_AT: string;
26
26
  };
@@ -4,26 +4,26 @@ import _ from "lodash";
4
4
  // the key order is used for Add Column Menu order, keep it
5
5
  export const COLUMN_TYPES = {
6
6
  TEXT: "string",
7
+ DROPDOWN: "dropdown",
8
+ TAGS: "tags",
9
+ PEOPLE: "people",
10
+ NUMBER: "number",
7
11
  DATE: "date",
12
+ CHECKBOX: "checkbox",
13
+ LINK: "link",
14
+ FILES: "files",
8
15
  STATUS: "status",
9
16
  PRIORITY: "priority",
10
- PEOPLE: "people",
11
17
  EMAIL: "email",
12
18
  PHONE: "phone",
13
19
  HOURS: "hours",
14
- TIME_TRACKING: "time_tracking",
15
20
  TIMELINE: "timeline",
16
21
  CURRENCY: "currency",
17
- NUMBER: "number",
18
- DROPDOWN: "dropdown",
19
- TAGS: "tags",
20
- LINK: "link",
21
- FILES: "files",
22
- CHECKBOX: "checkbox",
23
22
  PERCENTAGE: "percent",
24
- AUTO_NUMBER: "auto_number",
25
23
  LINKED_COLUMN: "linked_column",
26
24
  REF_LINED_COLUMN: "ref_linked_column",
25
+ TIME_TRACKING: "time_tracking",
26
+ AUTO_NUMBER: "auto_number",
27
27
  CREATED_BY: "created_by",
28
28
  CREATED_AT: "created_at",
29
29
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@followupus/common",
3
- "version": "0.10.29",
3
+ "version": "0.10.30",
4
4
  "description": "followup common utils npm package with TypeScript and VSCode",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",