ls-pro-common 3.0.38 → 3.0.40
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/common.css +8 -0
- package/dist/common.js +1 -1
- package/dist/common.js.LICENSE.txt +10 -0
- package/dist/common.min.css +8 -0
- package/dist/common.min.js +1 -1
- package/dist/common.min.js.LICENSE.txt +10 -0
- package/es/components/TagCheck.js +6 -4
- package/es/hooks/useDtl/index.js +75 -16
- package/es/hooks/useSingle/index.d.ts +1 -0
- package/es/hooks/useSingle/index.js +75 -16
- package/es/http/index.d.ts +6 -6
- package/es/http/index.js +24 -12
- package/lib/components/TagCheck.js +6 -4
- package/lib/hooks/useDtl/index.js +75 -16
- package/lib/hooks/useSingle/index.d.ts +1 -0
- package/lib/hooks/useSingle/index.js +75 -16
- package/lib/http/index.d.ts +6 -6
- package/lib/http/index.js +24 -12
- package/package.json +8 -3
|
@@ -30,6 +30,16 @@ PERFORMANCE OF THIS SOFTWARE.
|
|
|
30
30
|
* Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
|
|
31
31
|
*/
|
|
32
32
|
|
|
33
|
+
/**
|
|
34
|
+
* @license React
|
|
35
|
+
* react-is.production.min.js
|
|
36
|
+
*
|
|
37
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
38
|
+
*
|
|
39
|
+
* This source code is licensed under the MIT license found in the
|
|
40
|
+
* LICENSE file in the root directory of this source tree.
|
|
41
|
+
*/
|
|
42
|
+
|
|
33
43
|
/** @license React v16.13.1
|
|
34
44
|
* react-is.production.min.js
|
|
35
45
|
*
|
package/dist/common.min.css
CHANGED
|
@@ -852,10 +852,14 @@ a:hover {
|
|
|
852
852
|
}
|
|
853
853
|
.ant-pro-table-srcoll .resizable-th:hover .resizable-th-handle {
|
|
854
854
|
visibility: visible;
|
|
855
|
+
z-index: 10;
|
|
855
856
|
}
|
|
856
857
|
.ant-pro-table-srcoll .ant-table-cell.ant-table-selection-column {
|
|
857
858
|
text-overflow: inherit !important;
|
|
858
859
|
}
|
|
860
|
+
.ant-pro-table-srcoll .ant-table.ant-table-bordered .ant-table-tbody > tr > td {
|
|
861
|
+
border-right: 1px solid #f0f0f0;
|
|
862
|
+
}
|
|
859
863
|
.ant-table.ant-table-small .ant-table-title,
|
|
860
864
|
.ant-table.ant-table-small .ant-table-footer,
|
|
861
865
|
.ant-table.ant-table-small .ant-table-thead > tr > th,
|
|
@@ -2992,10 +2996,14 @@ html {
|
|
|
2992
2996
|
}
|
|
2993
2997
|
.ant-pro-table-srcoll .resizable-th:hover .resizable-th-handle {
|
|
2994
2998
|
visibility: visible;
|
|
2999
|
+
z-index: 10;
|
|
2995
3000
|
}
|
|
2996
3001
|
.ant-pro-table-srcoll .ant-table-cell.ant-table-selection-column {
|
|
2997
3002
|
text-overflow: inherit !important;
|
|
2998
3003
|
}
|
|
3004
|
+
.ant-pro-table-srcoll .ant-table.ant-table-bordered .ant-table-tbody > tr > td {
|
|
3005
|
+
border-right: 1px solid #f0f0f0;
|
|
3006
|
+
}
|
|
2999
3007
|
.ant-table.ant-table-small .ant-table-title,
|
|
3000
3008
|
.ant-table.ant-table-small .ant-table-footer,
|
|
3001
3009
|
.ant-table.ant-table-small .ant-table-thead > tr > th,
|