bkui-vue 0.0.1-beta.43 → 0.0.1-beta.44

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 (53) hide show
  1. package/dist/index.cjs.js +20 -20
  2. package/dist/index.esm.js +170 -23
  3. package/dist/index.umd.js +20 -20
  4. package/dist/style.css +1 -1
  5. package/lib/alert/alert.variable.css +1 -0
  6. package/lib/backtop/backtop.variable.css +1 -0
  7. package/lib/badge/badge.variable.css +1 -0
  8. package/lib/breadcrumb/breadcrumb.variable.css +1 -0
  9. package/lib/button/button.variable.css +1 -0
  10. package/lib/card/card.variable.css +1 -0
  11. package/lib/checkbox/checkbox.variable.css +1 -0
  12. package/lib/code-diff/code-diff.variable.css +1 -0
  13. package/lib/date-picker/date-picker.variable.css +1 -0
  14. package/lib/divider/divider.variable.css +1 -0
  15. package/lib/dropdown/dropdown.variable.css +1 -0
  16. package/lib/exception/exception.variable.css +1 -0
  17. package/lib/fixed-navbar/fixed-navbar.variable.css +1 -0
  18. package/lib/input/input.variable.css +1 -0
  19. package/lib/link/link.variable.css +1 -0
  20. package/lib/loading/loading.variable.css +1 -0
  21. package/lib/menu/menu.variable.css +1 -0
  22. package/lib/menu/submenu.variable.css +1 -0
  23. package/lib/message/message.variable.css +1 -0
  24. package/lib/navigation/navigation.variable.css +1 -0
  25. package/lib/notify/notify.variable.css +1 -0
  26. package/lib/pagination/pagination.variable.css +1 -0
  27. package/lib/popover/popover.variable.css +1 -0
  28. package/lib/process/process.variable.css +1 -0
  29. package/lib/progress/progress.variable.css +1 -0
  30. package/lib/radio/radio.variable.css +1 -0
  31. package/lib/resize-layout/resize-layout.variable.css +1 -0
  32. package/lib/select/select.variable.css +1 -0
  33. package/lib/sideslider/sideslider.variable.css +1 -0
  34. package/lib/slider/slider.variable.css +1 -0
  35. package/lib/steps/steps.variable.css +1 -0
  36. package/lib/styles/themes/themes.less +1 -0
  37. package/lib/switcher/switcher.variable.css +1 -0
  38. package/lib/tab/tab.variable.css +1 -0
  39. package/lib/table/index.d.ts +4 -0
  40. package/lib/table/props.d.ts +20 -1
  41. package/lib/table/render.d.ts +32 -0
  42. package/lib/table/table.css +29 -3
  43. package/lib/table/table.d.ts +2 -0
  44. package/lib/table/table.js +1 -1
  45. package/lib/table/table.less +31 -5
  46. package/lib/table/table.variable.css +32 -5
  47. package/lib/table/utils.d.ts +13 -0
  48. package/lib/tag/tag.variable.css +1 -0
  49. package/lib/tag-input/tag-input.variable.css +1 -0
  50. package/lib/timeline/timeline.variable.css +1 -0
  51. package/lib/transfer/transfer.variable.css +1 -0
  52. package/lib/tree/tree.variable.css +1 -0
  53. package/package.json +1 -1
@@ -67,3 +67,16 @@ export declare const isPercentPixOrNumber: (val: string | number) => boolean;
67
67
  * @returns 返回值
68
68
  */
69
69
  export declare const resolvePaginationOption: (propPagination: any, defVal: any) => any;
70
+ /**
71
+ * Format Table Head Option
72
+ * @param props
73
+ * @returns
74
+ */
75
+ export declare const resolveHeadConfig: (props: TablePropTypes) => {
76
+ isShow: boolean;
77
+ height: number;
78
+ } & {
79
+ height?: Number;
80
+ isShow?: boolean;
81
+ cellFn?: Function;
82
+ };
@@ -90,6 +90,7 @@
90
90
  --table-head-font-color: #313238;
91
91
  --table-body-font-color: #575961;
92
92
  --table-row-hover-bg-color: #f5f7fa;
93
+ --table-row-active-bg-color: #f0f1f5;
93
94
  }
94
95
  .bk-tag {
95
96
  display: inline-flex;
@@ -90,6 +90,7 @@
90
90
  --table-head-font-color: #313238;
91
91
  --table-body-font-color: #575961;
92
92
  --table-row-hover-bg-color: #f5f7fa;
93
+ --table-row-active-bg-color: #f0f1f5;
93
94
  }
94
95
  .bk-tag-input {
95
96
  position: relative;
@@ -90,6 +90,7 @@
90
90
  --table-head-font-color: #313238;
91
91
  --table-body-font-color: #575961;
92
92
  --table-row-hover-bg-color: #f5f7fa;
93
+ --table-row-active-bg-color: #f0f1f5;
93
94
  }
94
95
  * {
95
96
  box-sizing: border-box;
@@ -90,6 +90,7 @@
90
90
  --table-head-font-color: #313238;
91
91
  --table-body-font-color: #575961;
92
92
  --table-row-hover-bg-color: #f5f7fa;
93
+ --table-row-active-bg-color: #f0f1f5;
93
94
  }
94
95
  /* 边框色 */
95
96
  /* 按钮、表单边框颜色、禁用时文本颜色 */
@@ -90,6 +90,7 @@
90
90
  --table-head-font-color: #313238;
91
91
  --table-body-font-color: #575961;
92
92
  --table-row-hover-bg-color: #f5f7fa;
93
+ --table-row-active-bg-color: #f0f1f5;
93
94
  }
94
95
  .bk-tree .bk-node-row {
95
96
  padding-left: calc(var(--offset-left));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bkui-vue",
3
- "version": "0.0.1-beta.43",
3
+ "version": "0.0.1-beta.44",
4
4
  "workspaces": {
5
5
  "packages": [
6
6
  "packages/!(**.bak)*",