@kdcloudjs/kdesign 1.0.4 → 1.1.0

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 (73) hide show
  1. package/dist/kdesign-complete.less +77 -59
  2. package/dist/kdesign.css +64 -60
  3. package/dist/kdesign.css.map +1 -1
  4. package/dist/kdesign.js +30 -46
  5. package/dist/kdesign.js.map +1 -1
  6. package/dist/kdesign.min.css +3 -3
  7. package/dist/kdesign.min.js +6 -6
  8. package/dist/kdesign.min.js.map +1 -1
  9. package/es/anchor/style/index.css +5 -0
  10. package/es/anchor/style/index.less +5 -0
  11. package/es/button/style/index.css +4 -4
  12. package/es/button/style/index.less +1 -1
  13. package/es/button/style/token.less +9 -9
  14. package/es/card/card.d.ts +1 -0
  15. package/es/card/card.js +4 -1
  16. package/es/card/style/index.css +16 -0
  17. package/es/card/style/index.less +19 -0
  18. package/es/config-provider/compDefaultProps.d.ts +0 -1
  19. package/es/config-provider/compDefaultProps.js +1 -2
  20. package/es/drawer/drawer.d.ts +0 -1
  21. package/es/drawer/drawer.js +6 -26
  22. package/es/drawer/style/index.css +8 -11
  23. package/es/drawer/style/index.less +7 -9
  24. package/es/drawer/style/token.less +3 -1
  25. package/es/dropdown/dropdown.d.ts +1 -0
  26. package/es/dropdown/dropdown.js +9 -6
  27. package/es/dropdown/menu.d.ts +1 -1
  28. package/es/dropdown/menu.js +3 -3
  29. package/es/menu/menuItem.js +1 -2
  30. package/es/notification/content.js +1 -1
  31. package/es/notification/style/index.css +1 -1
  32. package/es/notification/style/index.less +1 -1
  33. package/es/pagination/pagination.js +2 -2
  34. package/es/split-panel/style/index.css +24 -42
  35. package/es/split-panel/style/index.less +14 -33
  36. package/es/split-panel/style/token.less +15 -4
  37. package/es/transfer/operation.js +2 -2
  38. package/es/transfer/style/index.css +5 -1
  39. package/es/transfer/style/index.less +4 -0
  40. package/es/transfer/style/token.less +1 -1
  41. package/lib/anchor/style/index.css +5 -0
  42. package/lib/anchor/style/index.less +5 -0
  43. package/lib/button/style/index.css +4 -4
  44. package/lib/button/style/index.less +1 -1
  45. package/lib/button/style/token.less +9 -9
  46. package/lib/card/card.d.ts +1 -0
  47. package/lib/card/card.js +4 -1
  48. package/lib/card/style/index.css +16 -0
  49. package/lib/card/style/index.less +19 -0
  50. package/lib/config-provider/compDefaultProps.d.ts +0 -1
  51. package/lib/config-provider/compDefaultProps.js +1 -2
  52. package/lib/drawer/drawer.d.ts +0 -1
  53. package/lib/drawer/drawer.js +6 -26
  54. package/lib/drawer/style/index.css +8 -11
  55. package/lib/drawer/style/index.less +7 -9
  56. package/lib/drawer/style/token.less +3 -1
  57. package/lib/dropdown/dropdown.d.ts +1 -0
  58. package/lib/dropdown/dropdown.js +9 -6
  59. package/lib/dropdown/menu.d.ts +1 -1
  60. package/lib/dropdown/menu.js +3 -3
  61. package/lib/menu/menuItem.js +1 -2
  62. package/lib/notification/content.js +1 -1
  63. package/lib/notification/style/index.css +1 -1
  64. package/lib/notification/style/index.less +1 -1
  65. package/lib/pagination/pagination.js +2 -2
  66. package/lib/split-panel/style/index.css +24 -42
  67. package/lib/split-panel/style/index.less +14 -33
  68. package/lib/split-panel/style/token.less +15 -4
  69. package/lib/transfer/operation.js +2 -2
  70. package/lib/transfer/style/index.css +5 -1
  71. package/lib/transfer/style/index.less +4 -0
  72. package/lib/transfer/style/token.less +1 -1
  73. package/package.json +1 -1
@@ -178,9 +178,13 @@
178
178
  height: 28px;
179
179
  padding: 0 10px;
180
180
  box-sizing: border-box;
181
+ min-width:40px;
181
182
  & + .@{kd-prefix}-btn {
182
183
  margin-top: 20px;
183
184
  }
185
+ .@{kd-prefix}-btn-iconWrapper-left {
186
+ float: none;
187
+ }
184
188
  }
185
189
  }
186
190
  }
@@ -24,6 +24,6 @@
24
24
  // text
25
25
  @transfer-list-item-checked: var(~'@{transfer-custom-prefix}-list-item-color-text-checked', @color-theme);
26
26
  @transfer-list-item-disabled: var(~'@{transfer-custom-prefix}-list-item-color-text-disabled', @color-disabled);
27
- @transfer-search-prefix-icon-color: var(~'@{transfer-custom-prefix}-search-icon-color-text-prefix', @color-theme);
27
+ @transfer-search-prefix-icon-color: var(~'@{transfer-custom-prefix}-search-icon-color-text-prefix', #999);
28
28
  @transfer-search-suffix-icon-color: var(~'@{transfer-custom-prefix}-search-icon-color-text-suffix', #bbb);
29
29
  @transfer-search-suffix-icon-color-hover: var(~'@{transfer-custom-prefix}-search-icon-color-text-suffix-hover', #999);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kdcloudjs/kdesign",
3
- "version": "1.0.4",
3
+ "version": "1.1.0",
4
4
  "description": "KDesign 金蝶前端react 组件库",
5
5
  "title": "kdesign",
6
6
  "keywords": [