@kdcloudjs/kdesign 1.7.33 → 1.7.34

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,36 @@
1
+ ## [1.7.33](https://github.com/kdcloudone/kdesign/compare/v1.7.32...v1.7.33) (2023-10-07)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * [select] 修复下拉面板出现多余滚动条问题 fix [#595](https://github.com/kdcloudone/kdesign/issues/595) ([44f351e](https://github.com/kdcloudone/kdesign/commit/44f351e36d5d648bc3b90d9bb9f0757d4ed2c12e))
7
+
8
+
9
+
10
+ ## [1.7.32](https://github.com/kdcloudone/kdesign/compare/v1.7.31...v1.7.32) (2023-09-27)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * [select] 样式 BUG ([1edef01](https://github.com/kdcloudone/kdesign/commit/1edef0118f33e38efcbc57b2311a45b9cfe168b5))
16
+
17
+
18
+
19
+ ## [1.7.31](https://github.com/kdcloudone/kdesign/compare/v1.7.30...v1.7.31) (2023-09-27)
20
+
21
+
22
+ ### Bug Fixes
23
+
24
+ * [select] 修复多选选择器页面上不显示问题 fix [#615](https://github.com/kdcloudone/kdesign/issues/615) ([789dc53](https://github.com/kdcloudone/kdesign/commit/789dc536b2f3854db4d1b77e78decc72be4577de))
25
+
26
+
27
+ ### Features
28
+
29
+ * [table] 新增国际化配置 ([825cb65](https://github.com/kdcloudone/kdesign/commit/825cb65106b273d8f438d3f41778e14536c9701c))
30
+ * [table] 修改table版本到最新版 ([35c0b3c](https://github.com/kdcloudone/kdesign/commit/35c0b3c406b1424d408b491d53cce4ae42ce86eb))
31
+
32
+
33
+
1
34
  ## [1.7.30](https://github.com/kdcloudone/kdesign/compare/v1.7.29...v1.7.30) (2023-09-27)
2
35
 
3
36
 
@@ -3600,6 +3600,10 @@
3600
3600
  color: @date-clear-background-color-focused;
3601
3601
  }
3602
3602
  }
3603
+
3604
+ &-error {
3605
+ border-color: @color-error;
3606
+ }
3603
3607
  }
3604
3608
 
3605
3609
  .@{datePicker-prefix-cls-panel} {
package/dist/kdesign.css CHANGED
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  *
3
- * @kdcloudjs/kdesign v1.7.32
3
+ * @kdcloudjs/kdesign v1.7.33
4
4
  *
5
5
  * Copyright 2020-present, Kingdee, Inc.
6
6
  * All rights reserved.
@@ -6699,6 +6699,9 @@ template {
6699
6699
  .kd-date-picker-focused .kd-date-picker-suffix {
6700
6700
  color: var(--kd-c-date-picker-clear-color-background-focused, var(--kd-g-color-theme, #5582f3));
6701
6701
  }
6702
+ .kd-date-picker-error {
6703
+ border-color: var(--kd-g-color-error, #fb2323);
6704
+ }
6702
6705
  .kd-date-picker-panel {
6703
6706
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
6704
6707
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);