@cloudbase/weda-ui 3.1.1 → 3.1.4

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 (49) hide show
  1. package/dist/asset-manifest.json +17 -0
  2. package/dist/configs/components/carousel.json +2 -2
  3. package/dist/configs/components/form/checkbox.json +1 -0
  4. package/dist/configs/components/form/form.json +39 -15
  5. package/dist/configs/components/form/location.json +0 -32
  6. package/dist/configs/components/form/select.json +1 -0
  7. package/dist/index.html +88 -0
  8. package/dist/static/js/bundle.js +963 -0
  9. package/dist/static/js/bundle.js.map +1 -0
  10. package/dist/static/js/main.chunk.js +8841 -0
  11. package/dist/static/js/main.chunk.js.map +1 -0
  12. package/dist/static/js/vendors~main.chunk.js +247885 -0
  13. package/dist/static/js/vendors~main.chunk.js.map +1 -0
  14. package/dist/static/media/ef6fa527e24e354765d806b826b41391.fa67580a.svg +627 -0
  15. package/dist/web/components/chart/common/core/eChartBar.d.ts +36 -0
  16. package/dist/web/components/chart/common/core/eChartBar.js +3 -1
  17. package/dist/web/components/chart/common/core/eChartLine.d.ts +34 -0
  18. package/dist/web/components/chart/common/core/eChartLine.js +3 -1
  19. package/dist/web/components/chart/common/core/eChartPie.d.ts +22 -0
  20. package/dist/web/components/form/checkbox/index.js +1 -1
  21. package/dist/web/components/form/form/index.css +4 -0
  22. package/dist/web/components/form/form/index.d.ts +21 -2
  23. package/dist/web/components/form/form/index.js +90 -16
  24. package/dist/web/components/form/location/common/mapChoose.js +97 -35
  25. package/dist/web/components/form/location/common/propsConfig.d.ts +1 -4
  26. package/dist/web/components/form/location/common/propsConfig.js +0 -2
  27. package/dist/web/components/form/location/common/useLocationInfo.d.ts +2 -0
  28. package/dist/web/components/form/location/common/useLocationInfo.js +19 -3
  29. package/dist/web/components/form/location/components/LocationH5/index.css +1 -1
  30. package/dist/web/components/form/location/components/LocationH5/location.h5.js +30 -54
  31. package/dist/web/components/form/location/components/LocationPC/location.PC.js +16 -51
  32. package/dist/web/components/form/select/dropdown-select/ui.d.ts +15 -0
  33. package/dist/web/components/form/select/dropdown-select/ui.js +55 -0
  34. package/dist/web/components/form/select/h5.d.ts +1 -1
  35. package/dist/web/components/form/select/h5.js +54 -150
  36. package/dist/web/components/form/select/index.d.ts +1 -1
  37. package/dist/web/components/form/select/index.js +33 -94
  38. package/dist/web/components/form/select/use-options.d.ts +26 -0
  39. package/dist/web/components/form/select/use-options.js +103 -0
  40. package/dist/web/components/form/uploader/index.css +10 -3
  41. package/dist/web/components/form/uploader/uploader.h5.d.ts +1 -1
  42. package/dist/web/components/form/uploader/uploader.h5.js +18 -19
  43. package/dist/web/components/form/uploader/uploader.pc.js +6 -3
  44. package/dist/web/components/richText/index.js +20 -17
  45. package/dist/web/utils/isObjectEqual.d.ts +1 -1
  46. package/dist/web/utils/tcb.d.ts +5 -1
  47. package/dist/web/utils/tcb.js +26 -3
  48. package/package.json +41 -39
  49. package/CHANGELOG.md +0 -7
@@ -0,0 +1,963 @@
1
+ /******/ (function(modules) { // webpackBootstrap
2
+ /******/ // install a JSONP callback for chunk loading
3
+ /******/ function webpackJsonpCallback(data) {
4
+ /******/ var chunkIds = data[0];
5
+ /******/ var moreModules = data[1];
6
+ /******/ var executeModules = data[2];
7
+ /******/
8
+ /******/ // add "moreModules" to the modules object,
9
+ /******/ // then flag all "chunkIds" as loaded and fire callback
10
+ /******/ var moduleId, chunkId, i = 0, resolves = [];
11
+ /******/ for(;i < chunkIds.length; i++) {
12
+ /******/ chunkId = chunkIds[i];
13
+ /******/ if(Object.prototype.hasOwnProperty.call(installedChunks, chunkId) && installedChunks[chunkId]) {
14
+ /******/ resolves.push(installedChunks[chunkId][0]);
15
+ /******/ }
16
+ /******/ installedChunks[chunkId] = 0;
17
+ /******/ }
18
+ /******/ for(moduleId in moreModules) {
19
+ /******/ if(Object.prototype.hasOwnProperty.call(moreModules, moduleId)) {
20
+ /******/ modules[moduleId] = moreModules[moduleId];
21
+ /******/ }
22
+ /******/ }
23
+ /******/ if(parentJsonpFunction) parentJsonpFunction(data);
24
+ /******/
25
+ /******/ while(resolves.length) {
26
+ /******/ resolves.shift()();
27
+ /******/ }
28
+ /******/
29
+ /******/ // add entry modules from loaded chunk to deferred list
30
+ /******/ deferredModules.push.apply(deferredModules, executeModules || []);
31
+ /******/
32
+ /******/ // run deferred modules when all chunks ready
33
+ /******/ return checkDeferredModules();
34
+ /******/ };
35
+ /******/ function checkDeferredModules() {
36
+ /******/ var result;
37
+ /******/ for(var i = 0; i < deferredModules.length; i++) {
38
+ /******/ var deferredModule = deferredModules[i];
39
+ /******/ var fulfilled = true;
40
+ /******/ for(var j = 1; j < deferredModule.length; j++) {
41
+ /******/ var depId = deferredModule[j];
42
+ /******/ if(installedChunks[depId] !== 0) fulfilled = false;
43
+ /******/ }
44
+ /******/ if(fulfilled) {
45
+ /******/ deferredModules.splice(i--, 1);
46
+ /******/ result = __webpack_require__(__webpack_require__.s = deferredModule[0]);
47
+ /******/ }
48
+ /******/ }
49
+ /******/
50
+ /******/ return result;
51
+ /******/ }
52
+ /******/ function hotDisposeChunk(chunkId) {
53
+ /******/ delete installedChunks[chunkId];
54
+ /******/ }
55
+ /******/ var parentHotUpdateCallback = this["webpackHotUpdate"];
56
+ /******/ this["webpackHotUpdate"] = // eslint-disable-next-line no-unused-vars
57
+ /******/ function webpackHotUpdateCallback(chunkId, moreModules) {
58
+ /******/ hotAddUpdateChunk(chunkId, moreModules);
59
+ /******/ if (parentHotUpdateCallback) parentHotUpdateCallback(chunkId, moreModules);
60
+ /******/ } ;
61
+ /******/
62
+ /******/ // eslint-disable-next-line no-unused-vars
63
+ /******/ function hotDownloadUpdateChunk(chunkId) {
64
+ /******/ var script = document.createElement("script");
65
+ /******/ script.charset = "utf-8";
66
+ /******/ script.src = __webpack_require__.p + "" + chunkId + "." + hotCurrentHash + ".hot-update.js";
67
+ /******/ if (null) script.crossOrigin = null;
68
+ /******/ document.head.appendChild(script);
69
+ /******/ }
70
+ /******/
71
+ /******/ // eslint-disable-next-line no-unused-vars
72
+ /******/ function hotDownloadManifest(requestTimeout) {
73
+ /******/ requestTimeout = requestTimeout || 10000;
74
+ /******/ return new Promise(function(resolve, reject) {
75
+ /******/ if (typeof XMLHttpRequest === "undefined") {
76
+ /******/ return reject(new Error("No browser support"));
77
+ /******/ }
78
+ /******/ try {
79
+ /******/ var request = new XMLHttpRequest();
80
+ /******/ var requestPath = __webpack_require__.p + "" + hotCurrentHash + ".hot-update.json";
81
+ /******/ request.open("GET", requestPath, true);
82
+ /******/ request.timeout = requestTimeout;
83
+ /******/ request.send(null);
84
+ /******/ } catch (err) {
85
+ /******/ return reject(err);
86
+ /******/ }
87
+ /******/ request.onreadystatechange = function() {
88
+ /******/ if (request.readyState !== 4) return;
89
+ /******/ if (request.status === 0) {
90
+ /******/ // timeout
91
+ /******/ reject(
92
+ /******/ new Error("Manifest request to " + requestPath + " timed out.")
93
+ /******/ );
94
+ /******/ } else if (request.status === 404) {
95
+ /******/ // no update available
96
+ /******/ resolve();
97
+ /******/ } else if (request.status !== 200 && request.status !== 304) {
98
+ /******/ // other failure
99
+ /******/ reject(new Error("Manifest request to " + requestPath + " failed."));
100
+ /******/ } else {
101
+ /******/ // success
102
+ /******/ try {
103
+ /******/ var update = JSON.parse(request.responseText);
104
+ /******/ } catch (e) {
105
+ /******/ reject(e);
106
+ /******/ return;
107
+ /******/ }
108
+ /******/ resolve(update);
109
+ /******/ }
110
+ /******/ };
111
+ /******/ });
112
+ /******/ }
113
+ /******/
114
+ /******/ var hotApplyOnUpdate = true;
115
+ /******/ // eslint-disable-next-line no-unused-vars
116
+ /******/ var hotCurrentHash = "cba9e9a38ae75c5d0c36";
117
+ /******/ var hotRequestTimeout = 10000;
118
+ /******/ var hotCurrentModuleData = {};
119
+ /******/ var hotCurrentChildModule;
120
+ /******/ // eslint-disable-next-line no-unused-vars
121
+ /******/ var hotCurrentParents = [];
122
+ /******/ // eslint-disable-next-line no-unused-vars
123
+ /******/ var hotCurrentParentsTemp = [];
124
+ /******/
125
+ /******/ // eslint-disable-next-line no-unused-vars
126
+ /******/ function hotCreateRequire(moduleId) {
127
+ /******/ var me = installedModules[moduleId];
128
+ /******/ if (!me) return __webpack_require__;
129
+ /******/ var fn = function(request) {
130
+ /******/ if (me.hot.active) {
131
+ /******/ if (installedModules[request]) {
132
+ /******/ if (installedModules[request].parents.indexOf(moduleId) === -1) {
133
+ /******/ installedModules[request].parents.push(moduleId);
134
+ /******/ }
135
+ /******/ } else {
136
+ /******/ hotCurrentParents = [moduleId];
137
+ /******/ hotCurrentChildModule = request;
138
+ /******/ }
139
+ /******/ if (me.children.indexOf(request) === -1) {
140
+ /******/ me.children.push(request);
141
+ /******/ }
142
+ /******/ } else {
143
+ /******/ console.warn(
144
+ /******/ "[HMR] unexpected require(" +
145
+ /******/ request +
146
+ /******/ ") from disposed module " +
147
+ /******/ moduleId
148
+ /******/ );
149
+ /******/ hotCurrentParents = [];
150
+ /******/ }
151
+ /******/ return __webpack_require__(request);
152
+ /******/ };
153
+ /******/ var ObjectFactory = function ObjectFactory(name) {
154
+ /******/ return {
155
+ /******/ configurable: true,
156
+ /******/ enumerable: true,
157
+ /******/ get: function() {
158
+ /******/ return __webpack_require__[name];
159
+ /******/ },
160
+ /******/ set: function(value) {
161
+ /******/ __webpack_require__[name] = value;
162
+ /******/ }
163
+ /******/ };
164
+ /******/ };
165
+ /******/ for (var name in __webpack_require__) {
166
+ /******/ if (
167
+ /******/ Object.prototype.hasOwnProperty.call(__webpack_require__, name) &&
168
+ /******/ name !== "e" &&
169
+ /******/ name !== "t"
170
+ /******/ ) {
171
+ /******/ Object.defineProperty(fn, name, ObjectFactory(name));
172
+ /******/ }
173
+ /******/ }
174
+ /******/ fn.e = function(chunkId) {
175
+ /******/ if (hotStatus === "ready") hotSetStatus("prepare");
176
+ /******/ hotChunksLoading++;
177
+ /******/ return __webpack_require__.e(chunkId).then(finishChunkLoading, function(err) {
178
+ /******/ finishChunkLoading();
179
+ /******/ throw err;
180
+ /******/ });
181
+ /******/
182
+ /******/ function finishChunkLoading() {
183
+ /******/ hotChunksLoading--;
184
+ /******/ if (hotStatus === "prepare") {
185
+ /******/ if (!hotWaitingFilesMap[chunkId]) {
186
+ /******/ hotEnsureUpdateChunk(chunkId);
187
+ /******/ }
188
+ /******/ if (hotChunksLoading === 0 && hotWaitingFiles === 0) {
189
+ /******/ hotUpdateDownloaded();
190
+ /******/ }
191
+ /******/ }
192
+ /******/ }
193
+ /******/ };
194
+ /******/ fn.t = function(value, mode) {
195
+ /******/ if (mode & 1) value = fn(value);
196
+ /******/ return __webpack_require__.t(value, mode & ~1);
197
+ /******/ };
198
+ /******/ return fn;
199
+ /******/ }
200
+ /******/
201
+ /******/ // eslint-disable-next-line no-unused-vars
202
+ /******/ function hotCreateModule(moduleId) {
203
+ /******/ var hot = {
204
+ /******/ // private stuff
205
+ /******/ _acceptedDependencies: {},
206
+ /******/ _declinedDependencies: {},
207
+ /******/ _selfAccepted: false,
208
+ /******/ _selfDeclined: false,
209
+ /******/ _selfInvalidated: false,
210
+ /******/ _disposeHandlers: [],
211
+ /******/ _main: hotCurrentChildModule !== moduleId,
212
+ /******/
213
+ /******/ // Module API
214
+ /******/ active: true,
215
+ /******/ accept: function(dep, callback) {
216
+ /******/ if (dep === undefined) hot._selfAccepted = true;
217
+ /******/ else if (typeof dep === "function") hot._selfAccepted = dep;
218
+ /******/ else if (typeof dep === "object")
219
+ /******/ for (var i = 0; i < dep.length; i++)
220
+ /******/ hot._acceptedDependencies[dep[i]] = callback || function() {};
221
+ /******/ else hot._acceptedDependencies[dep] = callback || function() {};
222
+ /******/ },
223
+ /******/ decline: function(dep) {
224
+ /******/ if (dep === undefined) hot._selfDeclined = true;
225
+ /******/ else if (typeof dep === "object")
226
+ /******/ for (var i = 0; i < dep.length; i++)
227
+ /******/ hot._declinedDependencies[dep[i]] = true;
228
+ /******/ else hot._declinedDependencies[dep] = true;
229
+ /******/ },
230
+ /******/ dispose: function(callback) {
231
+ /******/ hot._disposeHandlers.push(callback);
232
+ /******/ },
233
+ /******/ addDisposeHandler: function(callback) {
234
+ /******/ hot._disposeHandlers.push(callback);
235
+ /******/ },
236
+ /******/ removeDisposeHandler: function(callback) {
237
+ /******/ var idx = hot._disposeHandlers.indexOf(callback);
238
+ /******/ if (idx >= 0) hot._disposeHandlers.splice(idx, 1);
239
+ /******/ },
240
+ /******/ invalidate: function() {
241
+ /******/ this._selfInvalidated = true;
242
+ /******/ switch (hotStatus) {
243
+ /******/ case "idle":
244
+ /******/ hotUpdate = {};
245
+ /******/ hotUpdate[moduleId] = modules[moduleId];
246
+ /******/ hotSetStatus("ready");
247
+ /******/ break;
248
+ /******/ case "ready":
249
+ /******/ hotApplyInvalidatedModule(moduleId);
250
+ /******/ break;
251
+ /******/ case "prepare":
252
+ /******/ case "check":
253
+ /******/ case "dispose":
254
+ /******/ case "apply":
255
+ /******/ (hotQueuedInvalidatedModules =
256
+ /******/ hotQueuedInvalidatedModules || []).push(moduleId);
257
+ /******/ break;
258
+ /******/ default:
259
+ /******/ // ignore requests in error states
260
+ /******/ break;
261
+ /******/ }
262
+ /******/ },
263
+ /******/
264
+ /******/ // Management API
265
+ /******/ check: hotCheck,
266
+ /******/ apply: hotApply,
267
+ /******/ status: function(l) {
268
+ /******/ if (!l) return hotStatus;
269
+ /******/ hotStatusHandlers.push(l);
270
+ /******/ },
271
+ /******/ addStatusHandler: function(l) {
272
+ /******/ hotStatusHandlers.push(l);
273
+ /******/ },
274
+ /******/ removeStatusHandler: function(l) {
275
+ /******/ var idx = hotStatusHandlers.indexOf(l);
276
+ /******/ if (idx >= 0) hotStatusHandlers.splice(idx, 1);
277
+ /******/ },
278
+ /******/
279
+ /******/ //inherit from previous dispose call
280
+ /******/ data: hotCurrentModuleData[moduleId]
281
+ /******/ };
282
+ /******/ hotCurrentChildModule = undefined;
283
+ /******/ return hot;
284
+ /******/ }
285
+ /******/
286
+ /******/ var hotStatusHandlers = [];
287
+ /******/ var hotStatus = "idle";
288
+ /******/
289
+ /******/ function hotSetStatus(newStatus) {
290
+ /******/ hotStatus = newStatus;
291
+ /******/ for (var i = 0; i < hotStatusHandlers.length; i++)
292
+ /******/ hotStatusHandlers[i].call(null, newStatus);
293
+ /******/ }
294
+ /******/
295
+ /******/ // while downloading
296
+ /******/ var hotWaitingFiles = 0;
297
+ /******/ var hotChunksLoading = 0;
298
+ /******/ var hotWaitingFilesMap = {};
299
+ /******/ var hotRequestedFilesMap = {};
300
+ /******/ var hotAvailableFilesMap = {};
301
+ /******/ var hotDeferred;
302
+ /******/
303
+ /******/ // The update info
304
+ /******/ var hotUpdate, hotUpdateNewHash, hotQueuedInvalidatedModules;
305
+ /******/
306
+ /******/ function toModuleId(id) {
307
+ /******/ var isNumber = +id + "" === id;
308
+ /******/ return isNumber ? +id : id;
309
+ /******/ }
310
+ /******/
311
+ /******/ function hotCheck(apply) {
312
+ /******/ if (hotStatus !== "idle") {
313
+ /******/ throw new Error("check() is only allowed in idle status");
314
+ /******/ }
315
+ /******/ hotApplyOnUpdate = apply;
316
+ /******/ hotSetStatus("check");
317
+ /******/ return hotDownloadManifest(hotRequestTimeout).then(function(update) {
318
+ /******/ if (!update) {
319
+ /******/ hotSetStatus(hotApplyInvalidatedModules() ? "ready" : "idle");
320
+ /******/ return null;
321
+ /******/ }
322
+ /******/ hotRequestedFilesMap = {};
323
+ /******/ hotWaitingFilesMap = {};
324
+ /******/ hotAvailableFilesMap = update.c;
325
+ /******/ hotUpdateNewHash = update.h;
326
+ /******/
327
+ /******/ hotSetStatus("prepare");
328
+ /******/ var promise = new Promise(function(resolve, reject) {
329
+ /******/ hotDeferred = {
330
+ /******/ resolve: resolve,
331
+ /******/ reject: reject
332
+ /******/ };
333
+ /******/ });
334
+ /******/ hotUpdate = {};
335
+ /******/ for(var chunkId in installedChunks)
336
+ /******/ // eslint-disable-next-line no-lone-blocks
337
+ /******/ {
338
+ /******/ hotEnsureUpdateChunk(chunkId);
339
+ /******/ }
340
+ /******/ if (
341
+ /******/ hotStatus === "prepare" &&
342
+ /******/ hotChunksLoading === 0 &&
343
+ /******/ hotWaitingFiles === 0
344
+ /******/ ) {
345
+ /******/ hotUpdateDownloaded();
346
+ /******/ }
347
+ /******/ return promise;
348
+ /******/ });
349
+ /******/ }
350
+ /******/
351
+ /******/ // eslint-disable-next-line no-unused-vars
352
+ /******/ function hotAddUpdateChunk(chunkId, moreModules) {
353
+ /******/ if (!hotAvailableFilesMap[chunkId] || !hotRequestedFilesMap[chunkId])
354
+ /******/ return;
355
+ /******/ hotRequestedFilesMap[chunkId] = false;
356
+ /******/ for (var moduleId in moreModules) {
357
+ /******/ if (Object.prototype.hasOwnProperty.call(moreModules, moduleId)) {
358
+ /******/ hotUpdate[moduleId] = moreModules[moduleId];
359
+ /******/ }
360
+ /******/ }
361
+ /******/ if (--hotWaitingFiles === 0 && hotChunksLoading === 0) {
362
+ /******/ hotUpdateDownloaded();
363
+ /******/ }
364
+ /******/ }
365
+ /******/
366
+ /******/ function hotEnsureUpdateChunk(chunkId) {
367
+ /******/ if (!hotAvailableFilesMap[chunkId]) {
368
+ /******/ hotWaitingFilesMap[chunkId] = true;
369
+ /******/ } else {
370
+ /******/ hotRequestedFilesMap[chunkId] = true;
371
+ /******/ hotWaitingFiles++;
372
+ /******/ hotDownloadUpdateChunk(chunkId);
373
+ /******/ }
374
+ /******/ }
375
+ /******/
376
+ /******/ function hotUpdateDownloaded() {
377
+ /******/ hotSetStatus("ready");
378
+ /******/ var deferred = hotDeferred;
379
+ /******/ hotDeferred = null;
380
+ /******/ if (!deferred) return;
381
+ /******/ if (hotApplyOnUpdate) {
382
+ /******/ // Wrap deferred object in Promise to mark it as a well-handled Promise to
383
+ /******/ // avoid triggering uncaught exception warning in Chrome.
384
+ /******/ // See https://bugs.chromium.org/p/chromium/issues/detail?id=465666
385
+ /******/ Promise.resolve()
386
+ /******/ .then(function() {
387
+ /******/ return hotApply(hotApplyOnUpdate);
388
+ /******/ })
389
+ /******/ .then(
390
+ /******/ function(result) {
391
+ /******/ deferred.resolve(result);
392
+ /******/ },
393
+ /******/ function(err) {
394
+ /******/ deferred.reject(err);
395
+ /******/ }
396
+ /******/ );
397
+ /******/ } else {
398
+ /******/ var outdatedModules = [];
399
+ /******/ for (var id in hotUpdate) {
400
+ /******/ if (Object.prototype.hasOwnProperty.call(hotUpdate, id)) {
401
+ /******/ outdatedModules.push(toModuleId(id));
402
+ /******/ }
403
+ /******/ }
404
+ /******/ deferred.resolve(outdatedModules);
405
+ /******/ }
406
+ /******/ }
407
+ /******/
408
+ /******/ function hotApply(options) {
409
+ /******/ if (hotStatus !== "ready")
410
+ /******/ throw new Error("apply() is only allowed in ready status");
411
+ /******/ options = options || {};
412
+ /******/ return hotApplyInternal(options);
413
+ /******/ }
414
+ /******/
415
+ /******/ function hotApplyInternal(options) {
416
+ /******/ hotApplyInvalidatedModules();
417
+ /******/
418
+ /******/ var cb;
419
+ /******/ var i;
420
+ /******/ var j;
421
+ /******/ var module;
422
+ /******/ var moduleId;
423
+ /******/
424
+ /******/ function getAffectedStuff(updateModuleId) {
425
+ /******/ var outdatedModules = [updateModuleId];
426
+ /******/ var outdatedDependencies = {};
427
+ /******/
428
+ /******/ var queue = outdatedModules.map(function(id) {
429
+ /******/ return {
430
+ /******/ chain: [id],
431
+ /******/ id: id
432
+ /******/ };
433
+ /******/ });
434
+ /******/ while (queue.length > 0) {
435
+ /******/ var queueItem = queue.pop();
436
+ /******/ var moduleId = queueItem.id;
437
+ /******/ var chain = queueItem.chain;
438
+ /******/ module = installedModules[moduleId];
439
+ /******/ if (
440
+ /******/ !module ||
441
+ /******/ (module.hot._selfAccepted && !module.hot._selfInvalidated)
442
+ /******/ )
443
+ /******/ continue;
444
+ /******/ if (module.hot._selfDeclined) {
445
+ /******/ return {
446
+ /******/ type: "self-declined",
447
+ /******/ chain: chain,
448
+ /******/ moduleId: moduleId
449
+ /******/ };
450
+ /******/ }
451
+ /******/ if (module.hot._main) {
452
+ /******/ return {
453
+ /******/ type: "unaccepted",
454
+ /******/ chain: chain,
455
+ /******/ moduleId: moduleId
456
+ /******/ };
457
+ /******/ }
458
+ /******/ for (var i = 0; i < module.parents.length; i++) {
459
+ /******/ var parentId = module.parents[i];
460
+ /******/ var parent = installedModules[parentId];
461
+ /******/ if (!parent) continue;
462
+ /******/ if (parent.hot._declinedDependencies[moduleId]) {
463
+ /******/ return {
464
+ /******/ type: "declined",
465
+ /******/ chain: chain.concat([parentId]),
466
+ /******/ moduleId: moduleId,
467
+ /******/ parentId: parentId
468
+ /******/ };
469
+ /******/ }
470
+ /******/ if (outdatedModules.indexOf(parentId) !== -1) continue;
471
+ /******/ if (parent.hot._acceptedDependencies[moduleId]) {
472
+ /******/ if (!outdatedDependencies[parentId])
473
+ /******/ outdatedDependencies[parentId] = [];
474
+ /******/ addAllToSet(outdatedDependencies[parentId], [moduleId]);
475
+ /******/ continue;
476
+ /******/ }
477
+ /******/ delete outdatedDependencies[parentId];
478
+ /******/ outdatedModules.push(parentId);
479
+ /******/ queue.push({
480
+ /******/ chain: chain.concat([parentId]),
481
+ /******/ id: parentId
482
+ /******/ });
483
+ /******/ }
484
+ /******/ }
485
+ /******/
486
+ /******/ return {
487
+ /******/ type: "accepted",
488
+ /******/ moduleId: updateModuleId,
489
+ /******/ outdatedModules: outdatedModules,
490
+ /******/ outdatedDependencies: outdatedDependencies
491
+ /******/ };
492
+ /******/ }
493
+ /******/
494
+ /******/ function addAllToSet(a, b) {
495
+ /******/ for (var i = 0; i < b.length; i++) {
496
+ /******/ var item = b[i];
497
+ /******/ if (a.indexOf(item) === -1) a.push(item);
498
+ /******/ }
499
+ /******/ }
500
+ /******/
501
+ /******/ // at begin all updates modules are outdated
502
+ /******/ // the "outdated" status can propagate to parents if they don't accept the children
503
+ /******/ var outdatedDependencies = {};
504
+ /******/ var outdatedModules = [];
505
+ /******/ var appliedUpdate = {};
506
+ /******/
507
+ /******/ var warnUnexpectedRequire = function warnUnexpectedRequire() {
508
+ /******/ console.warn(
509
+ /******/ "[HMR] unexpected require(" + result.moduleId + ") to disposed module"
510
+ /******/ );
511
+ /******/ };
512
+ /******/
513
+ /******/ for (var id in hotUpdate) {
514
+ /******/ if (Object.prototype.hasOwnProperty.call(hotUpdate, id)) {
515
+ /******/ moduleId = toModuleId(id);
516
+ /******/ /** @type {TODO} */
517
+ /******/ var result;
518
+ /******/ if (hotUpdate[id]) {
519
+ /******/ result = getAffectedStuff(moduleId);
520
+ /******/ } else {
521
+ /******/ result = {
522
+ /******/ type: "disposed",
523
+ /******/ moduleId: id
524
+ /******/ };
525
+ /******/ }
526
+ /******/ /** @type {Error|false} */
527
+ /******/ var abortError = false;
528
+ /******/ var doApply = false;
529
+ /******/ var doDispose = false;
530
+ /******/ var chainInfo = "";
531
+ /******/ if (result.chain) {
532
+ /******/ chainInfo = "\nUpdate propagation: " + result.chain.join(" -> ");
533
+ /******/ }
534
+ /******/ switch (result.type) {
535
+ /******/ case "self-declined":
536
+ /******/ if (options.onDeclined) options.onDeclined(result);
537
+ /******/ if (!options.ignoreDeclined)
538
+ /******/ abortError = new Error(
539
+ /******/ "Aborted because of self decline: " +
540
+ /******/ result.moduleId +
541
+ /******/ chainInfo
542
+ /******/ );
543
+ /******/ break;
544
+ /******/ case "declined":
545
+ /******/ if (options.onDeclined) options.onDeclined(result);
546
+ /******/ if (!options.ignoreDeclined)
547
+ /******/ abortError = new Error(
548
+ /******/ "Aborted because of declined dependency: " +
549
+ /******/ result.moduleId +
550
+ /******/ " in " +
551
+ /******/ result.parentId +
552
+ /******/ chainInfo
553
+ /******/ );
554
+ /******/ break;
555
+ /******/ case "unaccepted":
556
+ /******/ if (options.onUnaccepted) options.onUnaccepted(result);
557
+ /******/ if (!options.ignoreUnaccepted)
558
+ /******/ abortError = new Error(
559
+ /******/ "Aborted because " + moduleId + " is not accepted" + chainInfo
560
+ /******/ );
561
+ /******/ break;
562
+ /******/ case "accepted":
563
+ /******/ if (options.onAccepted) options.onAccepted(result);
564
+ /******/ doApply = true;
565
+ /******/ break;
566
+ /******/ case "disposed":
567
+ /******/ if (options.onDisposed) options.onDisposed(result);
568
+ /******/ doDispose = true;
569
+ /******/ break;
570
+ /******/ default:
571
+ /******/ throw new Error("Unexception type " + result.type);
572
+ /******/ }
573
+ /******/ if (abortError) {
574
+ /******/ hotSetStatus("abort");
575
+ /******/ return Promise.reject(abortError);
576
+ /******/ }
577
+ /******/ if (doApply) {
578
+ /******/ appliedUpdate[moduleId] = hotUpdate[moduleId];
579
+ /******/ addAllToSet(outdatedModules, result.outdatedModules);
580
+ /******/ for (moduleId in result.outdatedDependencies) {
581
+ /******/ if (
582
+ /******/ Object.prototype.hasOwnProperty.call(
583
+ /******/ result.outdatedDependencies,
584
+ /******/ moduleId
585
+ /******/ )
586
+ /******/ ) {
587
+ /******/ if (!outdatedDependencies[moduleId])
588
+ /******/ outdatedDependencies[moduleId] = [];
589
+ /******/ addAllToSet(
590
+ /******/ outdatedDependencies[moduleId],
591
+ /******/ result.outdatedDependencies[moduleId]
592
+ /******/ );
593
+ /******/ }
594
+ /******/ }
595
+ /******/ }
596
+ /******/ if (doDispose) {
597
+ /******/ addAllToSet(outdatedModules, [result.moduleId]);
598
+ /******/ appliedUpdate[moduleId] = warnUnexpectedRequire;
599
+ /******/ }
600
+ /******/ }
601
+ /******/ }
602
+ /******/
603
+ /******/ // Store self accepted outdated modules to require them later by the module system
604
+ /******/ var outdatedSelfAcceptedModules = [];
605
+ /******/ for (i = 0; i < outdatedModules.length; i++) {
606
+ /******/ moduleId = outdatedModules[i];
607
+ /******/ if (
608
+ /******/ installedModules[moduleId] &&
609
+ /******/ installedModules[moduleId].hot._selfAccepted &&
610
+ /******/ // removed self-accepted modules should not be required
611
+ /******/ appliedUpdate[moduleId] !== warnUnexpectedRequire &&
612
+ /******/ // when called invalidate self-accepting is not possible
613
+ /******/ !installedModules[moduleId].hot._selfInvalidated
614
+ /******/ ) {
615
+ /******/ outdatedSelfAcceptedModules.push({
616
+ /******/ module: moduleId,
617
+ /******/ parents: installedModules[moduleId].parents.slice(),
618
+ /******/ errorHandler: installedModules[moduleId].hot._selfAccepted
619
+ /******/ });
620
+ /******/ }
621
+ /******/ }
622
+ /******/
623
+ /******/ // Now in "dispose" phase
624
+ /******/ hotSetStatus("dispose");
625
+ /******/ Object.keys(hotAvailableFilesMap).forEach(function(chunkId) {
626
+ /******/ if (hotAvailableFilesMap[chunkId] === false) {
627
+ /******/ hotDisposeChunk(chunkId);
628
+ /******/ }
629
+ /******/ });
630
+ /******/
631
+ /******/ var idx;
632
+ /******/ var queue = outdatedModules.slice();
633
+ /******/ while (queue.length > 0) {
634
+ /******/ moduleId = queue.pop();
635
+ /******/ module = installedModules[moduleId];
636
+ /******/ if (!module) continue;
637
+ /******/
638
+ /******/ var data = {};
639
+ /******/
640
+ /******/ // Call dispose handlers
641
+ /******/ var disposeHandlers = module.hot._disposeHandlers;
642
+ /******/ for (j = 0; j < disposeHandlers.length; j++) {
643
+ /******/ cb = disposeHandlers[j];
644
+ /******/ cb(data);
645
+ /******/ }
646
+ /******/ hotCurrentModuleData[moduleId] = data;
647
+ /******/
648
+ /******/ // disable module (this disables requires from this module)
649
+ /******/ module.hot.active = false;
650
+ /******/
651
+ /******/ // remove module from cache
652
+ /******/ delete installedModules[moduleId];
653
+ /******/
654
+ /******/ // when disposing there is no need to call dispose handler
655
+ /******/ delete outdatedDependencies[moduleId];
656
+ /******/
657
+ /******/ // remove "parents" references from all children
658
+ /******/ for (j = 0; j < module.children.length; j++) {
659
+ /******/ var child = installedModules[module.children[j]];
660
+ /******/ if (!child) continue;
661
+ /******/ idx = child.parents.indexOf(moduleId);
662
+ /******/ if (idx >= 0) {
663
+ /******/ child.parents.splice(idx, 1);
664
+ /******/ }
665
+ /******/ }
666
+ /******/ }
667
+ /******/
668
+ /******/ // remove outdated dependency from module children
669
+ /******/ var dependency;
670
+ /******/ var moduleOutdatedDependencies;
671
+ /******/ for (moduleId in outdatedDependencies) {
672
+ /******/ if (
673
+ /******/ Object.prototype.hasOwnProperty.call(outdatedDependencies, moduleId)
674
+ /******/ ) {
675
+ /******/ module = installedModules[moduleId];
676
+ /******/ if (module) {
677
+ /******/ moduleOutdatedDependencies = outdatedDependencies[moduleId];
678
+ /******/ for (j = 0; j < moduleOutdatedDependencies.length; j++) {
679
+ /******/ dependency = moduleOutdatedDependencies[j];
680
+ /******/ idx = module.children.indexOf(dependency);
681
+ /******/ if (idx >= 0) module.children.splice(idx, 1);
682
+ /******/ }
683
+ /******/ }
684
+ /******/ }
685
+ /******/ }
686
+ /******/
687
+ /******/ // Now in "apply" phase
688
+ /******/ hotSetStatus("apply");
689
+ /******/
690
+ /******/ if (hotUpdateNewHash !== undefined) {
691
+ /******/ hotCurrentHash = hotUpdateNewHash;
692
+ /******/ hotUpdateNewHash = undefined;
693
+ /******/ }
694
+ /******/ hotUpdate = undefined;
695
+ /******/
696
+ /******/ // insert new code
697
+ /******/ for (moduleId in appliedUpdate) {
698
+ /******/ if (Object.prototype.hasOwnProperty.call(appliedUpdate, moduleId)) {
699
+ /******/ modules[moduleId] = appliedUpdate[moduleId];
700
+ /******/ }
701
+ /******/ }
702
+ /******/
703
+ /******/ // call accept handlers
704
+ /******/ var error = null;
705
+ /******/ for (moduleId in outdatedDependencies) {
706
+ /******/ if (
707
+ /******/ Object.prototype.hasOwnProperty.call(outdatedDependencies, moduleId)
708
+ /******/ ) {
709
+ /******/ module = installedModules[moduleId];
710
+ /******/ if (module) {
711
+ /******/ moduleOutdatedDependencies = outdatedDependencies[moduleId];
712
+ /******/ var callbacks = [];
713
+ /******/ for (i = 0; i < moduleOutdatedDependencies.length; i++) {
714
+ /******/ dependency = moduleOutdatedDependencies[i];
715
+ /******/ cb = module.hot._acceptedDependencies[dependency];
716
+ /******/ if (cb) {
717
+ /******/ if (callbacks.indexOf(cb) !== -1) continue;
718
+ /******/ callbacks.push(cb);
719
+ /******/ }
720
+ /******/ }
721
+ /******/ for (i = 0; i < callbacks.length; i++) {
722
+ /******/ cb = callbacks[i];
723
+ /******/ try {
724
+ /******/ cb(moduleOutdatedDependencies);
725
+ /******/ } catch (err) {
726
+ /******/ if (options.onErrored) {
727
+ /******/ options.onErrored({
728
+ /******/ type: "accept-errored",
729
+ /******/ moduleId: moduleId,
730
+ /******/ dependencyId: moduleOutdatedDependencies[i],
731
+ /******/ error: err
732
+ /******/ });
733
+ /******/ }
734
+ /******/ if (!options.ignoreErrored) {
735
+ /******/ if (!error) error = err;
736
+ /******/ }
737
+ /******/ }
738
+ /******/ }
739
+ /******/ }
740
+ /******/ }
741
+ /******/ }
742
+ /******/
743
+ /******/ // Load self accepted modules
744
+ /******/ for (i = 0; i < outdatedSelfAcceptedModules.length; i++) {
745
+ /******/ var item = outdatedSelfAcceptedModules[i];
746
+ /******/ moduleId = item.module;
747
+ /******/ hotCurrentParents = item.parents;
748
+ /******/ hotCurrentChildModule = moduleId;
749
+ /******/ try {
750
+ /******/ __webpack_require__(moduleId);
751
+ /******/ } catch (err) {
752
+ /******/ if (typeof item.errorHandler === "function") {
753
+ /******/ try {
754
+ /******/ item.errorHandler(err);
755
+ /******/ } catch (err2) {
756
+ /******/ if (options.onErrored) {
757
+ /******/ options.onErrored({
758
+ /******/ type: "self-accept-error-handler-errored",
759
+ /******/ moduleId: moduleId,
760
+ /******/ error: err2,
761
+ /******/ originalError: err
762
+ /******/ });
763
+ /******/ }
764
+ /******/ if (!options.ignoreErrored) {
765
+ /******/ if (!error) error = err2;
766
+ /******/ }
767
+ /******/ if (!error) error = err;
768
+ /******/ }
769
+ /******/ } else {
770
+ /******/ if (options.onErrored) {
771
+ /******/ options.onErrored({
772
+ /******/ type: "self-accept-errored",
773
+ /******/ moduleId: moduleId,
774
+ /******/ error: err
775
+ /******/ });
776
+ /******/ }
777
+ /******/ if (!options.ignoreErrored) {
778
+ /******/ if (!error) error = err;
779
+ /******/ }
780
+ /******/ }
781
+ /******/ }
782
+ /******/ }
783
+ /******/
784
+ /******/ // handle errors in accept handlers and self accepted module load
785
+ /******/ if (error) {
786
+ /******/ hotSetStatus("fail");
787
+ /******/ return Promise.reject(error);
788
+ /******/ }
789
+ /******/
790
+ /******/ if (hotQueuedInvalidatedModules) {
791
+ /******/ return hotApplyInternal(options).then(function(list) {
792
+ /******/ outdatedModules.forEach(function(moduleId) {
793
+ /******/ if (list.indexOf(moduleId) < 0) list.push(moduleId);
794
+ /******/ });
795
+ /******/ return list;
796
+ /******/ });
797
+ /******/ }
798
+ /******/
799
+ /******/ hotSetStatus("idle");
800
+ /******/ return new Promise(function(resolve) {
801
+ /******/ resolve(outdatedModules);
802
+ /******/ });
803
+ /******/ }
804
+ /******/
805
+ /******/ function hotApplyInvalidatedModules() {
806
+ /******/ if (hotQueuedInvalidatedModules) {
807
+ /******/ if (!hotUpdate) hotUpdate = {};
808
+ /******/ hotQueuedInvalidatedModules.forEach(hotApplyInvalidatedModule);
809
+ /******/ hotQueuedInvalidatedModules = undefined;
810
+ /******/ return true;
811
+ /******/ }
812
+ /******/ }
813
+ /******/
814
+ /******/ function hotApplyInvalidatedModule(moduleId) {
815
+ /******/ if (!Object.prototype.hasOwnProperty.call(hotUpdate, moduleId))
816
+ /******/ hotUpdate[moduleId] = modules[moduleId];
817
+ /******/ }
818
+ /******/
819
+ /******/ // The module cache
820
+ /******/ var installedModules = {};
821
+ /******/
822
+ /******/ // object to store loaded and loading chunks
823
+ /******/ // undefined = chunk not loaded, null = chunk preloaded/prefetched
824
+ /******/ // Promise = chunk loading, 0 = chunk loaded
825
+ /******/ var installedChunks = {
826
+ /******/ "runtime-main": 0
827
+ /******/ };
828
+ /******/
829
+ /******/ var deferredModules = [];
830
+ /******/
831
+ /******/ // The require function
832
+ /******/ function __webpack_require__(moduleId) {
833
+ /******/
834
+ /******/ // Check if module is in cache
835
+ /******/ if(installedModules[moduleId]) {
836
+ /******/ return installedModules[moduleId].exports;
837
+ /******/ }
838
+ /******/ // Create a new module (and put it into the cache)
839
+ /******/ var module = installedModules[moduleId] = {
840
+ /******/ i: moduleId,
841
+ /******/ l: false,
842
+ /******/ exports: {},
843
+ /******/ hot: hotCreateModule(moduleId),
844
+ /******/ parents: (hotCurrentParentsTemp = hotCurrentParents, hotCurrentParents = [], hotCurrentParentsTemp),
845
+ /******/ children: []
846
+ /******/ };
847
+ /******/
848
+ /******/ // Execute the module function
849
+ /******/
850
+ /******/ __webpack_require__.$Refresh$.init();
851
+ /******/ try {
852
+ /******/ modules[moduleId].call(module.exports, module, module.exports, hotCreateRequire(moduleId));
853
+ /******/ } finally {
854
+ /******/ __webpack_require__.$Refresh$.cleanup(moduleId);
855
+ /******/ }
856
+ /******/
857
+ /******/
858
+ /******/ // Flag the module as loaded
859
+ /******/ module.l = true;
860
+ /******/
861
+ /******/ // Return the exports of the module
862
+ /******/ return module.exports;
863
+ /******/ }
864
+ /******/
865
+ /******/
866
+ /******/ // expose the modules object (__webpack_modules__)
867
+ /******/ __webpack_require__.m = modules;
868
+ /******/
869
+ /******/ // expose the module cache
870
+ /******/ __webpack_require__.c = installedModules;
871
+ /******/
872
+ /******/ // define getter function for harmony exports
873
+ /******/ __webpack_require__.d = function(exports, name, getter) {
874
+ /******/ if(!__webpack_require__.o(exports, name)) {
875
+ /******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
876
+ /******/ }
877
+ /******/ };
878
+ /******/
879
+ /******/ // define __esModule on exports
880
+ /******/ __webpack_require__.r = function(exports) {
881
+ /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
882
+ /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
883
+ /******/ }
884
+ /******/ Object.defineProperty(exports, '__esModule', { value: true });
885
+ /******/ };
886
+ /******/
887
+ /******/ // create a fake namespace object
888
+ /******/ // mode & 1: value is a module id, require it
889
+ /******/ // mode & 2: merge all properties of value into the ns
890
+ /******/ // mode & 4: return value when already ns object
891
+ /******/ // mode & 8|1: behave like require
892
+ /******/ __webpack_require__.t = function(value, mode) {
893
+ /******/ if(mode & 1) value = __webpack_require__(value);
894
+ /******/ if(mode & 8) return value;
895
+ /******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
896
+ /******/ var ns = Object.create(null);
897
+ /******/ __webpack_require__.r(ns);
898
+ /******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
899
+ /******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
900
+ /******/ return ns;
901
+ /******/ };
902
+ /******/
903
+ /******/ // getDefaultExport function for compatibility with non-harmony modules
904
+ /******/ __webpack_require__.n = function(module) {
905
+ /******/ var getter = module && module.__esModule ?
906
+ /******/ function getDefault() { return module['default']; } :
907
+ /******/ function getModuleExports() { return module; };
908
+ /******/ __webpack_require__.d(getter, 'a', getter);
909
+ /******/ return getter;
910
+ /******/ };
911
+ /******/
912
+ /******/ // Object.prototype.hasOwnProperty.call
913
+ /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
914
+ /******/
915
+ /******/ // __webpack_public_path__
916
+ /******/ __webpack_require__.p = "/";
917
+ /******/
918
+ /******/ // __webpack_hash__
919
+ /******/ __webpack_require__.h = function() { return hotCurrentHash; };
920
+ /******/
921
+ /******/ __webpack_require__.$Refresh$ = {
922
+ /******/ init: function() {
923
+ /******/ __webpack_require__.$Refresh$.cleanup = function() { return undefined; };
924
+ /******/ __webpack_require__.$Refresh$.register = function() { return undefined; };
925
+ /******/ __webpack_require__.$Refresh$.runtime = {};
926
+ /******/ __webpack_require__.$Refresh$.signature = function() { return function(type) { return type; }; };
927
+ /******/ },
928
+ /******/ setup: function(currentModuleId) {
929
+ /******/ var prevCleanup = __webpack_require__.$Refresh$.cleanup;
930
+ /******/ var prevReg = __webpack_require__.$Refresh$.register;
931
+ /******/ var prevSig = __webpack_require__.$Refresh$.signature;
932
+ /******/
933
+ /******/ __webpack_require__.$Refresh$.register = function(type, id) {
934
+ /******/ var typeId = currentModuleId + " " + id;
935
+ /******/ __webpack_require__.$Refresh$.runtime.register(type, typeId);
936
+ /******/ }
937
+ /******/
938
+ /******/ __webpack_require__.$Refresh$.signature = __webpack_require__.$Refresh$.runtime.createSignatureFunctionForTransform;
939
+ /******/
940
+ /******/ __webpack_require__.$Refresh$.cleanup = function(cleanupModuleId) {
941
+ /******/ if (currentModuleId === cleanupModuleId) {
942
+ /******/ __webpack_require__.$Refresh$.register = prevReg;
943
+ /******/ __webpack_require__.$Refresh$.signature = prevSig;
944
+ /******/ __webpack_require__.$Refresh$.cleanup = prevCleanup;
945
+ /******/ }
946
+ /******/ }
947
+ /******/ },
948
+ /******/ };
949
+ /******/
950
+ /******/ var jsonpArray = this["webpackJsonp@cloudbase/weda-ui"] = this["webpackJsonp@cloudbase/weda-ui"] || [];
951
+ /******/ var oldJsonpFunction = jsonpArray.push.bind(jsonpArray);
952
+ /******/ jsonpArray.push = webpackJsonpCallback;
953
+ /******/ jsonpArray = jsonpArray.slice();
954
+ /******/ for(var i = 0; i < jsonpArray.length; i++) webpackJsonpCallback(jsonpArray[i]);
955
+ /******/ var parentJsonpFunction = oldJsonpFunction;
956
+ /******/
957
+ /******/
958
+ /******/ // run deferred modules from other chunks
959
+ /******/ checkDeferredModules();
960
+ /******/ })
961
+ /************************************************************************/
962
+ /******/ ([]);
963
+ //# sourceMappingURL=bundle.js.map