awing-library 2.1.5-beta → 2.1.6-beta
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/README.md +10 -26
- package/lib/ACM-AXN/Page/Container.js +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -37,29 +37,6 @@ yarn build
|
|
|
37
37
|
```shell
|
|
38
38
|
yarn link
|
|
39
39
|
```
|
|
40
|
-
|
|
41
|
-
- Step 3: Xoá dependencies trong node_modules
|
|
42
|
-
|
|
43
|
-
```shell
|
|
44
|
-
rm -rf node_modules/react node_modules/react-dom node_modules/@mui/styles node_modules/@mui/material
|
|
45
|
-
```
|
|
46
|
-
|
|
47
|
-
## In project
|
|
48
|
-
|
|
49
|
-
_Sau khi thực hiện mỗi lệnh đều phải trở về thư mục gốc của project_
|
|
50
|
-
|
|
51
|
-
- Xoá thư mục awing-library tại project
|
|
52
|
-
|
|
53
|
-
```shell
|
|
54
|
-
rm -rf node_modules/awing-library
|
|
55
|
-
```
|
|
56
|
-
|
|
57
|
-
- Link awing-library to project
|
|
58
|
-
|
|
59
|
-
```shell
|
|
60
|
-
yarn link awing-library
|
|
61
|
-
```
|
|
62
|
-
|
|
63
40
|
- Tạo Link react
|
|
64
41
|
|
|
65
42
|
```shell
|
|
@@ -88,10 +65,17 @@ cd node_modules/@mui/styles
|
|
|
88
65
|
yarn link
|
|
89
66
|
```
|
|
90
67
|
|
|
91
|
-
|
|
68
|
+
## In project
|
|
92
69
|
|
|
93
|
-
|
|
70
|
+
_Sau khi thực hiện mỗi lệnh đều phải trở về thư mục gốc của project_
|
|
71
|
+
|
|
72
|
+
- Xoá dependencies trong node_modules
|
|
73
|
+
|
|
74
|
+
```shell
|
|
75
|
+
rm -rf node_modules/react node_modules/react-dom node_modules/@mui/styles node_modules/@mui/material node_modules/awing-library
|
|
76
|
+
```
|
|
94
77
|
|
|
78
|
+
- Link library to project
|
|
95
79
|
```shell
|
|
96
|
-
yarn link react react-dom @mui/material @mui/styles
|
|
80
|
+
yarn link react react-dom @mui/material @mui/styles awing-library
|
|
97
81
|
```
|
|
@@ -123,6 +123,7 @@ var PageContainer = function () {
|
|
|
123
123
|
}, 100), []);
|
|
124
124
|
var getPagePaging = (0, react_1.useCallback)(function (input, directoryId) {
|
|
125
125
|
var _a;
|
|
126
|
+
console.log("call");
|
|
126
127
|
var searchString = input.searchString, pageSize = input.pageSize, pageIndex = input.pageIndex, advancedObject = input.advancedObject;
|
|
127
128
|
handleFetchPaging(searchString, pageSize, pageIndex, directoryId ||
|
|
128
129
|
(advancedObject === null || advancedObject === void 0 ? void 0 : advancedObject.directoryId) ||
|