@kdcloudjs/kdesign 1.7.11 → 1.7.12

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,32 @@
1
+ ## [1.7.11](https://github.com/kdcloudone/kdesign/compare/v1.7.10...v1.7.11) (2023-05-26)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * [cli] 修复 MDocsSearch 搜索结果显示异常的问题 fixed kdcloudone[#378](https://github.com/kdcloudone/kdesign/issues/378) ([71cb5f2](https://github.com/kdcloudone/kdesign/commit/71cb5f2c85a93536e6e732f4fdc868ae082d7278))
7
+ * [pagination] 修复页目数视觉问题 ([90db7ab](https://github.com/kdcloudone/kdesign/commit/90db7abc4125f39c4432570da6fa3cfe67f461e4))
8
+
9
+
10
+
11
+ ## [1.7.10](https://github.com/kdcloudone/kdesign/compare/v1.7.9...v1.7.10) (2023-05-19)
12
+
13
+
14
+ ### Bug Fixes
15
+
16
+ * [drawer]更新抽屉组件单测 ([ef2ee55](https://github.com/kdcloudone/kdesign/commit/ef2ee5524f6000df74c0d64d17d9045d26eda370))
17
+ * [input]修复清空按钮触发失焦问题 fix [#371](https://github.com/kdcloudone/kdesign/issues/371) ([a9afce7](https://github.com/kdcloudone/kdesign/commit/a9afce7f68052bebb20a643831e778599e5b1a20))
18
+ * [menu]更新menu组件单测 ([8e60543](https://github.com/kdcloudone/kdesign/commit/8e605432870f62dac99dc613c378f6ab93799d60))
19
+ * [progress]更新进度条组件单测 ([bafaa8d](https://github.com/kdcloudone/kdesign/commit/bafaa8d052440aece38b7b2d5038f757a82f180e))
20
+ * [split-panel]更新分割容器组件单测 ([6ee2c91](https://github.com/kdcloudone/kdesign/commit/6ee2c91a476a61039c01f460dd482ab3174c97fd))
21
+ * [switch]更新开关组件单测 ([a3763ee](https://github.com/kdcloudone/kdesign/commit/a3763ee58b74526ff258a7c824b53ca55bafa88b))
22
+
23
+
24
+ ### Features
25
+
26
+ * [collapse]新增受控模式 fix [#341](https://github.com/kdcloudone/kdesign/issues/341) ([959e886](https://github.com/kdcloudone/kdesign/commit/959e886c2d449a9845f3ac2c36123c945273e527))
27
+
28
+
29
+
1
30
  ## [1.7.9](https://github.com/kdcloudone/kdesign/compare/v1.7.8...v1.7.9) (2023-05-12)
2
31
 
3
32
 
@@ -2613,7 +2613,6 @@
2613
2613
  margin-top: 10px;
2614
2614
  max-height: ~'calc(100% - 39px - 10px)';
2615
2615
  overflow: scroll;
2616
- height: 100%;
2617
2616
 
2618
2617
  .@{city-picker-prefix-cls}-city-table-group {
2619
2618
  display: flex;
@@ -14656,6 +14655,7 @@ template {
14656
14655
  box-sizing: border-box;
14657
14656
  padding: 4px 0;
14658
14657
  margin: 0;
14658
+ overflow: auto;
14659
14659
  font-size: @tree-select-list-font-size;
14660
14660
  font-variant: initial;
14661
14661
  background-color: @tree-select-dropdown-bg;
package/dist/kdesign.css CHANGED
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  *
3
- * @kdcloudjs/kdesign v1.7.10
3
+ * @kdcloudjs/kdesign v1.7.11
4
4
  *
5
5
  * Copyright 2020-present, Kingdee, Inc.
6
6
  * All rights reserved.
@@ -5505,7 +5505,6 @@ template {
5505
5505
  margin-top: 10px;
5506
5506
  max-height: calc(100% - 39px - 10px);
5507
5507
  overflow: scroll;
5508
- height: 100%;
5509
5508
  }
5510
5509
  .kd-city-picker-city-table .kd-city-picker-city-table-group {
5511
5510
  display: -webkit-box;
@@ -19412,6 +19411,7 @@ textarea {
19412
19411
  box-sizing: border-box;
19413
19412
  padding: 4px 0;
19414
19413
  margin: 0;
19414
+ overflow: auto;
19415
19415
  font-size: var(--kd-c-tree-select-dropdown-font-size, 12px);
19416
19416
  font-variant: initial;
19417
19417
  background-color: var(--kd-c-tree-select-dropdown-color-background, var(--kd-g-color-background, #fff));