awing-library 2.1.2-dev.536 → 2.1.2-dev.538
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/AWING/DataForm/container.d.ts.map +1 -1
- package/dist/AWING/DataForm/container.js +13 -40
- package/dist/AWING/DataForm/container.test.js +3 -3
- package/dist/AWING/DataForm2/containerOptimized.test.js +2 -2
- package/dist/AWING/DirectoryForm/AddOrEdit.d.ts.map +1 -1
- package/dist/AWING/DirectoryForm/AddOrEdit.js +1 -1
- package/dist/Features/COMMON/Notifications/NotificationDetail/index.d.ts.map +1 -1
- package/dist/Features/COMMON/Notifications/NotificationDetail/index.js +10 -8
- package/dist/Features/COMMON/Notifications/NotificationPopover/Container.d.ts.map +1 -1
- package/dist/Features/COMMON/Notifications/NotificationPopover/Container.js +1 -1
- package/dist/Features/COMMON/Notifications/Services.d.ts +4 -4
- package/dist/Features/COMMON/Notifications/Services.d.ts.map +1 -1
- package/dist/Features/COMMON/Notifications/index.js +1 -1
- package/dist/Features/SYSTEM/ObjectFilter/CreateOrEdit.js +1 -1
- package/dist/Features/SYSTEM/Role/CreateOrEdit.d.ts.map +1 -1
- package/dist/Features/SYSTEM/Role/CreateOrEdit.js +1 -1
- package/dist/Features/SYSTEM/RoleTag/CreateOrEdit.d.ts.map +1 -1
- package/dist/Features/SYSTEM/RoleTag/CreateOrEdit.js +1 -1
- package/dist/Features/SYSTEM/Schema/components/SchemaInformation.d.ts.map +1 -1
- package/dist/Features/SYSTEM/Schema/components/SchemaInformation.js +1 -1
- package/dist/Features/SYSTEM/User/Edit.d.ts.map +1 -1
- package/dist/Features/SYSTEM/User/Edit.js +1 -1
- package/dist/Features/SYSTEM/Workflow/component/Information.d.ts.map +1 -1
- package/dist/Features/SYSTEM/Workflow/component/Information.js +1 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"container.d.ts","sourceRoot":"","sources":["../../../src/AWING/DataForm/container.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"container.d.ts","sourceRoot":"","sources":["../../../src/AWING/DataForm/container.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAE,KAAK,aAAa,EAAE,MAAM,aAAa,CAAC;AAIjD,MAAM,CAAC,OAAO,UAAU,QAAQ,CAAC,CAAC,SAAS,MAAM,EAAE,KAAK,EAAE,aAAa,CAAC,CAAC,CAAC,2CA4PzE"}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { Box, Grid, Paper, Typography } from "@mui/material";
|
|
3
3
|
import DataInput from "../DataInput/index.js";
|
|
4
|
-
import { keysIn } from "lodash";
|
|
5
4
|
import { useEffect, useRef, useState } from "react";
|
|
6
5
|
import { calculateFormValid, handleFields, updateFieldsWithFormulas } from "./utils.js";
|
|
7
6
|
function DataForm(props) {
|
|
@@ -12,15 +11,11 @@ function DataForm(props) {
|
|
|
12
11
|
const [dataFormState, setDataFormState] = useState(()=>{
|
|
13
12
|
const fieldsToUpdate = {};
|
|
14
13
|
const validation = {};
|
|
14
|
+
const isEditMode = !!(propsOldValue && Object.keys(propsOldValue).length > 0);
|
|
15
15
|
fields.forEach((fieldDef)=>{
|
|
16
16
|
const fieldName = fieldDef.fieldName;
|
|
17
|
-
if (
|
|
18
|
-
|
|
19
|
-
validation[fieldName] = true;
|
|
20
|
-
} else if (void 0 !== fieldDef.defaultValue) {
|
|
21
|
-
fieldsToUpdate[fieldName] = fieldDef.defaultValue;
|
|
22
|
-
validation[fieldName] = true;
|
|
23
|
-
} else validation[fieldName] = true;
|
|
17
|
+
if (!isEditMode && void 0 !== fieldDef.defaultValue) fieldsToUpdate[fieldName] = fieldDef.defaultValue;
|
|
18
|
+
validation[fieldName] = true;
|
|
24
19
|
});
|
|
25
20
|
return {
|
|
26
21
|
fieldsToUpdate: fieldsToUpdate,
|
|
@@ -28,46 +23,24 @@ function DataForm(props) {
|
|
|
28
23
|
};
|
|
29
24
|
});
|
|
30
25
|
useEffect(()=>{
|
|
31
|
-
if (
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
};
|
|
35
|
-
fields.map((fieldDef)=>{
|
|
36
|
-
const fieldName = fieldDef.fieldName;
|
|
37
|
-
if (props?.oldValue?.[fieldName] !== oldValue?.[fieldName]) o[fieldName] = props?.oldValue?.[fieldName];
|
|
38
|
-
});
|
|
39
|
-
if (keysIn(o).length) setOldValue(o);
|
|
40
|
-
calculateFormValid(dataFormState, fields, o, onValidateForm, onFormValid);
|
|
41
|
-
}, [
|
|
42
|
-
oldValue?.versionId,
|
|
43
|
-
fields
|
|
44
|
-
]);
|
|
45
|
-
useEffect(()=>{
|
|
46
|
-
const versionId = propsOldValue?.versionId;
|
|
47
|
-
if (propsOldValue && versionId && versionId > 0) {
|
|
26
|
+
if (propsOldValue) {
|
|
27
|
+
const isNewPropsPopulated = !!(propsOldValue && Object.keys(propsOldValue).length > 0);
|
|
28
|
+
const isCurrentOldValueEmpty = !oldValue || 0 === Object.keys(oldValue).length;
|
|
48
29
|
setOldValue(propsOldValue);
|
|
49
|
-
setDataFormState((pre)=>{
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
...pre.validation
|
|
55
|
-
};
|
|
56
|
-
fields.forEach((fieldDef)=>{
|
|
57
|
-
const fieldName = fieldDef.fieldName;
|
|
58
|
-
if (props?.oldValue?.[fieldName] !== oldValue?.[fieldName]) {
|
|
59
|
-
newFieldsToUpdate[fieldName] = props?.oldValue?.[fieldName];
|
|
60
|
-
newValidation[fieldName] = true;
|
|
61
|
-
}
|
|
30
|
+
if (isNewPropsPopulated) setDataFormState((pre)=>{
|
|
31
|
+
if (!isCurrentOldValueEmpty && Object.keys(pre.fieldsToUpdate).length > 0) return pre;
|
|
32
|
+
const newValidation = {};
|
|
33
|
+
fields.forEach((field)=>{
|
|
34
|
+
newValidation[field.fieldName] = true;
|
|
62
35
|
});
|
|
63
36
|
return {
|
|
64
|
-
fieldsToUpdate:
|
|
37
|
+
fieldsToUpdate: {},
|
|
65
38
|
validation: newValidation
|
|
66
39
|
};
|
|
67
40
|
});
|
|
68
41
|
}
|
|
69
42
|
}, [
|
|
70
|
-
propsOldValue
|
|
43
|
+
JSON.stringify(propsOldValue)
|
|
71
44
|
]);
|
|
72
45
|
const handleChange = (fieldName, newValue, valid)=>{
|
|
73
46
|
setDataFormState((pre)=>{
|
|
@@ -6,7 +6,7 @@ import { fireEvent, render, screen } from "@testing-library/react";
|
|
|
6
6
|
import { Constants } from "../../Commons/Constant.js";
|
|
7
7
|
import container from "./container.js";
|
|
8
8
|
var __webpack_modules__ = {
|
|
9
|
-
"
|
|
9
|
+
"AWING/DataInput": function(module) {
|
|
10
10
|
module.exports = __WEBPACK_EXTERNAL_MODULE__DataInput_index_js_c7933a4f__;
|
|
11
11
|
},
|
|
12
12
|
"../helper": function(module) {
|
|
@@ -23,7 +23,7 @@ function __webpack_require__(moduleId) {
|
|
|
23
23
|
__webpack_modules__[moduleId](module, module.exports, __webpack_require__);
|
|
24
24
|
return module.exports;
|
|
25
25
|
}
|
|
26
|
-
var index_js_ = __webpack_require__("
|
|
26
|
+
var index_js_ = __webpack_require__("AWING/DataInput");
|
|
27
27
|
jest.mock('../DataInput', ()=>({
|
|
28
28
|
__esModule: true,
|
|
29
29
|
default: jest.fn(),
|
|
@@ -91,7 +91,7 @@ jest.mock('@mui/material', ()=>({
|
|
|
91
91
|
children: children
|
|
92
92
|
})
|
|
93
93
|
}));
|
|
94
|
-
const mockInputFactory = __webpack_require__("
|
|
94
|
+
const mockInputFactory = __webpack_require__("AWING/DataInput")["default"];
|
|
95
95
|
const mockCalculateValue = __webpack_require__("../helper").calculateValue;
|
|
96
96
|
const mockConvertFormulaToBinaryTree = __webpack_require__("../helper").convertFormulaToBinaryTree;
|
|
97
97
|
const mockReplaceFieldsValue = __webpack_require__("../helper").replaceFieldsValue;
|
|
@@ -5,7 +5,7 @@ import { act, fireEvent, render, screen, waitFor } from "@testing-library/react"
|
|
|
5
5
|
import containerOptimized from "./containerOptimized.js";
|
|
6
6
|
import { createFormStateManager } from "./formStateManager.js";
|
|
7
7
|
var __webpack_modules__ = {
|
|
8
|
-
"
|
|
8
|
+
"AWING/DataInput": function(module) {
|
|
9
9
|
module.exports = __WEBPACK_EXTERNAL_MODULE__DataInput_index_js_c7933a4f__;
|
|
10
10
|
}
|
|
11
11
|
};
|
|
@@ -98,7 +98,7 @@ jest.mock('@mui/material', ()=>({
|
|
|
98
98
|
children: children
|
|
99
99
|
})
|
|
100
100
|
}));
|
|
101
|
-
const mockInputFactory = __webpack_require__("
|
|
101
|
+
const mockInputFactory = __webpack_require__("AWING/DataInput")["default"];
|
|
102
102
|
describe('DataForm Optimized - Performance Tests', ()=>{
|
|
103
103
|
let inputRenderCounts = {};
|
|
104
104
|
const mockFields = [
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AddOrEdit.d.ts","sourceRoot":"","sources":["../../../src/AWING/DirectoryForm/AddOrEdit.tsx"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,cAAc,EAAiB,MAAM,SAAS,CAAC;AAG7D,QAAA,MAAM,eAAe,UAAW,cAAc,
|
|
1
|
+
{"version":3,"file":"AddOrEdit.d.ts","sourceRoot":"","sources":["../../../src/AWING/DirectoryForm/AddOrEdit.tsx"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,cAAc,EAAiB,MAAM,SAAS,CAAC;AAG7D,QAAA,MAAM,eAAe,UAAW,cAAc,4CAoI7C,CAAC;AAEF,eAAe,eAAe,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/Features/COMMON/Notifications/NotificationDetail/index.tsx"],"names":[],"mappings":"AASA,UAAU,uBAAuB;IAC7B,cAAc,CAAC,EAAE,MAAM,IAAI,CAAC;CAC/B;AAED,QAAA,MAAM,kBAAkB,UAAW,uBAAuB,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/Features/COMMON/Notifications/NotificationDetail/index.tsx"],"names":[],"mappings":"AASA,UAAU,uBAAuB;IAC7B,cAAc,CAAC,EAAE,MAAM,IAAI,CAAC;CAC/B;AAED,QAAA,MAAM,kBAAkB,UAAW,uBAAuB,4CA6IzD,CAAC;AAEF,eAAe,kBAAkB,CAAC"}
|
|
@@ -72,12 +72,14 @@ const NotificationDetail_NotificationDetail = (props)=>{
|
|
|
72
72
|
const handleUpdateStatus = useCallback((dataSent)=>{
|
|
73
73
|
if ('string' == typeof dataSent) {
|
|
74
74
|
const isCheckStatus = notificationMessage.some((item)=>item.status === NotificationMessageStatus.Unread);
|
|
75
|
-
if (isCheckStatus)
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
75
|
+
if (isCheckStatus) {
|
|
76
|
+
if (service?.notificationsReadAll) service?.notificationsReadAll().then(()=>{
|
|
77
|
+
setNotificationMessage((prevNotifications)=>prevNotifications.map((item)=>({
|
|
78
|
+
...item,
|
|
79
|
+
status: NotificationMessageStatus.Read
|
|
80
|
+
})));
|
|
81
|
+
});
|
|
82
|
+
}
|
|
81
83
|
} else {
|
|
82
84
|
const handleUpdateStatusItem = ()=>{
|
|
83
85
|
setNotificationMessage((prevNotifications)=>prevNotifications.map((item)=>({
|
|
@@ -85,11 +87,11 @@ const NotificationDetail_NotificationDetail = (props)=>{
|
|
|
85
87
|
status: item.id === dataSent.id ? item.status === NotificationMessageStatus.Read ? NotificationMessageStatus.Unread : NotificationMessageStatus.Read : item.status
|
|
86
88
|
})));
|
|
87
89
|
};
|
|
88
|
-
dataSent.status === NotificationMessageStatus.Unread ? service?.notificationsRead([
|
|
90
|
+
dataSent.status === NotificationMessageStatus.Unread ? service?.notificationsRead && service?.notificationsRead([
|
|
89
91
|
dataSent.id
|
|
90
92
|
]).then(()=>{
|
|
91
93
|
handleUpdateStatusItem();
|
|
92
|
-
}) : service?.notificationsUnread([
|
|
94
|
+
}) : service?.notificationsUnread && service?.notificationsUnread([
|
|
93
95
|
dataSent.id
|
|
94
96
|
]).then(()=>{
|
|
95
97
|
handleUpdateStatusItem();
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Container.d.ts","sourceRoot":"","sources":["../../../../../src/Features/COMMON/Notifications/NotificationPopover/Container.tsx"],"names":[],"mappings":"AAOA,QAAA,MAAM,SAAS,+
|
|
1
|
+
{"version":3,"file":"Container.d.ts","sourceRoot":"","sources":["../../../../../src/Features/COMMON/Notifications/NotificationPopover/Container.tsx"],"names":[],"mappings":"AAOA,QAAA,MAAM,SAAS,+CA+Fd,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -9,7 +9,7 @@ const Container_Container = ()=>{
|
|
|
9
9
|
const { service, numberNotification, onNotificationClick } = useGetContext();
|
|
10
10
|
const [anchorEl, setAnchorEl] = useState(null);
|
|
11
11
|
useEffect(()=>{
|
|
12
|
-
service?.notificationsCountUnreadMessages()?.then((count)=>{
|
|
12
|
+
if (service?.notificationsCountUnreadMessages) service?.notificationsCountUnreadMessages()?.then((count)=>{
|
|
13
13
|
onNotificationClick && onNotificationClick(count);
|
|
14
14
|
});
|
|
15
15
|
}, []);
|
|
@@ -7,18 +7,18 @@ export type NotificationService = {
|
|
|
7
7
|
/**
|
|
8
8
|
* API Chuyển trang Notifications thành đã đọc.
|
|
9
9
|
**/
|
|
10
|
-
notificationsReadAll
|
|
10
|
+
notificationsReadAll?: (cancelToken?: CancelToken) => Promise<void>;
|
|
11
11
|
/**
|
|
12
12
|
* API Chuyển trang NotificationItem sang đã đọc.
|
|
13
13
|
**/
|
|
14
|
-
notificationsRead
|
|
14
|
+
notificationsRead?: (body: number[] | undefined, cancelToken?: CancelToken) => Promise<void>;
|
|
15
15
|
/**
|
|
16
16
|
* API Chuyển trang NotificationItem sang chưa đọc.
|
|
17
17
|
**/
|
|
18
|
-
notificationsUnread
|
|
18
|
+
notificationsUnread?: (body: number[] | undefined, cancelToken?: CancelToken) => Promise<void>;
|
|
19
19
|
/**
|
|
20
20
|
* API Hiển thị số lượng thông báo chưa đọc.
|
|
21
21
|
**/
|
|
22
|
-
notificationsCountUnreadMessages
|
|
22
|
+
notificationsCountUnreadMessages?: (cancelToken?: CancelToken) => Promise<number>;
|
|
23
23
|
};
|
|
24
24
|
//# sourceMappingURL=Services.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Services.d.ts","sourceRoot":"","sources":["../../../../src/Features/COMMON/Notifications/Services.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,gCAAgC,EAAE,MAAM,SAAS,CAAC;AAExE,MAAM,MAAM,mBAAmB,GAAG;IAC9B;;QAEI;IACJ,mBAAmB,EAAE,CACjB,SAAS,EAAE,MAAM,GAAG,SAAS,EAC7B,QAAQ,EAAE,MAAM,GAAG,SAAS,EAC5B,YAAY,EAAE,MAAM,GAAG,SAAS,EAChC,MAAM,EAAE,MAAM,GAAG,SAAS,EAE1B,WAAW,CAAC,EAAE,WAAW,KACxB,OAAO,CAAC,gCAAgC,CAAC,CAAC;IAE/C;;QAEI;IACJ,oBAAoB,EAAE,CAAC,WAAW,CAAC,EAAE,WAAW,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"Services.d.ts","sourceRoot":"","sources":["../../../../src/Features/COMMON/Notifications/Services.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,gCAAgC,EAAE,MAAM,SAAS,CAAC;AAExE,MAAM,MAAM,mBAAmB,GAAG;IAC9B;;QAEI;IACJ,mBAAmB,EAAE,CACjB,SAAS,EAAE,MAAM,GAAG,SAAS,EAC7B,QAAQ,EAAE,MAAM,GAAG,SAAS,EAC5B,YAAY,EAAE,MAAM,GAAG,SAAS,EAChC,MAAM,EAAE,MAAM,GAAG,SAAS,EAE1B,WAAW,CAAC,EAAE,WAAW,KACxB,OAAO,CAAC,gCAAgC,CAAC,CAAC;IAE/C;;QAEI;IACJ,oBAAoB,CAAC,EAAE,CAAC,WAAW,CAAC,EAAE,WAAW,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;IAEpE;;QAEI;IACJ,iBAAiB,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,SAAS,EAAE,WAAW,CAAC,EAAE,WAAW,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;IAE7F;;QAEI;IACJ,mBAAmB,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,SAAS,EAAE,WAAW,CAAC,EAAE,WAAW,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;IAE/F;;QAEI;IACJ,gCAAgC,CAAC,EAAE,CAAC,WAAW,CAAC,EAAE,WAAW,KAAK,OAAO,CAAC,MAAM,CAAC,CAAC;CACrF,CAAC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx } from "react/jsx-runtime";
|
|
2
2
|
import { Box } from "@mui/material";
|
|
3
3
|
import { LayoutNotificationContext } from "./Context.js";
|
|
4
|
-
import Container from "./Container.js";
|
|
4
|
+
import Container from "./NotificationPopover/Container.js";
|
|
5
5
|
import { NotificationPopover } from "./NotificationPopover/index.js";
|
|
6
6
|
export * from "./Types.js";
|
|
7
7
|
export * from "./Services.js";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CreateOrEdit.d.ts","sourceRoot":"","sources":["../../../../src/Features/SYSTEM/Role/CreateOrEdit.tsx"],"names":[],"mappings":"AAUA,QAAA,MAAM,YAAY,+
|
|
1
|
+
{"version":3,"file":"CreateOrEdit.d.ts","sourceRoot":"","sources":["../../../../src/Features/SYSTEM/Role/CreateOrEdit.tsx"],"names":[],"mappings":"AAUA,QAAA,MAAM,YAAY,+CAuHjB,CAAC;AAEF,eAAe,YAAY,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CreateOrEdit.d.ts","sourceRoot":"","sources":["../../../../src/Features/SYSTEM/RoleTag/CreateOrEdit.tsx"],"names":[],"mappings":"AAUA,QAAA,MAAM,YAAY,+
|
|
1
|
+
{"version":3,"file":"CreateOrEdit.d.ts","sourceRoot":"","sources":["../../../../src/Features/SYSTEM/RoleTag/CreateOrEdit.tsx"],"names":[],"mappings":"AAUA,QAAA,MAAM,YAAY,+CAgHjB,CAAC;AAEF,eAAe,YAAY,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SchemaInformation.d.ts","sourceRoot":"","sources":["../../../../../src/Features/SYSTEM/Schema/components/SchemaInformation.tsx"],"names":[],"mappings":"AAUA,MAAM,WAAW,oBAAoB;IACjC,qBAAqB,EAAE,MAAM,GAAG,EAAE,CAAC;IACnC,mBAAmB,EAAE,MAAM,OAAO,CAAC;CACtC;AAED,QAAA,MAAM,iBAAiB,
|
|
1
|
+
{"version":3,"file":"SchemaInformation.d.ts","sourceRoot":"","sources":["../../../../../src/Features/SYSTEM/Schema/components/SchemaInformation.tsx"],"names":[],"mappings":"AAUA,MAAM,WAAW,oBAAoB;IACjC,qBAAqB,EAAE,MAAM,GAAG,EAAE,CAAC;IACnC,mBAAmB,EAAE,MAAM,OAAO,CAAC;CACtC;AAED,QAAA,MAAM,iBAAiB,gGA4GrB,CAAC;AAEH,eAAe,iBAAiB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Edit.d.ts","sourceRoot":"","sources":["../../../../src/Features/SYSTEM/User/Edit.tsx"],"names":[],"mappings":"AAkBA,QAAA,MAAM,IAAI,+
|
|
1
|
+
{"version":3,"file":"Edit.d.ts","sourceRoot":"","sources":["../../../../src/Features/SYSTEM/User/Edit.tsx"],"names":[],"mappings":"AAkBA,QAAA,MAAM,IAAI,+CA8MT,CAAC;AAEF,eAAe,IAAI,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Information.d.ts","sourceRoot":"","sources":["../../../../../src/Features/SYSTEM/Workflow/component/Information.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAG/C,UAAU,KAAK;IACX,QAAQ,EAAE,SAAS,CAAC,QAAQ,CAAC,CAAC;IAC9B,iBAAiB,EAAE,CAAC,QAAQ,EAAE,SAAS,CAAC,QAAQ,CAAC,EAAE,OAAO,EAAE,OAAO,EAAE,GAAG,EAAE,MAAM,KAAK,IAAI,CAAC;IAC1F,iBAAiB,EAAE;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,EAAE,CAAC;CACzD;AAED,MAAM,CAAC,OAAO,UAAU,WAAW,CAAC,KAAK,EAAE,KAAK,
|
|
1
|
+
{"version":3,"file":"Information.d.ts","sourceRoot":"","sources":["../../../../../src/Features/SYSTEM/Workflow/component/Information.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAG/C,UAAU,KAAK;IACX,QAAQ,EAAE,SAAS,CAAC,QAAQ,CAAC,CAAC;IAC9B,iBAAiB,EAAE,CAAC,QAAQ,EAAE,SAAS,CAAC,QAAQ,CAAC,EAAE,OAAO,EAAE,OAAO,EAAE,GAAG,EAAE,MAAM,KAAK,IAAI,CAAC;IAC1F,iBAAiB,EAAE;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,EAAE,CAAC;CACzD;AAED,MAAM,CAAC,OAAO,UAAU,WAAW,CAAC,KAAK,EAAE,KAAK,2CAwD/C"}
|