@kdcloudjs/kdesign 1.8.60 → 1.8.62
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 +4 -0
- package/dist/kdesign.css +5 -1
- package/dist/kdesign.css.map +1 -1
- package/dist/kdesign.js +9 -6
- package/dist/kdesign.js.map +1 -1
- package/dist/kdesign.min.css +3 -3
- package/dist/kdesign.min.js +9 -9
- package/dist/kdesign.min.js.map +1 -1
- package/es/base-data/base-data.js +3 -2
- package/es/dropdown/style/index.css +1 -0
- package/es/dropdown/style/index.less +1 -0
- package/es/pagination/pagination.js +3 -1
- package/es/pagination/style/index.css +3 -0
- package/es/pagination/style/index.less +3 -0
- package/es/tabs/tabs.js +2 -2
- package/lib/base-data/base-data.js +3 -2
- package/lib/dropdown/style/index.css +1 -0
- package/lib/dropdown/style/index.less +1 -0
- package/lib/pagination/pagination.js +3 -1
- package/lib/pagination/style/index.css +3 -0
- package/lib/pagination/style/index.less +3 -0
- package/lib/tabs/tabs.js +2 -2
- package/package.json +1 -1
|
@@ -5941,6 +5941,7 @@
|
|
|
5941
5941
|
.@{dropdown-prefix-cls}-mobile {
|
|
5942
5942
|
max-width: 100vw;
|
|
5943
5943
|
display: flex;
|
|
5944
|
+
min-width: auto;
|
|
5944
5945
|
.@{dropdown-prefix-cls}-menu {
|
|
5945
5946
|
flex: 1;
|
|
5946
5947
|
.@{dropdown-prefix-cls}-menu-item {
|
|
@@ -10318,6 +10319,9 @@ textarea {
|
|
|
10318
10319
|
}
|
|
10319
10320
|
|
|
10320
10321
|
&-options-dropdown {
|
|
10322
|
+
&-text {
|
|
10323
|
+
white-space: nowrap;
|
|
10324
|
+
}
|
|
10321
10325
|
i {
|
|
10322
10326
|
transition: transform @duration-promptly;
|
|
10323
10327
|
}
|
package/dist/kdesign.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @kdcloudjs/kdesign v1.8.
|
|
3
|
+
* @kdcloudjs/kdesign v1.8.62
|
|
4
4
|
*
|
|
5
5
|
* Copyright 2020-present, Kingdee, Inc.
|
|
6
6
|
* All rights reserved.
|
|
@@ -9838,6 +9838,7 @@ template {
|
|
|
9838
9838
|
display: -webkit-box;
|
|
9839
9839
|
display: -ms-flexbox;
|
|
9840
9840
|
display: flex;
|
|
9841
|
+
min-width: auto;
|
|
9841
9842
|
}
|
|
9842
9843
|
.kd-dropdown-mobile .kd-dropdown-menu {
|
|
9843
9844
|
-webkit-box-flex: 1;
|
|
@@ -15872,6 +15873,9 @@ textarea {
|
|
|
15872
15873
|
-webkit-transform: rotate(180deg) translateY(50%);
|
|
15873
15874
|
transform: rotate(180deg) translateY(50%);
|
|
15874
15875
|
}
|
|
15876
|
+
.kd-pagination-options-dropdown-text {
|
|
15877
|
+
white-space: nowrap;
|
|
15878
|
+
}
|
|
15875
15879
|
.kd-pagination-options-dropdown i {
|
|
15876
15880
|
-webkit-transition: -webkit-transform var(--kd-g-duration, 0.3s);
|
|
15877
15881
|
transition: -webkit-transform var(--kd-g-duration, 0.3s);
|