@zkwq/business 0.0.8 → 0.0.10
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.
- package/dist/css/AppDialog.css +161 -0
- package/dist/css/AppDialog.min.css +1 -0
- package/dist/css/BounceLoading.css +91 -0
- package/dist/css/BounceLoading.min.css +1 -0
- package/dist/index.css +1 -1
- package/dist/index.js +1879 -1565
- package/dist/index.min.css +1 -1
- package/dist/index.min.js +14 -14
- package/dist/index.umd.cjs +6 -6
- package/dist/index.umd.min.cjs +6 -6
- package/package.json +1 -1
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
[data-v-742105f1]:export {
|
|
13
|
+
primary: #2F3A91;
|
|
14
|
+
success: #67C23A;
|
|
15
|
+
warning: #FF791A;
|
|
16
|
+
danger: #F1403C;
|
|
17
|
+
info: #8590a6;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
.AppDialog__inner[data-v-742105f1] {
|
|
75
|
+
max-height: 100vh;
|
|
76
|
+
transition: max-height 0.8s ease, height 0.8s ease;
|
|
77
|
+
}
|
|
78
|
+
.AppDialog__content[data-v-742105f1] {
|
|
79
|
+
padding: 10px 20px 50px;
|
|
80
|
+
}
|
|
81
|
+
.AppDialog__title[data-v-742105f1] {
|
|
82
|
+
margin-top: 40px;
|
|
83
|
+
font-size: 24px;
|
|
84
|
+
font-weight: 500;
|
|
85
|
+
color: #2F3A91;
|
|
86
|
+
text-align: center;
|
|
87
|
+
}
|
|
88
|
+
.AppDialog__subtitle[data-v-742105f1] {
|
|
89
|
+
padding: 0 38px;
|
|
90
|
+
margin-top: 4px;
|
|
91
|
+
font-size: 14px;
|
|
92
|
+
line-height: 1.5;
|
|
93
|
+
color: #8590a6;
|
|
94
|
+
text-align: center;
|
|
95
|
+
}
|
|
96
|
+
.AppDialog__title--left[data-v-742105f1] {
|
|
97
|
+
padding: 0 20px;
|
|
98
|
+
font-size: 15px;
|
|
99
|
+
color: #2F3A91;
|
|
100
|
+
font-weight: 600;
|
|
101
|
+
height: 60px;
|
|
102
|
+
line-height: 60px;
|
|
103
|
+
}
|
|
104
|
+
.AppDialog__subtitle--left[data-v-742105f1] {
|
|
105
|
+
padding: 0 20px;
|
|
106
|
+
font-size: 14px;
|
|
107
|
+
line-height: 1;
|
|
108
|
+
color: #8590a6;
|
|
109
|
+
text-align: left;
|
|
110
|
+
}
|
|
111
|
+
@media (max-width: 576px) {
|
|
112
|
+
.AppDialog__title--left[data-v-742105f1] {
|
|
113
|
+
padding: 20px 16px 10px;
|
|
114
|
+
}
|
|
115
|
+
.AppDialog__subtitle--left[data-v-742105f1] {
|
|
116
|
+
padding: 0 16px;
|
|
117
|
+
}
|
|
118
|
+
}.AppDialog__wrapper.base-dialog__wrapper {
|
|
119
|
+
display: flex;
|
|
120
|
+
flex-direction: column;
|
|
121
|
+
justify-content: center;
|
|
122
|
+
overflow-x: hidden;
|
|
123
|
+
overflow-y: auto;
|
|
124
|
+
}
|
|
125
|
+
.AppDialog {
|
|
126
|
+
max-height: 100vh;
|
|
127
|
+
transition: max-height 0.8s ease, height 0.8s ease;
|
|
128
|
+
}
|
|
129
|
+
.AppDialog.base-dialog {
|
|
130
|
+
margin-top: 0 !important;
|
|
131
|
+
margin-bottom: 0 !important;
|
|
132
|
+
}
|
|
133
|
+
.AppDialog .base-dialog__header {
|
|
134
|
+
padding: 0;
|
|
135
|
+
}
|
|
136
|
+
.AppDialog .base-dialog__body {
|
|
137
|
+
padding: 0;
|
|
138
|
+
}
|
|
139
|
+
.AppDialog--fullPage {
|
|
140
|
+
height: 100vh;
|
|
141
|
+
}
|
|
142
|
+
.AppDialog--fullPage.AppDialog .base-dialog__body {
|
|
143
|
+
height: 100%;
|
|
144
|
+
}
|
|
145
|
+
.AppDialog--fullPage.AppDialog .AppDialog__inner {
|
|
146
|
+
height: 100vh;
|
|
147
|
+
overflow: visible;
|
|
148
|
+
}
|
|
149
|
+
.AppDialog--fullPage.AppDialog .AppDialog__content {
|
|
150
|
+
height: 100%;
|
|
151
|
+
}
|
|
152
|
+
.Modal__closeButton {
|
|
153
|
+
position: absolute;
|
|
154
|
+
top: 8px;
|
|
155
|
+
right: -60px;
|
|
156
|
+
padding: 12px;
|
|
157
|
+
}
|
|
158
|
+
.Modal__closeIcon {
|
|
159
|
+
vertical-align: top;
|
|
160
|
+
fill: #FFF;
|
|
161
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[data-v-742105f1]:export{primary:#2F3A91;success:#67C23A;warning:#FF791A;danger:#F1403C;info:#8590a6}.AppDialog__inner[data-v-742105f1]{max-height:100vh;transition:max-height .8s ease,height .8s ease}.AppDialog__content[data-v-742105f1]{padding:10px 20px 50px}.AppDialog__title[data-v-742105f1]{margin-top:40px;font-size:24px;font-weight:500;color:#2f3a91;text-align:center}.AppDialog__subtitle[data-v-742105f1]{padding:0 38px;margin-top:4px;font-size:14px;line-height:1.5;color:#8590a6;text-align:center}.AppDialog__title--left[data-v-742105f1]{padding:0 20px;font-size:15px;color:#2f3a91;font-weight:600;height:60px;line-height:60px}.AppDialog__subtitle--left[data-v-742105f1]{padding:0 20px;font-size:14px;line-height:1;color:#8590a6;text-align:left}@media (max-width:576px){.AppDialog__title--left[data-v-742105f1]{padding:20px 16px 10px}.AppDialog__subtitle--left[data-v-742105f1]{padding:0 16px}}.AppDialog__wrapper.base-dialog__wrapper{display:flex;flex-direction:column;justify-content:center;overflow-x:hidden;overflow-y:auto}.AppDialog{max-height:100vh;transition:max-height .8s ease,height .8s ease}.AppDialog.base-dialog{margin-top:0!important;margin-bottom:0!important}.AppDialog .base-dialog__header{padding:0}.AppDialog .base-dialog__body{padding:0}.AppDialog--fullPage{height:100vh}.AppDialog--fullPage.AppDialog .base-dialog__body{height:100%}.AppDialog--fullPage.AppDialog .AppDialog__inner{height:100vh;overflow:visible}.AppDialog--fullPage.AppDialog .AppDialog__content{height:100%}.Modal__closeButton{position:absolute;top:8px;right:-60px;padding:12px}.Modal__closeIcon{vertical-align:top;fill:#FFF}
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
[data-v-19da6460]:export {
|
|
13
|
+
primary: #2F3A91;
|
|
14
|
+
success: #67C23A;
|
|
15
|
+
warning: #FF791A;
|
|
16
|
+
danger: #F1403C;
|
|
17
|
+
info: #8590a6;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
.BounceLoading[data-v-19da6460] {
|
|
75
|
+
position: relative;
|
|
76
|
+
}
|
|
77
|
+
.BounceLoading .BounceLoading__child[data-v-19da6460] {
|
|
78
|
+
position: absolute;
|
|
79
|
+
background-color: #2F3A91;
|
|
80
|
+
border-radius: 50%;
|
|
81
|
+
-webkit-transform-origin: center;
|
|
82
|
+
transform-origin: center;
|
|
83
|
+
-webkit-animation-iteration-count: infinite;
|
|
84
|
+
animation-iteration-count: infinite;
|
|
85
|
+
-webkit-animation-name: Bounce;
|
|
86
|
+
animation-name: Bounce;
|
|
87
|
+
-webkit-animation-timing-function: ease-in-out;
|
|
88
|
+
animation-timing-function: ease-in-out;
|
|
89
|
+
-webkit-animation-fill-mode: both;
|
|
90
|
+
animation-fill-mode: both;
|
|
91
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[data-v-19da6460]:export{primary:#2F3A91;success:#67C23A;warning:#FF791A;danger:#F1403C;info:#8590a6}.BounceLoading[data-v-19da6460]{position:relative}.BounceLoading .BounceLoading__child[data-v-19da6460]{position:absolute;background-color:#2f3a91;border-radius:50%;-webkit-transform-origin:center;transform-origin:center;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-name:Bounce;animation-name:Bounce;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-fill-mode:both;animation-fill-mode:both}
|