@mdsfe/mds-ui 0.2.0 → 0.2.9-rc.1

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 (131) hide show
  1. package/CHANGELOG.md +178 -0
  2. package/README.md +9 -9
  3. package/dist/_mixin/popper.js +1 -0
  4. package/dist/_util/_popper/dom-helper.js +284 -0
  5. package/dist/_util/_popper/popper-mixin.js +35 -0
  6. package/dist/_util/_popper/popper.js +1267 -0
  7. package/dist/_util/_popper/popup/popup-main.js +224 -0
  8. package/dist/_util/_popper/popup/popup-manager.js +205 -0
  9. package/dist/_util/_popper/vue-popper.js +204 -0
  10. package/dist/_util/popup/index.js +1 -1
  11. package/dist/_util/tree/node.js +2 -0
  12. package/dist/_util/tree/tree.js +65 -21
  13. package/dist/_util/util.js +29 -1
  14. package/dist/affix.js +18 -18
  15. package/dist/anchor.js +18 -18
  16. package/dist/avatar.js +17 -17
  17. package/dist/backtop.js +19 -19
  18. package/dist/badge.js +21 -21
  19. package/dist/bordershadow.js +20 -9
  20. package/dist/breadcrumb.js +18 -18
  21. package/dist/button.js +21 -21
  22. package/dist/card.js +18 -18
  23. package/dist/carousel.js +76 -76
  24. package/dist/cascader.js +4980 -0
  25. package/dist/cascaderpanel.js +645 -603
  26. package/dist/checkbox.js +23 -23
  27. package/dist/col.js +14 -14
  28. package/dist/collapse.js +6 -6
  29. package/dist/color.js +6 -6
  30. package/dist/datepicker.js +2487 -266
  31. package/dist/divider.js +19 -19
  32. package/dist/drawer.js +787 -37
  33. package/dist/dropdown.js +150 -104
  34. package/dist/empty.js +19 -19
  35. package/dist/font/iconfont.28359fa.ttf +0 -0
  36. package/dist/font/iconfont.486e3d3.woff2 +0 -0
  37. package/dist/font/iconfont.675049e.woff +0 -0
  38. package/dist/font.js +6 -6
  39. package/dist/form.js +28 -26
  40. package/dist/icon.js +55 -47
  41. package/dist/index.js +1 -1
  42. package/dist/input.js +65 -49
  43. package/dist/inputnumber.js +59 -39
  44. package/dist/layout.js +25 -25
  45. package/dist/list.js +17 -17
  46. package/dist/loading.js +21 -8
  47. package/dist/mds-ui.min.css +3 -3
  48. package/dist/mds-ui.min.js +19183 -15407
  49. package/dist/menu.js +31 -31
  50. package/dist/message.js +773 -24
  51. package/dist/modal.js +1146 -307
  52. package/dist/notification.js +27 -27
  53. package/dist/pagination.js +78 -55
  54. package/dist/popconfirm.js +36 -36
  55. package/dist/popover.js +2778 -48
  56. package/dist/progress.js +107 -65
  57. package/dist/radio.js +56 -54
  58. package/dist/rate.js +67 -59
  59. package/dist/row.js +14 -14
  60. package/dist/select.js +847 -503
  61. package/dist/slider.js +25 -25
  62. package/dist/slottable.js +2663 -129
  63. package/dist/steps.js +18 -18
  64. package/dist/style/affix.css +224 -2
  65. package/dist/style/anchor.css +224 -2
  66. package/dist/style/avatar.css +224 -2
  67. package/dist/style/badge.css +224 -2
  68. package/dist/style/bordershadow.css +236 -59
  69. package/dist/style/breadcrumb.css +224 -2
  70. package/dist/style/button.css +234 -5
  71. package/dist/style/card.css +224 -2
  72. package/dist/style/carousel.css +224 -2
  73. package/dist/style/cascader.css +214 -0
  74. package/dist/style/cascaderpanel.css +13 -16
  75. package/dist/style/checkbox.css +230 -8
  76. package/dist/style/col.css +225 -3
  77. package/dist/style/collapse.css +224 -2
  78. package/dist/style/color.css +224 -2
  79. package/dist/style/datepicker.css +236 -2
  80. package/dist/style/divider.css +227 -2
  81. package/dist/style/drawer.css +224 -2
  82. package/dist/style/dropdown.css +234 -5
  83. package/dist/style/empty.css +224 -2
  84. package/dist/style/font.css +226 -4
  85. package/dist/style/form.css +224 -2
  86. package/dist/style/icon.css +226 -3
  87. package/dist/style/input.css +231 -5
  88. package/dist/style/inputnumber.css +224 -2
  89. package/dist/style/layout.css +224 -2
  90. package/dist/style/list.css +224 -2
  91. package/dist/style/loading.css +2527 -2
  92. package/dist/style/menu.css +340 -129
  93. package/dist/style/message.css +1 -4
  94. package/dist/style/modal.css +247 -25
  95. package/dist/style/notification.css +224 -2
  96. package/dist/style/pagination.css +236 -7
  97. package/dist/style/popconfirm.css +334 -180
  98. package/dist/style/popover.css +324 -177
  99. package/dist/style/progress.css +226 -3
  100. package/dist/style/radio.css +225 -3
  101. package/dist/style/rate.css +226 -3
  102. package/dist/style/row.css +225 -3
  103. package/dist/style/select.css +240 -12
  104. package/dist/style/slider.css +224 -2
  105. package/dist/style/slottable.css +350 -149
  106. package/dist/style/steps.css +224 -2
  107. package/dist/style/switch.css +224 -2
  108. package/dist/style/table.css +458 -314
  109. package/dist/style/tabs.css +225 -18
  110. package/dist/style/tag.css +224 -2
  111. package/dist/style/text.css +224 -2
  112. package/dist/style/timeline.css +224 -2
  113. package/dist/style/timepicker.css +231 -6
  114. package/dist/style/tooltip.css +340 -129
  115. package/dist/style/tree.css +228 -6
  116. package/dist/style/typography.css +224 -2
  117. package/dist/style/upload.css +224 -2
  118. package/dist/switch.js +20 -20
  119. package/dist/table.js +3071 -201
  120. package/dist/tabs.js +24 -22
  121. package/dist/tag.js +17 -23
  122. package/dist/text.js +38 -22
  123. package/dist/timeline.js +14 -14
  124. package/dist/timepicker.js +3063 -172
  125. package/dist/tooltip.js +2550 -27
  126. package/dist/transfer.js +28 -28
  127. package/dist/transition.js +6 -6
  128. package/dist/tree.js +316 -171
  129. package/dist/typography.js +6 -6
  130. package/dist/upload.js +46 -38
  131. package/package.json +9 -5
package/dist/dropdown.js CHANGED
@@ -1,13 +1,13 @@
1
1
  (function webpackUniversalModuleDefinition(root, factory) {
2
2
  if(typeof exports === 'object' && typeof module === 'object')
3
- module.exports = factory(require("./_util/proptype"), require("./icon"), require("./button"), require("./transition"), require("./_mixin/popper"));
3
+ module.exports = factory(require("./_util/proptype"), require("./icon"), require("./transition"), require("./button"), require("./_mixin/popper"));
4
4
  else if(typeof define === 'function' && define.amd)
5
- define(["./_util/proptype", "./icon", "./button", "./transition", "./_mixin/popper"], factory);
5
+ define(["./_util/proptype", "./icon", "./transition", "./button", "./_mixin/popper"], factory);
6
6
  else {
7
- var a = typeof exports === 'object' ? factory(require("./_util/proptype"), require("./icon"), require("./button"), require("./transition"), require("./_mixin/popper")) : factory(root["./_util/proptype"], root["./icon"], root["./button"], root["./transition"], root["./_mixin/popper"]);
7
+ var a = typeof exports === 'object' ? factory(require("./_util/proptype"), require("./icon"), require("./transition"), require("./button"), require("./_mixin/popper")) : factory(root["./_util/proptype"], root["./icon"], root["./transition"], root["./button"], root["./_mixin/popper"]);
8
8
  for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
9
9
  }
10
- })(window, function(__WEBPACK_EXTERNAL_MODULE__3__, __WEBPACK_EXTERNAL_MODULE__4__, __WEBPACK_EXTERNAL_MODULE__7__, __WEBPACK_EXTERNAL_MODULE__13__, __WEBPACK_EXTERNAL_MODULE__44__) {
10
+ })(window, function(__WEBPACK_EXTERNAL_MODULE__7__, __WEBPACK_EXTERNAL_MODULE__8__, __WEBPACK_EXTERNAL_MODULE__11__, __WEBPACK_EXTERNAL_MODULE__13__, __WEBPACK_EXTERNAL_MODULE__68__) {
11
11
  return /******/ (function(modules) { // webpackBootstrap
12
12
  /******/ // The module cache
13
13
  /******/ var installedModules = {};
@@ -91,7 +91,7 @@ return /******/ (function(modules) { // webpackBootstrap
91
91
  /******/
92
92
  /******/
93
93
  /******/ // Load entry module and return exports
94
- /******/ return __webpack_require__(__webpack_require__.s = 99);
94
+ /******/ return __webpack_require__(__webpack_require__.s = 107);
95
95
  /******/ })
96
96
  /************************************************************************/
97
97
  /******/ ({
@@ -203,76 +203,7 @@ function normalizeComponent (
203
203
 
204
204
  /***/ }),
205
205
 
206
- /***/ 13:
207
- /***/ (function(module, exports) {
208
-
209
- module.exports = __WEBPACK_EXTERNAL_MODULE__13__;
210
-
211
- /***/ }),
212
-
213
- /***/ 131:
214
- /***/ (function(module, exports) {
215
-
216
- // removed by extract-text-webpack-plugin
217
-
218
- /***/ }),
219
-
220
- /***/ 149:
221
- /***/ (function(module, exports) {
222
-
223
- // removed by extract-text-webpack-plugin
224
-
225
- /***/ }),
226
-
227
- /***/ 163:
228
- /***/ (function(module, exports) {
229
-
230
- // removed by extract-text-webpack-plugin
231
-
232
- /***/ }),
233
-
234
- /***/ 3:
235
- /***/ (function(module, exports) {
236
-
237
- module.exports = __WEBPACK_EXTERNAL_MODULE__3__;
238
-
239
- /***/ }),
240
-
241
- /***/ 33:
242
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
243
-
244
- "use strict";
245
- /* harmony import */ var _style_index_less__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(131);
246
- /* harmony import */ var _style_index_less__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_style_index_less__WEBPACK_IMPORTED_MODULE_0__);
247
- /* harmony import */ var _index_less__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(149);
248
- /* harmony import */ var _index_less__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_index_less__WEBPACK_IMPORTED_MODULE_1__);
249
-
250
-
251
-
252
- /***/ }),
253
-
254
- /***/ 4:
255
- /***/ (function(module, exports) {
256
-
257
- module.exports = __WEBPACK_EXTERNAL_MODULE__4__;
258
-
259
- /***/ }),
260
-
261
- /***/ 44:
262
- /***/ (function(module, exports) {
263
-
264
- module.exports = __WEBPACK_EXTERNAL_MODULE__44__;
265
-
266
- /***/ }),
267
-
268
- /***/ 7:
269
- /***/ (function(module, exports) {
270
-
271
- module.exports = __WEBPACK_EXTERNAL_MODULE__7__;
272
-
273
- /***/ }),
274
-
275
- /***/ 99:
206
+ /***/ 107:
276
207
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
277
208
 
278
209
  "use strict";
@@ -280,13 +211,13 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__7__;
280
211
  __webpack_require__.r(__webpack_exports__);
281
212
 
282
213
  // EXTERNAL MODULE: ./components/style/index.less
283
- var style = __webpack_require__(131);
214
+ var style = __webpack_require__(139);
284
215
 
285
216
  // EXTERNAL MODULE: ./components/dropdown/style/index.less
286
- var dropdown_style = __webpack_require__(163);
217
+ var dropdown_style = __webpack_require__(175);
287
218
 
288
219
  // EXTERNAL MODULE: ./components/button/style/index.js
289
- var button_style = __webpack_require__(33);
220
+ var button_style = __webpack_require__(41);
290
221
 
291
222
  // CONCATENATED MODULE: ./components/dropdown/style/index.js
292
223
 
@@ -309,25 +240,51 @@ var render = function () {
309
240
  attrs: { type: "line-edit" },
310
241
  })
311
242
  : _vm._t("default"),
312
- _c("mds-transition", { attrs: { type: "slide", motion: _vm.motion } }, [
313
- _c(
314
- "div",
315
- {
316
- directives: [
243
+ _vm.showAnimate
244
+ ? [
245
+ _c(
246
+ "mds-transition",
247
+ { attrs: { type: "slide", motion: _vm.motion } },
248
+ [
249
+ _c(
250
+ "div",
251
+ {
252
+ directives: [
253
+ {
254
+ name: "show",
255
+ rawName: "v-show",
256
+ value: _vm.visible,
257
+ expression: "visible",
258
+ },
259
+ ],
260
+ ref: "overlay",
261
+ class: _vm.classes,
262
+ },
263
+ [_vm._t("overlay")],
264
+ 2
265
+ ),
266
+ ]
267
+ ),
268
+ ]
269
+ : [
270
+ _c(
271
+ "div",
317
272
  {
318
- name: "show",
319
- rawName: "v-show",
320
- value: _vm.visible,
321
- expression: "visible",
273
+ directives: [
274
+ {
275
+ name: "show",
276
+ rawName: "v-show",
277
+ value: _vm.visible,
278
+ expression: "visible",
279
+ },
280
+ ],
281
+ ref: "overlay",
282
+ class: _vm.classes,
322
283
  },
323
- ],
324
- ref: "overlay",
325
- class: _vm.classes,
326
- },
327
- [_vm._t("overlay")],
328
- 2
329
- ),
330
- ]),
284
+ [_vm._t("overlay")],
285
+ 2
286
+ ),
287
+ ],
331
288
  ],
332
289
  2
333
290
  )
@@ -339,23 +296,23 @@ render._withStripped = true
339
296
  // CONCATENATED MODULE: ./components/dropdown/dropdown.vue?vue&type=template&id=30153d24&
340
297
 
341
298
  // EXTERNAL MODULE: external "./transition"
342
- var external_transition_ = __webpack_require__(13);
299
+ var external_transition_ = __webpack_require__(11);
343
300
  var external_transition_default = /*#__PURE__*/__webpack_require__.n(external_transition_);
344
301
 
345
302
  // EXTERNAL MODULE: external "./button"
346
- var external_button_ = __webpack_require__(7);
303
+ var external_button_ = __webpack_require__(13);
347
304
  var external_button_default = /*#__PURE__*/__webpack_require__.n(external_button_);
348
305
 
349
306
  // EXTERNAL MODULE: external "./icon"
350
- var external_icon_ = __webpack_require__(4);
307
+ var external_icon_ = __webpack_require__(8);
351
308
  var external_icon_default = /*#__PURE__*/__webpack_require__.n(external_icon_);
352
309
 
353
310
  // EXTERNAL MODULE: external "./_mixin/popper"
354
- var popper_ = __webpack_require__(44);
311
+ var popper_ = __webpack_require__(68);
355
312
  var popper_default = /*#__PURE__*/__webpack_require__.n(popper_);
356
313
 
357
314
  // EXTERNAL MODULE: external "./_util/proptype"
358
- var proptype_ = __webpack_require__(3);
315
+ var proptype_ = __webpack_require__(7);
359
316
 
360
317
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./components/dropdown/dropdown.vue?vue&type=script&lang=js&
361
318
  //
@@ -376,6 +333,11 @@ var proptype_ = __webpack_require__(3);
376
333
  //
377
334
  //
378
335
  //
336
+ //
337
+ //
338
+ //
339
+ //
340
+ //
379
341
 
380
342
 
381
343
 
@@ -411,7 +373,12 @@ var proptype_ = __webpack_require__(3);
411
373
  validator: function validator(value) {
412
374
  return Object(proptype_["oneOf"])(value, ['primary', 'dashed', 'danger', 'default']);
413
375
  }
414
- }
376
+ },
377
+ showAnimate: {
378
+ type: Boolean,
379
+ default: true
380
+ },
381
+ popperClass: String
415
382
  },
416
383
  data: function data() {
417
384
  return {
@@ -428,7 +395,7 @@ var proptype_ = __webpack_require__(3);
428
395
  computed: {
429
396
  classes: function classes() {
430
397
  var prefixCls = this.prefixCls;
431
- return [prefixCls].concat(this.placementCls);
398
+ return [prefixCls].concat(this.placementCls).concat(this.popperClass);
432
399
  },
433
400
  motion: function motion() {
434
401
  return this.placement.indexOf('top') > -1 ? 'down' : 'up';
@@ -442,18 +409,26 @@ var proptype_ = __webpack_require__(3);
442
409
  methods: {
443
410
  show: function show() {
444
411
  clearTimeout(this.timer);
412
+ if (this.visible) {
413
+ return;
414
+ }
445
415
  this.visible = true;
416
+ this.$emit('visible-change', this.visible);
446
417
  },
447
418
  hide: function hide() {
448
419
  var _this = this;
449
420
 
450
421
  clearTimeout(this.timer);
422
+ if (!this.visible) {
423
+ return;
424
+ }
451
425
  this.timer = setTimeout(function () {
452
426
  _this.visible = false;
427
+ _this.$emit('visible-change', _this.visible);
453
428
  }, 150);
454
429
  },
455
430
  toggle: function toggle() {
456
- this.visible = !this.visible;
431
+ this.visible ? this.hide() : this.show();
457
432
  },
458
433
 
459
434
  /**
@@ -461,7 +436,9 @@ var proptype_ = __webpack_require__(3);
461
436
  * @param e
462
437
  */
463
438
  clickDocument: function clickDocument(e) {
464
- if (!this.visible || !this.$el || !this.reference || !this.popper || this.$el.contains(e.target) || this.reference.contains(e.target) || this.popper.contains(e.target)) return;
439
+ if (!this.visible || !this.$el || !this.reference || !this.popper || this.$el.contains(e.target) || this.reference.contains(e.target) || this.popper.contains(e.target)) {
440
+ return;
441
+ }
465
442
  this.hide();
466
443
  }
467
444
  },
@@ -681,6 +658,75 @@ dropdown.install = function (Vue) {
681
658
  };
682
659
  /* harmony default export */ var components_dropdown = __webpack_exports__["default"] = (dropdown);
683
660
 
661
+ /***/ }),
662
+
663
+ /***/ 11:
664
+ /***/ (function(module, exports) {
665
+
666
+ module.exports = __WEBPACK_EXTERNAL_MODULE__11__;
667
+
668
+ /***/ }),
669
+
670
+ /***/ 13:
671
+ /***/ (function(module, exports) {
672
+
673
+ module.exports = __WEBPACK_EXTERNAL_MODULE__13__;
674
+
675
+ /***/ }),
676
+
677
+ /***/ 139:
678
+ /***/ (function(module, exports) {
679
+
680
+ // removed by extract-text-webpack-plugin
681
+
682
+ /***/ }),
683
+
684
+ /***/ 161:
685
+ /***/ (function(module, exports) {
686
+
687
+ // removed by extract-text-webpack-plugin
688
+
689
+ /***/ }),
690
+
691
+ /***/ 175:
692
+ /***/ (function(module, exports) {
693
+
694
+ // removed by extract-text-webpack-plugin
695
+
696
+ /***/ }),
697
+
698
+ /***/ 41:
699
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
700
+
701
+ "use strict";
702
+ /* harmony import */ var _style_index_less__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(139);
703
+ /* harmony import */ var _style_index_less__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_style_index_less__WEBPACK_IMPORTED_MODULE_0__);
704
+ /* harmony import */ var _index_less__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(161);
705
+ /* harmony import */ var _index_less__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_index_less__WEBPACK_IMPORTED_MODULE_1__);
706
+
707
+
708
+
709
+ /***/ }),
710
+
711
+ /***/ 68:
712
+ /***/ (function(module, exports) {
713
+
714
+ module.exports = __WEBPACK_EXTERNAL_MODULE__68__;
715
+
716
+ /***/ }),
717
+
718
+ /***/ 7:
719
+ /***/ (function(module, exports) {
720
+
721
+ module.exports = __WEBPACK_EXTERNAL_MODULE__7__;
722
+
723
+ /***/ }),
724
+
725
+ /***/ 8:
726
+ /***/ (function(module, exports) {
727
+
728
+ module.exports = __WEBPACK_EXTERNAL_MODULE__8__;
729
+
684
730
  /***/ })
685
731
 
686
732
  /******/ });
package/dist/empty.js CHANGED
@@ -7,7 +7,7 @@
7
7
  var a = typeof exports === 'object' ? factory(require("./_util/proptype")) : factory(root["./_util/proptype"]);
8
8
  for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
9
9
  }
10
- })(window, function(__WEBPACK_EXTERNAL_MODULE__3__) {
10
+ })(window, function(__WEBPACK_EXTERNAL_MODULE__7__) {
11
11
  return /******/ (function(modules) { // webpackBootstrap
12
12
  /******/ // The module cache
13
13
  /******/ var installedModules = {};
@@ -91,7 +91,7 @@ return /******/ (function(modules) { // webpackBootstrap
91
91
  /******/
92
92
  /******/
93
93
  /******/ // Load entry module and return exports
94
- /******/ return __webpack_require__(__webpack_require__.s = 130);
94
+ /******/ return __webpack_require__(__webpack_require__.s = 138);
95
95
  /******/ })
96
96
  /************************************************************************/
97
97
  /******/ ({
@@ -203,14 +203,7 @@ function normalizeComponent (
203
203
 
204
204
  /***/ }),
205
205
 
206
- /***/ 1:
207
- /***/ (function(module, exports) {
208
-
209
- module.exports = require("babel-runtime/helpers/defineProperty");
210
-
211
- /***/ }),
212
-
213
- /***/ 130:
206
+ /***/ 138:
214
207
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
215
208
 
216
209
  "use strict";
@@ -218,16 +211,16 @@ module.exports = require("babel-runtime/helpers/defineProperty");
218
211
  __webpack_require__.r(__webpack_exports__);
219
212
 
220
213
  // EXTERNAL MODULE: ./components/style/index.less
221
- var style = __webpack_require__(131);
214
+ var style = __webpack_require__(139);
222
215
 
223
216
  // EXTERNAL MODULE: ./components/empty/style/index.less
224
- var empty_style = __webpack_require__(245);
217
+ var empty_style = __webpack_require__(254);
225
218
 
226
219
  // CONCATENATED MODULE: ./components/empty/style/index.js
227
220
 
228
221
 
229
222
  // EXTERNAL MODULE: ./components/empty/empty.vue + 4 modules
230
- var empty = __webpack_require__(31);
223
+ var empty = __webpack_require__(40);
231
224
 
232
225
  // CONCATENATED MODULE: ./components/empty/index.js
233
226
 
@@ -242,14 +235,14 @@ empty["a" /* default */].install = function (Vue) {
242
235
 
243
236
  /***/ }),
244
237
 
245
- /***/ 131:
238
+ /***/ 139:
246
239
  /***/ (function(module, exports) {
247
240
 
248
241
  // removed by extract-text-webpack-plugin
249
242
 
250
243
  /***/ }),
251
244
 
252
- /***/ 245:
245
+ /***/ 254:
253
246
  /***/ (function(module, exports) {
254
247
 
255
248
  // removed by extract-text-webpack-plugin
@@ -259,11 +252,11 @@ empty["a" /* default */].install = function (Vue) {
259
252
  /***/ 3:
260
253
  /***/ (function(module, exports) {
261
254
 
262
- module.exports = __WEBPACK_EXTERNAL_MODULE__3__;
255
+ module.exports = require("babel-runtime/helpers/defineProperty");
263
256
 
264
257
  /***/ }),
265
258
 
266
- /***/ 31:
259
+ /***/ 40:
267
260
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
268
261
 
269
262
  "use strict";
@@ -301,11 +294,11 @@ render._withStripped = true
301
294
  // CONCATENATED MODULE: ./components/empty/empty.vue?vue&type=template&id=4c25cea0&
302
295
 
303
296
  // EXTERNAL MODULE: external "babel-runtime/helpers/defineProperty"
304
- var defineProperty_ = __webpack_require__(1);
297
+ var defineProperty_ = __webpack_require__(3);
305
298
  var defineProperty_default = /*#__PURE__*/__webpack_require__.n(defineProperty_);
306
299
 
307
300
  // EXTERNAL MODULE: external "./_util/proptype"
308
- var proptype_ = __webpack_require__(3);
301
+ var proptype_ = __webpack_require__(7);
309
302
 
310
303
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./components/empty/empty.vue?vue&type=script&lang=js&
311
304
 
@@ -410,6 +403,13 @@ if (false) { var api; }
410
403
  component.options.__file = "components/empty/empty.vue"
411
404
  /* harmony default export */ var empty = __webpack_exports__["a"] = (component.exports);
412
405
 
406
+ /***/ }),
407
+
408
+ /***/ 7:
409
+ /***/ (function(module, exports) {
410
+
411
+ module.exports = __WEBPACK_EXTERNAL_MODULE__7__;
412
+
413
413
  /***/ })
414
414
 
415
415
  /******/ });
Binary file
Binary file
Binary file
package/dist/font.js CHANGED
@@ -91,7 +91,7 @@ return /******/ (function(modules) { // webpackBootstrap
91
91
  /******/
92
92
  /******/
93
93
  /******/ // Load entry module and return exports
94
- /******/ return __webpack_require__(__webpack_require__.s = 117);
94
+ /******/ return __webpack_require__(__webpack_require__.s = 125);
95
95
  /******/ })
96
96
  /************************************************************************/
97
97
  /******/ ({
@@ -203,7 +203,7 @@ function normalizeComponent (
203
203
 
204
204
  /***/ }),
205
205
 
206
- /***/ 117:
206
+ /***/ 125:
207
207
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
208
208
 
209
209
  "use strict";
@@ -211,10 +211,10 @@ function normalizeComponent (
211
211
  __webpack_require__.r(__webpack_exports__);
212
212
 
213
213
  // EXTERNAL MODULE: ./components/style/index.less
214
- var style = __webpack_require__(131);
214
+ var style = __webpack_require__(139);
215
215
 
216
216
  // EXTERNAL MODULE: ./components/font/style/index.less
217
- var font_style = __webpack_require__(165);
217
+ var font_style = __webpack_require__(177);
218
218
 
219
219
  // CONCATENATED MODULE: ./components/font/style/index.js
220
220
 
@@ -288,14 +288,14 @@ font.install = function (Vue) {
288
288
 
289
289
  /***/ }),
290
290
 
291
- /***/ 131:
291
+ /***/ 139:
292
292
  /***/ (function(module, exports) {
293
293
 
294
294
  // removed by extract-text-webpack-plugin
295
295
 
296
296
  /***/ }),
297
297
 
298
- /***/ 165:
298
+ /***/ 177:
299
299
  /***/ (function(module, exports) {
300
300
 
301
301
  // removed by extract-text-webpack-plugin