bkui-vue 0.0.1-beta.23 → 0.0.1-beta.230

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 (608) hide show
  1. package/dist/index.cjs.js +173 -0
  2. package/dist/index.esm.js +38108 -0
  3. package/dist/index.umd.js +173 -0
  4. package/dist/style.css +1 -5099
  5. package/dist/style.variable.css +1 -0
  6. package/lib/affix/affix.css +3 -0
  7. package/lib/affix/affix.d.ts +47 -0
  8. package/lib/affix/affix.less +5 -0
  9. package/lib/affix/affix.variable.css +122 -0
  10. package/lib/affix/index.d.ts +143 -0
  11. package/lib/affix/index.js +1 -0
  12. package/lib/alert/alert.css +5 -3
  13. package/lib/alert/alert.less +7 -3
  14. package/lib/alert/alert.variable.css +34 -6
  15. package/lib/alert/index.js +1 -1
  16. package/lib/animate-number/index.js +1 -1
  17. package/lib/backtop/backtop.css +8 -0
  18. package/lib/backtop/backtop.d.ts +2 -2
  19. package/lib/backtop/backtop.less +8 -0
  20. package/lib/backtop/backtop.variable.css +37 -3
  21. package/lib/backtop/index.d.ts +7 -7
  22. package/lib/backtop/index.js +1 -10
  23. package/lib/badge/badge.css +5 -5
  24. package/lib/badge/badge.d.ts +28 -7
  25. package/lib/badge/badge.less +5 -6
  26. package/lib/badge/badge.variable.css +34 -8
  27. package/lib/badge/index.d.ts +68 -18
  28. package/lib/badge/index.js +1 -1
  29. package/lib/breadcrumb/breadcrumb.css +51 -0
  30. package/lib/breadcrumb/breadcrumb.variable.css +80 -3
  31. package/lib/breadcrumb/index.js +1 -1
  32. package/lib/button/button.css +87 -49
  33. package/lib/button/button.d.ts +28 -7
  34. package/lib/button/button.less +74 -41
  35. package/lib/button/button.variable.css +116 -52
  36. package/lib/button/index.d.ts +45 -12
  37. package/lib/button/index.js +1 -1
  38. package/lib/card/card.css +96 -1
  39. package/lib/card/card.d.ts +47 -6
  40. package/lib/card/card.less +50 -2
  41. package/lib/card/card.variable.css +125 -4
  42. package/lib/card/index.d.ts +113 -17
  43. package/lib/card/index.js +1 -1
  44. package/lib/cascader/cascader-panel.d.ts +100 -0
  45. package/lib/cascader/cascader.css +173 -0
  46. package/lib/cascader/cascader.d.ts +303 -0
  47. package/lib/cascader/cascader.less +196 -0
  48. package/lib/cascader/cascader.variable.css +292 -0
  49. package/lib/cascader/index.d.ts +868 -0
  50. package/lib/cascader/index.js +1 -0
  51. package/lib/cascader/interface.d.ts +51 -0
  52. package/lib/cascader/node.d.ts +31 -0
  53. package/lib/cascader/store.d.ts +23 -0
  54. package/lib/checkbox/checkbox-group.d.ts +16 -0
  55. package/lib/checkbox/checkbox.css +38 -6
  56. package/lib/checkbox/checkbox.d.ts +16 -14
  57. package/lib/checkbox/checkbox.less +48 -6
  58. package/lib/checkbox/checkbox.variable.css +67 -9
  59. package/lib/checkbox/common.d.ts +3 -3
  60. package/lib/checkbox/index.d.ts +40 -23
  61. package/lib/checkbox/index.js +1 -1
  62. package/lib/checkbox/type.d.ts +2 -6
  63. package/lib/code-diff/code-diff.css +72 -1
  64. package/lib/code-diff/code-diff.d.ts +10 -1
  65. package/lib/code-diff/code-diff.less +94 -1
  66. package/lib/code-diff/code-diff.variable.css +101 -4
  67. package/lib/code-diff/index.d.ts +151 -3
  68. package/lib/code-diff/index.js +1 -0
  69. package/lib/collapse/collapse-panel.d.ts +72 -0
  70. package/lib/collapse/collapse.css +28 -12
  71. package/lib/collapse/collapse.d.ts +11 -52
  72. package/lib/collapse/collapse.less +54 -29
  73. package/lib/collapse/collapse.variable.css +147 -12
  74. package/lib/collapse/index.d.ts +113 -16
  75. package/lib/collapse/index.js +1 -1
  76. package/lib/collapse/props.d.ts +121 -0
  77. package/lib/collapse/utils.d.ts +11 -0
  78. package/lib/color-picker/color-picker.css +275 -0
  79. package/lib/color-picker/color-picker.d.ts +144 -0
  80. package/lib/color-picker/color-picker.less +325 -0
  81. package/lib/color-picker/color-picker.variable.css +394 -0
  82. package/lib/color-picker/components/color-input.d.ts +42 -0
  83. package/lib/color-picker/components/hue-slider.d.ts +41 -0
  84. package/lib/color-picker/components/input-container.d.ts +42 -0
  85. package/lib/color-picker/components/recommend-colors.d.ts +51 -0
  86. package/lib/color-picker/components/saturation-panel.d.ts +41 -0
  87. package/lib/color-picker/index.d.ts +254 -0
  88. package/lib/color-picker/index.js +1 -0
  89. package/lib/color-picker/utils.d.ts +37 -0
  90. package/lib/components.d.ts +28 -7
  91. package/lib/components.js +1 -0
  92. package/lib/container/col.d.ts +51 -0
  93. package/lib/container/container.css +91 -0
  94. package/lib/container/container.d.ts +83 -0
  95. package/lib/container/container.less +20 -0
  96. package/lib/container/container.variable.css +210 -0
  97. package/lib/container/index.d.ts +223 -0
  98. package/lib/container/index.js +1 -0
  99. package/lib/container/row.d.ts +4 -0
  100. package/lib/date-picker/base/confirm.d.ts +74 -0
  101. package/lib/date-picker/base/date-table.d.ts +102 -0
  102. package/lib/date-picker/base/picker-dropdown.d.ts +73 -0
  103. package/lib/date-picker/base/time-spinner.d.ts +153 -0
  104. package/lib/date-picker/date-picker.css +18 -2
  105. package/lib/date-picker/date-picker.d.ts +40 -13
  106. package/lib/date-picker/date-picker.less +23 -2
  107. package/lib/date-picker/date-picker.variable.css +47 -5
  108. package/lib/date-picker/index.d.ts +100 -39
  109. package/lib/date-picker/index.js +1 -1
  110. package/lib/date-picker/interface.d.ts +9 -0
  111. package/lib/date-picker/panel/date-range.d.ts +452 -0
  112. package/lib/date-picker/panel/date.d.ts +550 -0
  113. package/lib/date-picker/panel/time.d.ts +450 -0
  114. package/lib/date-picker/props.d.ts +51 -1
  115. package/lib/date-picker/time-picker.d.ts +381 -0
  116. package/lib/date-picker/utils.d.ts +22 -1
  117. package/lib/dialog/dialog.css +144 -22
  118. package/lib/dialog/dialog.d.ts +275 -58
  119. package/lib/dialog/dialog.less +97 -23
  120. package/lib/dialog/dialog.variable.css +144 -22
  121. package/lib/dialog/index.d.ts +607 -130
  122. package/lib/dialog/index.js +1 -1
  123. package/lib/dialog/props.d.ts +138 -0
  124. package/lib/directives/ellipsis.d.ts +7 -0
  125. package/lib/directives/index.d.ts +1 -0
  126. package/lib/directives/index.js +2 -15
  127. package/lib/directives/index.js.LICENSE.txt +14 -0
  128. package/lib/directives/tooltips.d.ts +1 -1
  129. package/lib/dist.index.js +1 -0
  130. package/lib/divider/divider.d.ts +1 -1
  131. package/lib/divider/divider.variable.css +29 -3
  132. package/lib/divider/index.d.ts +4 -4
  133. package/lib/divider/index.js +1 -1
  134. package/lib/divider/props.d.ts +21 -0
  135. package/lib/dropdown/const.d.ts +4 -0
  136. package/lib/dropdown/dropdown.css +13 -7
  137. package/lib/dropdown/dropdown.d.ts +34 -3
  138. package/lib/dropdown/dropdown.less +47 -34
  139. package/lib/dropdown/dropdown.variable.css +42 -10
  140. package/lib/dropdown/index.d.ts +71 -10
  141. package/lib/dropdown/index.js +1 -1
  142. package/lib/exception/exception.css +40 -14
  143. package/lib/exception/exception.d.ts +10 -3
  144. package/lib/exception/exception.less +59 -22
  145. package/lib/exception/exception.variable.css +69 -17
  146. package/lib/exception/index.d.ts +23 -8
  147. package/lib/exception/index.js +1 -1
  148. package/lib/exception/typings/index.d.ts +4 -0
  149. package/lib/fixed-navbar/fixed-navbar.d.ts +16 -2
  150. package/lib/fixed-navbar/fixed-navbar.variable.css +29 -3
  151. package/lib/fixed-navbar/index.d.ts +40 -5
  152. package/lib/fixed-navbar/index.js +1 -1
  153. package/lib/form/compose-form-item.d.ts +16 -0
  154. package/lib/form/form-item.d.ts +16 -5
  155. package/lib/form/form.css +96 -12
  156. package/lib/form/form.d.ts +28 -11
  157. package/lib/form/form.less +144 -45
  158. package/lib/form/form.variable.css +215 -12
  159. package/lib/form/index.d.ts +88 -30
  160. package/lib/form/index.js +1 -1
  161. package/lib/form/type.d.ts +8 -6
  162. package/lib/form/validator.d.ts +1 -0
  163. package/lib/icon/angle-double-down-line.js +1 -15
  164. package/lib/icon/angle-double-left-line.js +1 -15
  165. package/lib/icon/angle-double-left.js +1 -15
  166. package/lib/icon/angle-double-right-line.js +1 -15
  167. package/lib/icon/angle-double-right.js +1 -15
  168. package/lib/icon/angle-double-up-line.js +1 -15
  169. package/lib/icon/angle-down-fill.js +1 -15
  170. package/lib/icon/angle-down-line.js +1 -15
  171. package/lib/icon/angle-down.js +1 -15
  172. package/lib/icon/angle-left.js +1 -15
  173. package/lib/icon/angle-right.js +1 -15
  174. package/lib/icon/angle-up-fill.js +1 -15
  175. package/lib/icon/angle-up.js +1 -15
  176. package/lib/icon/archive-fill.d.ts +4 -0
  177. package/lib/icon/archive-fill.js +1 -0
  178. package/lib/icon/arrows-left.js +1 -15
  179. package/lib/icon/arrows-right.js +1 -15
  180. package/lib/icon/audio-fill.d.ts +4 -0
  181. package/lib/icon/audio-fill.js +1 -0
  182. package/lib/icon/bk.js +1 -15
  183. package/lib/icon/circle.js +1 -15
  184. package/lib/icon/close-line.d.ts +4 -0
  185. package/lib/icon/close-line.js +1 -0
  186. package/lib/icon/close.js +1 -15
  187. package/lib/icon/code.js +1 -15
  188. package/lib/icon/cog-shape.js +1 -15
  189. package/lib/icon/collapse-left.js +1 -15
  190. package/lib/icon/copy.js +1 -15
  191. package/lib/icon/data-shape.d.ts +4 -0
  192. package/lib/icon/data-shape.js +1 -0
  193. package/lib/icon/del.d.ts +4 -0
  194. package/lib/icon/del.js +1 -0
  195. package/lib/icon/doc-fill.d.ts +4 -0
  196. package/lib/icon/doc-fill.js +1 -0
  197. package/lib/icon/done.js +1 -15
  198. package/lib/icon/down-shape.js +1 -15
  199. package/lib/icon/down-small.js +1 -15
  200. package/lib/icon/edit-line.d.ts +4 -0
  201. package/lib/icon/edit-line.js +1 -0
  202. package/lib/icon/ellipsis.js +1 -15
  203. package/lib/icon/enlarge-line.d.ts +4 -0
  204. package/lib/icon/enlarge-line.js +1 -0
  205. package/lib/icon/error.js +1 -15
  206. package/lib/icon/excel-fill.d.ts +4 -0
  207. package/lib/icon/excel-fill.js +1 -0
  208. package/lib/icon/exclamation-circle-shape.d.ts +4 -0
  209. package/lib/icon/exclamation-circle-shape.js +1 -0
  210. package/lib/icon/eye.js +1 -15
  211. package/lib/icon/filliscreen-line.d.ts +4 -0
  212. package/lib/icon/filliscreen-line.js +1 -0
  213. package/lib/icon/folder-open.js +1 -15
  214. package/lib/icon/folder-shape-open.js +1 -15
  215. package/lib/icon/folder-shape.js +1 -15
  216. package/lib/icon/folder.js +1 -15
  217. package/lib/icon/funnel.d.ts +4 -0
  218. package/lib/icon/funnel.js +1 -0
  219. package/lib/icon/help-document-fill.js +1 -15
  220. package/lib/icon/help-fill.js +1 -15
  221. package/lib/icon/help.js +1 -15
  222. package/lib/icon/image-fill.d.ts +4 -0
  223. package/lib/icon/img-error.d.ts +4 -0
  224. package/lib/icon/img-error.js +1 -0
  225. package/lib/icon/img-placehoulder.d.ts +4 -0
  226. package/lib/icon/img-placehoulder.js +1 -0
  227. package/lib/icon/index.d.ts +27 -1
  228. package/lib/icon/index.js +1 -15
  229. package/lib/icon/info-line.js +1 -15
  230. package/lib/icon/info.js +1 -15
  231. package/lib/icon/left-shape.js +1 -15
  232. package/lib/icon/left-turn-line.d.ts +4 -0
  233. package/lib/icon/left-turn-line.js +1 -0
  234. package/lib/icon/narrow-line.d.ts +4 -0
  235. package/lib/icon/narrow-line.js +1 -0
  236. package/lib/icon/original .d.ts +4 -0
  237. package/lib/icon/original .js +1 -0
  238. package/lib/icon/pdf-fill.d.ts +4 -0
  239. package/lib/icon/pdf-fill.js +1 -0
  240. package/lib/icon/play-shape.js +1 -15
  241. package/lib/icon/plus.js +1 -15
  242. package/lib/icon/ppt-fill.d.ts +4 -0
  243. package/lib/icon/ppt-fill.js +1 -0
  244. package/lib/icon/qq.js +1 -15
  245. package/lib/icon/right-shape.js +1 -15
  246. package/lib/icon/right-turn-line.d.ts +4 -0
  247. package/lib/icon/right-turn-line.js +1 -0
  248. package/lib/icon/search.js +1 -15
  249. package/lib/icon/share.js +1 -15
  250. package/lib/icon/spinner.js +1 -15
  251. package/lib/icon/success.js +1 -15
  252. package/lib/icon/switcher-loading.js +1 -15
  253. package/lib/icon/text-file.js +1 -15
  254. package/lib/icon/text-fill.d.ts +4 -0
  255. package/lib/icon/text-fill.js +1 -0
  256. package/lib/icon/transfer.d.ts +4 -0
  257. package/lib/icon/transfer.js +1 -0
  258. package/lib/icon/tree-application-shape.js +1 -15
  259. package/lib/icon/unfull-screen.d.ts +4 -0
  260. package/lib/icon/unfull-screen.js +1 -0
  261. package/lib/icon/unvisible.js +1 -15
  262. package/lib/icon/up-shape.js +1 -15
  263. package/lib/icon/upload.d.ts +4 -0
  264. package/lib/icon/upload.js +1 -0
  265. package/lib/icon/video-fill.d.ts +4 -0
  266. package/lib/icon/video-fill.js +1 -0
  267. package/lib/icon/warn.js +1 -15
  268. package/lib/icon/weixin.js +1 -15
  269. package/lib/image/image-viewer.css +142 -0
  270. package/lib/image/image-viewer.d.ts +73 -0
  271. package/lib/image/image-viewer.less +168 -0
  272. package/lib/image/image-viewer.variable.css +142 -0
  273. package/lib/image/image.css +37 -0
  274. package/lib/image/image.d.ts +93 -0
  275. package/lib/image/image.less +44 -0
  276. package/lib/image/image.variable.css +37 -0
  277. package/lib/image/index.d.ts +246 -0
  278. package/lib/image/index.js +1 -0
  279. package/lib/image/props.d.ts +71 -0
  280. package/lib/index.d.ts +1 -1
  281. package/lib/index.js +1 -0
  282. package/lib/info-box/index.d.ts +6 -0
  283. package/lib/info-box/index.js +1 -0
  284. package/lib/info-box/info-box.css +37 -0
  285. package/lib/info-box/info-box.d.ts +26 -0
  286. package/lib/info-box/info-box.less +50 -0
  287. package/lib/info-box/info-box.variable.css +37 -0
  288. package/lib/input/index.d.ts +171 -60
  289. package/lib/input/index.js +1 -15
  290. package/lib/input/input.css +216 -18
  291. package/lib/input/input.d.ts +116 -16
  292. package/lib/input/input.less +157 -17
  293. package/lib/input/input.variable.css +242 -17
  294. package/lib/link/index.d.ts +4 -4
  295. package/lib/link/index.js +1 -1
  296. package/lib/link/link.css +12 -12
  297. package/lib/link/link.d.ts +1 -1
  298. package/lib/link/link.less +16 -14
  299. package/lib/link/link.variable.css +41 -15
  300. package/lib/loading/index.d.ts +107 -13
  301. package/lib/loading/index.js +1 -1
  302. package/lib/loading/loading.css +83 -31
  303. package/lib/loading/loading.d.ts +74 -5
  304. package/lib/loading/loading.less +28 -30
  305. package/lib/loading/loading.variable.css +112 -34
  306. package/lib/menu/index.d.ts +16 -24
  307. package/lib/menu/index.js +1 -1
  308. package/lib/menu/menu.css +51 -0
  309. package/lib/menu/menu.d.ts +7 -16
  310. package/lib/menu/menu.variable.css +80 -3
  311. package/lib/menu/submenu.variable.css +29 -3
  312. package/lib/message/index.js +1 -1
  313. package/lib/message/message.css +24 -3
  314. package/lib/message/message.less +27 -2
  315. package/lib/message/message.variable.css +53 -6
  316. package/lib/message/messageConstructor.d.ts +43 -7
  317. package/lib/modal/index.d.ts +508 -78
  318. package/lib/modal/index.js +1 -1
  319. package/lib/modal/modal.css +63 -1
  320. package/lib/modal/modal.d.ts +194 -30
  321. package/lib/modal/modal.less +36 -1
  322. package/lib/modal/modal.variable.css +63 -1
  323. package/lib/modal/props.mixin.d.ts +82 -13
  324. package/lib/navigation/index.d.ts +310 -1
  325. package/lib/navigation/index.js +1 -1
  326. package/lib/navigation/navigation.css +1 -1
  327. package/lib/navigation/navigation.d.ts +10 -1
  328. package/lib/navigation/navigation.less +1 -1
  329. package/lib/navigation/navigation.variable.css +30 -4
  330. package/lib/notify/index.js +1 -1
  331. package/lib/notify/notify.css +24 -4
  332. package/lib/notify/notify.less +27 -4
  333. package/lib/notify/notify.variable.css +53 -7
  334. package/lib/notify/notifyConstructor.d.ts +51 -7
  335. package/lib/pagination/index.d.ts +38 -23
  336. package/lib/pagination/index.js +1 -1
  337. package/lib/pagination/pagination.css +54 -28
  338. package/lib/pagination/pagination.d.ts +17 -7
  339. package/lib/pagination/pagination.less +58 -31
  340. package/lib/pagination/pagination.variable.css +83 -31
  341. package/lib/pagination/type.d.ts +1 -1
  342. package/lib/plugin-popover/index.d.ts +27 -0
  343. package/lib/plugin-popover/index.js +1 -0
  344. package/lib/plugins/index.d.ts +1 -0
  345. package/lib/plugins/index.js +1 -0
  346. package/lib/popover/index.d.ts +146 -21
  347. package/lib/popover/index.js +1 -1
  348. package/lib/popover/popover.css +3 -0
  349. package/lib/popover/popover.d.ts +67 -8
  350. package/lib/popover/popover.less +2 -0
  351. package/lib/popover/popover.variable.css +32 -3
  352. package/lib/popover/props.d.ts +34 -2
  353. package/lib/popover2/arrow.d.ts +2 -0
  354. package/lib/popover2/const.d.ts +16 -0
  355. package/lib/popover2/content.d.ts +24 -0
  356. package/lib/popover2/index.d.ts +545 -0
  357. package/lib/popover2/index.js +1 -0
  358. package/lib/popover2/plugin-popover.d.ts +12 -0
  359. package/lib/popover2/popover2.css +25 -0
  360. package/lib/popover2/popover2.d.ts +228 -0
  361. package/lib/popover2/popover2.less +35 -0
  362. package/lib/popover2/popover2.variable.css +144 -0
  363. package/lib/popover2/props.d.ts +118 -0
  364. package/lib/popover2/reference.d.ts +2 -0
  365. package/lib/popover2/root.d.ts +16 -0
  366. package/lib/popover2/use-floating.d.ts +31 -0
  367. package/lib/popover2/use-platform.d.ts +30 -0
  368. package/lib/popover2/use-popover-init.d.ts +22 -0
  369. package/lib/popover2/use-popper-id.d.ts +6 -0
  370. package/lib/popover2/utils.d.ts +2 -0
  371. package/lib/preset.js +1 -0
  372. package/lib/process/index.d.ts +9 -9
  373. package/lib/process/index.js +1 -15
  374. package/lib/process/process.css +13 -0
  375. package/lib/process/process.d.ts +2 -2
  376. package/lib/process/process.less +17 -0
  377. package/lib/process/process.variable.css +42 -3
  378. package/lib/progress/index.d.ts +10 -10
  379. package/lib/progress/index.js +1 -1
  380. package/lib/progress/progress.css +51 -0
  381. package/lib/progress/progress.d.ts +3 -3
  382. package/lib/progress/progress.variable.css +80 -3
  383. package/lib/radio/common.d.ts +5 -5
  384. package/lib/radio/index.d.ts +29 -18
  385. package/lib/radio/index.js +1 -1
  386. package/lib/radio/radio-button.d.ts +7 -8
  387. package/lib/radio/radio-group.d.ts +16 -0
  388. package/lib/radio/radio.css +61 -56
  389. package/lib/radio/radio.d.ts +4 -4
  390. package/lib/radio/radio.less +181 -172
  391. package/lib/radio/radio.variable.css +93 -62
  392. package/lib/radio/type.d.ts +9 -4
  393. package/lib/rate/index.d.ts +24 -1
  394. package/lib/rate/index.js +1 -1
  395. package/lib/rate/rate.d.ts +11 -0
  396. package/lib/rate/star.d.ts +1 -1
  397. package/lib/resize-layout/index.d.ts +336 -0
  398. package/lib/resize-layout/index.js +1 -0
  399. package/lib/resize-layout/resize-layout.css +177 -0
  400. package/lib/resize-layout/resize-layout.d.ts +127 -0
  401. package/lib/resize-layout/resize-layout.less +217 -0
  402. package/lib/resize-layout/resize-layout.variable.css +296 -0
  403. package/lib/search-select/index.d.ts +681 -0
  404. package/lib/search-select/index.js +1 -0
  405. package/lib/search-select/input.d.ts +85 -0
  406. package/lib/search-select/menu.d.ts +83 -0
  407. package/lib/search-select/search-select.css +423 -0
  408. package/lib/search-select/search-select.d.ts +273 -0
  409. package/lib/search-select/search-select.less +375 -0
  410. package/lib/search-select/search-select.variable.css +542 -0
  411. package/lib/search-select/selected.d.ts +137 -0
  412. package/lib/search-select/utils.d.ts +79 -0
  413. package/lib/select/common.d.ts +20 -31
  414. package/lib/select/index.d.ts +1422 -451
  415. package/lib/select/index.js +1 -15
  416. package/lib/select/option.d.ts +16 -4
  417. package/lib/select/optionGroup.d.ts +1 -77
  418. package/lib/select/select.css +265 -80
  419. package/lib/select/select.d.ts +553 -126
  420. package/lib/select/select.less +366 -185
  421. package/lib/select/select.variable.css +295 -84
  422. package/lib/select/selectTagInput.d.ts +93 -0
  423. package/lib/select/type.d.ts +39 -0
  424. package/lib/shared/dom.d.ts +3 -0
  425. package/lib/shared/{bk-helper-core.d.ts → helper.d.ts} +0 -0
  426. package/lib/shared/hooks/use-form-item.d.ts +2 -0
  427. package/lib/shared/hooks/use-form.d.ts +2 -0
  428. package/lib/shared/index.d.ts +27 -4
  429. package/lib/shared/index.js +1 -1
  430. package/lib/shared/{bk-mask-manager.d.ts → mask-manager.d.ts} +6 -2
  431. package/lib/shared/{bk-pop-manager.d.ts → pop-manager.d.ts} +8 -4
  432. package/lib/shared/{bk-popover.d.ts → popover.d.ts} +6 -2
  433. package/lib/shared/token.d.ts +4 -0
  434. package/lib/shared/utils.d.ts +13 -0
  435. package/lib/shared/vue-types.d.ts +4 -0
  436. package/lib/sideslider/index.d.ts +391 -76
  437. package/lib/sideslider/index.js +1 -1
  438. package/lib/sideslider/sideslider.css +55 -10
  439. package/lib/sideslider/sideslider.d.ts +181 -33
  440. package/lib/sideslider/sideslider.less +72 -13
  441. package/lib/sideslider/sideslider.variable.css +84 -13
  442. package/lib/slider/index.d.ts +414 -1
  443. package/lib/slider/index.js +1 -15
  444. package/lib/slider/slider-button.d.ts +5 -0
  445. package/lib/slider/slider.d.ts +14 -2
  446. package/lib/slider/slider.variable.css +29 -3
  447. package/lib/steps/index.d.ts +4 -4
  448. package/lib/steps/index.js +1 -15
  449. package/lib/steps/steps.css +14 -3
  450. package/lib/steps/steps.d.ts +1 -1
  451. package/lib/steps/steps.less +23 -3
  452. package/lib/steps/steps.variable.css +43 -6
  453. package/lib/styles/index.d.ts +12 -0
  454. package/lib/styles/mixins/clearfix.css +8 -0
  455. package/lib/styles/mixins/clearfix.less +10 -0
  456. package/lib/styles/mixins/clearfix.variable.css +8 -0
  457. package/lib/styles/mixins/mixins.css +51 -0
  458. package/lib/styles/mixins/mixins.less +2 -0
  459. package/lib/styles/mixins/mixins.variable.css +51 -0
  460. package/lib/styles/mixins/scroll.css +17 -0
  461. package/lib/styles/mixins/scroll.less +22 -0
  462. package/lib/styles/mixins/scroll.variable.css +136 -0
  463. package/lib/styles/reset.css +36 -0
  464. package/lib/styles/reset.less +26 -0
  465. package/lib/styles/reset.variable.css +36 -0
  466. package/lib/styles/themes/themes.less +38 -3
  467. package/lib/swiper/index.d.ts +181 -0
  468. package/lib/swiper/index.js +1 -0
  469. package/lib/swiper/swiper.css +91 -0
  470. package/lib/swiper/swiper.d.ts +65 -0
  471. package/lib/swiper/swiper.less +107 -0
  472. package/lib/swiper/swiper.variable.css +91 -0
  473. package/lib/switcher/index.d.ts +34 -11
  474. package/lib/switcher/index.js +1 -1
  475. package/lib/switcher/switcher.css +57 -6
  476. package/lib/switcher/switcher.d.ts +15 -4
  477. package/lib/switcher/switcher.less +5 -26
  478. package/lib/switcher/switcher.variable.css +86 -9
  479. package/lib/tab/index.d.ts +107 -219
  480. package/lib/tab/index.js +1 -1
  481. package/lib/tab/props.d.ts +194 -0
  482. package/lib/tab/tab-nav.d.ts +66 -87
  483. package/lib/tab/tab-panel.d.ts +40 -15
  484. package/lib/tab/tab.css +25 -1
  485. package/lib/tab/tab.d.ts +17 -41
  486. package/lib/tab/tab.less +31 -19
  487. package/lib/tab/tab.variable.css +54 -4
  488. package/lib/table/components/index.d.ts +3 -0
  489. package/lib/table/components/table-cell.d.ts +38 -0
  490. package/lib/table/components/table-column.d.ts +142 -0
  491. package/lib/table/components/table-row.d.ts +2 -0
  492. package/lib/table/const.d.ts +108 -1
  493. package/lib/table/index.d.ts +781 -27
  494. package/lib/table/index.js +1 -10
  495. package/lib/table/plugins/body-empty.d.ts +40 -0
  496. package/lib/table/plugins/col-group.d.ts +38 -0
  497. package/lib/table/plugins/common.d.ts +6 -0
  498. package/lib/table/plugins/head-filter.css +71 -0
  499. package/lib/table/plugins/head-filter.d.ts +26 -0
  500. package/lib/table/plugins/head-filter.less +92 -0
  501. package/lib/table/plugins/head-filter.variable.css +190 -0
  502. package/lib/table/plugins/head-sort.css +25 -0
  503. package/lib/table/plugins/head-sort.d.ts +22 -0
  504. package/lib/table/plugins/head-sort.less +31 -0
  505. package/lib/table/plugins/head-sort.variable.css +144 -0
  506. package/lib/table/plugins/index.d.ts +5 -0
  507. package/lib/table/plugins/settings.css +129 -0
  508. package/lib/table/plugins/settings.d.ts +37 -0
  509. package/lib/table/plugins/settings.less +157 -0
  510. package/lib/table/plugins/settings.variable.css +248 -0
  511. package/lib/table/plugins/use-active-columns.d.ts +16 -0
  512. package/lib/table/plugins/use-column-resize.d.ts +15 -0
  513. package/lib/table/plugins/use-fixed-column.d.ts +12 -0
  514. package/lib/table/plugins/use-pagination.d.ts +16 -0
  515. package/lib/table/plugins/use-scroll-loading.d.ts +5 -0
  516. package/lib/table/props.d.ts +282 -7
  517. package/lib/table/render.d.ts +53 -6
  518. package/lib/table/table.css +1143 -17
  519. package/lib/table/table.d.ts +196 -13
  520. package/lib/table/table.less +237 -25
  521. package/lib/table/table.variable.css +1182 -30
  522. package/lib/table/use-column.d.ts +11 -0
  523. package/lib/table/use-common.d.ts +97 -0
  524. package/lib/table/utils.d.ts +65 -9
  525. package/lib/table-column/index.d.ts +336 -0
  526. package/lib/table-column/index.js +1 -0
  527. package/lib/tag/index.d.ts +7 -7
  528. package/lib/tag/index.js +1 -1
  529. package/lib/tag/tag.css +57 -18
  530. package/lib/tag/tag.d.ts +2 -2
  531. package/lib/tag/tag.less +58 -15
  532. package/lib/tag/tag.variable.css +86 -21
  533. package/lib/tag-input/common.d.ts +36 -0
  534. package/lib/tag-input/index.d.ts +1211 -0
  535. package/lib/tag-input/index.js +1 -0
  536. package/lib/tag-input/list-tag-render.d.ts +44 -0
  537. package/lib/tag-input/tag-input.css +209 -0
  538. package/lib/tag-input/tag-input.d.ts +536 -0
  539. package/lib/tag-input/tag-input.less +251 -0
  540. package/lib/tag-input/tag-input.variable.css +328 -0
  541. package/lib/tag-input/tag-props.d.ts +216 -0
  542. package/lib/tag-input/tag-render.d.ts +35 -0
  543. package/lib/time-picker/index.d.ts +904 -0
  544. package/lib/time-picker/index.js +1 -0
  545. package/lib/time-picker/time-picker.css +215 -0
  546. package/lib/time-picker/time-picker.less +260 -0
  547. package/lib/time-picker/time-picker.variable.css +334 -0
  548. package/lib/timeline/index.d.ts +6 -6
  549. package/lib/timeline/index.js +1 -1
  550. package/lib/timeline/timeline.css +5 -5
  551. package/lib/timeline/timeline.d.ts +1 -1
  552. package/lib/timeline/timeline.less +6 -5
  553. package/lib/timeline/timeline.variable.css +34 -8
  554. package/lib/transfer/const.d.ts +5 -0
  555. package/lib/transfer/index.d.ts +339 -1
  556. package/lib/transfer/index.js +1 -1
  557. package/lib/transfer/props.d.ts +54 -0
  558. package/lib/transfer/transfer.css +89 -86
  559. package/lib/transfer/transfer.d.ts +70 -95
  560. package/lib/transfer/transfer.less +93 -113
  561. package/lib/transfer/transfer.variable.css +123 -94
  562. package/lib/tree/constant.d.ts +57 -0
  563. package/lib/tree/index.d.ts +419 -48
  564. package/lib/tree/index.js +1 -1
  565. package/lib/tree/props.d.ts +124 -0
  566. package/lib/tree/tree.css +183 -11
  567. package/lib/tree/tree.d.ts +194 -23
  568. package/lib/tree/tree.less +72 -10
  569. package/lib/tree/tree.variable.css +302 -11
  570. package/lib/tree/use-empty.d.ts +6 -0
  571. package/lib/tree/use-node-action.d.ts +12 -0
  572. package/lib/tree/use-node-async.d.ts +5 -0
  573. package/lib/tree/use-node-attribute.d.ts +33 -0
  574. package/lib/tree/use-node-drag.d.ts +3 -0
  575. package/lib/tree/use-search.d.ts +11 -0
  576. package/lib/tree/use-tree-init.d.ts +15 -0
  577. package/lib/tree/util.d.ts +5 -7
  578. package/lib/upload/index.d.ts +566 -0
  579. package/lib/upload/index.js +1 -0
  580. package/lib/upload/props.d.ts +111 -0
  581. package/lib/upload/upload-list.d.ts +47 -0
  582. package/lib/upload/upload-trigger.d.ts +51 -0
  583. package/lib/upload/upload.css +425 -0
  584. package/lib/upload/upload.d.ts +246 -0
  585. package/lib/upload/upload.less +464 -0
  586. package/lib/upload/upload.type.d.ts +78 -0
  587. package/lib/upload/upload.variable.css +544 -0
  588. package/lib/upload/use-ajax-upload.d.ts +3 -0
  589. package/lib/upload/use-file-handler.d.ts +44 -0
  590. package/lib/virtual-render/index.d.ts +27 -4
  591. package/lib/virtual-render/index.js +1 -10
  592. package/lib/virtual-render/props.d.ts +10 -0
  593. package/lib/virtual-render/use-tag-render.d.ts +7 -0
  594. package/lib/virtual-render/v-virtual-render.d.ts +0 -1
  595. package/lib/virtual-render/virtual-render.css +17 -24
  596. package/lib/virtual-render/virtual-render.d.ts +14 -3
  597. package/lib/virtual-render/virtual-render.less +2 -31
  598. package/lib/virtual-render/virtual-render.variable.css +136 -24
  599. package/lib/volar.components.d.ts +101 -0
  600. package/package.json +59 -46
  601. package/README_EN.md +0 -93
  602. package/dist/bkui-vue.cjs.js +0 -18938
  603. package/dist/bkui-vue.esm.js +0 -18887
  604. package/dist/bkui-vue.umd.js +0 -18941
  605. package/lib/form/common.d.ts +0 -3
  606. package/lib/icon/icon.js +0 -15
  607. package/lib/styles/index.js +0 -1
  608. package/lib/use-form.d.ts +0 -3
@@ -9,6 +9,7 @@
9
9
  --gray-color: #979ba5;
10
10
  --light-gray: #c4c6cc;
11
11
  --white-color: white;
12
+ --whitesmoke-color: #fafbfd;
12
13
  --disable-color: #dcdee5;
13
14
  --font-size-base: 12px;
14
15
  --font-size-medium: 14px;
@@ -18,10 +19,11 @@
18
19
  --line-height-large: 18px;
19
20
  --component-size-small: 26px;
20
21
  --component-size-base: 32px;
21
- --component-size-large: 38px;
22
+ --component-size-large: 40px;
22
23
  --border-width-base: 1px;
23
24
  --border-style-base: solid;
24
25
  --border-radius-base: 2px;
26
+ --border-style-color: var(--light-gray);
25
27
  --input-disabled-bg: #fafbfd;
26
28
  --input-disabled-border: var(--disable-color);
27
29
  --input-height-base: var(--component-size-base);
@@ -31,8 +33,9 @@
31
33
  --input-broder-radius: 3px;
32
34
  --input-shadow-color: #a3c5fd;
33
35
  --input-horizontal-padding: 10px;
34
- --input-block-color: #f4f6fa;
35
- --input-icon-size: var(--font-size-large);
36
+ --input-block-color: #f5f7fa;
37
+ --input-block-hover-color: #eaebf0;
38
+ --input-icon-size: var(--font-size-medium);
36
39
  --input-maxlength-color: #979ba5;
37
40
  --button-primary-hover-color: #5594fa;
38
41
  --button-danger-hover-color: #ff5656;
@@ -43,6 +46,15 @@
43
46
  --button-danger-active-color: #db2626;
44
47
  --button-success-active-color: #1ab943;
45
48
  --button-warning-active-color: #eb9000;
49
+ --button-selected-bg-color: #e1ecff;
50
+ --button-disabled-selected-bg-color: #f0f1f5;
51
+ --radio-font-color: #63656e;
52
+ --radio-active-color: #5594fa;
53
+ --radio-hover-border-color: #979ba5;
54
+ --radio-disabled-border: #dcdee5;
55
+ --radio-disabled-font-color: #c4c6cc;
56
+ --radio-distable-checked-bg: #fafbfd;
57
+ --radio-button-checked-bg: #e1ecff;
46
58
  --fixed-navbar-background: #fff;
47
59
  --fixed-navbar-boxshadow-color: rgba(0, 0, 0, 0.1);
48
60
  --switch-default-color: #fff;
@@ -63,12 +75,16 @@
63
75
  --message-color: var(--default-color);
64
76
  --message-primary-bg-color: #f0f8ff;
65
77
  --message-primary-border-color: #e1ecff;
78
+ --message-primary-shadow-color: #e1e8f4;
66
79
  --message-warning-bg-color: #fff4e2;
67
80
  --message-warning-border-color: #ffe8c3;
81
+ --message-warning-shadow-color: #ede6db;
68
82
  --message-success-bg-color: #f2fff4;
69
83
  --message-success-border-color: #dcffe2;
84
+ --message-success-shadow-color: #cef0d7;
70
85
  --message-danger-bg-color: #ffeded;
71
86
  --message-danger-border-color: #ffdddd;
87
+ --message-danger-shadow-color: #f6dada;
72
88
  --slider-default-bg: #dcdee5;
73
89
  --slider-disable-bar-bg: #979ba5;
74
90
  --menu-bg-color: #182132;
@@ -90,51 +106,1089 @@
90
106
  --table-head-font-color: #313238;
91
107
  --table-body-font-color: #575961;
92
108
  --table-row-hover-bg-color: #f5f7fa;
109
+ --table-row-active-bg-color: #f0f1f5;
110
+ --cascader-panel-border-color: #dcdee5;
111
+ --cascader-panel-hover: #f5f7fa;
112
+ --cascader-panel-active: #e1ecff;
113
+ --cascader-panel-disabled-bg: #fff;
114
+ --search-select-focus-border-color: var(--primary-color);
115
+ --search-select-focus-color: #3c96ff;
116
+ --search-select-font-color: var(--default-color);
117
+ --search-select-placeholder-color: var(--light-gray);
118
+ --search-select-message-color: var(--danger-color);
119
+ }
120
+ .bk-F-scroll-x {
121
+ overflow-x: auto;
122
+ scrollbar-color: #a0a0a0 transparent;
123
+ scrollbar-width: thin;
124
+ }
125
+ .bk-F-scroll-x::-webkit-scrollbar {
126
+ height: 6px;
127
+ }
128
+ .bk-F-scroll-y {
129
+ overflow-y: auto;
130
+ }
131
+ .bk-F-scroll-y::-webkit-scrollbar {
132
+ width: 4px;
133
+ }
134
+ .bk-F-scroll-y::-webkit-scrollbar-thumb {
135
+ border-radius: 4px;
136
+ }
137
+ .bk-virtual-render {
138
+ position: relative;
139
+ }
140
+ .bk-virtual-render .bk-virtual-content,
141
+ .bk-virtual-render.bk-virtual-content {
142
+ position: absolute;
143
+ top: 0;
144
+ bottom: 0;
145
+ left: 0;
146
+ width: 100%;
147
+ height: 100%;
148
+ }
149
+ .bk-virtual-render .bk-virtual-section {
150
+ width: 1px;
151
+ background: transparent;
152
+ }
153
+ .bk-checkbox {
154
+ display: inline-flex;
155
+ justify-self: center;
156
+ font-size: 14px;
157
+ line-height: 18px;
158
+ letter-spacing: normal;
159
+ color: #63656e;
160
+ cursor: pointer;
161
+ user-select: none;
162
+ }
163
+ .bk-checkbox ~ .bk-checkbox {
164
+ margin-left: 30px;
165
+ }
166
+ .bk-checkbox.is-checked .bk-checkbox-input {
167
+ background: #3a84ff;
168
+ border-color: #3a84ff;
169
+ transition: all 0.1s;
170
+ }
171
+ .bk-checkbox.is-checked .bk-checkbox-input.small::after {
172
+ width: 3px;
173
+ height: 6px;
174
+ }
175
+ .bk-checkbox.is-checked .bk-checkbox-input::after {
176
+ position: absolute;
177
+ top: 50%;
178
+ left: 50%;
179
+ width: 4px;
180
+ height: 8px;
181
+ border: 2px solid #fff;
182
+ border-top: 0;
183
+ border-left: 0;
184
+ content: '';
185
+ transform: translate(-50%, -60%) scaleY(1) rotate(45deg);
186
+ transform-origin: center;
187
+ }
188
+ .bk-checkbox.is-indeterminated .bk-checkbox-input {
189
+ background: #3a84ff;
190
+ border-color: #3a84ff;
191
+ transition: all 0.1s;
192
+ }
193
+ .bk-checkbox.is-indeterminated .bk-checkbox-input.small::after {
194
+ width: 6px;
195
+ height: 2px;
196
+ }
197
+ .bk-checkbox.is-indeterminated .bk-checkbox-input::after {
198
+ position: absolute;
199
+ top: 50%;
200
+ left: 50%;
201
+ width: 8px;
202
+ height: 2px;
203
+ background: #fff;
204
+ border: none;
205
+ border-radius: 2px;
206
+ content: '';
207
+ transform: translate(-50%, -50%);
208
+ }
209
+ .bk-checkbox.is-disabled {
210
+ color: #c4c6cc;
211
+ cursor: not-allowed;
212
+ }
213
+ .bk-checkbox.is-disabled .bk-checkbox-input {
214
+ background: #fafbfd;
215
+ border-color: #dcdee5;
216
+ }
217
+ .bk-checkbox.is-disabled .bk-checkbox-input::after {
218
+ background: #dcdee5;
219
+ }
220
+ .bk-checkbox.is-disabled.is-checked .bk-checkbox-input {
221
+ background: #dcdee5;
222
+ }
223
+ .bk-checkbox .bk-checkbox-input {
224
+ position: relative;
225
+ display: inline-block;
226
+ width: 16px;
227
+ height: 16px;
228
+ margin-right: 5px;
229
+ vertical-align: middle;
230
+ border: 1px solid #979ba5;
231
+ border-radius: 2px;
232
+ }
233
+ .bk-checkbox .bk-checkbox-input.small {
234
+ width: 14px;
235
+ height: 14px;
236
+ }
237
+ .bk-checkbox .bk-checkbox-original {
238
+ position: absolute;
239
+ top: 0;
240
+ left: 0;
241
+ z-index: -1;
242
+ width: 0;
243
+ height: 0;
244
+ }
245
+ .bk-checkbox .bk-checkbox-label {
246
+ display: inline-block;
247
+ vertical-align: middle;
248
+ }
249
+ .bk-button {
250
+ display: inline-flex;
251
+ height: 32px;
252
+ padding: 5px 12px;
253
+ font-size: 14px;
254
+ color: #63656e;
255
+ text-decoration: none;
256
+ white-space: nowrap;
257
+ cursor: pointer;
258
+ background-color: white;
259
+ border: 1px solid #c4c6cc;
260
+ border-radius: 2px;
261
+ outline: none;
262
+ box-sizing: border-box;
263
+ transition: background-color ease 0.3s;
264
+ appearance: none;
265
+ align-items: center;
266
+ justify-content: center;
267
+ }
268
+ .bk-button.bk-button-primary {
269
+ background-color: #3a84ff;
270
+ color: white;
271
+ border-color: #3a84ff;
272
+ }
273
+ .bk-button.bk-button-primary:hover {
274
+ background-color: #5594fa;
275
+ border-color: #5594fa;
276
+ }
277
+ .bk-button.bk-button-primary:active {
278
+ background-color: #2c77f4;
279
+ border-color: #2c77f4;
280
+ color: white;
281
+ }
282
+ .bk-button.bk-button-primary.is-outline {
283
+ color: #3a84ff;
284
+ border-color: #3a84ff;
285
+ background-color: white;
286
+ }
287
+ .bk-button.bk-button-primary.is-outline:hover {
288
+ background-color: #5594fa;
289
+ border-color: #5594fa;
290
+ color: white;
291
+ }
292
+ .bk-button.bk-button-primary.is-text {
293
+ color: #3a84ff;
294
+ background-color: transparent;
295
+ border: none;
296
+ }
297
+ .bk-button.bk-button-primary.is-text:not(.is-disabled):hover {
298
+ color: #5594fa;
299
+ }
300
+ .bk-button.bk-button-primary.is-disabled {
301
+ color: #dcdee5;
302
+ cursor: not-allowed;
303
+ }
304
+ .bk-button.bk-button-primary.is-disabled:not(.is-text) {
305
+ background-color: #dcdee5;
306
+ color: white;
307
+ border-color: #dcdee5;
308
+ }
309
+ .bk-button.bk-button-hover-primary:hover {
310
+ background-color: #5594fa;
311
+ border-color: #5594fa;
312
+ color: white;
313
+ }
314
+ .bk-button.bk-button-warning {
315
+ background-color: #ff9c01;
316
+ color: white;
317
+ border-color: #ff9c01;
318
+ }
319
+ .bk-button.bk-button-warning:hover {
320
+ background-color: #ffb848;
321
+ border-color: #ffb848;
322
+ }
323
+ .bk-button.bk-button-warning:active {
324
+ background-color: #eb9000;
325
+ border-color: #eb9000;
326
+ color: white;
327
+ }
328
+ .bk-button.bk-button-warning.is-outline {
329
+ color: #ff9c01;
330
+ border-color: #ff9c01;
331
+ background-color: white;
332
+ }
333
+ .bk-button.bk-button-warning.is-outline:hover {
334
+ background-color: #ffb848;
335
+ border-color: #ffb848;
336
+ color: white;
337
+ }
338
+ .bk-button.bk-button-warning.is-text {
339
+ color: #ff9c01;
340
+ background-color: transparent;
341
+ border: none;
342
+ }
343
+ .bk-button.bk-button-warning.is-text:not(.is-disabled):hover {
344
+ color: #ffb848;
345
+ }
346
+ .bk-button.bk-button-warning.is-disabled {
347
+ color: #dcdee5;
348
+ cursor: not-allowed;
349
+ }
350
+ .bk-button.bk-button-warning.is-disabled:not(.is-text) {
351
+ background-color: #dcdee5;
352
+ color: white;
353
+ border-color: #dcdee5;
354
+ }
355
+ .bk-button.bk-button-hover-warning:hover {
356
+ background-color: #ffb848;
357
+ border-color: #ffb848;
358
+ color: white;
359
+ }
360
+ .bk-button.bk-button-success {
361
+ background-color: #2dcb56;
362
+ color: white;
363
+ border-color: #2dcb56;
364
+ }
365
+ .bk-button.bk-button-success:hover {
366
+ background-color: #45e35f;
367
+ border-color: #45e35f;
368
+ }
369
+ .bk-button.bk-button-success:active {
370
+ background-color: #1ab943;
371
+ border-color: #1ab943;
372
+ color: white;
373
+ }
374
+ .bk-button.bk-button-success.is-outline {
375
+ color: #2dcb56;
376
+ border-color: #2dcb56;
377
+ background-color: white;
378
+ }
379
+ .bk-button.bk-button-success.is-outline:hover {
380
+ background-color: #45e35f;
381
+ border-color: #45e35f;
382
+ color: white;
383
+ }
384
+ .bk-button.bk-button-success.is-text {
385
+ color: #2dcb56;
386
+ background-color: transparent;
387
+ border: none;
388
+ }
389
+ .bk-button.bk-button-success.is-text:not(.is-disabled):hover {
390
+ color: #45e35f;
391
+ }
392
+ .bk-button.bk-button-success.is-disabled {
393
+ color: #dcdee5;
394
+ cursor: not-allowed;
395
+ }
396
+ .bk-button.bk-button-success.is-disabled:not(.is-text) {
397
+ background-color: #dcdee5;
398
+ color: white;
399
+ border-color: #dcdee5;
400
+ }
401
+ .bk-button.bk-button-hover-success:hover {
402
+ background-color: #45e35f;
403
+ border-color: #45e35f;
404
+ color: white;
405
+ }
406
+ .bk-button.bk-button-danger {
407
+ background-color: #ea3636;
408
+ color: white;
409
+ border-color: #ea3636;
410
+ }
411
+ .bk-button.bk-button-danger:hover {
412
+ background-color: #ff5656;
413
+ border-color: #ff5656;
414
+ }
415
+ .bk-button.bk-button-danger:active {
416
+ background-color: #db2626;
417
+ border-color: #db2626;
418
+ color: white;
419
+ }
420
+ .bk-button.bk-button-danger.is-outline {
421
+ color: #ea3636;
422
+ border-color: #ea3636;
423
+ background-color: white;
424
+ }
425
+ .bk-button.bk-button-danger.is-outline:hover {
426
+ background-color: #ff5656;
427
+ border-color: #ff5656;
428
+ color: white;
429
+ }
430
+ .bk-button.bk-button-danger.is-text {
431
+ color: #ea3636;
432
+ background-color: transparent;
433
+ border: none;
434
+ }
435
+ .bk-button.bk-button-danger.is-text:not(.is-disabled):hover {
436
+ color: #ff5656;
437
+ }
438
+ .bk-button.bk-button-danger.is-disabled {
439
+ color: #dcdee5;
440
+ cursor: not-allowed;
441
+ }
442
+ .bk-button.bk-button-danger.is-disabled:not(.is-text) {
443
+ background-color: #dcdee5;
444
+ color: white;
445
+ border-color: #dcdee5;
446
+ }
447
+ .bk-button.bk-button-hover-danger:hover {
448
+ background-color: #ff5656;
449
+ border-color: #ff5656;
450
+ color: white;
451
+ }
452
+ .bk-button.bk-button-small {
453
+ height: 26px;
454
+ padding: 3px 12px;
455
+ font-size: 12px;
456
+ }
457
+ .bk-button.bk-button-large {
458
+ height: 38px;
459
+ padding: 8px 20px;
460
+ font-size: 16px;
461
+ }
462
+ .bk-button .bk-button-text {
463
+ display: inline-flex;
464
+ align-items: center;
465
+ line-height: 1;
466
+ }
467
+ .bk-button.is-loading {
468
+ position: relative;
469
+ }
470
+ .bk-button.is-loading .bk-button-loading:not(:last-child) {
471
+ position: absolute;
472
+ }
473
+ .bk-button.is-loading .bk-button-text {
474
+ visibility: hidden;
475
+ }
476
+ .bk-button:hover {
477
+ border-color: #979ba5;
478
+ }
479
+ .bk-button:active {
480
+ color: #3a84ff;
481
+ border-color: #3a84ff;
482
+ }
483
+ .bk-button.is-text {
484
+ height: auto;
485
+ padding: 0;
486
+ font-size: inherit;
487
+ color: #63656e;
488
+ text-decoration: none;
489
+ cursor: pointer;
490
+ background-color: transparent;
491
+ border: none;
492
+ outline: none;
493
+ }
494
+ .bk-button.is-disabled {
495
+ color: #dcdee5;
496
+ cursor: not-allowed;
497
+ border-color: #dcdee5;
498
+ }
499
+ .bk-button-group {
500
+ display: inline-block;
501
+ font-size: 0;
502
+ }
503
+ .bk-button-group.bk-button-group-small .bk-button {
504
+ height: 26px;
505
+ padding: 3px 12px;
506
+ font-size: 12px;
507
+ }
508
+ .bk-button-group.bk-button-group-large .bk-button {
509
+ height: 38px;
510
+ padding: 8px 20px;
511
+ font-size: 16px;
512
+ }
513
+ .bk-button-group .bk-button {
514
+ height: 32px;
515
+ margin: 0 0 0 -1px;
516
+ border-radius: 0;
517
+ }
518
+ .bk-button-group .bk-button:not(.is-disabled) {
519
+ color: #63656e;
520
+ background-color: white;
521
+ border-color: #c4c6cc;
522
+ }
523
+ .bk-button-group .bk-button.is-disabled {
524
+ color: #c4c6cc;
525
+ }
526
+ .bk-button-group .bk-button:first-child {
527
+ border-radius: 2px 0 0 2px;
528
+ }
529
+ .bk-button-group .bk-button:last-child {
530
+ border-radius: 0 2px 2px 0;
531
+ }
532
+ .bk-button-group .bk-button:only-child {
533
+ border-radius: 2px;
534
+ }
535
+ .bk-button-group .bk-button:hover:not(.is-disabled),
536
+ .bk-button-group .bk-button.is-selected:not(.is-disabled) {
537
+ position: relative;
538
+ z-index: 1;
539
+ color: #3a84ff;
540
+ background-color: white;
541
+ border-color: #3a84ff;
542
+ }
543
+ .bk-button-group .bk-button.is-selected:not(.is-disabled) {
544
+ background-color: #e1ecff;
545
+ }
546
+ .bk-button-group .bk-button.is-selected.is-disabled {
547
+ background-color: #f0f1f5;
548
+ }
549
+ .bk-exception {
550
+ position: relative;
551
+ display: flex;
552
+ width: 100%;
553
+ align-items: center;
554
+ flex-direction: column;
555
+ text-align: center;
556
+ }
557
+ .bk-exception-img {
558
+ display: flex;
559
+ align-items: center;
560
+ justify-content: center;
561
+ }
562
+ .bk-exception-img .exception-image {
563
+ display: block;
564
+ height: 100%;
565
+ object-fit: contain;
566
+ }
567
+ .bk-exception-title {
568
+ color: #313238;
569
+ }
570
+ .bk-exception-description {
571
+ color: #63656e;
572
+ }
573
+ .bk-exception-page .bk-exception-img {
574
+ width: 480px;
575
+ height: 240px;
576
+ }
577
+ .bk-exception-page .bk-exception-title {
578
+ margin-top: 18px;
579
+ font-size: 24px;
580
+ line-height: 32px;
581
+ }
582
+ .bk-exception-page .bk-exception-description {
583
+ margin-top: 16px;
584
+ font-size: 14px;
585
+ line-height: 22px;
586
+ }
587
+ .bk-exception-page .bk-exception-footer {
588
+ margin-top: 24px;
589
+ }
590
+ .bk-exception-part .bk-exception-img {
591
+ width: 120px;
592
+ height: 100px;
593
+ }
594
+ .bk-exception-part .bk-exception-title {
595
+ margin-top: 8px;
596
+ font-size: 14px;
597
+ line-height: 22px;
598
+ }
599
+ .bk-exception-part .bk-exception-description {
600
+ margin-top: 8px;
601
+ font-size: 12px;
602
+ line-height: 20px;
603
+ }
604
+ .bk-exception-part .bk-exception-footer {
605
+ margin-top: 8px;
606
+ }
607
+ .bk-pagination {
608
+ display: flex;
609
+ align-items: center;
610
+ font-size: 12px;
611
+ letter-spacing: normal;
612
+ color: #63656e;
613
+ user-select: none;
614
+ }
615
+ .bk-pagination.is-disabled {
616
+ cursor: not-allowed;
617
+ }
618
+ .bk-pagination.is-align-left {
619
+ justify-content: flex-start;
620
+ }
621
+ .bk-pagination.is-align-center {
622
+ justify-content: center;
623
+ }
624
+ .bk-pagination.is-align-right {
625
+ justify-content: flex-end;
626
+ }
627
+ .bk-pagination > * {
628
+ margin: 0 6px;
629
+ }
630
+ .bk-pagination > .is-first {
631
+ margin-left: 0;
632
+ }
633
+ .bk-pagination > .is-last {
634
+ margin-right: 0;
635
+ }
636
+ .bk-pagination-total {
637
+ display: flex;
638
+ user-select: none;
639
+ }
640
+ .bk-pagination-total-num {
641
+ padding: 0 2px;
642
+ }
643
+ .bk-pagination-list {
644
+ display: flex;
645
+ }
646
+ .bk-pagination-list-pre-batch,
647
+ .bk-pagination-list-next-batch,
648
+ .bk-pagination-list-pre,
649
+ .bk-pagination-list-next,
650
+ .bk-pagination-list-item {
651
+ display: flex;
652
+ align-items: center;
653
+ justify-content: center;
654
+ height: 32px;
655
+ min-width: 32px;
656
+ padding: 0 4px;
657
+ margin-right: 2px;
658
+ margin-left: 2px;
659
+ color: #63656e;
660
+ cursor: pointer;
661
+ background: #fff;
662
+ border-radius: 2px;
663
+ user-select: none;
664
+ }
665
+ .bk-pagination-list-pre-batch.is-active,
666
+ .bk-pagination-list-next-batch.is-active,
667
+ .bk-pagination-list-pre.is-active,
668
+ .bk-pagination-list-next.is-active,
669
+ .bk-pagination-list-item.is-active {
670
+ color: #3a84ff;
671
+ background: #e1ecff;
672
+ }
673
+ .bk-pagination-list-pre-batch:hover,
674
+ .bk-pagination-list-next-batch:hover,
675
+ .bk-pagination-list-pre:hover,
676
+ .bk-pagination-list-next:hover,
677
+ .bk-pagination-list-item:hover {
678
+ background: #f0f1f5;
679
+ }
680
+ .bk-pagination-list-pre-batch.is-disabled,
681
+ .bk-pagination-list-next-batch.is-disabled,
682
+ .bk-pagination-list-pre.is-disabled,
683
+ .bk-pagination-list-next.is-disabled,
684
+ .bk-pagination-list-item.is-disabled {
685
+ color: #c4c6cc;
686
+ cursor: not-allowed;
687
+ background-color: #fafbfd;
688
+ border-color: #dcdee5;
689
+ }
690
+ .bk-pagination-list-pre,
691
+ .bk-pagination-list-next {
692
+ font-size: 20px;
693
+ color: #979ba5;
694
+ }
695
+ .bk-pagination-list-pre.is-disabled,
696
+ .bk-pagination-list-next.is-disabled {
697
+ color: #dcdee5;
698
+ cursor: not-allowed;
699
+ background-color: transparent;
700
+ }
701
+ .bk-pagination-list-item {
702
+ margin-right: 2px;
703
+ margin-left: 2px;
704
+ }
705
+ .bk-pagination-limit {
706
+ display: flex;
707
+ align-items: center;
708
+ user-select: none;
709
+ }
710
+ .bk-pagination-limit-select {
711
+ width: 60px;
712
+ margin: 0 4px;
713
+ }
714
+ .bk-pagination-limit-select .bk-input {
715
+ border-color: #f0f1f5;
716
+ }
717
+ .bk-pagination-limit-select .bk-input--text {
718
+ background-color: #f0f1f5;
719
+ }
720
+ .bk-pagination-limit-select:hover .bk-input {
721
+ border-color: #eaebf0;
722
+ }
723
+ .bk-pagination-limit-select:hover .bk-input--text {
724
+ background-color: #eaebf0;
725
+ }
726
+ .bk-pagination-limit-select .bk-input.is-focused {
727
+ border-color: #3a84ff;
728
+ }
729
+ .bk-pagination-limit-select .bk-input.is-focused .bk-input--text {
730
+ background-color: #fff;
731
+ }
732
+ .bk-pagination-small-list {
733
+ display: flex;
734
+ align-items: center;
735
+ }
736
+ .bk-pagination-small-list .bk-pagination-picker {
737
+ display: flex;
738
+ height: 26px;
739
+ margin: 0 4px;
740
+ cursor: pointer;
741
+ background-color: #f0f1f5;
742
+ border: 1px solid #f0f1f5;
743
+ border-radius: 2px;
744
+ align-items: center;
745
+ }
746
+ .bk-pagination-small-list .bk-pagination-picker:hover {
747
+ background-color: #eaebf0;
748
+ border-color: #eaebf0;
749
+ }
750
+ .bk-pagination-small-list .bk-pagination-picker.is-focused {
751
+ background-color: #fff;
752
+ border-color: #3a84ff;
753
+ box-shadow: 0px 0px 4px rgba(58, 132, 255, 0.4);
754
+ }
755
+ .bk-pagination-editor {
756
+ height: 16px;
757
+ min-width: 23px;
758
+ padding-right: 4px;
759
+ padding-left: 8px;
760
+ line-height: 16px;
761
+ text-align: center;
762
+ background-color: transparent;
763
+ border: 0;
764
+ border-radius: 2px;
765
+ outline: none;
766
+ transition: all 0.15s;
767
+ }
768
+ .bk-pagination-small-list-total {
769
+ padding-right: 8px;
770
+ padding-left: 4px;
771
+ }
772
+ .bk-pagination-btn-pre,
773
+ .bk-pagination-btn-next {
774
+ display: flex;
775
+ width: 26px;
776
+ height: 26px;
777
+ font-size: 20px;
778
+ color: #979ba5;
779
+ cursor: pointer;
780
+ justify-content: center;
781
+ align-items: center;
782
+ }
783
+ .bk-pagination-btn-pre:hover,
784
+ .bk-pagination-btn-next:hover {
785
+ color: #3a84ff;
786
+ background: #f0f1f5;
787
+ }
788
+ .bk-pagination-btn-pre.is-disabled,
789
+ .bk-pagination-btn-next.is-disabled {
790
+ color: #dcdee5;
791
+ cursor: not-allowed;
792
+ }
793
+ .bk-pagination-picker-list {
794
+ max-height: 216px;
795
+ padding: 7px 0;
796
+ margin: -7px -14px;
797
+ overflow: auto;
798
+ }
799
+ .bk-pagination-picker-list .item {
800
+ height: 32px;
801
+ padding: 0 10px;
802
+ font-size: 12px;
803
+ line-height: 32px;
804
+ color: #63656e;
805
+ cursor: pointer;
806
+ }
807
+ .bk-pagination-picker-list .item:hover,
808
+ .bk-pagination-picker-list .item.is-actived {
809
+ color: #3a84ff;
810
+ background: #f4f6fa;
811
+ }
812
+ .bk-popover2.bk-pop2-content {
813
+ position: absolute;
814
+ display: none;
815
+ padding: 7px 14px;
816
+ font-size: 12px;
817
+ color: #fff;
818
+ background: #26323d;
819
+ border-radius: 4px;
820
+ box-sizing: border-box;
821
+ }
822
+ .bk-popover2.bk-pop2-content .bk-pop2-arrow {
823
+ position: absolute;
824
+ width: 8px;
825
+ height: 8px;
826
+ background: #333;
827
+ transform: rotate(45deg);
828
+ }
829
+ .bk-popover2.bk-pop2-content[data-theme^='light'] {
830
+ color: #26323d;
831
+ background-color: #fff;
832
+ box-shadow: 0 0 6px 0 #dcdee5;
833
+ }
834
+ .bk-popover2.bk-pop2-content[data-theme^='light'] .bk-pop2-arrow {
835
+ background-color: #fff;
836
+ }
837
+ .bk-table-head-action {
838
+ display: flex;
839
+ height: var(--row-height);
840
+ padding: 0 10px 0 6px;
841
+ font-size: 12px;
842
+ color: #c4c6cc;
843
+ cursor: pointer;
844
+ align-items: center;
845
+ }
846
+ .bk-table-head-action.active {
847
+ color: #3a84ff;
848
+ }
849
+ .bk-table-head-action.opened {
850
+ color: inherit;
851
+ }
852
+ .bk-popover2.bk-pop2-content.bk-table-head-filter {
853
+ padding: 5px 0 0 0;
854
+ background-color: #fff;
855
+ border-radius: 2px;
856
+ box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1);
857
+ }
858
+ .bk-popover2.bk-pop2-content.bk-table-head-filter .content-list {
859
+ max-width: 200px;
860
+ min-width: 140px;
861
+ overflow: auto;
862
+ }
863
+ .bk-popover2.bk-pop2-content.bk-table-head-filter .content-list .list-item {
864
+ width: 100%;
865
+ height: 32px;
866
+ padding: 0 10px;
867
+ font-size: 12px;
868
+ line-height: 32px;
869
+ color: #63656e;
870
+ text-align: left;
871
+ }
872
+ .bk-popover2.bk-pop2-content.bk-table-head-filter .content-list .list-item:hover {
873
+ background: #f0f1f5;
874
+ }
875
+ .bk-popover2.bk-pop2-content.bk-table-head-filter .content-footer {
876
+ display: flex;
877
+ height: 42px;
878
+ padding: 0 10px;
879
+ border-top: solid 1px #dcdee5;
880
+ justify-content: center;
881
+ align-items: center;
882
+ }
883
+ .bk-popover2.bk-pop2-content.bk-table-head-filter .content-footer span {
884
+ display: inline-flex;
885
+ height: 100%;
886
+ padding: 6px 12px;
887
+ font-size: 14px;
888
+ line-height: 22px;
889
+ color: #3a84ff;
890
+ cursor: pointer;
891
+ align-items: center;
892
+ }
893
+ .bk-popover2.bk-pop2-content.bk-table-head-filter .content-footer span.disabled {
894
+ color: transparent;
895
+ cursor: auto;
896
+ }
897
+ .bk-popover2.bk-pop2-content.bk-table-head-filter .content-footer span.btn-filter-split {
898
+ width: 1px;
899
+ height: calc(100% - 12px);
900
+ padding: 6px 0;
901
+ cursor: default;
902
+ background: #f0f1f5;
903
+ }
904
+ .bk-popover2.bk-pop2-content.bk-table-head-filter .content-footer span.btn-filter-reset.disable {
905
+ color: #979ba5;
906
+ cursor: not-allowed;
907
+ }
908
+ .bk-head-cell-sort {
909
+ display: flex;
910
+ height: 100%;
911
+ padding: 0 4px;
912
+ margin-left: 4px;
913
+ font-size: 10px;
914
+ cursor: pointer;
915
+ flex-direction: column;
916
+ justify-content: center;
917
+ align-items: center;
918
+ }
919
+ .bk-head-cell-sort .sort-action {
920
+ display: flex;
921
+ color: #c0c4cc;
922
+ cursor: pointer;
923
+ }
924
+ .bk-head-cell-sort .sort-action.active {
925
+ color: #3a84ff;
926
+ }
927
+ .bk-head-cell-sort .sort-action.sort-asc {
928
+ align-items: flex-end;
929
+ }
930
+ .bk-head-cell-sort .sort-action.sort-desc {
931
+ align-items: flex-start;
932
+ }
933
+ .bk-table-settings[data-bk-table-settings-theme='true'] {
934
+ padding: 0;
935
+ }
936
+ .bk-table-settings[data-bk-table-settings-theme='true'] .setting-content {
937
+ width: 515px;
938
+ border: 1px solid #dcdee5;
939
+ border-radius: 2px;
940
+ opacity: 1;
941
+ }
942
+ .bk-table-settings[data-bk-table-settings-theme='true'] .setting-content .setting-head {
943
+ position: relative;
944
+ display: flex;
945
+ padding: 0 24px;
946
+ margin: 0;
947
+ font-size: 16px;
948
+ font-weight: 400;
949
+ line-height: 32px;
950
+ color: #313238;
951
+ }
952
+ .bk-table-settings[data-bk-table-settings-theme='true'] .setting-content .setting-head .icon-close-action {
953
+ position: absolute;
954
+ top: 10px;
955
+ right: 15px;
956
+ cursor: pointer;
957
+ }
958
+ .bk-table-settings[data-bk-table-settings-theme='true'] .setting-content .setting-head .head-title {
959
+ display: inline-block;
960
+ height: 26px;
961
+ margin: 24px 0;
962
+ font-size: 20px;
963
+ line-height: 26px;
964
+ color: #313238;
965
+ }
966
+ .bk-table-settings[data-bk-table-settings-theme='true'] .setting-content .setting-body {
967
+ padding: 0 24px;
968
+ }
969
+ .bk-table-settings[data-bk-table-settings-theme='true'] .setting-content .setting-body .setting-body-title {
970
+ display: flex;
971
+ font-size: 14px;
972
+ line-height: 19px;
973
+ color: #63656e;
974
+ justify-content: space-between;
975
+ }
976
+ .bk-table-settings[data-bk-table-settings-theme='true'] .setting-content .setting-body .setting-body-title .field-setting-label {
977
+ height: 22px;
978
+ font-size: 14px;
979
+ line-height: 22px;
980
+ color: #313238;
981
+ text-align: left;
982
+ }
983
+ .bk-table-settings[data-bk-table-settings-theme='true'] .setting-content .setting-body .setting-body-title .limit {
984
+ color: #c4c6cc;
985
+ }
986
+ .bk-table-settings[data-bk-table-settings-theme='true'] .setting-content .setting-body .setting-body-title .check-all {
987
+ color: #3a84ff;
988
+ cursor: pointer;
989
+ }
990
+ .bk-table-settings[data-bk-table-settings-theme='true'] .setting-content .setting-body .setting-body-fields {
991
+ display: flex;
992
+ max-height: 150px;
993
+ align-items: flex-start;
994
+ flex-wrap: wrap;
995
+ margin-bottom: 16px;
996
+ }
997
+ .bk-table-settings[data-bk-table-settings-theme='true'] .setting-content .setting-body .setting-body-fields .field-item {
998
+ width: 150px;
999
+ height: 16px;
1000
+ margin-top: 16px;
1001
+ line-height: 16px;
1002
+ }
1003
+ .bk-table-settings[data-bk-table-settings-theme='true'] .setting-content .setting-body .setting-body-fields .field-item > label {
1004
+ overflow: hidden;
1005
+ text-overflow: ellipsis;
1006
+ white-space: nowrap;
1007
+ }
1008
+ .bk-table-settings[data-bk-table-settings-theme='true'] .setting-content .setting-body .setting-body-line-height {
1009
+ display: flex;
1010
+ height: 76px;
1011
+ font-size: 14px;
1012
+ border-top: solid 1px #f0f1f5;
1013
+ align-items: center;
1014
+ }
1015
+ .bk-table-settings[data-bk-table-settings-theme='true'] .setting-content .setting-body .setting-body-line-height .line-size {
1016
+ display: flex;
1017
+ width: 68px;
1018
+ height: 26px;
1019
+ color: #63656e;
1020
+ cursor: pointer;
1021
+ border: 1px solid #c4c6cc;
1022
+ justify-content: center;
1023
+ align-items: center;
1024
+ }
1025
+ .bk-table-settings[data-bk-table-settings-theme='true'] .setting-content .setting-body .setting-body-line-height .line-size.active {
1026
+ color: #3a84ff;
1027
+ background: #e1ecff;
1028
+ border: 1px solid #a3c5fd;
1029
+ }
1030
+ .bk-table-settings[data-bk-table-settings-theme='true'] .setting-content .setting-body .setting-body-line-height .line-size:not(.active) {
1031
+ border-right: none;
1032
+ border-left: none;
1033
+ }
1034
+ .bk-table-settings[data-bk-table-settings-theme='true'] .setting-content .setting-body .setting-body-line-height .line-size:first-child {
1035
+ border-right: 1px solid #c4c6cc;
1036
+ border-left: 1px solid #c4c6cc;
1037
+ border-bottom-left-radius: 2px;
1038
+ border-top-left-radius: 2px;
1039
+ }
1040
+ .bk-table-settings[data-bk-table-settings-theme='true'] .setting-content .setting-body .setting-body-line-height .line-size:first-child.is-medium {
1041
+ border-right: none;
1042
+ }
1043
+ .bk-table-settings[data-bk-table-settings-theme='true'] .setting-content .setting-body .setting-body-line-height .line-size:last-child {
1044
+ border-right: 1px solid #c4c6cc;
1045
+ border-left: 1px solid #c4c6cc;
1046
+ border-top-right-radius: 2px;
1047
+ border-bottom-right-radius: 2px;
1048
+ }
1049
+ .bk-table-settings[data-bk-table-settings-theme='true'] .setting-content .setting-body .setting-body-line-height .line-size:last-child.is-medium {
1050
+ border-left: none;
1051
+ }
1052
+ .bk-table-settings[data-bk-table-settings-theme='true'] .setting-content .setting-footer {
1053
+ display: flex;
1054
+ height: 50px;
1055
+ padding: 0 24px;
1056
+ background: #fafbfd;
1057
+ border: 1px solid #dcdee5;
1058
+ border-radius: 0px 0px 2px 2px;
1059
+ justify-content: flex-end;
1060
+ align-items: center;
93
1061
  }
94
1062
  .bk-table {
1063
+ position: relative;
1064
+ height: auto;
95
1065
  overflow: hidden;
96
- height: 100%;
97
- border-top: 1px solid var(--table-border-color);
98
- border-bottom: 1px solid var(--table-border-color);
1066
+ }
1067
+ .bk-table.has-scroll-y .bk-table-head {
1068
+ padding-right: 4px;
99
1069
  }
100
1070
  .bk-table .bk-table-body {
1071
+ position: relative;
101
1072
  overflow: auto;
102
1073
  }
1074
+ .bk-table .bk-table-body::-webkit-scrollbar {
1075
+ width: 6px;
1076
+ height: 6px;
1077
+ }
1078
+ .bk-table .bk-fixed-bottom-border {
1079
+ position: sticky;
1080
+ bottom: 0;
1081
+ left: 0;
1082
+ width: 100%;
1083
+ border-top: 1px solid #dcdee5;
1084
+ transform: translateX(var(--scroll-head-left));
1085
+ }
1086
+ .bk-table .bk-fixed-bottom-border._is-empty {
1087
+ display: none;
1088
+ }
103
1089
  .bk-table .bk-table-head,
104
1090
  .bk-table .bk-table-body {
105
- background: var(--table-bg-color);
1091
+ background: white;
1092
+ }
1093
+ .bk-table .bk-table-head.__is-empty,
1094
+ .bk-table .bk-table-body.__is-empty {
1095
+ display: flex;
1096
+ height: 100%;
1097
+ justify-content: center;
1098
+ align-items: center;
1099
+ }
1100
+ .bk-table .bk-table-head.__is-empty .bk-table-body-content,
1101
+ .bk-table .bk-table-body.__is-empty .bk-table-body-content {
1102
+ display: flex;
1103
+ width: 100%;
1104
+ height: 100%;
1105
+ padding-bottom: 20px;
106
1106
  }
107
1107
  .bk-table .bk-table-head table,
108
1108
  .bk-table .bk-table-body table {
109
1109
  width: 100%;
110
1110
  border-collapse: collapse;
1111
+ table-layout: fixed;
1112
+ align-self: flex-start;
111
1113
  }
112
1114
  .bk-table .bk-table-head table th,
113
1115
  .bk-table .bk-table-body table th,
114
1116
  .bk-table .bk-table-head table td,
115
1117
  .bk-table .bk-table-body table td {
1118
+ height: var(--row-height);
116
1119
  min-width: 80px;
1120
+ clear: both;
1121
+ }
1122
+ .bk-table .bk-table-head table th.expand-row .expand-btn-action,
1123
+ .bk-table .bk-table-body table th.expand-row .expand-btn-action,
1124
+ .bk-table .bk-table-head table td.expand-row .expand-btn-action,
1125
+ .bk-table .bk-table-body table td.expand-row .expand-btn-action {
1126
+ color: #575961;
117
1127
  }
118
1128
  .bk-table .bk-table-head table th .cell,
119
1129
  .bk-table .bk-table-body table th .cell,
120
1130
  .bk-table .bk-table-head table td .cell,
121
1131
  .bk-table .bk-table-body table td .cell {
122
- height: var(--row-height);
123
1132
  padding: 0 15px;
124
1133
  overflow: hidden;
125
- line-height: var(--row-height);
126
- color: var(--table-body-font-color);
1134
+ font-size: 12px;
1135
+ color: #575961;
127
1136
  text-align: left;
128
1137
  text-overflow: ellipsis;
129
1138
  white-space: nowrap;
130
1139
  }
1140
+ .bk-table .bk-table-head table th .cell.expand-cell,
1141
+ .bk-table .bk-table-body table th .cell.expand-cell,
1142
+ .bk-table .bk-table-head table td .cell.expand-cell,
1143
+ .bk-table .bk-table-body table td .cell.expand-cell {
1144
+ padding: 0;
1145
+ text-overflow: unset;
1146
+ }
1147
+ .bk-table .bk-table-head table th .expand-btn-action,
1148
+ .bk-table .bk-table-body table th .expand-btn-action,
1149
+ .bk-table .bk-table-head table td .expand-btn-action,
1150
+ .bk-table .bk-table-body table td .expand-btn-action {
1151
+ display: flex;
1152
+ padding: 0 15px;
1153
+ color: #c4c6cc;
1154
+ cursor: pointer;
1155
+ }
1156
+ .bk-table .bk-table-head table th.column_fixed,
1157
+ .bk-table .bk-table-body table th.column_fixed,
1158
+ .bk-table .bk-table-head table td.column_fixed,
1159
+ .bk-table .bk-table-body table td.column_fixed {
1160
+ position: sticky;
1161
+ background: #fff;
1162
+ }
1163
+ .bk-table .bk-table-head table th.column_fixed.column_fixed_left,
1164
+ .bk-table .bk-table-body table th.column_fixed.column_fixed_left,
1165
+ .bk-table .bk-table-head table td.column_fixed.column_fixed_left,
1166
+ .bk-table .bk-table-body table td.column_fixed.column_fixed_left {
1167
+ left: 0;
1168
+ }
1169
+ .bk-table .bk-table-head table th.column_fixed.column_fixed_right,
1170
+ .bk-table .bk-table-body table th.column_fixed.column_fixed_right,
1171
+ .bk-table .bk-table-head table td.column_fixed.column_fixed_right,
1172
+ .bk-table .bk-table-body table td.column_fixed.column_fixed_right {
1173
+ right: 0;
1174
+ }
1175
+ .bk-table .bk-table-head table th.row_expend .expand-cell-ctx,
1176
+ .bk-table .bk-table-body table th.row_expend .expand-cell-ctx,
1177
+ .bk-table .bk-table-head table td.row_expend .expand-cell-ctx,
1178
+ .bk-table .bk-table-body table td.row_expend .expand-cell-ctx {
1179
+ min-height: 30px;
1180
+ }
131
1181
  .bk-table .bk-table-head table thead th,
132
1182
  .bk-table .bk-table-body table thead th {
133
- position: sticky;
134
- top: 0;
135
- z-index: 1;
136
- color: var(--table-head-font-color);
137
- background-color: var(--table-head-bg-color);
1183
+ font-weight: 400;
1184
+ color: #313238;
1185
+ background-color: #fafbfd;
1186
+ }
1187
+ .bk-table .bk-table-head table thead th .cell,
1188
+ .bk-table .bk-table-body table thead th .cell {
1189
+ display: flex;
1190
+ align-items: center;
1191
+ height: calc(var(--row-height) - 1px);
138
1192
  }
139
1193
  .bk-table .bk-table-head table thead th.active,
140
1194
  .bk-table .bk-table-body table thead th.active,
@@ -142,40 +1196,138 @@
142
1196
  .bk-table .bk-table-body table thead th:hover {
143
1197
  background: #f0f1f5;
144
1198
  }
145
- .bk-table .bk-table-head table tbody tr:hover td,
146
- .bk-table .bk-table-body table tbody tr:hover td {
147
- background: var(--table-row-hover-bg-color);
1199
+ .bk-table .bk-table-head table thead th.column_fixed,
1200
+ .bk-table .bk-table-body table thead th.column_fixed {
1201
+ transform: translateX(var(--scroll-left));
1202
+ }
1203
+ .bk-table .bk-table-head table tbody tr td.empty-cell,
1204
+ .bk-table .bk-table-body table tbody tr td.empty-cell {
1205
+ padding-bottom: 30px;
1206
+ }
1207
+ .bk-table .bk-table-head table tbody tr td.is-last,
1208
+ .bk-table .bk-table-body table tbody tr td.is-last {
1209
+ border-bottom: none;
1210
+ }
1211
+ .bk-table .bk-table-head table tbody tr td .cell,
1212
+ .bk-table .bk-table-body table tbody tr td .cell {
1213
+ display: block;
1214
+ width: 100%;
1215
+ height: 100%;
1216
+ line-height: calc(var(--row-height) - 1px);
1217
+ box-sizing: border-box;
1218
+ align-items: center;
1219
+ }
1220
+ .bk-table .bk-table-head table tbody tr:hover.hover-highlight td:not(.empty-cell),
1221
+ .bk-table .bk-table-body table tbody tr:hover.hover-highlight td:not(.empty-cell) {
1222
+ background: #f5f7fa;
1223
+ }
1224
+ .bk-table .bk-table-head {
1225
+ position: relative;
1226
+ transform: translateX(var(--scroll-head-left));
1227
+ }
1228
+ .bk-table .bk-table-head .table-head-settings {
1229
+ position: absolute;
1230
+ top: 0;
1231
+ right: 1px;
1232
+ bottom: 0px;
1233
+ z-index: 1;
1234
+ display: block;
1235
+ display: flex;
1236
+ width: calc(var(--row-height));
1237
+ font-size: 14px;
1238
+ cursor: pointer;
1239
+ background: #fafbfd;
1240
+ border-right: 1px solid #dcdee5;
1241
+ border-bottom: 1px solid #dcdee5;
1242
+ border-left: 1px solid #dcdee5;
1243
+ border-radius: 0px 2px 0px 0px;
1244
+ transform: translateX(var(--scroll-left));
1245
+ justify-content: center;
1246
+ align-items: center;
1247
+ }
1248
+ .bk-table .bk-table-head .table-head-settings > span {
1249
+ display: flex;
1250
+ width: 1rem;
1251
+ height: 1rem;
148
1252
  }
149
1253
  .bk-table .bk-table-footer {
150
1254
  line-height: 40px;
151
1255
  }
152
- .bk-table.bordered-row .cell {
153
- border-bottom: 1px solid var(--table-border-color);
1256
+ .bk-table .bk-table-footer.is-hidden {
1257
+ display: none;
1258
+ }
1259
+ .bk-table.bordered-row td,
1260
+ .bk-table.bordered-row th {
1261
+ border-bottom: 1px solid #dcdee5;
1262
+ }
1263
+ .bk-table.bordered-row tr:last-child td {
1264
+ border-bottom: none;
154
1265
  }
155
1266
  .bk-table.bordered-outer {
156
- border-right: 1px solid var(--table-border-color);
157
- border-left: 1px solid var(--table-border-color);
1267
+ border-top: 1px solid #dcdee5;
1268
+ border-right: 1px solid #dcdee5;
1269
+ border-left: 1px solid #dcdee5;
158
1270
  }
159
- .bk-table.bordered-col th .cell,
160
- .bk-table.bordered-col td .cell {
161
- border-right: 1px solid var(--table-border-color);
1271
+ .bk-table.bordered-outer .bk-table-footer {
1272
+ border-bottom: 1px solid #dcdee5;
162
1273
  }
163
- .bk-table.bordered-col th:last-child .cell,
164
- .bk-table.bordered-col td:last-child .cell {
1274
+ .bk-table.bordered-horizontal {
1275
+ border-top: 1px solid #dcdee5;
1276
+ }
1277
+ .bk-table.bordered-horizontal .bk-table-footer {
1278
+ border-bottom: 1px solid #dcdee5;
1279
+ }
1280
+ .bk-table.bordered-col th,
1281
+ .bk-table.bordered-col td {
1282
+ border-right: 1px solid #dcdee5;
1283
+ }
1284
+ .bk-table.bordered-col th:last-child,
1285
+ .bk-table.bordered-col td:last-child {
165
1286
  border-right: none;
166
1287
  }
167
- .bk-table.bordered-none th .cell,
168
- .bk-table.bordered-none td .cell {
1288
+ .bk-table.bordered-none th,
1289
+ .bk-table.bordered-none td {
169
1290
  border-top: none;
170
1291
  border-right: none;
171
1292
  border-bottom: none;
172
1293
  border-left: none;
173
1294
  }
174
1295
  .bk-table .bk-table-fixed {
1296
+ position: absolute;
1297
+ top: 0;
1298
+ right: 0;
1299
+ bottom: 0;
1300
+ left: 0;
175
1301
  width: 100%;
1302
+ pointer-events: none;
1303
+ }
1304
+ .bk-table .bk-table-fixed .column_fixed {
1305
+ position: absolute;
1306
+ }
1307
+ .bk-table .bk-table-fixed .column_fixed.column_fixed_left {
1308
+ top: 0;
1309
+ left: 0;
1310
+ }
1311
+ .bk-table .bk-table-fixed .column_fixed.column_fixed_left.shadow {
1312
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
1313
+ }
1314
+ .bk-table .bk-table-fixed .column_fixed.column_fixed_right {
1315
+ top: 0;
1316
+ right: 0;
1317
+ }
1318
+ .bk-table .bk-table-fixed .column_fixed.column_fixed_right.shadow {
1319
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
1320
+ }
1321
+ .bk-table .bk-table-fixed .scroll-loading._bottom {
1322
+ position: absolute;
1323
+ right: 0;
1324
+ bottom: 0;
1325
+ left: 0;
1326
+ display: flex;
1327
+ justify-content: center;
176
1328
  }
177
1329
  .bk-table colgroup col {
178
- background: var(--table-bg-color);
1330
+ background: white;
179
1331
  }
180
1332
  .bk-table colgroup col.active {
181
1333
  position: relative;