cy-element-ui 1.0.39 → 1.0.41
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 -7
- package/lib/alert.js +13 -31
- package/lib/aside.js +77 -84
- package/lib/autocomplete.js +3969 -268
- package/lib/avatar.js +108 -108
- package/lib/backtop.js +118 -136
- package/lib/badge.js +112 -133
- package/lib/breadcrumb-item.js +8 -21
- package/lib/breadcrumb.js +8 -14
- package/lib/button-group.js +8 -14
- package/lib/button.js +8 -33
- package/lib/calendar.js +1549 -109
- package/lib/card.js +96 -104
- package/lib/carousel-item.js +456 -135
- package/lib/carousel.js +191 -179
- package/lib/cascader-panel.js +2275 -209
- package/lib/cascader.js +6410 -349
- package/lib/checkbox-button.js +52 -62
- package/lib/checkbox-group.js +51 -20
- package/lib/checkbox.js +51 -75
- package/lib/col.js +2 -2
- package/lib/collapse-item.js +829 -170
- package/lib/collapse.js +112 -118
- package/lib/color-picker.js +3917 -258
- package/lib/container.js +88 -95
- package/lib/date-picker.js +8736 -4669
- package/lib/descriptions-item.js +2 -2
- package/lib/descriptions.js +63 -8
- package/lib/dialog.js +1213 -75
- package/lib/divider.js +104 -120
- package/lib/drawer.js +897 -173
- package/lib/dropdown-item.js +47 -31
- package/lib/dropdown-menu.js +2275 -81
- package/lib/dropdown.js +1072 -136
- package/lib/element-ui.common.js +910 -4903
- package/lib/empty.js +625 -169
- package/lib/fileUpload.js +3593 -520
- package/lib/footer.js +77 -84
- package/lib/form-item.js +450 -99
- package/lib/form.js +33 -28
- package/lib/header.js +77 -84
- package/lib/icon.js +67 -72
- package/lib/image.js +1400 -152
- package/lib/index.js +1 -1
- package/lib/infinite-scroll.js +311 -21
- package/lib/input-number.js +1438 -100
- package/lib/input.js +511 -151
- package/lib/link.js +9 -33
- package/lib/loading.js +808 -90
- package/lib/main.js +64 -71
- package/lib/menu-item-group.js +8 -20
- package/lib/menu-item.js +2912 -59
- package/lib/menu.js +745 -54
- package/lib/message-box.js +2556 -184
- package/lib/message.js +1117 -64
- package/lib/notification.js +1114 -67
- package/lib/option-group.js +47 -27
- package/lib/option.js +404 -43
- package/lib/page-header.js +683 -94
- package/lib/pagination.js +6078 -170
- package/lib/popconfirm.js +3514 -263
- package/lib/popover.js +2594 -93
- package/lib/progress.js +9 -62
- package/lib/radio-button.js +48 -55
- package/lib/radio-group.js +47 -26
- package/lib/radio.js +52 -67
- package/lib/rate.js +760 -152
- package/lib/result.js +39 -89
- package/lib/row.js +2 -2
- package/lib/scrollbar.js +735 -50
- package/lib/select.js +4294 -326
- package/lib/skeleton-item.js +13 -33
- package/lib/skeleton.js +116 -143
- package/lib/slider.js +4285 -254
- package/lib/spinner.js +100 -108
- package/lib/statistic.js +9627 -161
- package/lib/step.js +140 -186
- package/lib/steps.js +514 -111
- package/lib/subTitle.js +91 -100
- package/lib/submenu.js +2444 -123
- package/lib/switch.js +483 -67
- package/lib/tab-pane.js +10 -24
- package/lib/tabDialog.js +1548 -71
- package/lib/table-column.js +880 -32
- package/lib/table.js +4530 -744
- package/lib/tabs.js +432 -23
- package/lib/tag.js +4 -4
- package/lib/theme-chalk/gulpfile.js +27 -0
- package/lib/time-picker.js +5016 -566
- package/lib/time-select.js +4976 -313
- package/lib/timeline-item.js +114 -156
- package/lib/timeline.js +82 -82
- package/lib/tooltip.js +2566 -41
- package/lib/transfer.js +2143 -247
- package/lib/tree.js +1387 -180
- package/lib/treeSelect.js +3426 -153
- package/lib/upload.js +1154 -207
- package/package.json +10 -11
- package/packages/input-number/src/input-number.vue +7 -4
- package/packages/selectDisplayInput/index.js +8 -0
- package/packages/selectDisplayInput/src/main.vue +75 -0
- package/packages/theme-chalk/gulpfile.js +27 -0
- package/packages/theme-cy/gulpfile.js +27 -0
- package/packages/theme-cy/src/base.scss +3 -0
- package/packages/theme-cy/src/index.scss +1 -0
- package/packages/theme-cy/src/selectDisplayInput.scss +76 -0
- package/packages/theme-cy/src/treeSelect.scss +9 -4
- package/packages/treeSelect/src/main.vue +79 -0
- package/src/index.js +7 -4
- package/types/element-ui.d.ts +5 -1
- package/types/selectDisplayInput.d.ts +5 -0
- package/CHANGELOG.md +0 -280
- /package/{packages/theme-cy/lib → lib/theme-chalk}/base.css +0 -0
- /package/{packages/theme-cy/lib → lib/theme-chalk}/element.css +0 -0
- /package/{packages/theme-cy/lib → lib/theme-chalk}/fileUpload.css +0 -0
- /package/{packages/theme-cy/lib → lib/theme-chalk}/index.css +0 -0
- /package/{packages/theme-cy/lib → lib/theme-chalk}/subTitle.css +0 -0
- /package/{packages/theme-cy/lib → lib/theme-chalk}/tabDialog.css +0 -0
- /package/{packages/theme-cy/lib → lib/theme-chalk}/treeSelect.css +0 -0
package/lib/result.js
CHANGED
|
@@ -82,12 +82,12 @@ module.exports =
|
|
|
82
82
|
/******/
|
|
83
83
|
/******/
|
|
84
84
|
/******/ // Load entry module and return exports
|
|
85
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 65);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
89
89
|
|
|
90
|
-
/***/
|
|
90
|
+
/***/ 2:
|
|
91
91
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
92
92
|
|
|
93
93
|
"use strict";
|
|
@@ -192,26 +192,27 @@ function normalizeComponent(
|
|
|
192
192
|
|
|
193
193
|
/***/ }),
|
|
194
194
|
|
|
195
|
-
/***/
|
|
195
|
+
/***/ 65:
|
|
196
196
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
197
197
|
|
|
198
198
|
"use strict";
|
|
199
199
|
// ESM COMPAT FLAG
|
|
200
200
|
__webpack_require__.r(__webpack_exports__);
|
|
201
201
|
|
|
202
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??
|
|
203
|
-
var render = function () {
|
|
204
|
-
var _vm = this
|
|
205
|
-
|
|
206
|
-
var _c = _vm._self._c || _h
|
|
202
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--5!./node_modules/vue-loader/lib??vue-loader-options!./packages/result/src/index.vue?vue&type=template&id=1f14a2df
|
|
203
|
+
var render = function render() {
|
|
204
|
+
var _vm = this,
|
|
205
|
+
_c = _vm._self._c
|
|
207
206
|
return _c("div", { staticClass: "el-result" }, [
|
|
208
207
|
_c(
|
|
209
208
|
"div",
|
|
210
209
|
{ staticClass: "el-result__icon" },
|
|
211
210
|
[
|
|
212
|
-
_vm._t("icon",
|
|
213
|
-
|
|
214
|
-
|
|
211
|
+
_vm._t("icon", function () {
|
|
212
|
+
return [
|
|
213
|
+
_c(_vm.iconElement, { tag: "component", class: _vm.iconElement }),
|
|
214
|
+
]
|
|
215
|
+
}),
|
|
215
216
|
],
|
|
216
217
|
2
|
|
217
218
|
),
|
|
@@ -219,7 +220,11 @@ var render = function () {
|
|
|
219
220
|
? _c(
|
|
220
221
|
"div",
|
|
221
222
|
{ staticClass: "el-result__title" },
|
|
222
|
-
[
|
|
223
|
+
[
|
|
224
|
+
_vm._t("title", function () {
|
|
225
|
+
return [_c("p", [_vm._v(_vm._s(_vm.title))])]
|
|
226
|
+
}),
|
|
227
|
+
],
|
|
223
228
|
2
|
|
224
229
|
)
|
|
225
230
|
: _vm._e(),
|
|
@@ -227,7 +232,11 @@ var render = function () {
|
|
|
227
232
|
? _c(
|
|
228
233
|
"div",
|
|
229
234
|
{ staticClass: "el-result__subtitle" },
|
|
230
|
-
[
|
|
235
|
+
[
|
|
236
|
+
_vm._t("subTitle", function () {
|
|
237
|
+
return [_c("p", [_vm._v(_vm._s(_vm.subTitle))])]
|
|
238
|
+
}),
|
|
239
|
+
],
|
|
231
240
|
2
|
|
232
241
|
)
|
|
233
242
|
: _vm._e(),
|
|
@@ -242,11 +251,10 @@ render._withStripped = true
|
|
|
242
251
|
|
|
243
252
|
// CONCATENATED MODULE: ./packages/result/src/index.vue?vue&type=template&id=1f14a2df
|
|
244
253
|
|
|
245
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??
|
|
246
|
-
var icon_successvue_type_template_id_68054b10_render = function () {
|
|
247
|
-
var _vm = this
|
|
248
|
-
|
|
249
|
-
var _c = _vm._self._c || _h
|
|
254
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--5!./node_modules/vue-loader/lib??vue-loader-options!./packages/result/src/icon-success.vue?vue&type=template&id=68054b10
|
|
255
|
+
var icon_successvue_type_template_id_68054b10_render = function render() {
|
|
256
|
+
var _vm = this,
|
|
257
|
+
_c = _vm._self._c
|
|
250
258
|
return _c(
|
|
251
259
|
"svg",
|
|
252
260
|
{ attrs: { viewBox: "0 0 48 48", xmlns: "http://www.w3.org/2000/svg" } },
|
|
@@ -266,14 +274,6 @@ icon_successvue_type_template_id_68054b10_render._withStripped = true
|
|
|
266
274
|
// CONCATENATED MODULE: ./packages/result/src/icon-success.vue?vue&type=template&id=68054b10
|
|
267
275
|
|
|
268
276
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/result/src/icon-success.vue?vue&type=script&lang=js
|
|
269
|
-
//
|
|
270
|
-
//
|
|
271
|
-
//
|
|
272
|
-
//
|
|
273
|
-
//
|
|
274
|
-
//
|
|
275
|
-
//
|
|
276
|
-
//
|
|
277
277
|
|
|
278
278
|
/* harmony default export */ var icon_successvue_type_script_lang_js = ({
|
|
279
279
|
name: 'IconSuccess'
|
|
@@ -281,7 +281,7 @@ icon_successvue_type_template_id_68054b10_render._withStripped = true
|
|
|
281
281
|
// CONCATENATED MODULE: ./packages/result/src/icon-success.vue?vue&type=script&lang=js
|
|
282
282
|
/* harmony default export */ var src_icon_successvue_type_script_lang_js = (icon_successvue_type_script_lang_js);
|
|
283
283
|
// EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
|
284
|
-
var componentNormalizer = __webpack_require__(
|
|
284
|
+
var componentNormalizer = __webpack_require__(2);
|
|
285
285
|
|
|
286
286
|
// CONCATENATED MODULE: ./packages/result/src/icon-success.vue
|
|
287
287
|
|
|
@@ -303,11 +303,10 @@ var component = Object(componentNormalizer["a" /* default */])(
|
|
|
303
303
|
)
|
|
304
304
|
|
|
305
305
|
/* harmony default export */ var icon_success = (component.exports);
|
|
306
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??
|
|
307
|
-
var icon_errorvue_type_template_id_388f5297_render = function () {
|
|
308
|
-
var _vm = this
|
|
309
|
-
|
|
310
|
-
var _c = _vm._self._c || _h
|
|
306
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--5!./node_modules/vue-loader/lib??vue-loader-options!./packages/result/src/icon-error.vue?vue&type=template&id=388f5297
|
|
307
|
+
var icon_errorvue_type_template_id_388f5297_render = function render() {
|
|
308
|
+
var _vm = this,
|
|
309
|
+
_c = _vm._self._c
|
|
311
310
|
return _c(
|
|
312
311
|
"svg",
|
|
313
312
|
{ attrs: { viewBox: "0 0 48 48", xmlns: "http://www.w3.org/2000/svg" } },
|
|
@@ -327,14 +326,6 @@ icon_errorvue_type_template_id_388f5297_render._withStripped = true
|
|
|
327
326
|
// CONCATENATED MODULE: ./packages/result/src/icon-error.vue?vue&type=template&id=388f5297
|
|
328
327
|
|
|
329
328
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/result/src/icon-error.vue?vue&type=script&lang=js
|
|
330
|
-
//
|
|
331
|
-
//
|
|
332
|
-
//
|
|
333
|
-
//
|
|
334
|
-
//
|
|
335
|
-
//
|
|
336
|
-
//
|
|
337
|
-
//
|
|
338
329
|
|
|
339
330
|
/* harmony default export */ var icon_errorvue_type_script_lang_js = ({
|
|
340
331
|
name: 'IconError'
|
|
@@ -361,11 +352,10 @@ var icon_error_component = Object(componentNormalizer["a" /* default */])(
|
|
|
361
352
|
)
|
|
362
353
|
|
|
363
354
|
/* harmony default export */ var icon_error = (icon_error_component.exports);
|
|
364
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??
|
|
365
|
-
var icon_warningvue_type_template_id_9a424410_render = function () {
|
|
366
|
-
var _vm = this
|
|
367
|
-
|
|
368
|
-
var _c = _vm._self._c || _h
|
|
355
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--5!./node_modules/vue-loader/lib??vue-loader-options!./packages/result/src/icon-warning.vue?vue&type=template&id=9a424410
|
|
356
|
+
var icon_warningvue_type_template_id_9a424410_render = function render() {
|
|
357
|
+
var _vm = this,
|
|
358
|
+
_c = _vm._self._c
|
|
369
359
|
return _c(
|
|
370
360
|
"svg",
|
|
371
361
|
{ attrs: { viewBox: "0 0 48 48", xmlns: "http://www.w3.org/2000/svg" } },
|
|
@@ -385,14 +375,6 @@ icon_warningvue_type_template_id_9a424410_render._withStripped = true
|
|
|
385
375
|
// CONCATENATED MODULE: ./packages/result/src/icon-warning.vue?vue&type=template&id=9a424410
|
|
386
376
|
|
|
387
377
|
// CONCATENATED MODULE: ./node_modules/vue-loader/lib??vue-loader-options!./packages/result/src/icon-warning.vue?vue&type=script&lang=ts
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
378
|
|
|
397
379
|
/* harmony default export */ var icon_warningvue_type_script_lang_ts = ({
|
|
398
380
|
name: 'IconWarning'
|
|
@@ -420,11 +402,10 @@ var icon_warning_component = Object(componentNormalizer["a" /* default */])(
|
|
|
420
402
|
)
|
|
421
403
|
|
|
422
404
|
/* harmony default export */ var icon_warning = (icon_warning_component.exports);
|
|
423
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??
|
|
424
|
-
var icon_infovue_type_template_id_a08038c2_render = function () {
|
|
425
|
-
var _vm = this
|
|
426
|
-
|
|
427
|
-
var _c = _vm._self._c || _h
|
|
405
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--5!./node_modules/vue-loader/lib??vue-loader-options!./packages/result/src/icon-info.vue?vue&type=template&id=a08038c2
|
|
406
|
+
var icon_infovue_type_template_id_a08038c2_render = function render() {
|
|
407
|
+
var _vm = this,
|
|
408
|
+
_c = _vm._self._c
|
|
428
409
|
return _c(
|
|
429
410
|
"svg",
|
|
430
411
|
{ attrs: { viewBox: "0 0 48 48", xmlns: "http://www.w3.org/2000/svg" } },
|
|
@@ -444,14 +425,6 @@ icon_infovue_type_template_id_a08038c2_render._withStripped = true
|
|
|
444
425
|
// CONCATENATED MODULE: ./packages/result/src/icon-info.vue?vue&type=template&id=a08038c2
|
|
445
426
|
|
|
446
427
|
// CONCATENATED MODULE: ./node_modules/vue-loader/lib??vue-loader-options!./packages/result/src/icon-info.vue?vue&type=script&lang=ts
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
428
|
|
|
456
429
|
/* harmony default export */ var icon_infovue_type_script_lang_ts = ({
|
|
457
430
|
name: 'IconInfo'
|
|
@@ -482,29 +455,6 @@ var icon_info_component = Object(componentNormalizer["a" /* default */])(
|
|
|
482
455
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/result/src/index.vue?vue&type=script&lang=js
|
|
483
456
|
var _components;
|
|
484
457
|
|
|
485
|
-
//
|
|
486
|
-
//
|
|
487
|
-
//
|
|
488
|
-
//
|
|
489
|
-
//
|
|
490
|
-
//
|
|
491
|
-
//
|
|
492
|
-
//
|
|
493
|
-
//
|
|
494
|
-
//
|
|
495
|
-
//
|
|
496
|
-
//
|
|
497
|
-
//
|
|
498
|
-
//
|
|
499
|
-
//
|
|
500
|
-
//
|
|
501
|
-
//
|
|
502
|
-
//
|
|
503
|
-
//
|
|
504
|
-
//
|
|
505
|
-
//
|
|
506
|
-
//
|
|
507
|
-
|
|
508
458
|
|
|
509
459
|
|
|
510
460
|
|
package/lib/row.js
CHANGED
|
@@ -82,12 +82,12 @@ module.exports =
|
|
|
82
82
|
/******/
|
|
83
83
|
/******/
|
|
84
84
|
/******/ // Load entry module and return exports
|
|
85
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 134);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
89
89
|
|
|
90
|
-
/***/
|
|
90
|
+
/***/ 134:
|
|
91
91
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
92
92
|
|
|
93
93
|
"use strict";
|