@kdcloudjs/kdesign 1.8.19 → 1.8.21
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 +5 -4
- package/dist/kdesign.css +8 -5
- package/dist/kdesign.css.map +1 -1
- package/dist/kdesign.js +7880 -7729
- 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/color-picker/color-picker.js +18 -7
- package/es/color-picker/style/index.css +7 -4
- package/es/color-picker/style/index.less +5 -4
- package/es/date-picker/date-panel.js +23 -19
- package/es/date-picker/interface.d.ts +2 -0
- package/es/date-picker/locale/zh_CN.js +2 -1
- package/es/locale/en-US.d.ts +1 -0
- package/es/locale/en-US.js +1 -0
- package/es/locale/locale.d.ts +1 -0
- package/es/locale/zh-CN.d.ts +1 -0
- package/es/popper/index.js +6 -1
- package/es/select/option.js +4 -2
- package/es/select/select.js +7 -1
- package/es/tree/tree.js +4 -10
- package/lib/color-picker/color-picker.js +19 -8
- package/lib/color-picker/style/index.css +7 -4
- package/lib/color-picker/style/index.less +5 -4
- package/lib/date-picker/date-panel.js +27 -23
- package/lib/date-picker/interface.d.ts +2 -0
- package/lib/date-picker/locale/zh_CN.js +2 -1
- package/lib/locale/en-US.d.ts +1 -0
- package/lib/locale/en-US.js +1 -0
- package/lib/locale/locale.d.ts +1 -0
- package/lib/locale/zh-CN.d.ts +1 -0
- package/lib/popper/index.js +6 -1
- package/lib/select/option.js +4 -2
- package/lib/select/select.js +7 -1
- package/lib/tree/tree.js +4 -10
- package/package.json +3 -2
|
@@ -3343,6 +3343,7 @@
|
|
|
3343
3343
|
.@{color-picker-prefix-cls}-container {
|
|
3344
3344
|
position: relative;
|
|
3345
3345
|
width: @color-picker-input-sizing-width;
|
|
3346
|
+
height: @color-picker-input-sizing-height;
|
|
3346
3347
|
|
|
3347
3348
|
&-pure {
|
|
3348
3349
|
width: 28px;
|
|
@@ -3368,8 +3369,8 @@
|
|
|
3368
3369
|
}
|
|
3369
3370
|
|
|
3370
3371
|
.@{color-picker-prefix-cls}-input {
|
|
3371
|
-
|
|
3372
|
-
|
|
3372
|
+
height: 100%;
|
|
3373
|
+
width: 100%;
|
|
3373
3374
|
padding: 0 8px;
|
|
3374
3375
|
border-bottom: 1px solid rgba(217, 217, 217, 1);
|
|
3375
3376
|
font-size: @color-picker-input-font-size;
|
|
@@ -3394,7 +3395,7 @@
|
|
|
3394
3395
|
width: @color-picker-input-prefix-line-sizing-width;
|
|
3395
3396
|
height: @color-picker-input-prefix-line-sizing-height;
|
|
3396
3397
|
background-color: #ff2e3d;
|
|
3397
|
-
|
|
3398
|
+
transform: rotate(45deg);
|
|
3398
3399
|
}
|
|
3399
3400
|
}
|
|
3400
3401
|
}
|
|
@@ -3453,7 +3454,7 @@
|
|
|
3453
3454
|
width: 1px;
|
|
3454
3455
|
height: 22.6px;
|
|
3455
3456
|
background-color: #ff2e3d;
|
|
3456
|
-
|
|
3457
|
+
transform: rotate(45deg);
|
|
3457
3458
|
}
|
|
3458
3459
|
|
|
3459
3460
|
.active {
|
package/dist/kdesign.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @kdcloudjs/kdesign v1.8.
|
|
3
|
+
* @kdcloudjs/kdesign v1.8.21
|
|
4
4
|
*
|
|
5
5
|
* Copyright 2020-present, Kingdee, Inc.
|
|
6
6
|
* All rights reserved.
|
|
@@ -6513,6 +6513,7 @@ template {
|
|
|
6513
6513
|
.kd-color-picker-container {
|
|
6514
6514
|
position: relative;
|
|
6515
6515
|
width: var(--kd-c-color-picker-input-sizing-width, 230px);
|
|
6516
|
+
height: var(--kd-c-color-picker-input-sizing-height, 28px);
|
|
6516
6517
|
}
|
|
6517
6518
|
.kd-color-picker-container-pure {
|
|
6518
6519
|
width: 28px;
|
|
@@ -6539,8 +6540,8 @@ template {
|
|
|
6539
6540
|
display: none;
|
|
6540
6541
|
}
|
|
6541
6542
|
.kd-color-picker-container .kd-color-picker-input {
|
|
6542
|
-
|
|
6543
|
-
|
|
6543
|
+
height: 100%;
|
|
6544
|
+
width: 100%;
|
|
6544
6545
|
padding: 0 8px;
|
|
6545
6546
|
border-bottom: 1px solid #d9d9d9;
|
|
6546
6547
|
font-size: var(--kd-c-color-picker-input-font-size, var(--kd-g-font-size-middle, 14px));
|
|
@@ -6570,7 +6571,8 @@ template {
|
|
|
6570
6571
|
width: var(--kd-c-color-picker-input-prefix-line-sizing-width, 1px);
|
|
6571
6572
|
height: var(--kd-c-color-picker-input-prefix-line-sizing-height, 22.6px);
|
|
6572
6573
|
background-color: #ff2e3d;
|
|
6573
|
-
|
|
6574
|
+
-webkit-transform: rotate(45deg);
|
|
6575
|
+
transform: rotate(45deg);
|
|
6574
6576
|
}
|
|
6575
6577
|
.kd-color-picker-pop {
|
|
6576
6578
|
width: var(--kd-c-color-picker-panel-sizing-width, 304px);
|
|
@@ -6630,7 +6632,8 @@ template {
|
|
|
6630
6632
|
width: 1px;
|
|
6631
6633
|
height: 22.6px;
|
|
6632
6634
|
background-color: #ff2e3d;
|
|
6633
|
-
|
|
6635
|
+
-webkit-transform: rotate(45deg);
|
|
6636
|
+
transform: rotate(45deg);
|
|
6634
6637
|
}
|
|
6635
6638
|
.kd-color-picker-pop .kd-color-picker-panel-clear-box .active {
|
|
6636
6639
|
content: '';
|