cloudcc-cli 1.2.5 → 1.2.6
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/README.md +8 -0
- package/package.json +1 -1
- package/template/Appvue +29 -19
- package/template/httpjs +2 -3
- package/template/index.js +1 -0
- package/template/indexvue +163 -116
- package/template/mainjs +4 -1
- package/template/package-lockjson +26 -40
- package/template/packagejson +14 -8
- package/template/vueconfigjs +16 -2
- package/cloudcc-cli +0 -3332
package/README.md
CHANGED
package/package.json
CHANGED
package/template/Appvue
CHANGED
|
@@ -1,26 +1,36 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div
|
|
3
|
-
<
|
|
2
|
+
<div class="app">
|
|
3
|
+
<div @click="hello">hello CloudCC</div>
|
|
4
|
+
<Plugin />
|
|
4
5
|
</div>
|
|
5
6
|
</template>
|
|
6
7
|
|
|
7
8
|
<script>
|
|
8
|
-
import
|
|
9
|
-
export default {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
9
|
+
import Plugin from "../plugin/index.vue";
|
|
10
|
+
export default {
|
|
11
|
+
name: "App",
|
|
12
|
+
components: {
|
|
13
|
+
Plugin,
|
|
14
|
+
},
|
|
15
|
+
methods: {
|
|
16
|
+
hello() {
|
|
17
|
+
this.$CCDK.CCMessage.showMessage("Hello CloudCC");
|
|
18
|
+
},
|
|
19
|
+
},
|
|
20
|
+
};
|
|
15
21
|
</script>
|
|
16
22
|
|
|
17
|
-
<style>
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
23
|
+
<style lang="scss">
|
|
24
|
+
html body {
|
|
25
|
+
padding: 0;
|
|
26
|
+
margin: 0;
|
|
27
|
+
height: 100vh;
|
|
28
|
+
width: 100%;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.app {
|
|
32
|
+
margin: auto;
|
|
33
|
+
height: 100px;
|
|
34
|
+
width: 200px;
|
|
35
|
+
}
|
|
36
|
+
</style>
|
package/template/httpjs
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import axios from 'axios'
|
|
2
2
|
import packageJson from '../package.json'
|
|
3
|
-
import * as CCDK from "cloudcc-ccdk/lib/ccdk.min.js";
|
|
4
3
|
const service = axios.create({
|
|
5
4
|
timeout: 60000, // request timeout
|
|
6
5
|
headers: {
|
|
@@ -11,7 +10,7 @@ const service = axios.create({
|
|
|
11
10
|
// request interceptor
|
|
12
11
|
service.interceptors.request.use(
|
|
13
12
|
config => {
|
|
14
|
-
config.headers.accessToken = CCDK.CCToken.getToken()
|
|
13
|
+
config.headers.accessToken = window.$CCDK.CCToken.getToken()
|
|
15
14
|
return config
|
|
16
15
|
},
|
|
17
16
|
error => {
|
|
@@ -39,7 +38,7 @@ const formateData = data => {
|
|
|
39
38
|
head: {
|
|
40
39
|
appType: packageJson.name,
|
|
41
40
|
appVersion: packageJson.version,
|
|
42
|
-
accessToken: CCDK.CCToken.getToken()
|
|
41
|
+
accessToken: window.$CCDK.CCToken.getToken()
|
|
43
42
|
},
|
|
44
43
|
body: {
|
|
45
44
|
...data
|
package/template/index.js
CHANGED
package/template/indexvue
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div class="
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
2
|
+
<div class="cloudccButton" @mouseover="myMouseover">
|
|
3
|
+
<el-button
|
|
4
|
+
v-loading.fullscreen.lock="fullscreenLoading"
|
|
5
|
+
element-loading-text="loading..."
|
|
6
|
+
:style="`font-size:` + elePropObj.fontSize + `px;` + elePropObj.style"
|
|
7
|
+
:type="elePropObj.type"
|
|
8
|
+
@click="handleClick"
|
|
9
9
|
>{{ elePropObj.defaultValue }}</el-button
|
|
10
|
-
|
|
11
|
-
</div>
|
|
12
|
-
</template>
|
|
10
|
+
>
|
|
11
|
+
</div >
|
|
12
|
+
</template >
|
|
13
13
|
|
|
14
14
|
<script>
|
|
15
15
|
import axios from "../utils/http";
|
|
16
16
|
export default {
|
|
17
|
-
name: "
|
|
17
|
+
name: "my-button",
|
|
18
18
|
props: {
|
|
19
19
|
elePropObj: {
|
|
20
20
|
type: Object,
|
|
@@ -22,24 +22,42 @@ export default {
|
|
|
22
22
|
},
|
|
23
23
|
eleEventObj: {
|
|
24
24
|
type: Object,
|
|
25
|
-
default: () => ({
|
|
26
|
-
|
|
25
|
+
default: () => ({
|
|
26
|
+
myCreated: `function created(self) {
|
|
27
|
+
// self即this,本组件的vue实例
|
|
28
|
+
}`,
|
|
29
|
+
myMounted: `function mounted(self) {
|
|
30
|
+
// self即this,本组件的vue实例
|
|
31
|
+
}`,
|
|
32
|
+
myDestroyed: `function destroyed(self) {
|
|
33
|
+
// self即this,本组件的vue实例
|
|
34
|
+
}`,
|
|
35
|
+
myMouseover: `function myMouseover(self) {
|
|
36
|
+
// self即this,本组件的vue实例
|
|
37
|
+
}`,
|
|
38
|
+
}),
|
|
39
|
+
},
|
|
40
|
+
version: {
|
|
41
|
+
type: String,
|
|
42
|
+
default: "",
|
|
43
|
+
},
|
|
27
44
|
},
|
|
28
45
|
data() {
|
|
29
46
|
return {
|
|
30
47
|
fullscreenLoading: false,
|
|
31
48
|
componentInfo: {
|
|
32
|
-
component: "
|
|
33
|
-
|
|
49
|
+
component: "my-button",
|
|
50
|
+
// 按钮
|
|
51
|
+
compName: "我的按钮",
|
|
34
52
|
icon: "#icon-anniu",
|
|
35
53
|
sort: 1,
|
|
36
|
-
|
|
37
|
-
compDesc: "常用的操作按钮。",
|
|
54
|
+
compDesc: "组件描述信息",
|
|
38
55
|
/* 组件分类:
|
|
39
56
|
* private:私有组件(自己组织可见)
|
|
40
57
|
* beta:组件测试版本
|
|
41
58
|
*/
|
|
42
|
-
category: "private",
|
|
59
|
+
category: "private", // public private
|
|
60
|
+
version: "0.0.1",
|
|
43
61
|
},
|
|
44
62
|
style: {
|
|
45
63
|
unit: "px",
|
|
@@ -51,69 +69,97 @@ export default {
|
|
|
51
69
|
opacity: 1,
|
|
52
70
|
},
|
|
53
71
|
styleOption: {
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
{
|
|
67
|
-
value: "hw",
|
|
68
|
-
label: "视口",
|
|
69
|
-
},
|
|
70
|
-
],
|
|
71
|
-
},
|
|
72
|
-
width: {
|
|
73
|
-
lable: "宽",
|
|
74
|
-
type: "input",
|
|
75
|
-
inputType: "number",
|
|
76
|
-
},
|
|
77
|
-
height: {
|
|
78
|
-
lable: "高",
|
|
79
|
-
type: "input",
|
|
80
|
-
inputType: "number",
|
|
72
|
+
word: {
|
|
73
|
+
lable: "label.help",
|
|
74
|
+
type: "word",
|
|
75
|
+
link: "https://zucfl0psd6.feishu.cn/wiki/wikcnJNCCWZB05fOrvRkBuNQ7re",
|
|
76
|
+
},
|
|
77
|
+
unit: {
|
|
78
|
+
lable: "label.custom.unit",
|
|
79
|
+
type: "option",
|
|
80
|
+
options: [
|
|
81
|
+
{
|
|
82
|
+
value: "px",
|
|
83
|
+
label: "label.custom.pixel",
|
|
81
84
|
},
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
inputType: "number",
|
|
85
|
+
{
|
|
86
|
+
value: "%",
|
|
87
|
+
label: "label.percent",
|
|
86
88
|
},
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
inputType: "number",
|
|
89
|
+
{
|
|
90
|
+
value: "hw",
|
|
91
|
+
label: "label.custom.viewport",
|
|
91
92
|
},
|
|
93
|
+
],
|
|
92
94
|
},
|
|
95
|
+
width: {
|
|
96
|
+
lable: "label.custom.width",
|
|
97
|
+
type: "input",
|
|
98
|
+
inputType: "number",
|
|
99
|
+
},
|
|
100
|
+
height: {
|
|
101
|
+
lable: "label.custom.height",
|
|
102
|
+
type: "input",
|
|
103
|
+
inputType: "number",
|
|
104
|
+
},
|
|
105
|
+
top: {
|
|
106
|
+
lable: "label.dev.y.coordinate",
|
|
107
|
+
type: "input",
|
|
108
|
+
inputType: "number",
|
|
109
|
+
},
|
|
110
|
+
left: {
|
|
111
|
+
lable: "label.dev.x.coordinate",
|
|
112
|
+
type: "input",
|
|
113
|
+
inputType: "number",
|
|
114
|
+
},
|
|
115
|
+
},
|
|
93
116
|
propObj: {
|
|
94
117
|
id: "",
|
|
95
118
|
pageApi: "createPage",
|
|
96
|
-
defaultValue: "
|
|
119
|
+
defaultValue: "Button",
|
|
97
120
|
type: "primary",
|
|
98
121
|
fontSize: 16,
|
|
99
122
|
functionContent: `function test(conext,value) {
|
|
100
|
-
|
|
123
|
+
let requestParams = {
|
|
124
|
+
className: "TestUpdate", // 类名 string
|
|
125
|
+
methodName: "queryGao", // 方法名 string
|
|
126
|
+
params: [
|
|
127
|
+
{
|
|
128
|
+
"argType": "java.lang.String",
|
|
129
|
+
"argValue": "1111",
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"argType": "java.lang.String",
|
|
133
|
+
"argValue": "2222",
|
|
134
|
+
}
|
|
135
|
+
], // 请求参数
|
|
136
|
+
};
|
|
137
|
+
return requestParams;
|
|
101
138
|
}`,
|
|
102
139
|
handleComponentId: "",
|
|
103
140
|
axiosAddres: "http://localhost:8080/api/pc/1.0/school/add",
|
|
104
|
-
|
|
141
|
+
returnBody: `function test(self,res) {
|
|
142
|
+
console.log(res)
|
|
143
|
+
if (res.returnCode == 200 || "1" == res.returnCode) {
|
|
144
|
+
self.$message({
|
|
145
|
+
message: "提交成功",
|
|
146
|
+
type: "success",
|
|
147
|
+
});
|
|
148
|
+
}
|
|
149
|
+
}`,
|
|
150
|
+
style: "",
|
|
105
151
|
},
|
|
106
152
|
propOption: {
|
|
107
|
-
|
|
108
|
-
lable: "
|
|
153
|
+
style: {
|
|
154
|
+
lable: "label.style",
|
|
109
155
|
type: "input",
|
|
110
156
|
},
|
|
111
157
|
defaultValue: {
|
|
112
|
-
lable: "
|
|
158
|
+
lable: "label.dev.defaultvalue",
|
|
113
159
|
type: "defaultValueInput",
|
|
114
160
|
},
|
|
115
161
|
type: {
|
|
116
|
-
lable: "
|
|
162
|
+
lable: "label.dev.button.type",
|
|
117
163
|
type: "option",
|
|
118
164
|
options: [
|
|
119
165
|
{
|
|
@@ -139,54 +185,58 @@ export default {
|
|
|
139
185
|
],
|
|
140
186
|
},
|
|
141
187
|
fontSize: {
|
|
142
|
-
lable: "
|
|
188
|
+
lable: "label.dev.font.size",
|
|
143
189
|
type: "input",
|
|
144
190
|
inputType: "number",
|
|
145
191
|
},
|
|
146
192
|
handleComponentId: {
|
|
147
|
-
lable: "
|
|
193
|
+
lable: "label.dev.associated.compid",
|
|
148
194
|
type: "input",
|
|
149
195
|
},
|
|
150
196
|
functionContent: {
|
|
151
|
-
lable: "
|
|
197
|
+
lable: "label.dev.request.body",
|
|
152
198
|
type: "code",
|
|
153
199
|
},
|
|
154
200
|
axiosAddres: {
|
|
155
|
-
lable: "
|
|
201
|
+
lable: "label.dev.interface.address",
|
|
202
|
+
type: "code",
|
|
203
|
+
},
|
|
204
|
+
returnBody: {
|
|
205
|
+
lable: "label.dev.return.body",
|
|
156
206
|
type: "code",
|
|
157
207
|
},
|
|
158
208
|
},
|
|
159
|
-
events:{
|
|
160
|
-
|
|
209
|
+
events: {
|
|
210
|
+
myCreated: `function created(self) {
|
|
161
211
|
// self即this,本组件的vue实例
|
|
162
212
|
}`,
|
|
163
|
-
|
|
213
|
+
myMounted: `function mounted(self) {
|
|
164
214
|
// self即this,本组件的vue实例
|
|
165
215
|
}`,
|
|
166
|
-
|
|
216
|
+
myDestroyed: `function destroyed(self) {
|
|
167
217
|
// self即this,本组件的vue实例
|
|
168
218
|
}`,
|
|
169
|
-
|
|
219
|
+
myMouseover: `function myMouseover(self) {
|
|
170
220
|
// self即this,本组件的vue实例
|
|
171
221
|
}`,
|
|
172
222
|
},
|
|
173
|
-
eventsOption:{
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
223
|
+
eventsOption: {
|
|
224
|
+
myCreated: {
|
|
225
|
+
lable: "label.dev.created",
|
|
226
|
+
type: "code",
|
|
227
|
+
},
|
|
228
|
+
myMounted: {
|
|
229
|
+
lable: "label.dev.mounted",
|
|
230
|
+
type: "code",
|
|
231
|
+
},
|
|
232
|
+
myDestroyed: {
|
|
233
|
+
lable: "label.dev.destroyed",
|
|
234
|
+
type: "code",
|
|
235
|
+
},
|
|
236
|
+
myMouseover: {
|
|
237
|
+
lable: "label.dev.mouseover",
|
|
238
|
+
type: "code",
|
|
239
|
+
},
|
|
190
240
|
},
|
|
191
241
|
animations: [],
|
|
192
242
|
groupStyle: {},
|
|
@@ -194,35 +244,37 @@ export default {
|
|
|
194
244
|
};
|
|
195
245
|
},
|
|
196
246
|
created() {
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
247
|
+
this.$Components.set(this.elePropObj.id, this);
|
|
248
|
+
if (this.$Components.get("editMode") == "edit") {
|
|
249
|
+
// 编辑模式不触发
|
|
250
|
+
return;
|
|
251
|
+
}
|
|
252
|
+
let myCreated = eval("(false || " + this.eleEventObj.myCreated + ")");
|
|
253
|
+
myCreated(this);
|
|
204
254
|
},
|
|
205
255
|
mounted() {
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
myMounted(this)
|
|
256
|
+
if (this.$Components.get("editMode") == "edit") {
|
|
257
|
+
// 编辑模式不触发
|
|
258
|
+
return;
|
|
259
|
+
}
|
|
260
|
+
let myMounted = eval("(false || " + this.eleEventObj.myMounted + ")");
|
|
261
|
+
myMounted(this);
|
|
213
262
|
},
|
|
214
263
|
destroyed() {
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
);
|
|
218
|
-
myDestroyed(this)
|
|
264
|
+
let myDestroyed = eval("(false || " + this.eleEventObj.myDestroyed + ")");
|
|
265
|
+
myDestroyed(this);
|
|
219
266
|
},
|
|
220
267
|
methods: {
|
|
221
268
|
myMouseover() {
|
|
222
269
|
let mouseoverEvent = eval(
|
|
223
|
-
|
|
270
|
+
"(false || " + this.eleEventObj.myMouseover + ")"
|
|
224
271
|
);
|
|
225
|
-
mouseoverEvent(this)
|
|
272
|
+
mouseoverEvent(this);
|
|
273
|
+
},
|
|
274
|
+
returnBodyHandle(res) {
|
|
275
|
+
let self = this;
|
|
276
|
+
let getReturnBody = eval("(false || " + this.elePropObj.returnBody + ")");
|
|
277
|
+
getReturnBody(self, res);
|
|
226
278
|
},
|
|
227
279
|
handleClick() {
|
|
228
280
|
if (
|
|
@@ -256,12 +308,7 @@ export default {
|
|
|
256
308
|
.then(
|
|
257
309
|
(res) => {
|
|
258
310
|
this.fullscreenLoading = false;
|
|
259
|
-
|
|
260
|
-
this.$message({
|
|
261
|
-
message: "提交成功",
|
|
262
|
-
type: "success",
|
|
263
|
-
});
|
|
264
|
-
}
|
|
311
|
+
this.returnBodyHandle(res);
|
|
265
312
|
},
|
|
266
313
|
(err) => {
|
|
267
314
|
this.fullscreenLoading = false;
|
|
@@ -282,15 +329,15 @@ export default {
|
|
|
282
329
|
},
|
|
283
330
|
};
|
|
284
331
|
</script>
|
|
285
|
-
<style
|
|
286
|
-
.
|
|
332
|
+
<style >
|
|
333
|
+
.cloudccButton {
|
|
287
334
|
height: 100%;
|
|
288
335
|
width: 100%;
|
|
289
336
|
padding: 0px !important;
|
|
290
337
|
}
|
|
291
|
-
.
|
|
338
|
+
.cloudccButton .el-button {
|
|
292
339
|
height: 100%;
|
|
293
340
|
width: 100%;
|
|
294
341
|
padding: 0px !important;
|
|
295
342
|
}
|
|
296
|
-
</style>
|
|
343
|
+
</style>
|
package/template/mainjs
CHANGED
|
@@ -4,9 +4,12 @@ Vue.use(ElementUI);
|
|
|
4
4
|
import 'element-ui/lib/theme-chalk/index.css';
|
|
5
5
|
import App from './App.vue';
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
import * as CCDK from "cloudcc-ccdk/lib/ccdk.min.js";
|
|
8
|
+
Vue.prototype.$CCDK = CCDK
|
|
9
|
+
window.$CCDK = CCDK
|
|
8
10
|
|
|
9
11
|
Vue.prototype.$Components = new Map()
|
|
12
|
+
Vue.config.productionTip = false
|
|
10
13
|
|
|
11
14
|
new Vue({
|
|
12
15
|
render: h => h(App),
|
|
@@ -2326,9 +2326,8 @@
|
|
|
2326
2326
|
},
|
|
2327
2327
|
"async-validator": {
|
|
2328
2328
|
"version": "1.8.5",
|
|
2329
|
-
"resolved": "https://registry.
|
|
2330
|
-
"integrity": "
|
|
2331
|
-
"dev": true,
|
|
2329
|
+
"resolved": "https://registry.npmmirror.com/async-validator/-/async-validator-1.8.5.tgz",
|
|
2330
|
+
"integrity": "sha512-tXBM+1m056MAX0E8TL2iCjg8WvSyXu0Zc8LNtYqrVeyoL3+esHRZ4SieE9fKQyyU09uONjnMEjrNBMqT0mbvmA==",
|
|
2332
2331
|
"requires": {
|
|
2333
2332
|
"babel-runtime": "6.x"
|
|
2334
2333
|
}
|
|
@@ -2396,9 +2395,8 @@
|
|
|
2396
2395
|
},
|
|
2397
2396
|
"babel-helper-vue-jsx-merge-props": {
|
|
2398
2397
|
"version": "2.0.3",
|
|
2399
|
-
"resolved": "https://registry.
|
|
2400
|
-
"integrity": "
|
|
2401
|
-
"dev": true
|
|
2398
|
+
"resolved": "https://registry.npmmirror.com/babel-helper-vue-jsx-merge-props/-/babel-helper-vue-jsx-merge-props-2.0.3.tgz",
|
|
2399
|
+
"integrity": "sha512-gsLiKK7Qrb7zYJNgiXKpXblxbV5ffSwR0f5whkPAaBAR4fhi6bwRZxX9wBlIc5M/v8CCkXUbXZL4N/nSE97cqg=="
|
|
2402
2400
|
},
|
|
2403
2401
|
"babel-loader": {
|
|
2404
2402
|
"version": "8.2.2",
|
|
@@ -2453,9 +2451,8 @@
|
|
|
2453
2451
|
},
|
|
2454
2452
|
"babel-runtime": {
|
|
2455
2453
|
"version": "6.26.0",
|
|
2456
|
-
"resolved": "https://registry.
|
|
2457
|
-
"integrity": "
|
|
2458
|
-
"dev": true,
|
|
2454
|
+
"resolved": "https://registry.npmmirror.com/babel-runtime/-/babel-runtime-6.26.0.tgz",
|
|
2455
|
+
"integrity": "sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==",
|
|
2459
2456
|
"requires": {
|
|
2460
2457
|
"core-js": "^2.4.0",
|
|
2461
2458
|
"regenerator-runtime": "^0.11.0"
|
|
@@ -2463,15 +2460,13 @@
|
|
|
2463
2460
|
"dependencies": {
|
|
2464
2461
|
"core-js": {
|
|
2465
2462
|
"version": "2.6.12",
|
|
2466
|
-
"resolved": "https://registry.
|
|
2467
|
-
"integrity": "
|
|
2468
|
-
"dev": true
|
|
2463
|
+
"resolved": "https://registry.npmmirror.com/core-js/-/core-js-2.6.12.tgz",
|
|
2464
|
+
"integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ=="
|
|
2469
2465
|
},
|
|
2470
2466
|
"regenerator-runtime": {
|
|
2471
2467
|
"version": "0.11.1",
|
|
2472
|
-
"resolved": "https://registry.
|
|
2473
|
-
"integrity": "
|
|
2474
|
-
"dev": true
|
|
2468
|
+
"resolved": "https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz",
|
|
2469
|
+
"integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg=="
|
|
2475
2470
|
}
|
|
2476
2471
|
}
|
|
2477
2472
|
},
|
|
@@ -3325,13 +3320,9 @@
|
|
|
3325
3320
|
}
|
|
3326
3321
|
},
|
|
3327
3322
|
"cloudcc-ccdk": {
|
|
3328
|
-
"version": "0.
|
|
3329
|
-
"resolved": "https://registry.npmmirror.com/cloudcc-ccdk/-/cloudcc-ccdk-0.
|
|
3330
|
-
"integrity": "sha512
|
|
3331
|
-
"requires": {
|
|
3332
|
-
"crypto-js": "^4.1.1",
|
|
3333
|
-
"js-cookie": "^3.0.1"
|
|
3334
|
-
}
|
|
3323
|
+
"version": "0.3.6",
|
|
3324
|
+
"resolved": "https://registry.npmmirror.com/cloudcc-ccdk/-/cloudcc-ccdk-0.3.6.tgz",
|
|
3325
|
+
"integrity": "sha512-m6cv1TTEMmADFpFNbXPwsfN4RVTNRhg3TwNkPsEJz9cw7SLoprpzE801wGFSpEXPEMRaqBzCy/K/Ia/dINzykg=="
|
|
3335
3326
|
},
|
|
3336
3327
|
"coa": {
|
|
3337
3328
|
"version": "2.0.2",
|
|
@@ -4139,8 +4130,7 @@
|
|
|
4139
4130
|
"deepmerge": {
|
|
4140
4131
|
"version": "1.5.2",
|
|
4141
4132
|
"resolved": "https://registry.nlark.com/deepmerge/download/deepmerge-1.5.2.tgz?cache=0&sync_timestamp=1618847155087&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdeepmerge%2Fdownload%2Fdeepmerge-1.5.2.tgz",
|
|
4142
|
-
"integrity": "sha1-EEmdhohEza1P7ghC34x/bwyVp1M="
|
|
4143
|
-
"dev": true
|
|
4133
|
+
"integrity": "sha1-EEmdhohEza1P7ghC34x/bwyVp1M="
|
|
4144
4134
|
},
|
|
4145
4135
|
"default-gateway": {
|
|
4146
4136
|
"version": "5.0.5",
|
|
@@ -4598,10 +4588,9 @@
|
|
|
4598
4588
|
"dev": true
|
|
4599
4589
|
},
|
|
4600
4590
|
"element-ui": {
|
|
4601
|
-
"version": "2.15.
|
|
4602
|
-
"resolved": "https://registry.
|
|
4603
|
-
"integrity": "
|
|
4604
|
-
"dev": true,
|
|
4591
|
+
"version": "2.15.12",
|
|
4592
|
+
"resolved": "https://registry.npmmirror.com/element-ui/-/element-ui-2.15.12.tgz",
|
|
4593
|
+
"integrity": "sha512-Y5FMT2BPOindU2GkDEQ5ZKUVxDawKONRNMh2eL3uBx1FOtvUJ+L6IxXLVsNxq4WnaX/UnVNgWXebl7DobygZMg==",
|
|
4605
4594
|
"requires": {
|
|
4606
4595
|
"async-validator": "~1.8.1",
|
|
4607
4596
|
"babel-helper-vue-jsx-merge-props": "^2.0.0",
|
|
@@ -7664,9 +7653,8 @@
|
|
|
7664
7653
|
},
|
|
7665
7654
|
"normalize-wheel": {
|
|
7666
7655
|
"version": "1.0.1",
|
|
7667
|
-
"resolved": "https://registry.
|
|
7668
|
-
"integrity": "
|
|
7669
|
-
"dev": true
|
|
7656
|
+
"resolved": "https://registry.npmmirror.com/normalize-wheel/-/normalize-wheel-1.0.1.tgz",
|
|
7657
|
+
"integrity": "sha512-1OnlAPZ3zgrk8B91HyRj+eVv+kS5u+Z0SCsak6Xil/kmgEia50ga7zfkumayonZrImffAxPU/5WcyGhzetHNPA=="
|
|
7670
7658
|
},
|
|
7671
7659
|
"npm-run-path": {
|
|
7672
7660
|
"version": "2.0.2",
|
|
@@ -9331,9 +9319,8 @@
|
|
|
9331
9319
|
},
|
|
9332
9320
|
"resize-observer-polyfill": {
|
|
9333
9321
|
"version": "1.5.1",
|
|
9334
|
-
"resolved": "https://registry.
|
|
9335
|
-
"integrity": "
|
|
9336
|
-
"dev": true
|
|
9322
|
+
"resolved": "https://registry.npmmirror.com/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz",
|
|
9323
|
+
"integrity": "sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg=="
|
|
9337
9324
|
},
|
|
9338
9325
|
"resolve": {
|
|
9339
9326
|
"version": "1.20.0",
|
|
@@ -10558,9 +10545,8 @@
|
|
|
10558
10545
|
},
|
|
10559
10546
|
"throttle-debounce": {
|
|
10560
10547
|
"version": "1.1.0",
|
|
10561
|
-
"resolved": "https://registry.
|
|
10562
|
-
"integrity": "
|
|
10563
|
-
"dev": true
|
|
10548
|
+
"resolved": "https://registry.npmmirror.com/throttle-debounce/-/throttle-debounce-1.1.0.tgz",
|
|
10549
|
+
"integrity": "sha512-XH8UiPCQcWNuk2LYePibW/4qL97+ZQ1AN3FNXwZRBNPPowo/NRU5fAlDCSNBJIYCKbioZfuYtMhG4quqoJhVzg=="
|
|
10564
10550
|
},
|
|
10565
10551
|
"through": {
|
|
10566
10552
|
"version": "2.3.8",
|
|
@@ -11214,9 +11200,9 @@
|
|
|
11214
11200
|
"optional": true
|
|
11215
11201
|
},
|
|
11216
11202
|
"loader-utils": {
|
|
11217
|
-
"version": "2.0.
|
|
11218
|
-
"resolved": "https://registry.npmmirror.com/loader-utils/-/loader-utils-2.0.
|
|
11219
|
-
"integrity": "sha512-
|
|
11203
|
+
"version": "2.0.4",
|
|
11204
|
+
"resolved": "https://registry.npmmirror.com/loader-utils/-/loader-utils-2.0.4.tgz",
|
|
11205
|
+
"integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==",
|
|
11220
11206
|
"dev": true,
|
|
11221
11207
|
"optional": true,
|
|
11222
11208
|
"requires": {
|