bkui-vue 0.0.1-beta.45 → 0.0.1-beta.48

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 (72) hide show
  1. package/dist/index.cjs.js +27 -27
  2. package/dist/index.esm.js +698 -319
  3. package/dist/index.umd.js +28 -28
  4. package/dist/style.css +1 -1
  5. package/lib/button/index.js +1 -1
  6. package/lib/checkbox/checkbox.css +12 -0
  7. package/lib/checkbox/checkbox.d.ts +5 -11
  8. package/lib/checkbox/checkbox.less +17 -0
  9. package/lib/checkbox/checkbox.variable.css +12 -0
  10. package/lib/checkbox/common.d.ts +3 -3
  11. package/lib/checkbox/index.d.ts +10 -18
  12. package/lib/checkbox/index.js +1 -1
  13. package/lib/checkbox/type.d.ts +2 -6
  14. package/lib/dialog/dialog.d.ts +89 -17
  15. package/lib/dialog/index.d.ts +191 -36
  16. package/lib/dialog/index.js +1 -1
  17. package/lib/form/compose-form-item.d.ts +16 -0
  18. package/lib/form/form.css +73 -12
  19. package/lib/form/form.less +120 -46
  20. package/lib/form/form.variable.css +167 -12
  21. package/lib/form/index.d.ts +17 -1
  22. package/lib/form/index.js +1 -1
  23. package/lib/icon/funnel.d.ts +4 -0
  24. package/lib/icon/funnel.js +1 -0
  25. package/lib/icon/index.d.ts +1 -0
  26. package/lib/icon/index.js +1 -1
  27. package/lib/loading/index.js +1 -1
  28. package/lib/modal/index.d.ts +149 -1
  29. package/lib/modal/index.js +1 -1
  30. package/lib/modal/modal.css +20 -0
  31. package/lib/modal/modal.d.ts +58 -0
  32. package/lib/modal/modal.less +25 -0
  33. package/lib/modal/modal.variable.css +20 -0
  34. package/lib/modal/props.mixin.d.ts +26 -0
  35. package/lib/popover/index.d.ts +33 -2
  36. package/lib/popover/index.js +1 -1
  37. package/lib/popover/popover.d.ts +16 -1
  38. package/lib/popover/props.d.ts +12 -0
  39. package/lib/radio/common.d.ts +5 -5
  40. package/lib/radio/index.d.ts +17 -16
  41. package/lib/radio/index.js +1 -1
  42. package/lib/radio/radio-button.d.ts +5 -4
  43. package/lib/radio/radio.css +2 -2
  44. package/lib/radio/radio.d.ts +4 -4
  45. package/lib/radio/radio.less +2 -2
  46. package/lib/radio/radio.variable.css +2 -2
  47. package/lib/radio/type.d.ts +9 -4
  48. package/lib/rate/index.js +1 -1
  49. package/lib/sideslider/index.d.ts +123 -1
  50. package/lib/sideslider/index.js +1 -1
  51. package/lib/sideslider/sideslider.d.ts +58 -0
  52. package/lib/slider/index.js +1 -1
  53. package/lib/switcher/switcher.less +2 -0
  54. package/lib/tab/index.d.ts +1 -1
  55. package/lib/tab/tab-panel.d.ts +1 -1
  56. package/lib/table/index.js +1 -1
  57. package/lib/table/plugins/head-filter.css +68 -0
  58. package/lib/table/plugins/head-filter.less +83 -0
  59. package/lib/table/plugins/head-filter.variable.css +162 -0
  60. package/lib/table/plugins/head-sort.css +22 -0
  61. package/lib/table/plugins/head-sort.less +28 -0
  62. package/lib/table/plugins/head-sort.variable.css +116 -0
  63. package/lib/table/props.d.ts +8 -1
  64. package/lib/table/render.d.ts +10 -15
  65. package/lib/table/table.css +94 -26
  66. package/lib/table/table.less +9 -28
  67. package/lib/table/table.variable.css +108 -40
  68. package/lib/table/utils.d.ts +10 -1
  69. package/package.json +30 -16
  70. package/lib/dialog/dialog.css +0 -68
  71. package/lib/dialog/dialog.less +0 -80
  72. package/lib/dialog/dialog.variable.css +0 -68
@@ -1,68 +0,0 @@
1
- .bk-modal-wrapper.bk-dialog-wrapper {
2
- position: relative;
3
- }
4
- .bk-modal-wrapper.bk-dialog-wrapper * {
5
- box-sizing: border-box;
6
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
7
- }
8
- .bk-modal-wrapper.bk-dialog-wrapper.scroll-able .bk-modal-content {
9
- overflow: auto;
10
- }
11
- .bk-modal-wrapper.bk-dialog-wrapper .bk-dialog-tool {
12
- position: absolute;
13
- top: 0;
14
- right: 0;
15
- left: 0;
16
- height: 30px;
17
- }
18
- .bk-modal-wrapper.bk-dialog-wrapper .bk-dialog-tool .bk-dialog-close {
19
- position: absolute;
20
- top: 5px;
21
- right: 5px;
22
- display: flex;
23
- width: 26px;
24
- height: 26px;
25
- font-size: 22px;
26
- font-weight: 700;
27
- line-height: 26px;
28
- color: #979ba5;
29
- text-align: center;
30
- cursor: pointer;
31
- border-radius: 50%;
32
- transform: rotate(45deg);
33
- justify-content: center;
34
- align-items: center;
35
- }
36
- .bk-modal-wrapper.bk-dialog-wrapper .bk-dialog-header {
37
- padding: 24px;
38
- font-size: 20px;
39
- line-height: 1;
40
- }
41
- .bk-modal-wrapper.bk-dialog-wrapper .bk-dialog-header .bk-dialog-title {
42
- display: inline-block;
43
- width: 100%;
44
- overflow: hidden;
45
- font-size: 24px;
46
- color: #313238;
47
- text-overflow: ellipsis;
48
- white-space: nowrap;
49
- }
50
- .bk-modal-wrapper.bk-dialog-wrapper .bk-modal-content {
51
- height: calc(100% - 132px);
52
- padding: 3px 24px 26px;
53
- margin-bottom: 58px;
54
- font-size: 14px;
55
- line-height: 1.5;
56
- color: #63656e;
57
- }
58
- .bk-modal-wrapper.bk-dialog-wrapper .bk-modal-footer {
59
- position: absolute;
60
- right: 0;
61
- bottom: 0;
62
- left: 0;
63
- height: 58px;
64
- padding: 12px 24px;
65
- background-color: #fafbfd;
66
- border-top: 1px solid #dcdee5;
67
- border-radius: 2px;
68
- }
@@ -1,80 +0,0 @@
1
- .bk-modal-wrapper {
2
- &.bk-dialog-wrapper {
3
- position: relative;
4
-
5
- * {
6
- box-sizing: border-box;
7
- -webkit-tap-highlight-color: rgba(0,0,0,0);
8
- }
9
-
10
- &.scroll-able {
11
- .bk-modal-content {
12
- overflow: auto;
13
- }
14
- }
15
-
16
- .bk-dialog-tool {
17
- position: absolute;
18
- top: 0;
19
- right: 0;
20
- left: 0;
21
- height: 30px;
22
-
23
- .bk-dialog-close {
24
- position: absolute;
25
- top: 5px;
26
- right: 5px;
27
- display: flex;
28
- width: 26px;
29
- height: 26px;
30
- font-size: 22px;
31
- font-weight: 700;
32
- line-height: 26px;
33
- color: #979ba5;
34
- text-align: center;
35
- cursor: pointer;
36
- border-radius: 50%;
37
- transform: rotate(45deg);
38
- justify-content: center;
39
- align-items: center;
40
- }
41
- }
42
-
43
- .bk-dialog-header {
44
- padding: 24px;
45
- font-size: 20px;
46
- line-height: 1;
47
-
48
- .bk-dialog-title {
49
- display: inline-block;
50
- width: 100%;
51
- overflow: hidden;
52
- font-size: 24px;
53
- color: #313238;
54
- text-overflow: ellipsis;
55
- white-space: nowrap;
56
- }
57
- }
58
-
59
- .bk-modal-content {
60
- height: calc(100% - 132px);
61
- padding: 3px 24px 26px;
62
- margin-bottom: 58px;
63
- font-size: 14px;
64
- line-height: 1.5;
65
- color: #63656e;
66
- }
67
-
68
- .bk-modal-footer {
69
- position: absolute;
70
- right: 0;
71
- bottom: 0;
72
- left: 0;
73
- height: 58px;
74
- padding: 12px 24px;
75
- background-color: #fafbfd;
76
- border-top: 1px solid #dcdee5;
77
- border-radius: 2px;
78
- }
79
- }
80
- }
@@ -1,68 +0,0 @@
1
- .bk-modal-wrapper.bk-dialog-wrapper {
2
- position: relative;
3
- }
4
- .bk-modal-wrapper.bk-dialog-wrapper * {
5
- box-sizing: border-box;
6
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
7
- }
8
- .bk-modal-wrapper.bk-dialog-wrapper.scroll-able .bk-modal-content {
9
- overflow: auto;
10
- }
11
- .bk-modal-wrapper.bk-dialog-wrapper .bk-dialog-tool {
12
- position: absolute;
13
- top: 0;
14
- right: 0;
15
- left: 0;
16
- height: 30px;
17
- }
18
- .bk-modal-wrapper.bk-dialog-wrapper .bk-dialog-tool .bk-dialog-close {
19
- position: absolute;
20
- top: 5px;
21
- right: 5px;
22
- display: flex;
23
- width: 26px;
24
- height: 26px;
25
- font-size: 22px;
26
- font-weight: 700;
27
- line-height: 26px;
28
- color: #979ba5;
29
- text-align: center;
30
- cursor: pointer;
31
- border-radius: 50%;
32
- transform: rotate(45deg);
33
- justify-content: center;
34
- align-items: center;
35
- }
36
- .bk-modal-wrapper.bk-dialog-wrapper .bk-dialog-header {
37
- padding: 24px;
38
- font-size: 20px;
39
- line-height: 1;
40
- }
41
- .bk-modal-wrapper.bk-dialog-wrapper .bk-dialog-header .bk-dialog-title {
42
- display: inline-block;
43
- width: 100%;
44
- overflow: hidden;
45
- font-size: 24px;
46
- color: #313238;
47
- text-overflow: ellipsis;
48
- white-space: nowrap;
49
- }
50
- .bk-modal-wrapper.bk-dialog-wrapper .bk-modal-content {
51
- height: calc(100% - 132px);
52
- padding: 3px 24px 26px;
53
- margin-bottom: 58px;
54
- font-size: 14px;
55
- line-height: 1.5;
56
- color: #63656e;
57
- }
58
- .bk-modal-wrapper.bk-dialog-wrapper .bk-modal-footer {
59
- position: absolute;
60
- right: 0;
61
- bottom: 0;
62
- left: 0;
63
- height: 58px;
64
- padding: 12px 24px;
65
- background-color: #fafbfd;
66
- border-top: 1px solid #dcdee5;
67
- border-radius: 2px;
68
- }