@kdcloudjs/kdesign 1.6.5 → 1.6.6

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,23 @@
1
+ ## [1.6.5](https://github.com/kdcloudone/kdesign/compare/v1.6.4...v1.6.5) (2022-09-22)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * [cascader] 更改清空按钮样式 ([ae4adec](https://github.com/kdcloudone/kdesign/commit/ae4adec4c280d1d1aaee33c3a371050f8cb9cc6b))
7
+ * [cascader]点击清空图标没有触发onChange的问题 ([f48d308](https://github.com/kdcloudone/kdesign/commit/f48d3083a0ab06eebd97cfe347931ba18a6bd3a5))
8
+ * [rate] 修复当value值为0时不触发视图更新的bug ([07ef798](https://github.com/kdcloudone/kdesign/commit/07ef7980a83e425e65608efaa9bd38807d37b484))
9
+ * [search] 修复basic模式下onFocus和onBlur不生效的问题 ([0b7cbf3](https://github.com/kdcloudone/kdesign/commit/0b7cbf3d4ec247744fbd7e697a9b0e6be9f6e573))
10
+ * [transfer] 添加清空搜索框的方法clearSearch ([5024a62](https://github.com/kdcloudone/kdesign/commit/5024a623178b62765d7d798b7344ccf2a0245e1e))
11
+ * [upload] 修复demo默认上传按钮的样式 ([2a461cc](https://github.com/kdcloudone/kdesign/commit/2a461ccf6c51f5f38fb11c1ec2952ff28099bd5c))
12
+ * [upload] 修复hover上传列表时操作按钮与文件列表背景色不同步的问题 ([478dd7b](https://github.com/kdcloudone/kdesign/commit/478dd7b14735bb4ea8dad04f66114988706fef60))
13
+
14
+
15
+ ### Features
16
+
17
+ * [pagination]添加配置总计的显示方式 ([5900254](https://github.com/kdcloudone/kdesign/commit/59002540c1bdb561d922cdd34a46f35fbb7801c2))
18
+
19
+
20
+
1
21
  ## [1.6.4](https://github.com/kdcloudone/kdesign/compare/v1.6.3...v1.6.4) (2022-09-15)
2
22
 
3
23
 
@@ -5071,7 +5071,14 @@ textarea {
5071
5071
  z-index: 1;
5072
5072
  color: @input-placeholder-color-inner;
5073
5073
  font-size: @input-small-font-size-inner;
5074
+ line-height: 18px;
5075
+ background-color: #fff;
5074
5076
  }
5077
+ &-mark-inner {
5078
+ top: auto;
5079
+ bottom: 5px;
5080
+ right: 8px;
5081
+ }
5075
5082
  }
5076
5083
  &-no-resize {
5077
5084
  resize: none;
@@ -13359,7 +13366,7 @@ template {
13359
13366
 
13360
13367
  // spacing
13361
13368
  @tooltip-vertical-gap: var(~'@{tooltip-custom-prefix}-spacing-padding-vertical', 8px);
13362
- @tooltip-horizontal-gap: var(~'@{tooltip-custom-prefix}-spacing-padding-vertical', 12px);
13369
+ @tooltip-horizontal-gap: var(~'@{tooltip-custom-prefix}-spacing-padding-horizontal', 12px);
13363
13370
 
13364
13371
  // sizing
13365
13372
  @tooltip-max-width: var(~'@{tooltip-custom-prefix}-sizing-max-width', 360px);
package/dist/kdesign.css CHANGED
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  *
3
- * @kdcloudjs/kdesign v1.6.4
3
+ * @kdcloudjs/kdesign v1.6.5
4
4
  *
5
5
  * Copyright 2020-present, Kingdee, Inc.
6
6
  * All rights reserved.
@@ -9156,6 +9156,13 @@ textarea {
9156
9156
  z-index: 1;
9157
9157
  color: var(--kd-c-input-placeholder-color-text, var(--kd-g-color-text-placeholder, #ccc));
9158
9158
  font-size: var(--kd-c-input-font-size-small, var(--kd-g-font-size-small, 12px));
9159
+ line-height: 18px;
9160
+ background-color: #fff;
9161
+ }
9162
+ .kd-input-textarea-mark-inner {
9163
+ top: auto;
9164
+ bottom: 5px;
9165
+ right: 8px;
9159
9166
  }
9160
9167
  .kd-input-no-resize {
9161
9168
  resize: none;
@@ -17872,7 +17879,7 @@ textarea {
17872
17879
  -webkit-font-feature-settings: 'tnum';
17873
17880
  font-feature-settings: 'tnum';
17874
17881
  max-width: var(--kd-c-tooltip-sizing-max-width, 360px);
17875
- padding: var(--kd-c-tooltip-spacing-padding-vertical, 8px) var(--kd-c-tooltip-spacing-padding-vertical, 12px);
17882
+ padding: var(--kd-c-tooltip-spacing-padding-vertical, 8px) var(--kd-c-tooltip-spacing-padding-horizontal, 12px);
17876
17883
  color: var(--kd-c-tooltip-color-text, var(--kd-g-color-text-primary, #212121));
17877
17884
  border-radius: var(--kd-c-tooltip-radius-border, var(--kd-g-radius-border, 2px));
17878
17885
  font-size: var(--kd-c-tooltip-color-text, var(--kd-g-font-size-small, 12px));