@fctc/edu-logic-lib 1.0.0 → 1.0.2

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.
@@ -0,0 +1,95 @@
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true});// src/constants/field/field-type-constant.ts
2
+ var FieldTypeConstants = /* @__PURE__ */ ((FieldTypeConstants2) => {
3
+ FieldTypeConstants2["CHAR"] = "char";
4
+ FieldTypeConstants2["TEXT"] = "text";
5
+ FieldTypeConstants2["INTEGER"] = "integer";
6
+ FieldTypeConstants2["FLOAT"] = "float";
7
+ FieldTypeConstants2["BOOLEAN"] = "boolean";
8
+ FieldTypeConstants2["DATE"] = "date";
9
+ FieldTypeConstants2["DATETIME"] = "datetime";
10
+ FieldTypeConstants2["BINARY"] = "binary";
11
+ FieldTypeConstants2["SELECTION"] = "selection";
12
+ FieldTypeConstants2["HTML"] = "html";
13
+ FieldTypeConstants2["MANY2ONE"] = "many2one";
14
+ FieldTypeConstants2["ONE2MANY"] = "one2many";
15
+ FieldTypeConstants2["MANY2MANY"] = "many2many";
16
+ FieldTypeConstants2["MONETARY"] = "monetary";
17
+ FieldTypeConstants2["REFERENCE"] = "reference";
18
+ FieldTypeConstants2["FUNCTION"] = "function";
19
+ FieldTypeConstants2["PROPERTY"] = "property";
20
+ return FieldTypeConstants2;
21
+ })(FieldTypeConstants || {});
22
+
23
+ // src/constants/method/method-type-constant.ts
24
+ var MethodType = /* @__PURE__ */ ((MethodType2) => {
25
+ MethodType2[MethodType2["CREATE"] = 0] = "CREATE";
26
+ MethodType2[MethodType2["UPDATE"] = 1] = "UPDATE";
27
+ MethodType2[MethodType2["DELETE"] = 2] = "DELETE";
28
+ MethodType2[MethodType2["UNLINK"] = 3] = "UNLINK";
29
+ MethodType2[MethodType2["NO_CHANGE"] = 4] = "NO_CHANGE";
30
+ return MethodType2;
31
+ })(MethodType || {});
32
+
33
+ // src/constants/model/model-constant.ts
34
+ var ModelConstants = /* @__PURE__ */ ((ModelConstants2) => {
35
+ ModelConstants2["MENU"] = "ir.ui.menu";
36
+ ModelConstants2["USER"] = "res.users";
37
+ ModelConstants2["COMPANY"] = "res.company";
38
+ ModelConstants2["WINDOW_ACTION"] = "ir.actions.act_window";
39
+ ModelConstants2["BASE_IMPORT"] = "base_import.import";
40
+ ModelConstants2["GET_IMPORT"] = "get_import_templates";
41
+ return ModelConstants2;
42
+ })(ModelConstants || {});
43
+
44
+ // src/constants/type/index.ts
45
+ var ComponentType = /* @__PURE__ */ ((ComponentType2) => {
46
+ ComponentType2["TREE"] = "tree";
47
+ ComponentType2["GROUP"] = "group";
48
+ ComponentType2["LIST"] = "list";
49
+ ComponentType2["FORM"] = "form";
50
+ ComponentType2["FIELD"] = "field";
51
+ ComponentType2["DIV"] = "div";
52
+ ComponentType2["SPAN"] = "span";
53
+ return ComponentType2;
54
+ })(ComponentType || {});
55
+ var SearchType = {
56
+ FILTER: "filter_by",
57
+ SEARCH: "search_by",
58
+ GROUP: "group_by"
59
+ };
60
+
61
+ // src/constants/widget/widget-avatar-constant.ts
62
+ var WIDGETAVATAR = /* @__PURE__ */ ((WIDGETAVATAR2) => {
63
+ WIDGETAVATAR2["many2one_avatar_user"] = "many2one_avatar_user";
64
+ WIDGETAVATAR2["many2many_avatar_user"] = "many2many_avatar_user";
65
+ return WIDGETAVATAR2;
66
+ })(WIDGETAVATAR || {});
67
+
68
+ // src/constants/widget/widget-color-constant.ts
69
+ var WIDGETCOLOR = /* @__PURE__ */ ((WIDGETCOLOR2) => {
70
+ WIDGETCOLOR2["many2many_tags"] = "many2many_tags";
71
+ WIDGETCOLOR2["helpdesk_sla_many2many_tags"] = "helpdesk_sla_many2many_tags";
72
+ return WIDGETCOLOR2;
73
+ })(WIDGETCOLOR || {});
74
+
75
+ // src/constants/widget/widget-status-constant.ts
76
+ var WIDGETSTATUS = /* @__PURE__ */ ((WIDGETSTATUS2) => {
77
+ WIDGETSTATUS2["sla_status_ids"] = "sla_status_ids";
78
+ return WIDGETSTATUS2;
79
+ })(WIDGETSTATUS || {});
80
+ var WIDGETNOSTRING = /* @__PURE__ */ ((WIDGETNOSTRING2) => {
81
+ WIDGETNOSTRING2["sla_status_ids"] = "sla_status_ids";
82
+ return WIDGETNOSTRING2;
83
+ })(WIDGETNOSTRING || {});
84
+
85
+
86
+
87
+
88
+
89
+
90
+
91
+
92
+
93
+
94
+
95
+ exports.FieldTypeConstants = FieldTypeConstants; exports.MethodType = MethodType; exports.ModelConstants = ModelConstants; exports.ComponentType = ComponentType; exports.SearchType = SearchType; exports.WIDGETAVATAR = WIDGETAVATAR; exports.WIDGETCOLOR = WIDGETCOLOR; exports.WIDGETSTATUS = WIDGETSTATUS; exports.WIDGETNOSTRING = WIDGETNOSTRING;