@kdcloudjs/kdesign 1.5.2 → 1.5.3

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.5.2](https://github.com/kdcloudone/kdesign/compare/v1.5.1...v1.5.2) (2022-07-28)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * [anchor] 调整锚点组件定位偏移的逻辑 ([a4cf19f](https://github.com/kdcloudone/kdesign/commit/a4cf19faba70462fae6f8937c38607c610a4aed6))
7
+ * [avatar] 修复srcSet不生效问题 ([59a069a](https://github.com/kdcloudone/kdesign/commit/59a069a04423d2d1d4852292dc99d41a81234047))
8
+ * [input] 修复禁用状态下样式问题 ([d4e05b5](https://github.com/kdcloudone/kdesign/commit/d4e05b5907892c00345b7d4e976c89ca29272df1))
9
+ * [select] 修复禁用态出现清空按钮,并能继续触发清空操作的bug ([9395796](https://github.com/kdcloudone/kdesign/commit/939579646cc54965a7a67016dedf0eac95a8c80b))
10
+ * [select] 修复禁用态下的视觉 ([ca6a6cd](https://github.com/kdcloudone/kdesign/commit/ca6a6cd4caf3ba0c6d2587748eab1d1de21b54d8))
11
+ * [tree] 调整拖拽时dropPosition计算 ([cb69512](https://github.com/kdcloudone/kdesign/commit/cb69512648acdca9a8a6e99624e9778aefe1c3a6))
12
+
13
+
14
+
15
+ ## [1.5.1](https://github.com/kdcloudone/kdesign/compare/v1.3.8...v1.5.1) (2022-07-27)
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * [table] 增加滚动加载和滚动条宽度参数 ([c4e9b03](https://github.com/kdcloudone/kdesign/commit/c4e9b0382f9290a8712eba0a3ee9313851410d8a))
21
+
22
+
23
+
1
24
  # [1.5.0](https://github.com/kdcloudone/kdesign/compare/v1.4.1...v1.5.0) (2022-07-21)
2
25
 
3
26
 
@@ -5111,6 +5111,10 @@ textarea {
5111
5111
  background-color: @input-background-color-disabled-inner;
5112
5112
  border-color: @input-border-color-disabled-inner;
5113
5113
  cursor: not-allowed;
5114
+
5115
+ .@{input-prefix-cls}-suffix, .@{input-prefix-cls}-prefix {
5116
+ color: @input-color-disabled-inner;
5117
+ }
5114
5118
  }
5115
5119
  }
5116
5120
  &-wrapper-textarea {
@@ -5205,6 +5209,7 @@ textarea {
5205
5209
  &-disabled {
5206
5210
  background-color: @input-background-color-disabled-inner;
5207
5211
  border-color: @input-border-color-disabled-inner;
5212
+ color: @input-color-disabled-inner;
5208
5213
  cursor: not-allowed;
5209
5214
  }
5210
5215
  }
package/dist/kdesign.css CHANGED
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  *
3
- * @kdcloudjs/kdesign v1.5.1
3
+ * @kdcloudjs/kdesign v1.5.2
4
4
  *
5
5
  * Copyright 2020-present, Kingdee, Inc.
6
6
  * All rights reserved.
@@ -9266,6 +9266,10 @@ textarea {
9266
9266
  border-color: var(--kd-c-input-color-border-disabled, var(--kd-g-color-border-strong, #d9d9d9));
9267
9267
  cursor: not-allowed;
9268
9268
  }
9269
+ .kd-input-wrapper-disabled .kd-input-suffix,
9270
+ .kd-input-wrapper-disabled .kd-input-prefix {
9271
+ color: var(--kd-c-input-color-disabled, var(--kd-g-color-disabled, #b2b2b2));
9272
+ }
9269
9273
  .kd-input-wrapper-textarea {
9270
9274
  width: 100%;
9271
9275
  min-width: 0;
@@ -9409,6 +9413,7 @@ textarea {
9409
9413
  .kd-input-group-wrapper .kd-input-group .kd-input-group-addon-disabled {
9410
9414
  background-color: var(--kd-c-input-color-background-disabled, var(--kd-g-color-background-contain-disabled, #f5f5f5));
9411
9415
  border-color: var(--kd-c-input-color-border-disabled, var(--kd-g-color-border-strong, #d9d9d9));
9416
+ color: var(--kd-c-input-color-disabled, var(--kd-g-color-disabled, #b2b2b2));
9412
9417
  cursor: not-allowed;
9413
9418
  }
9414
9419
  .kd-input-group-wrapper .kd-input-group-size-small .kd-input-group-addon {