@kdcloudjs/kdesign 1.8.50 → 1.8.52
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/kdesign-complete.less +19 -4
- package/dist/kdesign.css +10 -6
- package/dist/kdesign.css.map +1 -1
- package/dist/kdesign.js +15 -5
- package/dist/kdesign.js.map +1 -1
- package/dist/kdesign.min.css +2 -2
- package/dist/kdesign.min.js +2 -2
- package/dist/kdesign.min.js.map +1 -1
- package/es/config-provider/defaultConfig.d.ts +1 -0
- package/es/config-provider/defaultConfig.js +2 -1
- package/es/tabs/style/index.css +9 -5
- package/es/tabs/style/index.less +19 -4
- package/es/tabs/tab-pane.js +4 -3
- package/es/tabs/tabs.js +7 -0
- package/lib/config-provider/defaultConfig.d.ts +1 -0
- package/lib/config-provider/defaultConfig.js +2 -1
- package/lib/tabs/style/index.css +9 -5
- package/lib/tabs/style/index.less +19 -4
- package/lib/tabs/tab-pane.js +4 -3
- package/lib/tabs/tabs.js +7 -0
- package/package.json +1 -1
|
@@ -16799,7 +16799,7 @@ template {
|
|
|
16799
16799
|
text-overflow: ellipsis;
|
|
16800
16800
|
max-width: @tab-pane-text-max-width;
|
|
16801
16801
|
&-active,
|
|
16802
|
-
|
|
16802
|
+
&-notMobile:hover {
|
|
16803
16803
|
color: @tabPane-font-color-active;
|
|
16804
16804
|
}
|
|
16805
16805
|
&-disabled {
|
|
@@ -16808,6 +16808,7 @@ template {
|
|
|
16808
16808
|
}
|
|
16809
16809
|
}
|
|
16810
16810
|
}
|
|
16811
|
+
|
|
16811
16812
|
&-disabled {
|
|
16812
16813
|
color: @tabPane-font-color-disabled;
|
|
16813
16814
|
cursor: not-allowed;
|
|
@@ -16882,6 +16883,21 @@ template {
|
|
|
16882
16883
|
margin: 0 0 0 4px;
|
|
16883
16884
|
display: inline-flex;
|
|
16884
16885
|
align-items: center;
|
|
16886
|
+
.@{tabPane-prefix-cls}-operations .@{icon-prefix-cls} {
|
|
16887
|
+
font-size: 16px;
|
|
16888
|
+
}
|
|
16889
|
+
&.@{tabPane-prefix-cls}-box-active {
|
|
16890
|
+
&.@{tabPane-prefix-cls}-isMobile:not(.@{tabPane-prefix-cls}-disabled):hover {
|
|
16891
|
+
.@{tabPane-prefix-cls}-operations {
|
|
16892
|
+
span:first-child {
|
|
16893
|
+
opacity: 1;
|
|
16894
|
+
cursor: pointer;
|
|
16895
|
+
}
|
|
16896
|
+
}
|
|
16897
|
+
}
|
|
16898
|
+
}
|
|
16899
|
+
}
|
|
16900
|
+
&-type-dynamic-notMobile {
|
|
16885
16901
|
&:not(.@{tabPane-prefix-cls}-disabled):hover {
|
|
16886
16902
|
.@{tabPane-prefix-cls}-operations {
|
|
16887
16903
|
span:first-child {
|
|
@@ -16890,9 +16906,6 @@ template {
|
|
|
16890
16906
|
}
|
|
16891
16907
|
}
|
|
16892
16908
|
}
|
|
16893
|
-
.@{tabPane-prefix-cls}-operations .@{icon-prefix-cls} {
|
|
16894
|
-
font-size: 16px;
|
|
16895
|
-
}
|
|
16896
16909
|
}
|
|
16897
16910
|
&-type-grid {
|
|
16898
16911
|
height: 24px;
|
|
@@ -16919,6 +16932,8 @@ template {
|
|
|
16919
16932
|
&.@{tabPane-prefix-cls}-disabled {
|
|
16920
16933
|
background-color: @tab-disabled-bg;
|
|
16921
16934
|
}
|
|
16935
|
+
}
|
|
16936
|
+
&-notMobile {
|
|
16922
16937
|
&:hover {
|
|
16923
16938
|
color: @tabPane-font-color-active;
|
|
16924
16939
|
}
|
package/dist/kdesign.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @kdcloudjs/kdesign v1.8.
|
|
3
|
+
* @kdcloudjs/kdesign v1.8.52
|
|
4
4
|
*
|
|
5
5
|
* Copyright 2020-present, Kingdee, Inc.
|
|
6
6
|
* All rights reserved.
|
|
@@ -22042,7 +22042,7 @@ textarea {
|
|
|
22042
22042
|
max-width: var(--kd-c-tabs-pane-text-sizing-max-width);
|
|
22043
22043
|
}
|
|
22044
22044
|
.kd-tab-pane-text-active,
|
|
22045
|
-
.kd-tab-pane-text:hover {
|
|
22045
|
+
.kd-tab-pane-text-notMobile:hover {
|
|
22046
22046
|
color: var(--kd-c-tabs-color-text-active, var(--kd-g-color-theme, #5582f3));
|
|
22047
22047
|
}
|
|
22048
22048
|
.kd-tab-pane-text-disabled:hover {
|
|
@@ -22129,12 +22129,16 @@ textarea {
|
|
|
22129
22129
|
-ms-flex-align: center;
|
|
22130
22130
|
align-items: center;
|
|
22131
22131
|
}
|
|
22132
|
-
.kd-tab-pane-type-dynamic
|
|
22132
|
+
.kd-tab-pane-type-dynamic .kd-tab-pane-operations .kdicon {
|
|
22133
|
+
font-size: 16px;
|
|
22134
|
+
}
|
|
22135
|
+
.kd-tab-pane-type-dynamic.kd-tab-pane-box-active.kd-tab-pane-isMobile:not(.kd-tab-pane-disabled):hover .kd-tab-pane-operations span:first-child {
|
|
22133
22136
|
opacity: 1;
|
|
22134
22137
|
cursor: pointer;
|
|
22135
22138
|
}
|
|
22136
|
-
.kd-tab-pane-type-dynamic .kd-tab-pane-operations
|
|
22137
|
-
|
|
22139
|
+
.kd-tab-pane-type-dynamic-notMobile:not(.kd-tab-pane-disabled):hover .kd-tab-pane-operations span:first-child {
|
|
22140
|
+
opacity: 1;
|
|
22141
|
+
cursor: pointer;
|
|
22138
22142
|
}
|
|
22139
22143
|
.kd-tab-pane-type-grid {
|
|
22140
22144
|
height: 24px;
|
|
@@ -22163,7 +22167,7 @@ textarea {
|
|
|
22163
22167
|
.kd-tab-pane-type-grid.kd-tab-pane-disabled {
|
|
22164
22168
|
background-color: var(--kd-c-tabs-color-background-disabled, transparent);
|
|
22165
22169
|
}
|
|
22166
|
-
.kd-tab-pane-
|
|
22170
|
+
.kd-tab-pane-notMobile:hover {
|
|
22167
22171
|
color: var(--kd-c-tabs-color-text-active, var(--kd-g-color-theme, #5582f3));
|
|
22168
22172
|
}
|
|
22169
22173
|
.kd-tab-pane-operations {
|