vxe-table 4.3.1 → 4.3.2

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 (42) hide show
  1. package/es/loading/index.d.ts +4 -0
  2. package/es/loading/style.css +98 -0
  3. package/es/style.css +1 -1
  4. package/es/style.min.css +1 -1
  5. package/es/table/style.css +89 -0
  6. package/es/tools/log.js +1 -1
  7. package/es/v-x-e-table/index.js +1 -1
  8. package/es/v-x-e-table/style.css +1 -0
  9. package/es/vxe-loading/index.d.ts +4 -0
  10. package/es/vxe-loading/index.js +3 -0
  11. package/es/vxe-loading/style.css +98 -0
  12. package/es/vxe-table/style.css +89 -0
  13. package/lib/index.umd.js +2 -2
  14. package/lib/index.umd.min.js +1 -1
  15. package/lib/loading/index.d.ts +4 -0
  16. package/lib/loading/style/index.js +1 -0
  17. package/lib/loading/style/style.css +98 -0
  18. package/lib/loading/style/style.min.css +1 -0
  19. package/lib/style.css +1 -1
  20. package/lib/style.min.css +1 -1
  21. package/lib/table/style/style.css +89 -0
  22. package/lib/table/style/style.min.css +1 -1
  23. package/lib/tools/log.js +1 -1
  24. package/lib/tools/log.min.js +1 -1
  25. package/lib/v-x-e-table/index.js +1 -1
  26. package/lib/v-x-e-table/index.min.js +1 -1
  27. package/lib/v-x-e-table/style/style.css +1 -0
  28. package/lib/vxe-loading/index.d.ts +4 -0
  29. package/lib/vxe-loading/index.js +30 -0
  30. package/lib/vxe-loading/index.min.js +1 -0
  31. package/lib/vxe-loading/style/style.css +98 -0
  32. package/lib/vxe-loading/style/style.min.css +1 -0
  33. package/lib/vxe-table/style/style.css +89 -0
  34. package/lib/vxe-table/style/style.min.css +1 -1
  35. package/package.json +1 -1
  36. package/packages/loading/index.d.ts +4 -0
  37. package/styles/footer.scss +0 -22
  38. package/styles/loading.scss +2 -0
  39. package/styles/modules.scss +1 -6
  40. package/styles/table.scss +24 -0
  41. package/types/all.d.ts +4 -2
  42. package/types/loading.d.ts +10 -0
@@ -0,0 +1,4 @@
1
+ import { VxeLoading } from '../../types/loading'
2
+
3
+ export * from '../../types/loading'
4
+ export default VxeLoading
@@ -0,0 +1,98 @@
1
+ @charset "UTF-8";
2
+ /*font*/
3
+ /*size*/
4
+ /*icon*/
5
+ /*color*/
6
+ /*input/radio/checkbox*/
7
+ /*popup*/
8
+ /*table*/
9
+ /*filter*/
10
+ /*menu*/
11
+ /*loading*/
12
+ /*validate*/
13
+ /*grid*/
14
+ /*toolbar*/
15
+ /*tooltip*/
16
+ /*pager*/
17
+ /*modal*/
18
+ /*checkbox*/
19
+ /*radio*/
20
+ /*button*/
21
+ /*input*/
22
+ /*textarea*/
23
+ /*form*/
24
+ /*select*/
25
+ /*switch*/
26
+ /*pulldown*/
27
+ /*加载中*/
28
+ .vxe-loading {
29
+ display: none;
30
+ position: absolute;
31
+ width: 100%;
32
+ height: 100%;
33
+ top: 0;
34
+ left: 0;
35
+ z-index: 99;
36
+ -webkit-user-select: none;
37
+ -moz-user-select: none;
38
+ -ms-user-select: none;
39
+ user-select: none;
40
+ background-color: rgba(255, 255, 255, 0.5); }
41
+ .vxe-loading.is--visible {
42
+ display: block; }
43
+ .vxe-loading > .vxe-loading--chunk {
44
+ width: 100%;
45
+ position: absolute;
46
+ top: 50%;
47
+ left: 0;
48
+ transform: translateY(-50%);
49
+ text-align: center;
50
+ color: #409eff; }
51
+ .vxe-loading .vxe-loading--default-icon {
52
+ font-size: 1.4em; }
53
+ .vxe-loading .vxe-loading--text {
54
+ padding: 0.4em 0; }
55
+ .vxe-loading .vxe-loading--spinner {
56
+ display: inline-block;
57
+ position: relative;
58
+ width: 56px;
59
+ height: 56px; }
60
+ .vxe-loading .vxe-loading--spinner:before, .vxe-loading .vxe-loading--spinner:after {
61
+ content: "";
62
+ width: 100%;
63
+ height: 100%;
64
+ border-radius: 50%;
65
+ background-color: #409eff;
66
+ opacity: 0.6;
67
+ position: absolute;
68
+ top: 0;
69
+ left: 0;
70
+ -webkit-animation: bounce 2.0s infinite ease-in-out;
71
+ animation: bounce 2.0s infinite ease-in-out; }
72
+ .vxe-loading .vxe-loading--spinner:after {
73
+ -webkit-animation-delay: -1.0s;
74
+ animation-delay: -1.0s; }
75
+
76
+ @-webkit-keyframes bounce {
77
+ 0%, 100% {
78
+ transform: scale(0); }
79
+ 50% {
80
+ transform: scale(1); } }
81
+
82
+ @keyframes bounce {
83
+ 0%, 100% {
84
+ transform: scale(0); }
85
+ 50% {
86
+ transform: scale(1); } }
87
+
88
+ .size--mini .vxe-loading .vxe-loading--spinner {
89
+ width: 38px;
90
+ height: 38px; }
91
+
92
+ .size--small .vxe-loading .vxe-loading--spinner {
93
+ width: 44px;
94
+ height: 44px; }
95
+
96
+ .size--medium .vxe-loading .vxe-loading--spinner {
97
+ width: 50px;
98
+ height: 50px; }