@kdcloudjs/kdesign 1.8.60 → 1.8.61
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 +3 -0
- package/dist/kdesign.css +4 -1
- package/dist/kdesign.css.map +1 -1
- package/dist/kdesign.js +7 -4
- package/dist/kdesign.js.map +1 -1
- package/dist/kdesign.min.css +2 -2
- 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/pagination/pagination.js +3 -1
- package/es/pagination/style/index.css +3 -0
- package/es/pagination/style/index.less +3 -0
- package/lib/base-data/base-data.js +3 -2
- package/lib/pagination/pagination.js +3 -1
- package/lib/pagination/style/index.css +3 -0
- package/lib/pagination/style/index.less +3 -0
- package/package.json +1 -1
|
@@ -10318,6 +10318,9 @@ textarea {
|
|
|
10318
10318
|
}
|
|
10319
10319
|
|
|
10320
10320
|
&-options-dropdown {
|
|
10321
|
+
&-text {
|
|
10322
|
+
white-space: nowrap;
|
|
10323
|
+
}
|
|
10321
10324
|
i {
|
|
10322
10325
|
transition: transform @duration-promptly;
|
|
10323
10326
|
}
|
package/dist/kdesign.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @kdcloudjs/kdesign v1.8.
|
|
3
|
+
* @kdcloudjs/kdesign v1.8.61
|
|
4
4
|
*
|
|
5
5
|
* Copyright 2020-present, Kingdee, Inc.
|
|
6
6
|
* All rights reserved.
|
|
@@ -15872,6 +15872,9 @@ textarea {
|
|
|
15872
15872
|
-webkit-transform: rotate(180deg) translateY(50%);
|
|
15873
15873
|
transform: rotate(180deg) translateY(50%);
|
|
15874
15874
|
}
|
|
15875
|
+
.kd-pagination-options-dropdown-text {
|
|
15876
|
+
white-space: nowrap;
|
|
15877
|
+
}
|
|
15875
15878
|
.kd-pagination-options-dropdown i {
|
|
15876
15879
|
-webkit-transition: -webkit-transform var(--kd-g-duration, 0.3s);
|
|
15877
15880
|
transition: -webkit-transform var(--kd-g-duration, 0.3s);
|