shineout 1.11.6 → 1.11.7
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/css/Table/styles/table.css +8 -6
- package/css/TreeSelect/datum.js +2 -1
- package/css/TreeSelect/filter.js +1 -3
- package/css/index.d.ts +1 -1
- package/css/index.js +1 -1
- package/dist/shineout.js +370 -438
- package/dist/shineout.js.map +1 -1
- package/dist/shineout.min.js +1 -1
- package/dist/theme.antd.css +1 -1
- package/dist/theme.antd2.css +1 -1
- package/dist/theme.default.css +1 -1
- package/dist/theme.shineout.css +1 -1
- package/es/Table/styles/table.less +48 -44
- package/es/TreeSelect/datum.js +2 -1
- package/es/TreeSelect/filter.js +1 -3
- package/es/index.d.ts +1 -1
- package/es/index.js +1 -1
- package/lib/Table/styles/table.less +48 -44
- package/lib/TreeSelect/datum.js +2 -1
- package/lib/TreeSelect/filter.js +1 -3
- package/lib/index.d.ts +1 -1
- package/lib/index.js +1 -1
- package/package.json +1 -1
|
@@ -234,6 +234,8 @@ table > thead > tr > th.so-table-condensed {
|
|
|
234
234
|
border-left: 1px solid var(--table-border-color, #ddd);
|
|
235
235
|
border-right: 1px solid var(--table-border-color, #ddd);
|
|
236
236
|
border-top: 1px solid var(--table-border-color, #ddd);
|
|
237
|
+
-webkit-box-shadow: inset 0 -1px var(--table-border-color, #ddd);
|
|
238
|
+
box-shadow: inset 0 -1px var(--table-border-color, #ddd);
|
|
237
239
|
}
|
|
238
240
|
.so-table-bordered:before {
|
|
239
241
|
position: absolute;
|
|
@@ -624,7 +626,7 @@ th.so-table-align-left > div.so-table-has-sorter {
|
|
|
624
626
|
.so-table-resize-spanner:after,
|
|
625
627
|
.so-table-resize-spanner:before {
|
|
626
628
|
border-width: 3px;
|
|
627
|
-
content:
|
|
629
|
+
content: ' ';
|
|
628
630
|
position: absolute;
|
|
629
631
|
width: 0;
|
|
630
632
|
height: 0;
|
|
@@ -663,13 +665,13 @@ th.so-table-align-left > div.so-table-has-sorter {
|
|
|
663
665
|
opacity: 1;
|
|
664
666
|
}
|
|
665
667
|
.so-table-placeholder-tr td {
|
|
666
|
-
padding-top: 0!important;
|
|
667
|
-
padding-bottom: 0!important;
|
|
668
|
-
border-bottom-width: 0!important;
|
|
669
|
-
line-height: 0!important;
|
|
668
|
+
padding-top: 0 !important;
|
|
669
|
+
padding-bottom: 0 !important;
|
|
670
|
+
border-bottom-width: 0 !important;
|
|
671
|
+
line-height: 0 !important;
|
|
670
672
|
}
|
|
671
673
|
.so-table-placeholder-tr td > div {
|
|
672
|
-
height: 0!important;
|
|
674
|
+
height: 0 !important;
|
|
673
675
|
overflow: hidden;
|
|
674
676
|
}
|
|
675
677
|
.so-table td .so-button + .so-button:not(.so-button-rtl) {
|
package/css/TreeSelect/datum.js
CHANGED
package/css/TreeSelect/filter.js
CHANGED
|
@@ -70,10 +70,8 @@ var _default = function _default(Origin) {
|
|
|
70
70
|
var res = noCache ? undefined : _this2.resultCache.get(v);
|
|
71
71
|
|
|
72
72
|
if (!res) {
|
|
73
|
-
var _res;
|
|
74
|
-
|
|
75
73
|
res = datum.getDataById(v);
|
|
76
|
-
if (res && !noCache && !res[_Result.IS_NOT_MATCHED_VALUE]) _this2.resultCache.set(v, res);
|
|
74
|
+
if (res && !noCache && !res[_Result.IS_NOT_MATCHED_VALUE]) _this2.resultCache.set(v, res);
|
|
77
75
|
}
|
|
78
76
|
|
|
79
77
|
if (res) {
|
package/css/index.d.ts
CHANGED