@kdcloudjs/kdesign 1.7.68-stable.2 → 1.7.68-stable.4
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 +7 -3
- package/dist/kdesign.css +7 -4
- package/dist/kdesign.css.map +1 -1
- package/dist/kdesign.js +8 -10
- package/dist/kdesign.js.map +1 -1
- package/dist/kdesign.min.css +2 -2
- package/dist/kdesign.min.js +4 -4
- package/dist/kdesign.min.js.map +1 -1
- package/es/grid/col.js +2 -2
- package/es/grid/row.js +2 -2
- package/es/modal/modal.js +2 -1
- package/es/modal/style/index.css +3 -0
- package/es/modal/style/index.less +4 -0
- package/es/select/select.js +0 -4
- package/es/select/style/index.css +3 -3
- package/es/select/style/index.less +3 -3
- package/lib/grid/col.js +2 -2
- package/lib/grid/row.js +2 -2
- package/lib/modal/modal.js +2 -1
- package/lib/modal/style/index.css +3 -0
- package/lib/modal/style/index.less +4 -0
- package/lib/select/select.js +0 -4
- package/lib/select/style/index.css +3 -3
- package/lib/select/style/index.less +3 -3
- package/package.json +1 -1
|
@@ -7642,6 +7642,10 @@ textarea {
|
|
|
7642
7642
|
position: relative;
|
|
7643
7643
|
z-index: @modal-z-index-dialog;
|
|
7644
7644
|
|
|
7645
|
+
&-ie {
|
|
7646
|
+
position: absolute;
|
|
7647
|
+
}
|
|
7648
|
+
|
|
7645
7649
|
&-show {
|
|
7646
7650
|
animation: kdModalEffect calc(@transition-duration - 0.1s) @ease both;
|
|
7647
7651
|
}
|
|
@@ -10601,19 +10605,19 @@ textarea {
|
|
|
10601
10605
|
max-width: 100%;
|
|
10602
10606
|
cursor: default;
|
|
10603
10607
|
user-select: none;
|
|
10604
|
-
|
|
10608
|
+
&.@{select-prefix-cls}-selection-item-small {
|
|
10605
10609
|
height: 20px;
|
|
10606
10610
|
line-height: 18px;
|
|
10607
10611
|
font-size: 12px;
|
|
10608
10612
|
}
|
|
10609
10613
|
|
|
10610
|
-
|
|
10614
|
+
&.@{select-prefix-cls}-selection-item-middle {
|
|
10611
10615
|
font-size: 12px;
|
|
10612
10616
|
height: 20px;
|
|
10613
10617
|
line-height: 18px;
|
|
10614
10618
|
}
|
|
10615
10619
|
|
|
10616
|
-
|
|
10620
|
+
&.@{select-prefix-cls}-selection-item-large {
|
|
10617
10621
|
font-size: 14px;
|
|
10618
10622
|
line-height: 22px;
|
|
10619
10623
|
height: 22px;
|
package/dist/kdesign.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @kdcloudjs/kdesign v1.7.68-stable.
|
|
3
|
+
* @kdcloudjs/kdesign v1.7.68-stable.4
|
|
4
4
|
*
|
|
5
5
|
* Copyright 2020-present, Kingdee, Inc.
|
|
6
6
|
* All rights reserved.
|
|
@@ -12331,6 +12331,9 @@ textarea {
|
|
|
12331
12331
|
position: relative;
|
|
12332
12332
|
z-index: var(--kd-c-modal-z-index, var(--kd-g-z-index-dialog, 1050));
|
|
12333
12333
|
}
|
|
12334
|
+
.kd-modal-container-ie {
|
|
12335
|
+
position: absolute;
|
|
12336
|
+
}
|
|
12334
12337
|
.kd-modal-container-show {
|
|
12335
12338
|
-webkit-animation: kdModalEffect calc(0.3s - 0.1s) cubic-bezier(0.4, 0, 0.6, 1) both;
|
|
12336
12339
|
animation: kdModalEffect calc(0.3s - 0.1s) cubic-bezier(0.4, 0, 0.6, 1) both;
|
|
@@ -16268,17 +16271,17 @@ textarea {
|
|
|
16268
16271
|
-ms-user-select: none;
|
|
16269
16272
|
user-select: none;
|
|
16270
16273
|
}
|
|
16271
|
-
.kd-select .kd-select-selection-item-small {
|
|
16274
|
+
.kd-select .kd-select-selection-item.kd-select-selection-item-small {
|
|
16272
16275
|
height: 20px;
|
|
16273
16276
|
line-height: 18px;
|
|
16274
16277
|
font-size: 12px;
|
|
16275
16278
|
}
|
|
16276
|
-
.kd-select .kd-select-selection-item-middle {
|
|
16279
|
+
.kd-select .kd-select-selection-item.kd-select-selection-item-middle {
|
|
16277
16280
|
font-size: 12px;
|
|
16278
16281
|
height: 20px;
|
|
16279
16282
|
line-height: 18px;
|
|
16280
16283
|
}
|
|
16281
|
-
.kd-select .kd-select-selection-item-large {
|
|
16284
|
+
.kd-select .kd-select-selection-item.kd-select-selection-item-large {
|
|
16282
16285
|
font-size: 14px;
|
|
16283
16286
|
line-height: 22px;
|
|
16284
16287
|
height: 22px;
|