bkui-vue 0.0.2-beta.70 → 0.0.2-beta.72

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 (51) hide show
  1. package/dist/index.cjs.js +53 -53
  2. package/dist/index.esm.js +6625 -6618
  3. package/dist/index.umd.js +53 -53
  4. package/dist/style.css +1 -1
  5. package/dist/style.variable.css +1 -1
  6. package/lib/backtop/backtop.css +8 -8
  7. package/lib/backtop/backtop.less +3 -1
  8. package/lib/backtop/backtop.variable.css +8 -8
  9. package/lib/breadcrumb/breadcrumb.css +4 -4
  10. package/lib/breadcrumb/breadcrumb.variable.css +4 -4
  11. package/lib/card/card.css +4 -4
  12. package/lib/card/card.variable.css +4 -4
  13. package/lib/cascader/cascader.css +4 -4
  14. package/lib/cascader/cascader.variable.css +4 -4
  15. package/lib/container/container.css +4 -4
  16. package/lib/container/container.variable.css +4 -4
  17. package/lib/input/index.js +1 -1
  18. package/lib/input/input.css +16 -4
  19. package/lib/input/input.less +16 -0
  20. package/lib/input/input.variable.css +16 -4
  21. package/lib/loading/loading.css +4 -4
  22. package/lib/loading/loading.variable.css +4 -4
  23. package/lib/menu/menu.css +4 -4
  24. package/lib/menu/menu.variable.css +4 -4
  25. package/lib/message/message.css +16 -2
  26. package/lib/message/message.less +14 -2
  27. package/lib/message/message.variable.css +16 -2
  28. package/lib/progress/progress.css +4 -4
  29. package/lib/progress/progress.variable.css +4 -4
  30. package/lib/search-select/search-select.css +11 -11
  31. package/lib/search-select/search-select.less +13 -9
  32. package/lib/search-select/search-select.variable.css +11 -11
  33. package/lib/select/common.d.ts +1 -0
  34. package/lib/select/index.d.ts +26 -3
  35. package/lib/select/index.js +1 -1
  36. package/lib/select/select.css +4 -4
  37. package/lib/select/select.d.ts +12 -1
  38. package/lib/select/select.variable.css +4 -4
  39. package/lib/styles/mixins/mixins.css +4 -4
  40. package/lib/styles/mixins/mixins.variable.css +4 -4
  41. package/lib/switcher/switcher.css +4 -4
  42. package/lib/switcher/switcher.variable.css +4 -4
  43. package/lib/tag-input/tag-input.css +3 -0
  44. package/lib/tag-input/tag-input.less +4 -0
  45. package/lib/tag-input/tag-input.variable.css +3 -0
  46. package/lib/upload/upload.css +4 -4
  47. package/lib/upload/upload.variable.css +4 -4
  48. package/package.json +1 -1
  49. package/lib/styles/mixins/animate.css +0 -21
  50. package/lib/styles/mixins/animate.less +0 -27
  51. package/lib/styles/mixins/animate.variable.css +0 -21
@@ -11,12 +11,12 @@
11
11
  background-color: transparent;
12
12
  }
13
13
  }
14
- .bk-fade-transtion .bk-fade-enter-active,
15
- .bk-fade-transtion .bk-fade-leave-active {
14
+ .bk-transition .bk-fade-enter-active,
15
+ .bk-transition .bk-fade-leave-active {
16
16
  transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
17
17
  }
18
- .bk-fade-transtion .bk-fade-enter,
19
- .bk-fade-transtion .bk-fade-leave-to {
18
+ .bk-transition .bk-fade-enter,
19
+ .bk-transition .bk-fade-leave-to {
20
20
  opacity: 0;
21
21
  }
22
22
  .clearfix-style::after {
@@ -11,12 +11,12 @@
11
11
  background-color: transparent;
12
12
  }
13
13
  }
14
- .bk-fade-transtion .bk-fade-enter-active,
15
- .bk-fade-transtion .bk-fade-leave-active {
14
+ .bk-transition .bk-fade-enter-active,
15
+ .bk-transition .bk-fade-leave-active {
16
16
  transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
17
17
  }
18
- .bk-fade-transtion .bk-fade-enter,
19
- .bk-fade-transtion .bk-fade-leave-to {
18
+ .bk-transition .bk-fade-enter,
19
+ .bk-transition .bk-fade-leave-to {
20
20
  opacity: 0;
21
21
  }
22
22
  .clearfix-style::after {
@@ -133,12 +133,12 @@
133
133
  background-color: transparent;
134
134
  }
135
135
  }
136
- .bk-fade-transtion .bk-fade-enter-active,
137
- .bk-fade-transtion .bk-fade-leave-active {
136
+ .bk-transition .bk-fade-enter-active,
137
+ .bk-transition .bk-fade-leave-active {
138
138
  transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
139
139
  }
140
- .bk-fade-transtion .bk-fade-enter,
141
- .bk-fade-transtion .bk-fade-leave-to {
140
+ .bk-transition .bk-fade-enter,
141
+ .bk-transition .bk-fade-leave-to {
142
142
  opacity: 0;
143
143
  }
144
144
  .clearfix-style::after {
@@ -69,6 +69,9 @@
69
69
  border-radius: 2px;
70
70
  box-sizing: border-box;
71
71
  }
72
+ .bk-tag-input .bk-tag-input-trigger .tag-list .text:hover {
73
+ background-color: #dcdee5;
74
+ }
72
75
  .bk-tag-input .bk-tag-input-trigger .tag-list .tag-input {
73
76
  width: 10px;
74
77
  height: 22px;
@@ -79,6 +79,10 @@
79
79
  background-color: #f0f1f5;
80
80
  border-radius: 2px;
81
81
  box-sizing: border-box;
82
+
83
+ &:hover {
84
+ background-color: #dcdee5;;
85
+ }
82
86
  }
83
87
 
84
88
  .tag-input {
@@ -191,6 +191,9 @@
191
191
  border-radius: 2px;
192
192
  box-sizing: border-box;
193
193
  }
194
+ .bk-tag-input .bk-tag-input-trigger .tag-list .text:hover {
195
+ background-color: #dcdee5;
196
+ }
194
197
  .bk-tag-input .bk-tag-input-trigger .tag-list .tag-input {
195
198
  width: 10px;
196
199
  height: 22px;
@@ -11,12 +11,12 @@
11
11
  background-color: transparent;
12
12
  }
13
13
  }
14
- .bk-fade-transtion .bk-fade-enter-active,
15
- .bk-fade-transtion .bk-fade-leave-active {
14
+ .bk-transition .bk-fade-enter-active,
15
+ .bk-transition .bk-fade-leave-active {
16
16
  transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
17
17
  }
18
- .bk-fade-transtion .bk-fade-enter,
19
- .bk-fade-transtion .bk-fade-leave-to {
18
+ .bk-transition .bk-fade-enter,
19
+ .bk-transition .bk-fade-leave-to {
20
20
  opacity: 0;
21
21
  }
22
22
  .clearfix-style::after {
@@ -133,12 +133,12 @@
133
133
  background-color: transparent;
134
134
  }
135
135
  }
136
- .bk-fade-transtion .bk-fade-enter-active,
137
- .bk-fade-transtion .bk-fade-leave-active {
136
+ .bk-transition .bk-fade-enter-active,
137
+ .bk-transition .bk-fade-leave-active {
138
138
  transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
139
139
  }
140
- .bk-fade-transtion .bk-fade-enter,
141
- .bk-fade-transtion .bk-fade-leave-to {
140
+ .bk-transition .bk-fade-enter,
141
+ .bk-transition .bk-fade-leave-to {
142
142
  opacity: 0;
143
143
  }
144
144
  .clearfix-style::after {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bkui-vue",
3
- "version": "0.0.2-beta.70",
3
+ "version": "0.0.2-beta.72",
4
4
  "workspaces": {
5
5
  "packages": [
6
6
  "packages/!(**.bak)*",
@@ -1,21 +0,0 @@
1
- @keyframes loading-scale-animate {
2
- 0% {
3
- transform: scale(1);
4
- }
5
- 100% {
6
- transform: scale(0.6);
7
- }
8
- }
9
- @keyframes fade {
10
- 100% {
11
- background-color: transparent;
12
- }
13
- }
14
- .bk-fade-transtion .bk-fade-enter-active,
15
- .bk-fade-transtion .bk-fade-leave-active {
16
- transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
17
- }
18
- .bk-fade-transtion .bk-fade-enter,
19
- .bk-fade-transtion .bk-fade-leave-to {
20
- opacity: 0;
21
- }
@@ -1,27 +0,0 @@
1
- @keyframes loading-scale-animate {
2
- 0% {
3
- transform: scale(1);
4
- }
5
-
6
- 100% {
7
- transform: scale(.6);
8
- }
9
- }
10
-
11
- @keyframes fade {
12
- 100% {
13
- background-color: transparent;
14
- }
15
- }
16
-
17
- .bk-fade-transtion {
18
- .bk-fade-enter-active,
19
- .bk-fade-leave-active {
20
- transition: all .3s cubic-bezier(.55, 0, .1, 1);
21
- }
22
-
23
- .bk-fade-enter,
24
- .bk-fade-leave-to {
25
- opacity: 0;
26
- }
27
- }
@@ -1,21 +0,0 @@
1
- @keyframes loading-scale-animate {
2
- 0% {
3
- transform: scale(1);
4
- }
5
- 100% {
6
- transform: scale(0.6);
7
- }
8
- }
9
- @keyframes fade {
10
- 100% {
11
- background-color: transparent;
12
- }
13
- }
14
- .bk-fade-transtion .bk-fade-enter-active,
15
- .bk-fade-transtion .bk-fade-leave-active {
16
- transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
17
- }
18
- .bk-fade-transtion .bk-fade-enter,
19
- .bk-fade-transtion .bk-fade-leave-to {
20
- opacity: 0;
21
- }