bkui-vue 0.0.1-beta.40 → 0.0.1-beta.400

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