@fctc/edu-logic-lib 1.1.7 → 1.1.9
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/chunk-4K3QAEZ6.js +90 -0
- package/dist/chunk-6BLY7NZ6.mjs +120 -0
- package/dist/chunk-6QXB3XX7.mjs +256 -0
- package/dist/chunk-7JD5GMIZ.js +2 -0
- package/dist/chunk-AYUH66EE.mjs +62 -0
- package/dist/chunk-CZHZLKNA.mjs +585 -0
- package/dist/chunk-EK43MEN4.js +635 -0
- package/dist/chunk-ELARQVCE.mjs +2344 -0
- package/dist/chunk-FVGPSTJ7.js +122 -0
- package/dist/chunk-GGOFXFSX.js +2362 -0
- package/dist/chunk-IXDDYGKE.js +61 -0
- package/dist/chunk-MLJQPO4Q.mjs +57 -0
- package/dist/chunk-OADBRQ4A.js +32 -0
- package/dist/chunk-OBR6UTC5.mjs +1 -0
- package/dist/chunk-OFUXC2LA.mjs +86 -0
- package/dist/chunk-P2IGWJDZ.js +1068 -0
- package/dist/chunk-QLUONJPQ.mjs +519 -0
- package/dist/chunk-RWRHCIQI.mjs +1059 -0
- package/dist/chunk-RZBHZYXG.js +582 -0
- package/dist/chunk-S7B3VKMJ.mjs +85 -0
- package/dist/chunk-S7YF2I23.js +95 -0
- package/dist/chunk-UY6GNZNB.js +262 -0
- package/dist/chunk-XYVK476U.mjs +29 -0
- package/dist/chunk-YOV6KAT2.js +66 -0
- package/dist/config.js +6 -257
- package/dist/config.mjs +2 -256
- package/dist/constants.js +53 -152
- package/dist/constants.mjs +2 -141
- package/dist/environment.js +16 -840
- package/dist/environment.mjs +4 -841
- package/dist/hooks.js +180 -4851
- package/dist/hooks.mjs +9 -4814
- package/dist/index.js +626 -5324
- package/dist/index.mjs +12 -5169
- package/dist/models.js +18 -3217
- package/dist/models.mjs +9 -3217
- package/dist/provider.js +17 -3224
- package/dist/provider.mjs +8 -3224
- package/dist/services.js +31 -4032
- package/dist/services.mjs +7 -4032
- package/dist/store.js +248 -576
- package/dist/store.mjs +1 -519
- package/dist/types.js +2 -0
- package/dist/types.mjs +1 -1
- package/dist/utils.js +61 -2355
- package/dist/utils.mjs +1 -2344
- package/package.json +1 -1
package/dist/constants.js
CHANGED
|
@@ -1,154 +1,55 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
var
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
return UriConstants2;
|
|
57
|
-
})(UriConstants || {});
|
|
58
|
-
|
|
59
|
-
// src/constants/field/field-type-constant.ts
|
|
60
|
-
var FieldTypeConstants = /* @__PURE__ */ ((FieldTypeConstants2) => {
|
|
61
|
-
FieldTypeConstants2["CHAR"] = "char";
|
|
62
|
-
FieldTypeConstants2["TEXT"] = "text";
|
|
63
|
-
FieldTypeConstants2["INTEGER"] = "integer";
|
|
64
|
-
FieldTypeConstants2["FLOAT"] = "float";
|
|
65
|
-
FieldTypeConstants2["BOOLEAN"] = "boolean";
|
|
66
|
-
FieldTypeConstants2["DATE"] = "date";
|
|
67
|
-
FieldTypeConstants2["DATETIME"] = "datetime";
|
|
68
|
-
FieldTypeConstants2["BINARY"] = "binary";
|
|
69
|
-
FieldTypeConstants2["SELECTION"] = "selection";
|
|
70
|
-
FieldTypeConstants2["HTML"] = "html";
|
|
71
|
-
FieldTypeConstants2["MANY2ONE"] = "many2one";
|
|
72
|
-
FieldTypeConstants2["ONE2MANY"] = "one2many";
|
|
73
|
-
FieldTypeConstants2["MANY2MANY"] = "many2many";
|
|
74
|
-
FieldTypeConstants2["MONETARY"] = "monetary";
|
|
75
|
-
FieldTypeConstants2["REFERENCE"] = "reference";
|
|
76
|
-
FieldTypeConstants2["FUNCTION"] = "function";
|
|
77
|
-
FieldTypeConstants2["PROPERTY"] = "property";
|
|
78
|
-
return FieldTypeConstants2;
|
|
79
|
-
})(FieldTypeConstants || {});
|
|
80
|
-
|
|
81
|
-
// src/constants/method/method-type-constant.ts
|
|
82
|
-
var MethodType = /* @__PURE__ */ ((MethodType2) => {
|
|
83
|
-
MethodType2[MethodType2["CREATE"] = 0] = "CREATE";
|
|
84
|
-
MethodType2[MethodType2["UPDATE"] = 1] = "UPDATE";
|
|
85
|
-
MethodType2[MethodType2["DELETE"] = 2] = "DELETE";
|
|
86
|
-
MethodType2[MethodType2["UNLINK"] = 3] = "UNLINK";
|
|
87
|
-
MethodType2[MethodType2["NO_CHANGE"] = 4] = "NO_CHANGE";
|
|
88
|
-
return MethodType2;
|
|
89
|
-
})(MethodType || {});
|
|
90
|
-
|
|
91
|
-
// src/constants/model/model-constant.ts
|
|
92
|
-
var ModelConstants = /* @__PURE__ */ ((ModelConstants2) => {
|
|
93
|
-
ModelConstants2["MENU"] = "ir.ui.menu";
|
|
94
|
-
ModelConstants2["USER"] = "res.users";
|
|
95
|
-
ModelConstants2["COMPANY"] = "res.company";
|
|
96
|
-
ModelConstants2["WINDOW_ACTION"] = "ir.actions.act_window";
|
|
97
|
-
ModelConstants2["BASE_IMPORT"] = "base_import.import";
|
|
98
|
-
ModelConstants2["GET_IMPORT"] = "get_import_templates";
|
|
99
|
-
return ModelConstants2;
|
|
100
|
-
})(ModelConstants || {});
|
|
101
|
-
|
|
102
|
-
// src/constants/type/index.ts
|
|
103
|
-
var ComponentType = /* @__PURE__ */ ((ComponentType2) => {
|
|
104
|
-
ComponentType2["TREE"] = "tree";
|
|
105
|
-
ComponentType2["GROUP"] = "group";
|
|
106
|
-
ComponentType2["LIST"] = "list";
|
|
107
|
-
ComponentType2["FORM"] = "form";
|
|
108
|
-
ComponentType2["FIELD"] = "field";
|
|
109
|
-
ComponentType2["DIV"] = "div";
|
|
110
|
-
ComponentType2["SPAN"] = "span";
|
|
111
|
-
return ComponentType2;
|
|
112
|
-
})(ComponentType || {});
|
|
113
|
-
var SearchType = {
|
|
114
|
-
FILTER: "filter_by",
|
|
115
|
-
SEARCH: "search_by",
|
|
116
|
-
GROUP: "group_by"
|
|
117
|
-
};
|
|
118
|
-
|
|
119
|
-
// src/constants/widget/widget-avatar-constant.ts
|
|
120
|
-
var WIDGETAVATAR = /* @__PURE__ */ ((WIDGETAVATAR2) => {
|
|
121
|
-
WIDGETAVATAR2["many2one_avatar_user"] = "many2one_avatar_user";
|
|
122
|
-
WIDGETAVATAR2["many2many_avatar_user"] = "many2many_avatar_user";
|
|
123
|
-
return WIDGETAVATAR2;
|
|
124
|
-
})(WIDGETAVATAR || {});
|
|
125
|
-
|
|
126
|
-
// src/constants/widget/widget-color-constant.ts
|
|
127
|
-
var WIDGETCOLOR = /* @__PURE__ */ ((WIDGETCOLOR2) => {
|
|
128
|
-
WIDGETCOLOR2["many2many_tags"] = "many2many_tags";
|
|
129
|
-
WIDGETCOLOR2["helpdesk_sla_many2many_tags"] = "helpdesk_sla_many2many_tags";
|
|
130
|
-
return WIDGETCOLOR2;
|
|
131
|
-
})(WIDGETCOLOR || {});
|
|
132
|
-
|
|
133
|
-
// src/constants/widget/widget-status-constant.ts
|
|
134
|
-
var WIDGETSTATUS = /* @__PURE__ */ ((WIDGETSTATUS2) => {
|
|
135
|
-
WIDGETSTATUS2["sla_status_ids"] = "sla_status_ids";
|
|
136
|
-
return WIDGETSTATUS2;
|
|
137
|
-
})(WIDGETSTATUS || {});
|
|
138
|
-
var WIDGETNOSTRING = /* @__PURE__ */ ((WIDGETNOSTRING2) => {
|
|
139
|
-
WIDGETNOSTRING2["sla_status_ids"] = "sla_status_ids";
|
|
140
|
-
return WIDGETNOSTRING2;
|
|
141
|
-
})(WIDGETNOSTRING || {});
|
|
142
|
-
|
|
143
|
-
exports.ComponentType = ComponentType;
|
|
144
|
-
exports.FieldTypeConstants = FieldTypeConstants;
|
|
145
|
-
exports.KeyConstants = KeyConstants;
|
|
146
|
-
exports.MethodConstants = MethodConstants;
|
|
147
|
-
exports.MethodType = MethodType;
|
|
148
|
-
exports.ModelConstants = ModelConstants;
|
|
149
|
-
exports.SearchType = SearchType;
|
|
150
|
-
exports.UriConstants = UriConstants;
|
|
151
|
-
exports.WIDGETAVATAR = WIDGETAVATAR;
|
|
152
|
-
exports.WIDGETCOLOR = WIDGETCOLOR;
|
|
153
|
-
exports.WIDGETNOSTRING = WIDGETNOSTRING;
|
|
154
|
-
exports.WIDGETSTATUS = WIDGETSTATUS;
|
|
3
|
+
var chunkS7YF2I23_js = require('./chunk-S7YF2I23.js');
|
|
4
|
+
var chunkIXDDYGKE_js = require('./chunk-IXDDYGKE.js');
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
Object.defineProperty(exports, "ComponentType", {
|
|
9
|
+
enumerable: true,
|
|
10
|
+
get: function () { return chunkS7YF2I23_js.ComponentType; }
|
|
11
|
+
});
|
|
12
|
+
Object.defineProperty(exports, "FieldTypeConstants", {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function () { return chunkS7YF2I23_js.FieldTypeConstants; }
|
|
15
|
+
});
|
|
16
|
+
Object.defineProperty(exports, "MethodType", {
|
|
17
|
+
enumerable: true,
|
|
18
|
+
get: function () { return chunkS7YF2I23_js.MethodType; }
|
|
19
|
+
});
|
|
20
|
+
Object.defineProperty(exports, "ModelConstants", {
|
|
21
|
+
enumerable: true,
|
|
22
|
+
get: function () { return chunkS7YF2I23_js.ModelConstants; }
|
|
23
|
+
});
|
|
24
|
+
Object.defineProperty(exports, "SearchType", {
|
|
25
|
+
enumerable: true,
|
|
26
|
+
get: function () { return chunkS7YF2I23_js.SearchType; }
|
|
27
|
+
});
|
|
28
|
+
Object.defineProperty(exports, "WIDGETAVATAR", {
|
|
29
|
+
enumerable: true,
|
|
30
|
+
get: function () { return chunkS7YF2I23_js.WIDGETAVATAR; }
|
|
31
|
+
});
|
|
32
|
+
Object.defineProperty(exports, "WIDGETCOLOR", {
|
|
33
|
+
enumerable: true,
|
|
34
|
+
get: function () { return chunkS7YF2I23_js.WIDGETCOLOR; }
|
|
35
|
+
});
|
|
36
|
+
Object.defineProperty(exports, "WIDGETNOSTRING", {
|
|
37
|
+
enumerable: true,
|
|
38
|
+
get: function () { return chunkS7YF2I23_js.WIDGETNOSTRING; }
|
|
39
|
+
});
|
|
40
|
+
Object.defineProperty(exports, "WIDGETSTATUS", {
|
|
41
|
+
enumerable: true,
|
|
42
|
+
get: function () { return chunkS7YF2I23_js.WIDGETSTATUS; }
|
|
43
|
+
});
|
|
44
|
+
Object.defineProperty(exports, "KeyConstants", {
|
|
45
|
+
enumerable: true,
|
|
46
|
+
get: function () { return chunkIXDDYGKE_js.KeyConstants; }
|
|
47
|
+
});
|
|
48
|
+
Object.defineProperty(exports, "MethodConstants", {
|
|
49
|
+
enumerable: true,
|
|
50
|
+
get: function () { return chunkIXDDYGKE_js.MethodConstants; }
|
|
51
|
+
});
|
|
52
|
+
Object.defineProperty(exports, "UriConstants", {
|
|
53
|
+
enumerable: true,
|
|
54
|
+
get: function () { return chunkIXDDYGKE_js.UriConstants; }
|
|
55
|
+
});
|
package/dist/constants.mjs
CHANGED
|
@@ -1,141 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
KeyConstants2["PROFILE"] = "userinfo";
|
|
4
|
-
KeyConstants2["CURRENT_COMPANY"] = "current_company";
|
|
5
|
-
KeyConstants2["LIST_COMPANY"] = "list_company";
|
|
6
|
-
KeyConstants2["COMPANY_INFO"] = "company_info";
|
|
7
|
-
KeyConstants2["MENU"] = "menus";
|
|
8
|
-
KeyConstants2["GET_VIEW_BY_ACTION"] = "get_view_by_action";
|
|
9
|
-
KeyConstants2["ACTION_DETAIL"] = "action_detail";
|
|
10
|
-
KeyConstants2["GET_DATA_SELECTION"] = "get_data_select";
|
|
11
|
-
KeyConstants2["WEB_SAVE"] = "web_save";
|
|
12
|
-
KeyConstants2["WEB_READ"] = "web_read";
|
|
13
|
-
KeyConstants2["GET_PROVIDER"] = "get_provider";
|
|
14
|
-
return KeyConstants2;
|
|
15
|
-
})(KeyConstants || {});
|
|
16
|
-
|
|
17
|
-
// src/constants/api/method-constant.ts
|
|
18
|
-
var MethodConstants = /* @__PURE__ */ ((MethodConstants2) => {
|
|
19
|
-
MethodConstants2["WEB_SEARCH_READ"] = "web_search_read";
|
|
20
|
-
MethodConstants2["WEB_READ_GROUP"] = "web_read_group";
|
|
21
|
-
MethodConstants2["WEB_READ"] = "web_read";
|
|
22
|
-
MethodConstants2["WEB_SAVE"] = "web_save";
|
|
23
|
-
MethodConstants2["UNLINK"] = "unlink";
|
|
24
|
-
MethodConstants2["ONCHANGE"] = "onchange";
|
|
25
|
-
MethodConstants2["GET_ONCHANGE_FIELDS"] = "get_fields_onchange";
|
|
26
|
-
MethodConstants2["GET_FIELD_VIEW"] = "get_fields_view_v2";
|
|
27
|
-
return MethodConstants2;
|
|
28
|
-
})(MethodConstants || {});
|
|
29
|
-
|
|
30
|
-
// src/constants/api/uri-constant.ts
|
|
31
|
-
var UriConstants = /* @__PURE__ */ ((UriConstants2) => {
|
|
32
|
-
UriConstants2["AUTH_TOKEN_PATH"] = "/authentication/oauth2/token";
|
|
33
|
-
UriConstants2["GENTOKEN_SOCIAL"] = "/token/generate";
|
|
34
|
-
UriConstants2["CALL_PATH"] = "/call";
|
|
35
|
-
UriConstants2["COMPANY_PATH"] = "/company";
|
|
36
|
-
UriConstants2["PROFILE_PATH"] = "/userinfo";
|
|
37
|
-
UriConstants2["RESET_PASSWORD_PATH"] = "/reset_password";
|
|
38
|
-
UriConstants2["CHANGE_PASSWORD_PATH"] = "/change_password";
|
|
39
|
-
UriConstants2["UPDATE_PASSWORD_PATH"] = "/change_password_parent";
|
|
40
|
-
UriConstants2["LOAD_ACTION"] = `/load_action`;
|
|
41
|
-
UriConstants2["REPORT_PATH"] = `/report`;
|
|
42
|
-
UriConstants2["RUN_ACTION_PATH"] = `/run_action`;
|
|
43
|
-
UriConstants2["UPLOAD_FILE_PATH"] = `/upload/file`;
|
|
44
|
-
UriConstants2["GET_MESSAGE"] = `/chatter/thread/messages`;
|
|
45
|
-
UriConstants2["SENT_MESSAGE"] = `/chatter/message/post`;
|
|
46
|
-
UriConstants2["UPLOAD_IMAGE"] = `/mail/attachment/upload`;
|
|
47
|
-
UriConstants2["DELETE_MESSAGE"] = `/chatter/message/update_content`;
|
|
48
|
-
UriConstants2["IMAGE_PATH"] = `/web/image`;
|
|
49
|
-
UriConstants2["LOAD_MESSAGE"] = `/load_message_failures`;
|
|
50
|
-
UriConstants2["TOKEN"] = `/check_token`;
|
|
51
|
-
UriConstants2["CREATE_UPDATE_PATH"] = `/create_update`;
|
|
52
|
-
UriConstants2["TWOFA_METHOD_PATH"] = `/id/api/v2/call`;
|
|
53
|
-
UriConstants2["SIGNIN_SSO"] = `/signin-sso/oauth`;
|
|
54
|
-
return UriConstants2;
|
|
55
|
-
})(UriConstants || {});
|
|
56
|
-
|
|
57
|
-
// src/constants/field/field-type-constant.ts
|
|
58
|
-
var FieldTypeConstants = /* @__PURE__ */ ((FieldTypeConstants2) => {
|
|
59
|
-
FieldTypeConstants2["CHAR"] = "char";
|
|
60
|
-
FieldTypeConstants2["TEXT"] = "text";
|
|
61
|
-
FieldTypeConstants2["INTEGER"] = "integer";
|
|
62
|
-
FieldTypeConstants2["FLOAT"] = "float";
|
|
63
|
-
FieldTypeConstants2["BOOLEAN"] = "boolean";
|
|
64
|
-
FieldTypeConstants2["DATE"] = "date";
|
|
65
|
-
FieldTypeConstants2["DATETIME"] = "datetime";
|
|
66
|
-
FieldTypeConstants2["BINARY"] = "binary";
|
|
67
|
-
FieldTypeConstants2["SELECTION"] = "selection";
|
|
68
|
-
FieldTypeConstants2["HTML"] = "html";
|
|
69
|
-
FieldTypeConstants2["MANY2ONE"] = "many2one";
|
|
70
|
-
FieldTypeConstants2["ONE2MANY"] = "one2many";
|
|
71
|
-
FieldTypeConstants2["MANY2MANY"] = "many2many";
|
|
72
|
-
FieldTypeConstants2["MONETARY"] = "monetary";
|
|
73
|
-
FieldTypeConstants2["REFERENCE"] = "reference";
|
|
74
|
-
FieldTypeConstants2["FUNCTION"] = "function";
|
|
75
|
-
FieldTypeConstants2["PROPERTY"] = "property";
|
|
76
|
-
return FieldTypeConstants2;
|
|
77
|
-
})(FieldTypeConstants || {});
|
|
78
|
-
|
|
79
|
-
// src/constants/method/method-type-constant.ts
|
|
80
|
-
var MethodType = /* @__PURE__ */ ((MethodType2) => {
|
|
81
|
-
MethodType2[MethodType2["CREATE"] = 0] = "CREATE";
|
|
82
|
-
MethodType2[MethodType2["UPDATE"] = 1] = "UPDATE";
|
|
83
|
-
MethodType2[MethodType2["DELETE"] = 2] = "DELETE";
|
|
84
|
-
MethodType2[MethodType2["UNLINK"] = 3] = "UNLINK";
|
|
85
|
-
MethodType2[MethodType2["NO_CHANGE"] = 4] = "NO_CHANGE";
|
|
86
|
-
return MethodType2;
|
|
87
|
-
})(MethodType || {});
|
|
88
|
-
|
|
89
|
-
// src/constants/model/model-constant.ts
|
|
90
|
-
var ModelConstants = /* @__PURE__ */ ((ModelConstants2) => {
|
|
91
|
-
ModelConstants2["MENU"] = "ir.ui.menu";
|
|
92
|
-
ModelConstants2["USER"] = "res.users";
|
|
93
|
-
ModelConstants2["COMPANY"] = "res.company";
|
|
94
|
-
ModelConstants2["WINDOW_ACTION"] = "ir.actions.act_window";
|
|
95
|
-
ModelConstants2["BASE_IMPORT"] = "base_import.import";
|
|
96
|
-
ModelConstants2["GET_IMPORT"] = "get_import_templates";
|
|
97
|
-
return ModelConstants2;
|
|
98
|
-
})(ModelConstants || {});
|
|
99
|
-
|
|
100
|
-
// src/constants/type/index.ts
|
|
101
|
-
var ComponentType = /* @__PURE__ */ ((ComponentType2) => {
|
|
102
|
-
ComponentType2["TREE"] = "tree";
|
|
103
|
-
ComponentType2["GROUP"] = "group";
|
|
104
|
-
ComponentType2["LIST"] = "list";
|
|
105
|
-
ComponentType2["FORM"] = "form";
|
|
106
|
-
ComponentType2["FIELD"] = "field";
|
|
107
|
-
ComponentType2["DIV"] = "div";
|
|
108
|
-
ComponentType2["SPAN"] = "span";
|
|
109
|
-
return ComponentType2;
|
|
110
|
-
})(ComponentType || {});
|
|
111
|
-
var SearchType = {
|
|
112
|
-
FILTER: "filter_by",
|
|
113
|
-
SEARCH: "search_by",
|
|
114
|
-
GROUP: "group_by"
|
|
115
|
-
};
|
|
116
|
-
|
|
117
|
-
// src/constants/widget/widget-avatar-constant.ts
|
|
118
|
-
var WIDGETAVATAR = /* @__PURE__ */ ((WIDGETAVATAR2) => {
|
|
119
|
-
WIDGETAVATAR2["many2one_avatar_user"] = "many2one_avatar_user";
|
|
120
|
-
WIDGETAVATAR2["many2many_avatar_user"] = "many2many_avatar_user";
|
|
121
|
-
return WIDGETAVATAR2;
|
|
122
|
-
})(WIDGETAVATAR || {});
|
|
123
|
-
|
|
124
|
-
// src/constants/widget/widget-color-constant.ts
|
|
125
|
-
var WIDGETCOLOR = /* @__PURE__ */ ((WIDGETCOLOR2) => {
|
|
126
|
-
WIDGETCOLOR2["many2many_tags"] = "many2many_tags";
|
|
127
|
-
WIDGETCOLOR2["helpdesk_sla_many2many_tags"] = "helpdesk_sla_many2many_tags";
|
|
128
|
-
return WIDGETCOLOR2;
|
|
129
|
-
})(WIDGETCOLOR || {});
|
|
130
|
-
|
|
131
|
-
// src/constants/widget/widget-status-constant.ts
|
|
132
|
-
var WIDGETSTATUS = /* @__PURE__ */ ((WIDGETSTATUS2) => {
|
|
133
|
-
WIDGETSTATUS2["sla_status_ids"] = "sla_status_ids";
|
|
134
|
-
return WIDGETSTATUS2;
|
|
135
|
-
})(WIDGETSTATUS || {});
|
|
136
|
-
var WIDGETNOSTRING = /* @__PURE__ */ ((WIDGETNOSTRING2) => {
|
|
137
|
-
WIDGETNOSTRING2["sla_status_ids"] = "sla_status_ids";
|
|
138
|
-
return WIDGETNOSTRING2;
|
|
139
|
-
})(WIDGETNOSTRING || {});
|
|
140
|
-
|
|
141
|
-
export { ComponentType, FieldTypeConstants, KeyConstants, MethodConstants, MethodType, ModelConstants, SearchType, UriConstants, WIDGETAVATAR, WIDGETCOLOR, WIDGETNOSTRING, WIDGETSTATUS };
|
|
1
|
+
export { ComponentType, FieldTypeConstants, MethodType, ModelConstants, SearchType, WIDGETAVATAR, WIDGETCOLOR, WIDGETNOSTRING, WIDGETSTATUS } from './chunk-S7B3VKMJ.mjs';
|
|
2
|
+
export { KeyConstants, MethodConstants, UriConstants } from './chunk-MLJQPO4Q.mjs';
|