awing-library 2.1.2-dev.562 → 2.1.2-dev.563
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.
|
@@ -9,7 +9,7 @@ var __webpack_modules__ = {
|
|
|
9
9
|
"AWING/DataInput": function(module) {
|
|
10
10
|
module.exports = __WEBPACK_EXTERNAL_MODULE__DataInput_index_js_c7933a4f__;
|
|
11
11
|
},
|
|
12
|
-
"
|
|
12
|
+
"AWING/helper": function(module) {
|
|
13
13
|
module.exports = __WEBPACK_EXTERNAL_MODULE__helper_js_663c9e82__;
|
|
14
14
|
}
|
|
15
15
|
};
|
|
@@ -92,9 +92,9 @@ jest.mock('@mui/material', ()=>({
|
|
|
92
92
|
})
|
|
93
93
|
}));
|
|
94
94
|
const mockInputFactory = __webpack_require__("AWING/DataInput")["default"];
|
|
95
|
-
const mockCalculateValue = __webpack_require__("
|
|
96
|
-
const mockConvertFormulaToBinaryTree = __webpack_require__("
|
|
97
|
-
const mockReplaceFieldsValue = __webpack_require__("
|
|
95
|
+
const mockCalculateValue = __webpack_require__("AWING/helper").calculateValue;
|
|
96
|
+
const mockConvertFormulaToBinaryTree = __webpack_require__("AWING/helper").convertFormulaToBinaryTree;
|
|
97
|
+
const mockReplaceFieldsValue = __webpack_require__("AWING/helper").replaceFieldsValue;
|
|
98
98
|
describe('DataForm Component', ()=>{
|
|
99
99
|
const mockFields = [
|
|
100
100
|
{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Container.d.ts","sourceRoot":"","sources":["../../../../src/Features/SYSTEM/Directory/Container.tsx"],"names":[],"mappings":"AAmBA,iBAAS,SAAS,
|
|
1
|
+
{"version":3,"file":"Container.d.ts","sourceRoot":"","sources":["../../../../src/Features/SYSTEM/Directory/Container.tsx"],"names":[],"mappings":"AAmBA,iBAAS,SAAS,4CA8UjB;AAED,eAAe,SAAS,CAAC"}
|
|
@@ -201,6 +201,7 @@ function Container_Container() {
|
|
|
201
201
|
const handleChangeRowsPerPage = (event)=>{
|
|
202
202
|
const newPageSize = parseInt(event.target.value);
|
|
203
203
|
setPageSize(newPageSize);
|
|
204
|
+
setPageIndex(0);
|
|
204
205
|
isSearch(searchValue) ? queryChildDirectoriesData(focusDirectoryId, 0, newPageSize, -1, searchValue.searchKey, searchValue?.advancedObject?.objectTypeCode?.value.value) : queryChildDirectoriesData(focusDirectoryId, 0, newPageSize);
|
|
205
206
|
};
|
|
206
207
|
const handleUpdateDirectories = useCallback((parentDirId)=>{
|