@kdcloudjs/kdesign 1.8.56 → 1.8.57
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 +11 -19
- package/dist/kdesign.css +9 -13
- package/dist/kdesign.css.map +1 -1
- package/dist/kdesign.js +4 -3
- package/dist/kdesign.js.map +1 -1
- package/dist/kdesign.min.css +3 -3
- package/dist/kdesign.min.js +2 -2
- package/dist/kdesign.min.js.map +1 -1
- package/es/color-picker/style/index.css +5 -9
- package/es/color-picker/style/index.less +7 -16
- package/es/select/select.js +3 -2
- package/es/select/style/index.css +3 -3
- package/es/select/style/index.less +4 -3
- package/lib/color-picker/style/index.css +5 -9
- package/lib/color-picker/style/index.less +7 -16
- package/lib/select/select.js +3 -2
- package/lib/select/style/index.css +3 -3
- package/lib/select/style/index.less +4 -3
- package/package.json +1 -1
|
@@ -4070,7 +4070,8 @@
|
|
|
4070
4070
|
.@{kd-prefix}-select-item-option {
|
|
4071
4071
|
display: flex;
|
|
4072
4072
|
justify-content: center;
|
|
4073
|
-
min-width:
|
|
4073
|
+
min-width: auto; /* IE */
|
|
4074
|
+
min-width: unset; /* 现代浏览器 */
|
|
4074
4075
|
}
|
|
4075
4076
|
}
|
|
4076
4077
|
}
|
|
@@ -4224,9 +4225,11 @@
|
|
|
4224
4225
|
grid-row-gap: 8px;
|
|
4225
4226
|
|
|
4226
4227
|
&-ie11 {
|
|
4227
|
-
|
|
4228
|
-
|
|
4229
|
-
|
|
4228
|
+
.@{color-picker-prefix-cls}-panel-color-box-container {
|
|
4229
|
+
display: flex;
|
|
4230
|
+
flex-wrap: wrap;
|
|
4231
|
+
width: 100%;
|
|
4232
|
+
}
|
|
4230
4233
|
li {
|
|
4231
4234
|
margin-right: 8px;
|
|
4232
4235
|
margin-top: 8px;
|
|
@@ -4401,15 +4404,6 @@
|
|
|
4401
4404
|
}
|
|
4402
4405
|
}
|
|
4403
4406
|
}
|
|
4404
|
-
&.@{color-picker-prefix-cls}-container {
|
|
4405
|
-
.@{color-picker-prefix-cls}-icon-container {
|
|
4406
|
-
.@{color-picker-prefix-cls}-icon {
|
|
4407
|
-
&-no-color-line {
|
|
4408
|
-
transform: rotate(-45deg);
|
|
4409
|
-
}
|
|
4410
|
-
}
|
|
4411
|
-
}
|
|
4412
|
-
}
|
|
4413
4407
|
|
|
4414
4408
|
&.@{color-picker-prefix-cls}-container-pure {
|
|
4415
4409
|
.@{kd-prefix}-input-wrapper.@{color-picker-prefix-cls}-input {
|
|
@@ -4435,9 +4429,6 @@
|
|
|
4435
4429
|
&-box {
|
|
4436
4430
|
margin-left: 4px;
|
|
4437
4431
|
margin-right: 0;
|
|
4438
|
-
&::after {
|
|
4439
|
-
transform: rotate(-45deg);
|
|
4440
|
-
}
|
|
4441
4432
|
}
|
|
4442
4433
|
}
|
|
4443
4434
|
&-container {
|
|
@@ -12567,9 +12558,7 @@ textarea {
|
|
|
12567
12558
|
color: @select-arrow-icon-color-text-disabled;
|
|
12568
12559
|
}
|
|
12569
12560
|
}
|
|
12570
|
-
|
|
12571
|
-
opacity: 1;
|
|
12572
|
-
}
|
|
12561
|
+
|
|
12573
12562
|
|
|
12574
12563
|
.@{select-prefix-cls}-icon-clear {
|
|
12575
12564
|
color: @select-clear-color;
|
|
@@ -12585,6 +12574,9 @@ textarea {
|
|
|
12585
12574
|
color: @select-color-text-disabled;
|
|
12586
12575
|
}
|
|
12587
12576
|
}
|
|
12577
|
+
.@{select-prefix-cls}-single-isnotMobile:hover .@{select-prefix-cls}-icon-clear {
|
|
12578
|
+
opacity: 1;
|
|
12579
|
+
}
|
|
12588
12580
|
|
|
12589
12581
|
.@{select-prefix-cls}-selection-item {
|
|
12590
12582
|
display: inline-flex;
|
package/dist/kdesign.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @kdcloudjs/kdesign v1.8.
|
|
3
|
+
* @kdcloudjs/kdesign v1.8.57
|
|
4
4
|
*
|
|
5
5
|
* Copyright 2020-present, Kingdee, Inc.
|
|
6
6
|
* All rights reserved.
|
|
@@ -7807,7 +7807,10 @@ template {
|
|
|
7807
7807
|
-webkit-box-pack: center;
|
|
7808
7808
|
-ms-flex-pack: center;
|
|
7809
7809
|
justify-content: center;
|
|
7810
|
+
min-width: auto;
|
|
7811
|
+
/* IE */
|
|
7810
7812
|
min-width: unset;
|
|
7813
|
+
/* 现代浏览器 */
|
|
7811
7814
|
}
|
|
7812
7815
|
.kd-color-picker-pop .kd-color-picker-panel-container-select .kd-select-bordered {
|
|
7813
7816
|
border-radius: 2px;
|
|
@@ -7944,12 +7947,13 @@ template {
|
|
|
7944
7947
|
grid-column-gap: 8px;
|
|
7945
7948
|
grid-row-gap: 8px;
|
|
7946
7949
|
}
|
|
7947
|
-
.kd-color-picker-pop .kd-color-picker-panel-color-box-container-ie11 {
|
|
7950
|
+
.kd-color-picker-pop .kd-color-picker-panel-color-box-container-ie11 .kd-color-picker-panel-color-box-container {
|
|
7948
7951
|
display: -webkit-box;
|
|
7949
7952
|
display: -ms-flexbox;
|
|
7950
7953
|
display: flex;
|
|
7951
7954
|
-ms-flex-wrap: wrap;
|
|
7952
7955
|
flex-wrap: wrap;
|
|
7956
|
+
width: 100%;
|
|
7953
7957
|
}
|
|
7954
7958
|
.kd-color-picker-pop .kd-color-picker-panel-color-box-container-ie11 li {
|
|
7955
7959
|
margin-right: 8px;
|
|
@@ -8101,10 +8105,6 @@ template {
|
|
|
8101
8105
|
.kd-color-picker-rtl.kd-color-picker-pop .kd-color-picker-panel-historical-color-box-container-ie11 li:nth-child(-n + 12) {
|
|
8102
8106
|
margin-top: 0;
|
|
8103
8107
|
}
|
|
8104
|
-
.kd-color-picker-rtl.kd-color-picker-container .kd-color-picker-icon-container .kd-color-picker-icon-no-color-line {
|
|
8105
|
-
-webkit-transform: rotate(-45deg);
|
|
8106
|
-
transform: rotate(-45deg);
|
|
8107
|
-
}
|
|
8108
8108
|
.kd-color-picker-rtl.kd-color-picker-container-pure .kd-input-wrapper.kd-color-picker-input .kd-input-prefix {
|
|
8109
8109
|
margin-left: 0;
|
|
8110
8110
|
}
|
|
@@ -8116,10 +8116,6 @@ template {
|
|
|
8116
8116
|
margin-left: 4px;
|
|
8117
8117
|
margin-right: 0;
|
|
8118
8118
|
}
|
|
8119
|
-
.kd-color-picker-rtl .kd-color-picker-panel-clear-box::after {
|
|
8120
|
-
-webkit-transform: rotate(-45deg);
|
|
8121
|
-
transform: rotate(-45deg);
|
|
8122
|
-
}
|
|
8123
8119
|
.kd-color-picker-rtl .kd-color-picker-panel-container-select .kd-select-dropdown-panel .kd-select-dropdown .kd-select-item {
|
|
8124
8120
|
-webkit-box-pack: right;
|
|
8125
8121
|
-ms-flex-pack: right;
|
|
@@ -19051,9 +19047,6 @@ textarea {
|
|
|
19051
19047
|
.kd-select .kd-select-single-disabled .kd-select-suffix {
|
|
19052
19048
|
color: var(--kd-c-select-arrow-icon-color-text-disabled, #b2b2b2);
|
|
19053
19049
|
}
|
|
19054
|
-
.kd-select .kd-select-single:hover .kd-select-icon-clear {
|
|
19055
|
-
opacity: 1;
|
|
19056
|
-
}
|
|
19057
19050
|
.kd-select .kd-select-single .kd-select-icon-clear {
|
|
19058
19051
|
color: var(--kd-c-select-icon-clear-color-text, #666);
|
|
19059
19052
|
}
|
|
@@ -19069,6 +19062,9 @@ textarea {
|
|
|
19069
19062
|
.kd-select .kd-select-single-disabled-text {
|
|
19070
19063
|
color: var(--kd-c-select-color-text-disabled, var(--kd-g-color-disabled, #b2b2b2));
|
|
19071
19064
|
}
|
|
19065
|
+
.kd-select .kd-select-single-isnotMobile:hover .kd-select-icon-clear {
|
|
19066
|
+
opacity: 1;
|
|
19067
|
+
}
|
|
19072
19068
|
.kd-select .kd-select-selection-item {
|
|
19073
19069
|
display: -webkit-inline-box;
|
|
19074
19070
|
display: -ms-inline-flexbox;
|