@kdcloudjs/kdesign 1.6.35 → 1.6.36

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/CHANGELOG.md CHANGED
@@ -1,3 +1,26 @@
1
+ ## [1.6.35](https://github.com/kdcloudone/kdesign/compare/v1.6.34...v1.6.35) (2023-02-22)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * [cli] 修复ts报错 ([72eeb56](https://github.com/kdcloudone/kdesign/commit/72eeb56580aa897c22e26607815bf672caa0b6d8))
7
+ * [date-picker]修复disabled时清除图标异常 fix [#256](https://github.com/kdcloudone/kdesign/issues/256) ([35a1a5d](https://github.com/kdcloudone/kdesign/commit/35a1a5d1fe0eb138db2cc8eb896c2ca416eaecaf))
8
+ * [select] 当选项字符数较多时,多选框大小会被压缩 fix [#258](https://github.com/kdcloudone/kdesign/issues/258) ([876c6ad](https://github.com/kdcloudone/kdesign/commit/876c6adc57b699d9dc750299a22f736e67650302))
9
+ * [select] 修复视觉bug fix [#247](https://github.com/kdcloudone/kdesign/issues/247) ([c2ae7ae](https://github.com/kdcloudone/kdesign/commit/c2ae7ae256461cb392ab0861452e1aae63b7da04))
10
+ * [tree] 自定义展开收起图标鼠标可点击范围太小 fix [#236](https://github.com/kdcloudone/kdesign/issues/236) ([f3d9153](https://github.com/kdcloudone/kdesign/commit/f3d915313f063c2e991d044d489c1b9e871fc8e6))
11
+
12
+
13
+
14
+ ## [1.6.34](https://github.com/kdcloudone/kdesign/compare/v1.6.33...v1.6.34) (2023-02-20)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * [cli] 更新单测配置文件 ([dcd6a3a](https://github.com/kdcloudone/kdesign/commit/dcd6a3a1165e111b05d6bc71dbca4ac0813c7246))
20
+ * [rate] 修复自定义样式不生效的问题 ([08c6b53](https://github.com/kdcloudone/kdesign/commit/08c6b53429c26a01878d30ca3a07507134798660))
21
+
22
+
23
+
1
24
  ## [1.6.33](https://github.com/kdcloudone/kdesign/compare/v1.6.32...v1.6.33) (2023-02-16)
2
25
 
3
26
 
@@ -4902,7 +4902,7 @@
4902
4902
  height: 44px;
4903
4903
  background: @bg2;
4904
4904
  border-radius: 4px;
4905
-
4905
+
4906
4906
  .@{image-cropper-prefix-cls}-btn-container {
4907
4907
  padding-left: 28px;
4908
4908
  font-size: 24px;
@@ -4913,10 +4913,19 @@
4913
4913
  border-right: 1px solid #ccc;
4914
4914
  }
4915
4915
 
4916
- i {
4916
+ & > i,
4917
+ & > .@{kd-prefix}-upload {
4917
4918
  margin-right: 20px;
4918
4919
  cursor: pointer;
4919
4920
  }
4921
+
4922
+ .@{kd-prefix}-upload {
4923
+ display: flex;
4924
+
4925
+ &-handle {
4926
+ display: flex;
4927
+ }
4928
+ }
4920
4929
  }
4921
4930
 
4922
4931
  .ok-btn {
package/dist/kdesign.css CHANGED
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  *
3
- * @kdcloudjs/kdesign v1.6.34
3
+ * @kdcloudjs/kdesign v1.6.35
4
4
  *
5
5
  * Copyright 2020-present, Kingdee, Inc.
6
6
  * All rights reserved.
@@ -8353,10 +8353,21 @@ template {
8353
8353
  .kd-image-cropper-bar-container .kd-image-cropper-btn-container.default {
8354
8354
  border-right: 1px solid #ccc;
8355
8355
  }
8356
- .kd-image-cropper-bar-container .kd-image-cropper-btn-container i {
8356
+ .kd-image-cropper-bar-container .kd-image-cropper-btn-container > i,
8357
+ .kd-image-cropper-bar-container .kd-image-cropper-btn-container > .kd-upload {
8357
8358
  margin-right: 20px;
8358
8359
  cursor: pointer;
8359
8360
  }
8361
+ .kd-image-cropper-bar-container .kd-image-cropper-btn-container .kd-upload {
8362
+ display: -webkit-box;
8363
+ display: -ms-flexbox;
8364
+ display: flex;
8365
+ }
8366
+ .kd-image-cropper-bar-container .kd-image-cropper-btn-container .kd-upload-handle {
8367
+ display: -webkit-box;
8368
+ display: -ms-flexbox;
8369
+ display: flex;
8370
+ }
8360
8371
  .kd-image-cropper-bar-container .ok-btn {
8361
8372
  height: 100%;
8362
8373
  }