@followupus/common 0.10.3 → 0.10.4
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.d.ts +21 -0
- package/dist/shared/shared.js +23 -0
- package/package.json +1 -1
package/dist/shared/shared.d.ts
CHANGED
|
@@ -1,4 +1,25 @@
|
|
|
1
1
|
import { IBaseCustomColumn, IBaseGroup, IFilter, IFilterCondition, IPureBoard, IBaseItem } from "./types";
|
|
2
|
+
export declare const ACTION_TYPE: {
|
|
3
|
+
CREATE: string;
|
|
4
|
+
UPDATE: string;
|
|
5
|
+
DELETE: string;
|
|
6
|
+
DUPLICATE: string;
|
|
7
|
+
MOVE: string;
|
|
8
|
+
RESOLVE: string;
|
|
9
|
+
};
|
|
10
|
+
export declare const OBJECT_TYPE: {
|
|
11
|
+
WORKSPACE: string;
|
|
12
|
+
FOLDER: string;
|
|
13
|
+
BOARD: string;
|
|
14
|
+
VIEW: string;
|
|
15
|
+
DOC: string;
|
|
16
|
+
GROUP: string;
|
|
17
|
+
HEADER: string;
|
|
18
|
+
ITEM: string;
|
|
19
|
+
DROPDOWN: string;
|
|
20
|
+
MEMBER: string;
|
|
21
|
+
ACTION: string;
|
|
22
|
+
};
|
|
2
23
|
export declare const COLUMN_TYPES: {
|
|
3
24
|
NUMBER: string;
|
|
4
25
|
TEXT: string;
|
package/dist/shared/shared.js
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
import dayjs from "dayjs";
|
|
2
2
|
import _ from "lodash";
|
|
3
|
+
//One-to-One Matching UI.
|
|
4
|
+
export const ACTION_TYPE = {
|
|
5
|
+
CREATE: "CREATE",
|
|
6
|
+
UPDATE: "UPDATE",
|
|
7
|
+
DELETE: "DELETE",
|
|
8
|
+
DUPLICATE: "DUPLICATE",
|
|
9
|
+
MOVE: "MOVE",
|
|
10
|
+
RESOLVE: "RESOLVE",
|
|
11
|
+
};
|
|
12
|
+
// One-to-One Matching UI.
|
|
13
|
+
export const OBJECT_TYPE = {
|
|
14
|
+
WORKSPACE: "workspace",
|
|
15
|
+
FOLDER: "folder",
|
|
16
|
+
BOARD: "board",
|
|
17
|
+
VIEW: "view",
|
|
18
|
+
DOC: "doc",
|
|
19
|
+
GROUP: "group",
|
|
20
|
+
HEADER: "header",
|
|
21
|
+
ITEM: "item",
|
|
22
|
+
DROPDOWN: "dropdown",
|
|
23
|
+
MEMBER: "member",
|
|
24
|
+
ACTION: "action",
|
|
25
|
+
};
|
|
3
26
|
export const COLUMN_TYPES = {
|
|
4
27
|
NUMBER: "number",
|
|
5
28
|
TEXT: "string",
|