@kdcloudjs/kdesign 1.6.38 → 1.6.40
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 +31 -0
- package/dist/kdesign.css +1 -1
- package/dist/kdesign.css.map +1 -1
- package/dist/kdesign.js +143 -127
- package/dist/kdesign.js.map +1 -1
- package/dist/kdesign.min.css +1 -1
- package/dist/kdesign.min.js +6 -6
- package/dist/kdesign.min.js.map +1 -1
- package/es/button/button.js +2 -2
- package/es/date-picker/date-panel.js +20 -16
- package/es/date-picker/range-picker.d.ts +10 -10
- package/es/date-picker/range-picker.js +48 -46
- package/es/input/ClearableLabeledInput.js +1 -1
- package/es/select/interface.d.ts +1 -1
- package/es/select/select.js +18 -5
- package/es/tree/utils/treeUtils.js +11 -13
- package/es/upload/upload.d.ts +1 -1
- package/es/upload/upload.js +4 -3
- package/lib/button/button.js +2 -2
- package/lib/date-picker/date-panel.js +20 -16
- package/lib/date-picker/range-picker.d.ts +10 -10
- package/lib/date-picker/range-picker.js +46 -44
- package/lib/input/ClearableLabeledInput.js +1 -1
- package/lib/select/interface.d.ts +1 -1
- package/lib/select/select.js +18 -5
- package/lib/tree/utils/treeUtils.js +11 -13
- package/lib/upload/upload.d.ts +1 -1
- package/lib/upload/upload.js +41 -40
- package/package.json +4 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,34 @@
|
|
|
1
|
+
## [1.6.39](https://github.com/kdcloudone/kdesign/compare/v1.6.38...v1.6.39) (2023-03-09)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* [date-picker]修复面板箭头问题 ([fd693bd](https://github.com/kdcloudone/kdesign/commit/fd693bdde37606d8a0d44ae597a5c2882e9ff937))
|
|
7
|
+
* [date-picker]修复内存泄露问题 ([175e9aa](https://github.com/kdcloudone/kdesign/commit/175e9aae96a3c7abfb36153ad1353acda5e2a8e3))
|
|
8
|
+
* [date-picker]修复时间范围快速选择年月问题 ([7c2cf97](https://github.com/kdcloudone/kdesign/commit/7c2cf9726b744e693abe78c4b4e8ec0de6cbf88b))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
## [1.6.38](https://github.com/kdcloudone/kdesign/compare/v1.6.37...v1.6.38) (2023-03-02)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* [cli] 修复prettier版本更新导致的格式校验报错 ([1da0f06](https://github.com/kdcloudone/kdesign/commit/1da0f0602159dd542a2eb2788b1f4d713403e3a1))
|
|
18
|
+
* [image-cropper] 支持设置裁剪区域百分比 fix [#270](https://github.com/kdcloudone/kdesign/issues/270) ([e56d29e](https://github.com/kdcloudone/kdesign/commit/e56d29e62103c899f2a44c0b0baade79b6206b81))
|
|
19
|
+
* [radio] onChange 控制被选中项的bug [#273](https://github.com/kdcloudone/kdesign/issues/273) ([1676998](https://github.com/kdcloudone/kdesign/commit/1676998049a753bfbdd13b062f6709286e9b8d93))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
## [1.6.37](https://github.com/kdcloudone/kdesign/compare/v1.6.36...v1.6.37) (2023-02-28)
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### Bug Fixes
|
|
27
|
+
|
|
28
|
+
* [table]修复分组列收起后,拖拽列宽鼠标位置不正确 bug ([cc4fa11](https://github.com/kdcloudone/kdesign/commit/cc4fa116de9da24442c5a9db8cefd0e4d02f24e0))
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
1
32
|
## [1.6.36](https://github.com/kdcloudone/kdesign/compare/v1.6.35...v1.6.36) (2023-02-23)
|
|
2
33
|
|
|
3
34
|
|