@kdcloudjs/kdesign 1.7.33-stable.2 → 1.7.33-stable.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 +19 -0
- package/dist/kdesign-complete.less +18 -12
- package/dist/kdesign.css +8 -5
- package/dist/kdesign.css.map +1 -1
- package/dist/kdesign.js +728 -197
- package/dist/kdesign.js.map +1 -1
- package/dist/kdesign.min.css +2 -2
- package/dist/kdesign.min.js +5 -5
- package/dist/kdesign.min.js.map +1 -1
- package/es/input/TextArea.js +16 -8
- package/es/input/style/index.css +3 -0
- package/es/input/style/index.less +9 -5
- package/es/select/style/index.css +4 -4
- package/es/select/style/index.less +9 -7
- package/es/table/feature/useRowDrag.d.ts +3 -0
- package/es/table/feature/useRowDrag.js +10 -0
- package/es/table/interface.d.ts +3 -1
- package/es/table/table.js +4 -1
- package/es/tree-select/tree-select.js +2 -2
- package/lib/input/TextArea.js +16 -8
- package/lib/input/style/index.css +3 -0
- package/lib/input/style/index.less +9 -5
- package/lib/select/style/index.css +4 -4
- package/lib/select/style/index.less +9 -7
- package/lib/table/feature/useRowDrag.d.ts +3 -0
- package/lib/table/feature/useRowDrag.js +18 -0
- package/lib/table/interface.d.ts +3 -1
- package/lib/table/table.js +4 -1
- package/lib/tree-select/tree-select.js +4 -4
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
## [1.7.40](https://github.com/kdcloudone/kdesign/compare/v1.7.39...v1.7.40) (2023-11-27)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* [alert] 修复点击关闭按钮依旧占位的问题 fix [#652](https://github.com/kdcloudone/kdesign/issues/652) ([f22c2a3](https://github.com/kdcloudone/kdesign/commit/f22c2a3c8b6f864a59e3c1db91ae4ebab06508e0))
|
|
7
|
+
* [cli] 添加剪切板组件预览图 ([0317fb9](https://github.com/kdcloudone/kdesign/commit/0317fb977edaacdff7f658e31d9b968f99d7dee2))
|
|
8
|
+
* [cli] 修复demo中多余的name属性 ([01260a9](https://github.com/kdcloudone/kdesign/commit/01260a984d419e2d948621e6a4a46863b36ad716))
|
|
9
|
+
* [modal] 修复弹窗超出视口高度时无法滚动的问题 fix [#226](https://github.com/kdcloudone/kdesign/issues/226) fix [#581](https://github.com/kdcloudone/kdesign/issues/581) ([11e3d8e](https://github.com/kdcloudone/kdesign/commit/11e3d8ead40e50267acdd70e6ea3646f48c7d60b))
|
|
10
|
+
* [tree] 修复树组件搜索不生效问题 fix [#644](https://github.com/kdcloudone/kdesign/issues/644) ([4cad188](https://github.com/kdcloudone/kdesign/commit/4cad188d6c638da9a1e57c6285536195064ded6d))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* [date-picker]新增自定义单元格API fix [#266](https://github.com/kdcloudone/kdesign/issues/266) ([a70026f](https://github.com/kdcloudone/kdesign/commit/a70026ff77715ac439f0e6570cb39ec5ffd078bb))
|
|
16
|
+
* [QRCode] 新增二维码组件 [#626](https://github.com/kdcloudone/kdesign/issues/626) ([f5f61d6](https://github.com/kdcloudone/kdesign/commit/f5f61d689c0b2cfcd19ad1585dfe47efd6e4c76f))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
1
20
|
## [1.7.39](https://github.com/kdcloudone/kdesign/compare/v1.7.37...v1.7.39) (2023-10-27)
|
|
2
21
|
|
|
3
22
|
|
|
@@ -5843,12 +5843,16 @@ textarea {
|
|
|
5843
5843
|
font-size: @input-small-font-size-inner;
|
|
5844
5844
|
line-height: 18px;
|
|
5845
5845
|
background-color: #fff;
|
|
5846
|
-
}
|
|
5847
5846
|
|
|
5848
|
-
|
|
5849
|
-
|
|
5850
|
-
|
|
5851
|
-
|
|
5847
|
+
&-inner {
|
|
5848
|
+
top: auto;
|
|
5849
|
+
bottom: 5px;
|
|
5850
|
+
right: 8px;
|
|
5851
|
+
}
|
|
5852
|
+
|
|
5853
|
+
&-error {
|
|
5854
|
+
color: @input-error-color;
|
|
5855
|
+
}
|
|
5852
5856
|
}
|
|
5853
5857
|
}
|
|
5854
5858
|
|
|
@@ -10167,13 +10171,15 @@ textarea {
|
|
|
10167
10171
|
}
|
|
10168
10172
|
}
|
|
10169
10173
|
|
|
10170
|
-
|
|
10171
|
-
|
|
10172
|
-
|
|
10173
|
-
|
|
10174
|
-
|
|
10175
|
-
|
|
10176
|
-
|
|
10174
|
+
&-dropdown-panel {
|
|
10175
|
+
&.topLeft.hidden,
|
|
10176
|
+
&.bottomLeft.hidden,
|
|
10177
|
+
&.topRight.hidden,
|
|
10178
|
+
&.bottomRight.hidden {
|
|
10179
|
+
opacity: 0;
|
|
10180
|
+
visibility: hidden;
|
|
10181
|
+
transition: all calc(@transition-duration - 0.1s) @ease;
|
|
10182
|
+
}
|
|
10177
10183
|
}
|
|
10178
10184
|
}
|
|
10179
10185
|
|
package/dist/kdesign.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @kdcloudjs/kdesign v1.7.33-stable.
|
|
3
|
+
* @kdcloudjs/kdesign v1.7.33-stable.2
|
|
4
4
|
*
|
|
5
5
|
* Copyright 2020-present, Kingdee, Inc.
|
|
6
6
|
* All rights reserved.
|
|
@@ -9941,6 +9941,9 @@ textarea {
|
|
|
9941
9941
|
bottom: 5px;
|
|
9942
9942
|
right: 8px;
|
|
9943
9943
|
}
|
|
9944
|
+
.kd-input-textarea-mark-error {
|
|
9945
|
+
color: var(--kd-c-input-color-error, var(--kd-g-color-error, #fb2323));
|
|
9946
|
+
}
|
|
9944
9947
|
.kd-input-no-resize {
|
|
9945
9948
|
resize: none;
|
|
9946
9949
|
}
|
|
@@ -15552,10 +15555,10 @@ textarea {
|
|
|
15552
15555
|
color: var(--kd-c-select-footer-color-text-selected, #0e5fd8);
|
|
15553
15556
|
padding: 0 2px;
|
|
15554
15557
|
}
|
|
15555
|
-
.kd-select.topLeft.hidden,
|
|
15556
|
-
.kd-select.bottomLeft.hidden,
|
|
15557
|
-
.kd-select.topRight.hidden,
|
|
15558
|
-
.kd-select.bottomRight.hidden {
|
|
15558
|
+
.kd-select-dropdown-panel.topLeft.hidden,
|
|
15559
|
+
.kd-select-dropdown-panel.bottomLeft.hidden,
|
|
15560
|
+
.kd-select-dropdown-panel.topRight.hidden,
|
|
15561
|
+
.kd-select-dropdown-panel.bottomRight.hidden {
|
|
15559
15562
|
opacity: 0;
|
|
15560
15563
|
visibility: hidden;
|
|
15561
15564
|
-webkit-transition: all calc(0.3s - 0.1s) cubic-bezier(0.4, 0, 0.6, 1);
|