@kdcloudjs/kdesign 1.7.33-stable.2 → 1.7.33-stable.4

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.
Files changed (38) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/dist/kdesign-complete.less +18 -16
  3. package/dist/kdesign.css +8 -9
  4. package/dist/kdesign.css.map +1 -1
  5. package/dist/kdesign.js +730 -199
  6. package/dist/kdesign.js.map +1 -1
  7. package/dist/kdesign.min.css +3 -3
  8. package/dist/kdesign.min.js +5 -5
  9. package/dist/kdesign.min.js.map +1 -1
  10. package/es/checkbox/checkbox.js +7 -7
  11. package/es/checkbox/style/index.css +0 -4
  12. package/es/checkbox/style/index.less +0 -4
  13. package/es/input/TextArea.js +16 -8
  14. package/es/input/style/index.css +3 -0
  15. package/es/input/style/index.less +9 -5
  16. package/es/select/select.js +1 -1
  17. package/es/select/style/index.css +4 -4
  18. package/es/select/style/index.less +9 -7
  19. package/es/table/feature/useRowDrag.d.ts +3 -0
  20. package/es/table/feature/useRowDrag.js +10 -0
  21. package/es/table/interface.d.ts +3 -1
  22. package/es/table/table.js +4 -1
  23. package/es/tree-select/tree-select.js +2 -2
  24. package/lib/checkbox/checkbox.js +7 -7
  25. package/lib/checkbox/style/index.css +0 -4
  26. package/lib/checkbox/style/index.less +0 -4
  27. package/lib/input/TextArea.js +16 -8
  28. package/lib/input/style/index.css +3 -0
  29. package/lib/input/style/index.less +9 -5
  30. package/lib/select/select.js +1 -1
  31. package/lib/select/style/index.css +4 -4
  32. package/lib/select/style/index.less +9 -7
  33. package/lib/table/feature/useRowDrag.d.ts +3 -0
  34. package/lib/table/feature/useRowDrag.js +18 -0
  35. package/lib/table/interface.d.ts +3 -1
  36. package/lib/table/table.js +4 -1
  37. package/lib/tree-select/tree-select.js +4 -4
  38. 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
 
@@ -2396,10 +2396,6 @@
2396
2396
  &-margin {
2397
2397
  margin-right: @checkbox-default-input-margin-right;
2398
2398
  }
2399
- &-no-child {
2400
- height: 100%;
2401
- width: 100%;
2402
- }
2403
2399
  &-checked-disabled {
2404
2400
  background-color: @checkbox-default-disabled-color-bg !important;
2405
2401
  border-color: @checkbox-default-disabled-color-border !important;
@@ -5843,12 +5839,16 @@ textarea {
5843
5839
  font-size: @input-small-font-size-inner;
5844
5840
  line-height: 18px;
5845
5841
  background-color: #fff;
5846
- }
5847
5842
 
5848
- &-mark-inner {
5849
- top: auto;
5850
- bottom: 5px;
5851
- right: 8px;
5843
+ &-inner {
5844
+ top: auto;
5845
+ bottom: 5px;
5846
+ right: 8px;
5847
+ }
5848
+
5849
+ &-error {
5850
+ color: @input-error-color;
5851
+ }
5852
5852
  }
5853
5853
  }
5854
5854
 
@@ -10167,13 +10167,15 @@ textarea {
10167
10167
  }
10168
10168
  }
10169
10169
 
10170
- &.topLeft.hidden,
10171
- &.bottomLeft.hidden,
10172
- &.topRight.hidden,
10173
- &.bottomRight.hidden {
10174
- opacity: 0;
10175
- visibility: hidden;
10176
- transition: all calc(@transition-duration - 0.1s) @ease;
10170
+ &-dropdown-panel {
10171
+ &.topLeft.hidden,
10172
+ &.bottomLeft.hidden,
10173
+ &.topRight.hidden,
10174
+ &.bottomRight.hidden {
10175
+ opacity: 0;
10176
+ visibility: hidden;
10177
+ transition: all calc(@transition-duration - 0.1s) @ease;
10178
+ }
10177
10179
  }
10178
10180
  }
10179
10181
 
package/dist/kdesign.css CHANGED
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  *
3
- * @kdcloudjs/kdesign v1.7.33-stable.1
3
+ * @kdcloudjs/kdesign v1.7.33-stable.3
4
4
  *
5
5
  * Copyright 2020-present, Kingdee, Inc.
6
6
  * All rights reserved.
@@ -5210,10 +5210,6 @@ template {
5210
5210
  .kd-checkbox-default-margin {
5211
5211
  margin-right: var(--kd-c-checkbox-default-input-spacing-margin-right, 4px);
5212
5212
  }
5213
- .kd-checkbox-default-no-child {
5214
- height: 100%;
5215
- width: 100%;
5216
- }
5217
5213
  .kd-checkbox-default-checked-disabled {
5218
5214
  background-color: var(--kd-c-checkbox-default-color-background-disabled, #e5e5e5) !important;
5219
5215
  border-color: var(--kd-c-checkbox-default-color-background-disabled, #d9d9d9) !important;
@@ -9941,6 +9937,9 @@ textarea {
9941
9937
  bottom: 5px;
9942
9938
  right: 8px;
9943
9939
  }
9940
+ .kd-input-textarea-mark-error {
9941
+ color: var(--kd-c-input-color-error, var(--kd-g-color-error, #fb2323));
9942
+ }
9944
9943
  .kd-input-no-resize {
9945
9944
  resize: none;
9946
9945
  }
@@ -15552,10 +15551,10 @@ textarea {
15552
15551
  color: var(--kd-c-select-footer-color-text-selected, #0e5fd8);
15553
15552
  padding: 0 2px;
15554
15553
  }
15555
- .kd-select.topLeft.hidden,
15556
- .kd-select.bottomLeft.hidden,
15557
- .kd-select.topRight.hidden,
15558
- .kd-select.bottomRight.hidden {
15554
+ .kd-select-dropdown-panel.topLeft.hidden,
15555
+ .kd-select-dropdown-panel.bottomLeft.hidden,
15556
+ .kd-select-dropdown-panel.topRight.hidden,
15557
+ .kd-select-dropdown-panel.bottomRight.hidden {
15559
15558
  opacity: 0;
15560
15559
  visibility: hidden;
15561
15560
  -webkit-transition: all calc(0.3s - 0.1s) cubic-bezier(0.4, 0, 0.6, 1);