automan-cmd 2.1.5
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +65 -0
- package/README.md +56 -0
- package/bin/automan +3 -0
- package/bin/automan-build +3 -0
- package/bin/automan-config +3 -0
- package/bin/automan-create +3 -0
- package/bin/automan-publish +3 -0
- package/lib/automan-build.js +41 -0
- package/lib/automan-config.js +82 -0
- package/lib/automan-create.js +137 -0
- package/lib/automan-publish.js +331 -0
- package/lib/index.js +13 -0
- package/lib/install.js.tpl +47 -0
- package/lib/util.js +174 -0
- package/package.json +37 -0
- package/tpl/.babelrc +16 -0
- package/tpl/.browserslistrc +3 -0
- package/tpl/.eslintignore +2 -0
- package/tpl/.eslintrc.js +228 -0
- package/tpl/.gitignore.ejs +12 -0
- package/tpl/.postcssrc.js +12 -0
- package/tpl/README.md +1 -0
- package/tpl/changelog.md +1 -0
- package/tpl/editor/index.vue +45 -0
- package/tpl/icon.png +0 -0
- package/tpl/jsconfig.json +7 -0
- package/tpl/package.json.ejs +66 -0
- package/tpl/preview/app.vue +326 -0
- package/tpl/preview/attr/Data.vue +69 -0
- package/tpl/preview/attr/Resource.vue +79 -0
- package/tpl/preview/attr/com.vue +21 -0
- package/tpl/preview/attr/index.js +16 -0
- package/tpl/preview/components/Attribute.vue +365 -0
- package/tpl/preview/components/FitImg.vue +152 -0
- package/tpl/preview/components/ImgViewer.vue +80 -0
- package/tpl/preview/components/Loading.vue +55 -0
- package/tpl/preview/components/Toast.vue +111 -0
- package/tpl/preview/index.js +22 -0
- package/tpl/preview/index.tpl +13 -0
- package/tpl/preview/lib/ESlog.js +46 -0
- package/tpl/preview/lib/Util.js +57 -0
- package/tpl/preview/lib/fetch.js +139 -0
- package/tpl/preview/lib/index.js +15 -0
- package/tpl/preview/lib/vue/filters.js +53 -0
- package/tpl/preview/lib/vue/index.js +9 -0
- package/tpl/preview/lib/vue/mixin.js +166 -0
- package/tpl/preview/mint-ui/message-box/index.js +1503 -0
- package/tpl/preview/mint-ui/message-box/style.css +159 -0
- package/tpl/preview/mint-ui/popup/index.js +1046 -0
- package/tpl/preview/mint-ui/popup/style.css +115 -0
- package/tpl/preview/mint-ui/spinner/index.js +657 -0
- package/tpl/preview/mint-ui/spinner/style.css +227 -0
- package/tpl/preview/mint-ui/swipe/index.js +907 -0
- package/tpl/preview/mint-ui/swipe/style.css +43 -0
- package/tpl/preview/mint-ui/swipe-item/index.js +171 -0
- package/tpl/preview/mint-ui/swipe-item/style.css +1 -0
- package/tpl/preview/style.css +126 -0
- package/tpl/server.config.js +6 -0
- package/tpl/src/assets/css/index.scss +29 -0
- package/tpl/src/example.vue +165 -0
- package/tpl/src/index.vue.ejs +32 -0
- package/tpl/webpack.config.js.ejs +267 -0
- package/tpl/yarn.lock +6037 -0
@@ -0,0 +1,227 @@
|
|
1
|
+
|
2
|
+
.mint-spinner-snake {
|
3
|
+
-webkit-animation: mint-spinner-rotate 0.8s infinite linear;
|
4
|
+
animation: mint-spinner-rotate 0.8s infinite linear;
|
5
|
+
border: 4px solid transparent;
|
6
|
+
border-radius: 50%;
|
7
|
+
}
|
8
|
+
@-webkit-keyframes mint-spinner-rotate {
|
9
|
+
0% {
|
10
|
+
-webkit-transform: rotate(0deg);
|
11
|
+
transform: rotate(0deg);
|
12
|
+
}
|
13
|
+
100% {
|
14
|
+
-webkit-transform: rotate(360deg);
|
15
|
+
transform: rotate(360deg);
|
16
|
+
}
|
17
|
+
}
|
18
|
+
@keyframes mint-spinner-rotate {
|
19
|
+
0% {
|
20
|
+
-webkit-transform: rotate(0deg);
|
21
|
+
transform: rotate(0deg);
|
22
|
+
}
|
23
|
+
100% {
|
24
|
+
-webkit-transform: rotate(360deg);
|
25
|
+
transform: rotate(360deg);
|
26
|
+
}
|
27
|
+
}
|
28
|
+
|
29
|
+
.mint-spinner-double-bounce {
|
30
|
+
position: relative;
|
31
|
+
}
|
32
|
+
.mint-spinner-double-bounce-bounce1, .mint-spinner-double-bounce-bounce2 {
|
33
|
+
width: 100%;
|
34
|
+
height: 100%;
|
35
|
+
border-radius: 50%;
|
36
|
+
opacity: 0.6;
|
37
|
+
position: absolute;
|
38
|
+
top: 0;
|
39
|
+
left: 0;
|
40
|
+
-webkit-animation: mint-spinner-double-bounce 2.0s infinite ease-in-out;
|
41
|
+
animation: mint-spinner-double-bounce 2.0s infinite ease-in-out;
|
42
|
+
}
|
43
|
+
.mint-spinner-double-bounce-bounce2 {
|
44
|
+
-webkit-animation-delay: -1.0s;
|
45
|
+
animation-delay: -1.0s;
|
46
|
+
}
|
47
|
+
@-webkit-keyframes mint-spinner-double-bounce {
|
48
|
+
0%, 100% {
|
49
|
+
-webkit-transform: scale(0.0);
|
50
|
+
transform: scale(0.0);
|
51
|
+
}
|
52
|
+
50% {
|
53
|
+
-webkit-transform: scale(1.0);
|
54
|
+
transform: scale(1.0);
|
55
|
+
}
|
56
|
+
}
|
57
|
+
@keyframes mint-spinner-double-bounce {
|
58
|
+
0%, 100% {
|
59
|
+
-webkit-transform: scale(0.0);
|
60
|
+
transform: scale(0.0);
|
61
|
+
}
|
62
|
+
50% {
|
63
|
+
-webkit-transform: scale(1.0);
|
64
|
+
transform: scale(1.0);
|
65
|
+
}
|
66
|
+
}
|
67
|
+
|
68
|
+
.mint-spinner-triple-bounce {}
|
69
|
+
.mint-spinner-triple-bounce-bounce1, .mint-spinner-triple-bounce-bounce2, .mint-spinner-triple-bounce-bounce3 {
|
70
|
+
border-radius: 100%;
|
71
|
+
display: inline-block;
|
72
|
+
-webkit-animation: mint-spinner-triple-bounce 1.4s infinite ease-in-out both;
|
73
|
+
animation: mint-spinner-triple-bounce 1.4s infinite ease-in-out both;
|
74
|
+
}
|
75
|
+
.mint-spinner-triple-bounce-bounce1 {
|
76
|
+
-webkit-animation-delay: -0.32s;
|
77
|
+
animation-delay: -0.32s;
|
78
|
+
}
|
79
|
+
.mint-spinner-triple-bounce-bounce2 {
|
80
|
+
-webkit-animation-delay: -0.16s;
|
81
|
+
animation-delay: -0.16s;
|
82
|
+
}
|
83
|
+
@-webkit-keyframes mint-spinner-triple-bounce {
|
84
|
+
0%, 80%, 100% {
|
85
|
+
-webkit-transform: scale(0);
|
86
|
+
transform: scale(0);
|
87
|
+
}
|
88
|
+
40% {
|
89
|
+
-webkit-transform: scale(1.0);
|
90
|
+
transform: scale(1.0);
|
91
|
+
}
|
92
|
+
}
|
93
|
+
@keyframes mint-spinner-triple-bounce {
|
94
|
+
0%, 80%, 100% {
|
95
|
+
-webkit-transform: scale(0);
|
96
|
+
transform: scale(0);
|
97
|
+
}
|
98
|
+
40% {
|
99
|
+
-webkit-transform: scale(1.0);
|
100
|
+
transform: scale(1.0);
|
101
|
+
}
|
102
|
+
}
|
103
|
+
|
104
|
+
.mint-spinner-fading-circle {
|
105
|
+
position: relative
|
106
|
+
}
|
107
|
+
.mint-spinner-fading-circle-circle {
|
108
|
+
width: 100%;
|
109
|
+
height: 100%;
|
110
|
+
top: 0;
|
111
|
+
left: 0;
|
112
|
+
position: absolute
|
113
|
+
}
|
114
|
+
.mint-spinner-fading-circle-circle::before {
|
115
|
+
content: " ";
|
116
|
+
display: block;
|
117
|
+
margin: 0 auto;
|
118
|
+
width: 15%;
|
119
|
+
height: 15%;
|
120
|
+
border-radius: 100%;
|
121
|
+
-webkit-animation: mint-fading-circle 1.2s infinite ease-in-out both;
|
122
|
+
animation: mint-fading-circle 1.2s infinite ease-in-out both
|
123
|
+
}
|
124
|
+
.mint-spinner-fading-circle-circle.is-circle2 {
|
125
|
+
-webkit-transform: rotate(30deg);
|
126
|
+
transform: rotate(30deg)
|
127
|
+
}
|
128
|
+
.mint-spinner-fading-circle-circle.is-circle2::before {
|
129
|
+
-webkit-animation-delay: -1.1s;
|
130
|
+
animation-delay: -1.1s
|
131
|
+
}
|
132
|
+
.mint-spinner-fading-circle-circle.is-circle3 {
|
133
|
+
-webkit-transform: rotate(60deg);
|
134
|
+
transform: rotate(60deg)
|
135
|
+
}
|
136
|
+
.mint-spinner-fading-circle-circle.is-circle3::before {
|
137
|
+
-webkit-animation-delay: -1s;
|
138
|
+
animation-delay: -1s
|
139
|
+
}
|
140
|
+
.mint-spinner-fading-circle-circle.is-circle4 {
|
141
|
+
-webkit-transform: rotate(90deg);
|
142
|
+
transform: rotate(90deg)
|
143
|
+
}
|
144
|
+
.mint-spinner-fading-circle-circle.is-circle4::before {
|
145
|
+
-webkit-animation-delay: -0.9s;
|
146
|
+
animation-delay: -0.9s
|
147
|
+
}
|
148
|
+
.mint-spinner-fading-circle-circle.is-circle5 {
|
149
|
+
-webkit-transform: rotate(120deg);
|
150
|
+
transform: rotate(120deg)
|
151
|
+
}
|
152
|
+
.mint-spinner-fading-circle-circle.is-circle5::before {
|
153
|
+
-webkit-animation-delay: -0.8s;
|
154
|
+
animation-delay: -0.8s
|
155
|
+
}
|
156
|
+
.mint-spinner-fading-circle-circle.is-circle6 {
|
157
|
+
-webkit-transform: rotate(150deg);
|
158
|
+
transform: rotate(150deg)
|
159
|
+
}
|
160
|
+
.mint-spinner-fading-circle-circle.is-circle6::before {
|
161
|
+
-webkit-animation-delay: -0.7s;
|
162
|
+
animation-delay: -0.7s
|
163
|
+
}
|
164
|
+
.mint-spinner-fading-circle-circle.is-circle7 {
|
165
|
+
-webkit-transform: rotate(180deg);
|
166
|
+
transform: rotate(180deg)
|
167
|
+
}
|
168
|
+
.mint-spinner-fading-circle-circle.is-circle7::before {
|
169
|
+
-webkit-animation-delay: -0.6s;
|
170
|
+
animation-delay: -0.6s
|
171
|
+
}
|
172
|
+
.mint-spinner-fading-circle-circle.is-circle8 {
|
173
|
+
-webkit-transform: rotate(210deg);
|
174
|
+
transform: rotate(210deg)
|
175
|
+
}
|
176
|
+
.mint-spinner-fading-circle-circle.is-circle8::before {
|
177
|
+
-webkit-animation-delay: -0.5s;
|
178
|
+
animation-delay: -0.5s
|
179
|
+
}
|
180
|
+
.mint-spinner-fading-circle-circle.is-circle9 {
|
181
|
+
-webkit-transform: rotate(240deg);
|
182
|
+
transform: rotate(240deg)
|
183
|
+
}
|
184
|
+
.mint-spinner-fading-circle-circle.is-circle9::before {
|
185
|
+
-webkit-animation-delay: -0.4s;
|
186
|
+
animation-delay: -0.4s
|
187
|
+
}
|
188
|
+
.mint-spinner-fading-circle-circle.is-circle10 {
|
189
|
+
-webkit-transform: rotate(270deg);
|
190
|
+
transform: rotate(270deg)
|
191
|
+
}
|
192
|
+
.mint-spinner-fading-circle-circle.is-circle10::before {
|
193
|
+
-webkit-animation-delay: -0.3s;
|
194
|
+
animation-delay: -0.3s
|
195
|
+
}
|
196
|
+
.mint-spinner-fading-circle-circle.is-circle11 {
|
197
|
+
-webkit-transform: rotate(300deg);
|
198
|
+
transform: rotate(300deg)
|
199
|
+
}
|
200
|
+
.mint-spinner-fading-circle-circle.is-circle11::before {
|
201
|
+
-webkit-animation-delay: -0.2s;
|
202
|
+
animation-delay: -0.2s
|
203
|
+
}
|
204
|
+
.mint-spinner-fading-circle-circle.is-circle12 {
|
205
|
+
-webkit-transform: rotate(330deg);
|
206
|
+
transform: rotate(330deg)
|
207
|
+
}
|
208
|
+
.mint-spinner-fading-circle-circle.is-circle12::before {
|
209
|
+
-webkit-animation-delay: -0.1s;
|
210
|
+
animation-delay: -0.1s
|
211
|
+
}
|
212
|
+
@-webkit-keyframes mint-fading-circle {
|
213
|
+
0%, 39%, 100% {
|
214
|
+
opacity: 0
|
215
|
+
}
|
216
|
+
40% {
|
217
|
+
opacity: 1
|
218
|
+
}
|
219
|
+
}
|
220
|
+
@keyframes mint-fading-circle {
|
221
|
+
0%, 39%, 100% {
|
222
|
+
opacity: 0
|
223
|
+
}
|
224
|
+
40% {
|
225
|
+
opacity: 1
|
226
|
+
}
|
227
|
+
}
|