automan-cmd 2.1.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (63) hide show
  1. package/CHANGELOG.md +65 -0
  2. package/README.md +56 -0
  3. package/bin/automan +3 -0
  4. package/bin/automan-build +3 -0
  5. package/bin/automan-config +3 -0
  6. package/bin/automan-create +3 -0
  7. package/bin/automan-publish +3 -0
  8. package/lib/automan-build.js +41 -0
  9. package/lib/automan-config.js +82 -0
  10. package/lib/automan-create.js +137 -0
  11. package/lib/automan-publish.js +331 -0
  12. package/lib/index.js +13 -0
  13. package/lib/install.js.tpl +47 -0
  14. package/lib/util.js +174 -0
  15. package/package.json +37 -0
  16. package/tpl/.babelrc +16 -0
  17. package/tpl/.browserslistrc +3 -0
  18. package/tpl/.eslintignore +2 -0
  19. package/tpl/.eslintrc.js +228 -0
  20. package/tpl/.gitignore.ejs +12 -0
  21. package/tpl/.postcssrc.js +12 -0
  22. package/tpl/README.md +1 -0
  23. package/tpl/changelog.md +1 -0
  24. package/tpl/editor/index.vue +45 -0
  25. package/tpl/icon.png +0 -0
  26. package/tpl/jsconfig.json +7 -0
  27. package/tpl/package.json.ejs +66 -0
  28. package/tpl/preview/app.vue +326 -0
  29. package/tpl/preview/attr/Data.vue +69 -0
  30. package/tpl/preview/attr/Resource.vue +79 -0
  31. package/tpl/preview/attr/com.vue +21 -0
  32. package/tpl/preview/attr/index.js +16 -0
  33. package/tpl/preview/components/Attribute.vue +365 -0
  34. package/tpl/preview/components/FitImg.vue +152 -0
  35. package/tpl/preview/components/ImgViewer.vue +80 -0
  36. package/tpl/preview/components/Loading.vue +55 -0
  37. package/tpl/preview/components/Toast.vue +111 -0
  38. package/tpl/preview/index.js +22 -0
  39. package/tpl/preview/index.tpl +13 -0
  40. package/tpl/preview/lib/ESlog.js +46 -0
  41. package/tpl/preview/lib/Util.js +57 -0
  42. package/tpl/preview/lib/fetch.js +139 -0
  43. package/tpl/preview/lib/index.js +15 -0
  44. package/tpl/preview/lib/vue/filters.js +53 -0
  45. package/tpl/preview/lib/vue/index.js +9 -0
  46. package/tpl/preview/lib/vue/mixin.js +166 -0
  47. package/tpl/preview/mint-ui/message-box/index.js +1503 -0
  48. package/tpl/preview/mint-ui/message-box/style.css +159 -0
  49. package/tpl/preview/mint-ui/popup/index.js +1046 -0
  50. package/tpl/preview/mint-ui/popup/style.css +115 -0
  51. package/tpl/preview/mint-ui/spinner/index.js +657 -0
  52. package/tpl/preview/mint-ui/spinner/style.css +227 -0
  53. package/tpl/preview/mint-ui/swipe/index.js +907 -0
  54. package/tpl/preview/mint-ui/swipe/style.css +43 -0
  55. package/tpl/preview/mint-ui/swipe-item/index.js +171 -0
  56. package/tpl/preview/mint-ui/swipe-item/style.css +1 -0
  57. package/tpl/preview/style.css +126 -0
  58. package/tpl/server.config.js +6 -0
  59. package/tpl/src/assets/css/index.scss +29 -0
  60. package/tpl/src/example.vue +165 -0
  61. package/tpl/src/index.vue.ejs +32 -0
  62. package/tpl/webpack.config.js.ejs +267 -0
  63. 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
+ }