@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/tabs.js CHANGED
@@ -7,7 +7,7 @@
7
7
  var a = typeof exports === 'object' ? factory(require("./_util/proptype"), require("./icon")) : factory(root["./_util/proptype"], root["./icon"]);
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__) {
10
+ })(window, function(__WEBPACK_EXTERNAL_MODULE__7__, __WEBPACK_EXTERNAL_MODULE__8__) {
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 = 83);
94
+ /******/ return __webpack_require__(__webpack_require__.s = 90);
95
95
  /******/ })
96
96
  /************************************************************************/
97
97
  /******/ ({
@@ -203,49 +203,49 @@ function normalizeComponent (
203
203
 
204
204
  /***/ }),
205
205
 
206
- /***/ 1:
206
+ /***/ 139:
207
207
  /***/ (function(module, exports) {
208
208
 
209
- module.exports = require("babel-runtime/helpers/defineProperty");
209
+ // removed by extract-text-webpack-plugin
210
210
 
211
211
  /***/ }),
212
212
 
213
- /***/ 131:
213
+ /***/ 226:
214
214
  /***/ (function(module, exports) {
215
215
 
216
216
  // removed by extract-text-webpack-plugin
217
217
 
218
218
  /***/ }),
219
219
 
220
- /***/ 217:
220
+ /***/ 3:
221
221
  /***/ (function(module, exports) {
222
222
 
223
- // removed by extract-text-webpack-plugin
223
+ module.exports = require("babel-runtime/helpers/defineProperty");
224
224
 
225
225
  /***/ }),
226
226
 
227
- /***/ 3:
227
+ /***/ 37:
228
228
  /***/ (function(module, exports) {
229
229
 
230
- module.exports = __WEBPACK_EXTERNAL_MODULE__3__;
230
+ module.exports = require("lodash.debounce");
231
231
 
232
232
  /***/ }),
233
233
 
234
- /***/ 4:
234
+ /***/ 7:
235
235
  /***/ (function(module, exports) {
236
236
 
237
- module.exports = __WEBPACK_EXTERNAL_MODULE__4__;
237
+ module.exports = __WEBPACK_EXTERNAL_MODULE__7__;
238
238
 
239
239
  /***/ }),
240
240
 
241
- /***/ 45:
241
+ /***/ 8:
242
242
  /***/ (function(module, exports) {
243
243
 
244
- module.exports = require("lodash.debounce");
244
+ module.exports = __WEBPACK_EXTERNAL_MODULE__8__;
245
245
 
246
246
  /***/ }),
247
247
 
248
- /***/ 83:
248
+ /***/ 90:
249
249
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
250
250
 
251
251
  "use strict";
@@ -253,20 +253,20 @@ module.exports = require("lodash.debounce");
253
253
  __webpack_require__.r(__webpack_exports__);
254
254
 
255
255
  // EXTERNAL MODULE: ./components/style/index.less
256
- var style = __webpack_require__(131);
256
+ var style = __webpack_require__(139);
257
257
 
258
258
  // EXTERNAL MODULE: ./components/tabs/style/index.less
259
- var tabs_style = __webpack_require__(217);
259
+ var tabs_style = __webpack_require__(226);
260
260
 
261
261
  // CONCATENATED MODULE: ./components/tabs/style/index.js
262
262
 
263
263
 
264
264
  // EXTERNAL MODULE: external "babel-runtime/helpers/defineProperty"
265
- var defineProperty_ = __webpack_require__(1);
265
+ var defineProperty_ = __webpack_require__(3);
266
266
  var defineProperty_default = /*#__PURE__*/__webpack_require__.n(defineProperty_);
267
267
 
268
268
  // EXTERNAL MODULE: external "./_util/proptype"
269
- var proptype_ = __webpack_require__(3);
269
+ var proptype_ = __webpack_require__(7);
270
270
 
271
271
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./components/tabs/tabs-bar.vue?vue&type=template&id=06cd0d0a&
272
272
  var tabs_barvue_type_template_id_06cd0d0a_render = function () {
@@ -320,7 +320,7 @@ tabs_barvue_type_template_id_06cd0d0a_render._withStripped = true
320
320
  // CONCATENATED MODULE: ./components/tabs/tabs-bar.vue?vue&type=template&id=06cd0d0a&
321
321
 
322
322
  // EXTERNAL MODULE: external "./icon"
323
- var external_icon_ = __webpack_require__(4);
323
+ var external_icon_ = __webpack_require__(8);
324
324
  var external_icon_default = /*#__PURE__*/__webpack_require__.n(external_icon_);
325
325
 
326
326
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./components/tabs/tabs-ink.vue?vue&type=template&id=e235f146&
@@ -531,7 +531,7 @@ if (false) { var tabs_tab_api; }
531
531
  tabs_tab_component.options.__file = "components/tabs/tabs-tab.vue"
532
532
  /* harmony default export */ var tabs_tab = (tabs_tab_component.exports);
533
533
  // EXTERNAL MODULE: external "lodash.debounce"
534
- var external_lodash_debounce_ = __webpack_require__(45);
534
+ var external_lodash_debounce_ = __webpack_require__(37);
535
535
  var external_lodash_debounce_default = /*#__PURE__*/__webpack_require__.n(external_lodash_debounce_);
536
536
 
537
537
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./components/tabs/tabs-nav.vue?vue&type=script&lang=js&
@@ -545,8 +545,8 @@ var external_lodash_debounce_default = /*#__PURE__*/__webpack_require__.n(extern
545
545
  name: 'MdsTabsNav',
546
546
  data: function data() {
547
547
  return {
548
- next: true,
549
- prev: true,
548
+ next: false,
549
+ prev: false,
550
550
  shouldScroll: true,
551
551
  activeNode: null,
552
552
  inkSize: 0,
@@ -600,6 +600,8 @@ var external_lodash_debounce_default = /*#__PURE__*/__webpack_require__.n(extern
600
600
  };
601
601
  },
602
602
  showNextPrev: function showNextPrev() {
603
+ console.log(this.next);
604
+ console.log(this.prev);
603
605
  return this.next || this.prev;
604
606
  },
605
607
  isVertical: function isVertical() {
package/dist/tag.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 = 112);
94
+ /******/ return __webpack_require__(__webpack_require__.s = 120);
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
- /***/ 112:
206
+ /***/ 120:
214
207
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
215
208
 
216
209
  "use strict";
@@ -218,20 +211,20 @@ 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/tag/style/index.less
224
- var tag_style = __webpack_require__(219);
217
+ var tag_style = __webpack_require__(228);
225
218
 
226
219
  // CONCATENATED MODULE: ./components/tag/style/index.js
227
220
 
228
221
 
229
222
  // EXTERNAL MODULE: external "babel-runtime/helpers/defineProperty"
230
- var defineProperty_ = __webpack_require__(1);
223
+ var defineProperty_ = __webpack_require__(3);
231
224
  var defineProperty_default = /*#__PURE__*/__webpack_require__.n(defineProperty_);
232
225
 
233
226
  // EXTERNAL MODULE: external "./_util/proptype"
234
- var proptype_ = __webpack_require__(3);
227
+ var proptype_ = __webpack_require__(7);
235
228
 
236
229
  // CONCATENATED MODULE: ./components/tag/tag.js
237
230
 
@@ -314,9 +307,6 @@ var SIZEMAP = {
314
307
  handleClose: function handleClose(event) {
315
308
  event.stopPropagation();
316
309
  this.$emit('close', event);
317
- },
318
- handleAfterClose: function handleAfterClose() {
319
- this.$emit('after-close');
320
310
  }
321
311
  },
322
312
  render: function render() {
@@ -344,9 +334,6 @@ var SIZEMAP = {
344
334
  attrs: {
345
335
  'enter-active-class': this.prefixCls + '-zoom-enter',
346
336
  'leave-active-class': this.prefixCls + '-zoom-leave'
347
- },
348
- on: {
349
- 'afterLeave': this.handleAfterClose
350
337
  }
351
338
  },
352
339
  [tagTempalte]
@@ -453,14 +440,14 @@ tag.install = function (Vue) {
453
440
 
454
441
  /***/ }),
455
442
 
456
- /***/ 131:
443
+ /***/ 139:
457
444
  /***/ (function(module, exports) {
458
445
 
459
446
  // removed by extract-text-webpack-plugin
460
447
 
461
448
  /***/ }),
462
449
 
463
- /***/ 219:
450
+ /***/ 228:
464
451
  /***/ (function(module, exports) {
465
452
 
466
453
  // removed by extract-text-webpack-plugin
@@ -470,7 +457,14 @@ tag.install = function (Vue) {
470
457
  /***/ 3:
471
458
  /***/ (function(module, exports) {
472
459
 
473
- module.exports = __WEBPACK_EXTERNAL_MODULE__3__;
460
+ module.exports = require("babel-runtime/helpers/defineProperty");
461
+
462
+ /***/ }),
463
+
464
+ /***/ 7:
465
+ /***/ (function(module, exports) {
466
+
467
+ module.exports = __WEBPACK_EXTERNAL_MODULE__7__;
474
468
 
475
469
  /***/ })
476
470
 
package/dist/text.js CHANGED
@@ -7,7 +7,7 @@
7
7
  var a = typeof exports === 'object' ? factory(require("./icon"), require("./_mixin/emitter")) : factory(root["./icon"], root["./_mixin/emitter"]);
8
8
  for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
9
9
  }
10
- })(window, function(__WEBPACK_EXTERNAL_MODULE__4__, __WEBPACK_EXTERNAL_MODULE__6__) {
10
+ })(window, function(__WEBPACK_EXTERNAL_MODULE__8__, __WEBPACK_EXTERNAL_MODULE__12__) {
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 = 91);
94
+ /******/ return __webpack_require__(__webpack_require__.s = 99);
95
95
  /******/ })
96
96
  /************************************************************************/
97
97
  /******/ ({
@@ -203,28 +203,28 @@ function normalizeComponent (
203
203
 
204
204
  /***/ }),
205
205
 
206
- /***/ 131:
206
+ /***/ 12:
207
207
  /***/ (function(module, exports) {
208
208
 
209
- // removed by extract-text-webpack-plugin
209
+ module.exports = __WEBPACK_EXTERNAL_MODULE__12__;
210
210
 
211
211
  /***/ }),
212
212
 
213
- /***/ 251:
213
+ /***/ 139:
214
214
  /***/ (function(module, exports) {
215
215
 
216
216
  // removed by extract-text-webpack-plugin
217
217
 
218
218
  /***/ }),
219
219
 
220
- /***/ 4:
220
+ /***/ 260:
221
221
  /***/ (function(module, exports) {
222
222
 
223
- module.exports = __WEBPACK_EXTERNAL_MODULE__4__;
223
+ // removed by extract-text-webpack-plugin
224
224
 
225
225
  /***/ }),
226
226
 
227
- /***/ 41:
227
+ /***/ 47:
228
228
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
229
229
 
230
230
  "use strict";
@@ -248,7 +248,10 @@ var render = function () {
248
248
  },
249
249
  ],
250
250
  ref: "textAreaRef",
251
- class: _vm.prefixCls + " " + _vm.prefixCls + "-textarea",
251
+ class: [
252
+ _vm.prefixCls + " " + _vm.prefixCls + "-textarea",
253
+ _vm.disabled ? "mds-input-disabled" : "",
254
+ ],
252
255
  style: _vm.textareaStyles,
253
256
  attrs: {
254
257
  maxlength: _vm.max_length,
@@ -412,7 +415,7 @@ function calculateNodeHeight(uiTextNode) {
412
415
  return { height: height + 'px', minHeight: minHeight + 'px', maxHeight: maxHeight + 'px', overflowY: overflowY };
413
416
  }
414
417
  // EXTERNAL MODULE: external "./_mixin/emitter"
415
- var emitter_ = __webpack_require__(6);
418
+ var emitter_ = __webpack_require__(12);
416
419
  var emitter_default = /*#__PURE__*/__webpack_require__.n(emitter_);
417
420
 
418
421
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./components/input/textarea.vue?vue&type=script&lang=js&
@@ -438,6 +441,11 @@ var emitter_default = /*#__PURE__*/__webpack_require__.n(emitter_);
438
441
  //
439
442
  //
440
443
  //
444
+ //
445
+ //
446
+ //
447
+ //
448
+ //
441
449
 
442
450
 
443
451
 
@@ -517,11 +525,19 @@ function clearNextFrameAction(nextFrameId) {
517
525
  }
518
526
  },
519
527
  watch: {
520
- valueData: function valueData(newVal) {
521
- if (newVal.length > this.maxlength) {
522
- return false;
523
- } else {
524
- this.number = newVal.length;
528
+ valueData: {
529
+ immediate: true,
530
+ handler: function handler(newVal) {
531
+ var _this = this;
532
+
533
+ this.$nextTick(function () {
534
+ _this.resizeTextarea();
535
+ });
536
+ if (newVal.length > this.maxlength) {
537
+ return false;
538
+ } else {
539
+ this.number = newVal.length;
540
+ }
525
541
  }
526
542
  }
527
543
  },
@@ -607,14 +623,14 @@ component.options.__file = "components/input/textarea.vue"
607
623
 
608
624
  /***/ }),
609
625
 
610
- /***/ 6:
626
+ /***/ 8:
611
627
  /***/ (function(module, exports) {
612
628
 
613
- module.exports = __WEBPACK_EXTERNAL_MODULE__6__;
629
+ module.exports = __WEBPACK_EXTERNAL_MODULE__8__;
614
630
 
615
631
  /***/ }),
616
632
 
617
- /***/ 91:
633
+ /***/ 99:
618
634
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
619
635
 
620
636
  "use strict";
@@ -622,10 +638,10 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__6__;
622
638
  __webpack_require__.r(__webpack_exports__);
623
639
 
624
640
  // EXTERNAL MODULE: ./components/style/index.less
625
- var style = __webpack_require__(131);
641
+ var style = __webpack_require__(139);
626
642
 
627
643
  // EXTERNAL MODULE: ./components/text/style/index.less
628
- var text_style = __webpack_require__(251);
644
+ var text_style = __webpack_require__(260);
629
645
 
630
646
  // CONCATENATED MODULE: ./components/text/style/index.js
631
647
 
@@ -654,7 +670,7 @@ render._withStripped = true
654
670
  // CONCATENATED MODULE: ./components/text/text.vue?vue&type=template&id=0c79aab8&
655
671
 
656
672
  // EXTERNAL MODULE: external "./icon"
657
- var external_icon_ = __webpack_require__(4);
673
+ var external_icon_ = __webpack_require__(8);
658
674
  var external_icon_default = /*#__PURE__*/__webpack_require__.n(external_icon_);
659
675
 
660
676
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./components/text/text.vue?vue&type=script&lang=js&
@@ -973,7 +989,7 @@ customizevue_type_template_id_56d05148_render._withStripped = true
973
989
  // CONCATENATED MODULE: ./components/text/customize.vue?vue&type=template&id=56d05148&
974
990
 
975
991
  // EXTERNAL MODULE: ./components/input/textarea.vue + 5 modules
976
- var input_textarea = __webpack_require__(41);
992
+ var input_textarea = __webpack_require__(47);
977
993
 
978
994
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./components/text/customize.vue?vue&type=script&lang=js&
979
995
  //
package/dist/timeline.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 = 103);
94
+ /******/ return __webpack_require__(__webpack_require__.s = 111);
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
- /***/ 103:
206
+ /***/ 111:
214
207
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
215
208
 
216
209
  "use strict";
@@ -218,10 +211,10 @@ 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/timeline/style/index.less
224
- var timeline_style = __webpack_require__(221);
217
+ var timeline_style = __webpack_require__(230);
225
218
 
226
219
  // CONCATENATED MODULE: ./components/timeline/style/index.js
227
220
 
@@ -263,7 +256,7 @@ render._withStripped = true
263
256
  // CONCATENATED MODULE: ./components/timeline/timeline.vue?vue&type=template&id=59dd19b8&
264
257
 
265
258
  // EXTERNAL MODULE: external "babel-runtime/helpers/defineProperty"
266
- var defineProperty_ = __webpack_require__(1);
259
+ var defineProperty_ = __webpack_require__(3);
267
260
  var defineProperty_default = /*#__PURE__*/__webpack_require__.n(defineProperty_);
268
261
 
269
262
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./components/timeline/timeline.vue?vue&type=script&lang=js&
@@ -477,18 +470,25 @@ timeline.install = function (Vue) {
477
470
 
478
471
  /***/ }),
479
472
 
480
- /***/ 131:
473
+ /***/ 139:
481
474
  /***/ (function(module, exports) {
482
475
 
483
476
  // removed by extract-text-webpack-plugin
484
477
 
485
478
  /***/ }),
486
479
 
487
- /***/ 221:
480
+ /***/ 230:
488
481
  /***/ (function(module, exports) {
489
482
 
490
483
  // removed by extract-text-webpack-plugin
491
484
 
485
+ /***/ }),
486
+
487
+ /***/ 3:
488
+ /***/ (function(module, exports) {
489
+
490
+ module.exports = require("babel-runtime/helpers/defineProperty");
491
+
492
492
  /***/ })
493
493
 
494
494
  /******/ });