y-design-ssr 0.0.23 → 0.0.26
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/libs/button.js +17 -6
- package/libs/cell.js +18 -6
- package/libs/checkbox.js +20 -9
- package/libs/checkboxGroup.js +21 -10
- package/libs/col.js +21 -10
- package/libs/countdown.js +18 -6
- package/libs/dialog.js +21 -11
- package/libs/empty.js +20 -9
- package/libs/form.js +24 -12
- package/libs/formItem.js +21 -10
- package/libs/icon.js +18 -6
- package/libs/input.js +18 -6
- package/libs/list.js +18 -6
- package/libs/loading.js +24 -10
- package/libs/mask.js +18 -6
- package/libs/popup.js +18 -6
- package/libs/progress.js +18 -6
- package/libs/pullrefresh.js +18 -6
- package/libs/row.js +23 -11
- package/libs/slider.js +18 -6
- package/libs/stepper.js +18 -6
- package/libs/style.js +22 -6
- package/libs/swipe.js +23 -9
- package/libs/swipeItem.js +19 -9
- package/libs/switch.js +18 -6
- package/libs/tab.js +22 -12
- package/libs/tabs.js +24 -14
- package/libs/toast.js +21 -11
- package/libs/tooltip.js +21 -11
- package/libs/yui.js +86 -49
- package/package.json +1 -1
package/libs/yui.js
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
if(typeof exports === 'object' && typeof module === 'object')
|
|
3
3
|
module.exports = factory(require("vue"));
|
|
4
4
|
else if(typeof define === 'function' && define.amd)
|
|
5
|
-
define(
|
|
6
|
-
else
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
5
|
+
define(["vue"], factory);
|
|
6
|
+
else {
|
|
7
|
+
var a = typeof exports === 'object' ? factory(require("vue")) : factory(root["vue"]);
|
|
8
|
+
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
|
9
|
+
}
|
|
10
10
|
})(this, function(__WEBPACK_EXTERNAL_MODULE__4103__) {
|
|
11
11
|
return /******/ (function() { // webpackBootstrap
|
|
12
12
|
/******/ var __webpack_modules__ = ({
|
|
@@ -681,7 +681,7 @@ var _createNamespace = (0,utils/* createNamespace */.do)('checkbox'),
|
|
|
681
681
|
emit = _ref.emit,
|
|
682
682
|
expose = _ref.expose;
|
|
683
683
|
|
|
684
|
-
var _useRelation = (0,relation/* useRelation */.jQ)(checkboxGroup
|
|
684
|
+
var _useRelation = (0,relation/* useRelation */.jQ)(checkboxGroup.CHECKBOX_KEY),
|
|
685
685
|
parent = _useRelation.parent;
|
|
686
686
|
|
|
687
687
|
var formParent = parent === null ? (0,filed/* useFormItem */.A9)().parent : null;
|
|
@@ -817,8 +817,8 @@ src_checkbox.install = function (Vue) {
|
|
|
817
817
|
|
|
818
818
|
// EXPORTS
|
|
819
819
|
__webpack_require__.d(__webpack_exports__, {
|
|
820
|
-
"
|
|
821
|
-
"default": function() { return /*
|
|
820
|
+
"CHECKBOX_KEY": function() { return /* reexport */ CHECKBOX_KEY; },
|
|
821
|
+
"default": function() { return /* reexport */ checkboxGroup; }
|
|
822
822
|
});
|
|
823
823
|
|
|
824
824
|
// UNUSED EXPORTS: checkboxGroupProps
|
|
@@ -1015,7 +1015,6 @@ checkboxGroup.install = function (Vue) {
|
|
|
1015
1015
|
Vue.component(name, checkboxGroup);
|
|
1016
1016
|
};
|
|
1017
1017
|
|
|
1018
|
-
/* harmony default export */ var packages_checkboxGroup = (checkboxGroup);
|
|
1019
1018
|
|
|
1020
1019
|
|
|
1021
1020
|
|
|
@@ -1088,7 +1087,7 @@ var _createNamespace = (0,utils/* createNamespace */.do)('col'),
|
|
|
1088
1087
|
setup: function setup(props, _ref) {
|
|
1089
1088
|
var slots = _ref.slots;
|
|
1090
1089
|
|
|
1091
|
-
var _useRelation = (0,relation/* useRelation */.jQ)(row
|
|
1090
|
+
var _useRelation = (0,relation/* useRelation */.jQ)(row.ROW_PROVIDE),
|
|
1092
1091
|
parent = _useRelation.parent,
|
|
1093
1092
|
index = _useRelation.index;
|
|
1094
1093
|
|
|
@@ -1733,7 +1732,7 @@ count_down.install = function (app) {
|
|
|
1733
1732
|
|
|
1734
1733
|
// EXPORTS
|
|
1735
1734
|
__webpack_require__.d(__webpack_exports__, {
|
|
1736
|
-
"
|
|
1735
|
+
"createDialog": function() { return /* reexport */ create; },
|
|
1737
1736
|
"default": function() { return /* binding */ packages_dialog; }
|
|
1738
1737
|
});
|
|
1739
1738
|
|
|
@@ -1862,7 +1861,7 @@ var _props = {
|
|
|
1862
1861
|
/* harmony default export */ var dialog = ((0,external_vue_.defineComponent)({
|
|
1863
1862
|
name: dialog_name,
|
|
1864
1863
|
directives: {
|
|
1865
|
-
loading: loading
|
|
1864
|
+
loading: loading.directive
|
|
1866
1865
|
},
|
|
1867
1866
|
props: _props,
|
|
1868
1867
|
emits: ['update:modelValue', 'cancel', 'confirm'],
|
|
@@ -2184,11 +2183,10 @@ dialog.install = function (app) {
|
|
|
2184
2183
|
|
|
2185
2184
|
// EXPORTS
|
|
2186
2185
|
__webpack_require__.d(__webpack_exports__, {
|
|
2187
|
-
"default": function() { return /* binding */ packages_empty; }
|
|
2186
|
+
"default": function() { return /* binding */ packages_empty; },
|
|
2187
|
+
"empty": function() { return /* reexport */ empty; }
|
|
2188
2188
|
});
|
|
2189
2189
|
|
|
2190
|
-
// UNUSED EXPORTS: empty
|
|
2191
|
-
|
|
2192
2190
|
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.function.name.js
|
|
2193
2191
|
var es_function_name = __webpack_require__(8309);
|
|
2194
2192
|
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/slicedToArray.js + 3 modules
|
|
@@ -2325,8 +2323,8 @@ src_empty.install = function (Vue) {
|
|
|
2325
2323
|
|
|
2326
2324
|
// EXPORTS
|
|
2327
2325
|
__webpack_require__.d(__webpack_exports__, {
|
|
2328
|
-
"
|
|
2329
|
-
"default": function() { return /*
|
|
2326
|
+
"FORM_PROVIDE": function() { return /* reexport */ FORM_PROVIDE; },
|
|
2327
|
+
"default": function() { return /* reexport */ src_form; }
|
|
2330
2328
|
});
|
|
2331
2329
|
|
|
2332
2330
|
// UNUSED EXPORTS: TriggerTypes, commonProps
|
|
@@ -2659,7 +2657,7 @@ var FORM_PROVIDE = Symbol(form_name);
|
|
|
2659
2657
|
* @Author: liuwentao
|
|
2660
2658
|
* @Date: 2021-05-21 10:08:09
|
|
2661
2659
|
* @LastEditors: ruan fei
|
|
2662
|
-
* @LastEditTime: 2022-08-11
|
|
2660
|
+
* @LastEditTime: 2022-08-11 16:07:39
|
|
2663
2661
|
* @Description: form enter
|
|
2664
2662
|
* @FilePath: /yui-vue/packages/form/index.ts
|
|
2665
2663
|
*/
|
|
@@ -2669,7 +2667,6 @@ src_form.install = function (Vue) {
|
|
|
2669
2667
|
Vue.component(src_form.name, src_form);
|
|
2670
2668
|
};
|
|
2671
2669
|
|
|
2672
|
-
/* harmony default export */ var packages_form = (src_form);
|
|
2673
2670
|
|
|
2674
2671
|
|
|
2675
2672
|
|
|
@@ -2871,7 +2868,7 @@ var locale = (0,utils/* createLocale */.$2)(COMPONENT_NAME);
|
|
|
2871
2868
|
var slots = _ref.slots,
|
|
2872
2869
|
expose = _ref.expose;
|
|
2873
2870
|
|
|
2874
|
-
var _useRelation = (0,relation/* useRelation */.jQ)(packages_form
|
|
2871
|
+
var _useRelation = (0,relation/* useRelation */.jQ)(packages_form.FORM_PROVIDE),
|
|
2875
2872
|
parent = _useRelation.parent;
|
|
2876
2873
|
|
|
2877
2874
|
var _setFormItem = (0,context_filed/* setFormItem */.pi)(),
|
|
@@ -4132,10 +4129,10 @@ list.install = function (Vue) {
|
|
|
4132
4129
|
|
|
4133
4130
|
// EXPORTS
|
|
4134
4131
|
__webpack_require__.d(__webpack_exports__, {
|
|
4135
|
-
"
|
|
4136
|
-
"default": function() { return /*
|
|
4137
|
-
"
|
|
4138
|
-
"
|
|
4132
|
+
"createLoading": function() { return /* reexport */ create; },
|
|
4133
|
+
"default": function() { return /* reexport */ loading; },
|
|
4134
|
+
"directive": function() { return /* reexport */ directive; },
|
|
4135
|
+
"loadingDirective": function() { return /* reexport */ src_directive; }
|
|
4139
4136
|
});
|
|
4140
4137
|
|
|
4141
4138
|
// UNUSED EXPORTS: directiveProps, directiveSlots
|
|
@@ -4481,7 +4478,6 @@ loading.install = function (app) {
|
|
|
4481
4478
|
app.use(src_directive);
|
|
4482
4479
|
};
|
|
4483
4480
|
|
|
4484
|
-
/* harmony default export */ var packages_loading = (loading);
|
|
4485
4481
|
|
|
4486
4482
|
|
|
4487
4483
|
/***/ }),
|
|
@@ -5736,8 +5732,8 @@ pullrefresh.install = function (Vue) {
|
|
|
5736
5732
|
|
|
5737
5733
|
// EXPORTS
|
|
5738
5734
|
__webpack_require__.d(__webpack_exports__, {
|
|
5739
|
-
"
|
|
5740
|
-
"default": function() { return /*
|
|
5735
|
+
"ROW_PROVIDE": function() { return /* reexport */ ROW_PROVIDE; },
|
|
5736
|
+
"default": function() { return /* reexport */ row; }
|
|
5741
5737
|
});
|
|
5742
5738
|
|
|
5743
5739
|
// UNUSED EXPORTS: RowJustify, RowType
|
|
@@ -5795,7 +5791,7 @@ var relation = __webpack_require__(874);
|
|
|
5795
5791
|
* @Author: liuwentao
|
|
5796
5792
|
* @Date: 2021-05-12 16:55:52
|
|
5797
5793
|
* @LastEditors: ruan fei
|
|
5798
|
-
* @LastEditTime: 2022-08-11
|
|
5794
|
+
* @LastEditTime: 2022-08-11 16:59:50
|
|
5799
5795
|
* @Description: row component
|
|
5800
5796
|
* @FilePath: /yui-vue/packages/row/src/row.tsx
|
|
5801
5797
|
*/
|
|
@@ -5904,7 +5900,6 @@ row.install = function (app) {
|
|
|
5904
5900
|
app.component(name, row);
|
|
5905
5901
|
};
|
|
5906
5902
|
|
|
5907
|
-
/* harmony default export */ var packages_row = (row);
|
|
5908
5903
|
|
|
5909
5904
|
|
|
5910
5905
|
|
|
@@ -6696,7 +6691,8 @@ stepper.install = function (Vue) {
|
|
|
6696
6691
|
|
|
6697
6692
|
"use strict";
|
|
6698
6693
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
6699
|
-
/* harmony export */ "
|
|
6694
|
+
/* harmony export */ "SWIPE_PROVIDE_KEY": function() { return /* reexport safe */ _src_swipe__WEBPACK_IMPORTED_MODULE_1__.p; },
|
|
6695
|
+
/* harmony export */ "default": function() { return /* reexport safe */ _src_swipe__WEBPACK_IMPORTED_MODULE_1__.Z; }
|
|
6700
6696
|
/* harmony export */ });
|
|
6701
6697
|
/* harmony import */ var core_js_modules_es_function_name_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(8309);
|
|
6702
6698
|
/* harmony import */ var core_js_modules_es_function_name_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_function_name_js__WEBPACK_IMPORTED_MODULE_0__);
|
|
@@ -6711,7 +6707,6 @@ _src_swipe__WEBPACK_IMPORTED_MODULE_1__/* .default.install */ .Z.install = funct
|
|
|
6711
6707
|
Vue.component(name, _src_swipe__WEBPACK_IMPORTED_MODULE_1__/* .default */ .Z);
|
|
6712
6708
|
};
|
|
6713
6709
|
|
|
6714
|
-
/* harmony default export */ __webpack_exports__["default"] = (_src_swipe__WEBPACK_IMPORTED_MODULE_1__/* .default */ .Z);
|
|
6715
6710
|
|
|
6716
6711
|
|
|
6717
6712
|
|
|
@@ -7456,7 +7451,7 @@ var _createNamespace = (0,_utils__WEBPACK_IMPORTED_MODULE_4__/* .createNamespace
|
|
|
7456
7451
|
var slots = _ref.slots;
|
|
7457
7452
|
var instance = (0,vue__WEBPACK_IMPORTED_MODULE_0__.getCurrentInstance)();
|
|
7458
7453
|
|
|
7459
|
-
var _useRelation = (0,_context_relation__WEBPACK_IMPORTED_MODULE_3__/* .useRelation */ .jQ)(_swipe__WEBPACK_IMPORTED_MODULE_5__
|
|
7454
|
+
var _useRelation = (0,_context_relation__WEBPACK_IMPORTED_MODULE_3__/* .useRelation */ .jQ)(_swipe__WEBPACK_IMPORTED_MODULE_5__.SWIPE_PROVIDE_KEY),
|
|
7460
7455
|
parent = _useRelation.parent;
|
|
7461
7456
|
|
|
7462
7457
|
if (!props.clonenNode && instance) {
|
|
@@ -7744,7 +7739,7 @@ var _createNamespace = (0,utils/* createNamespace */.do)('tab'),
|
|
|
7744
7739
|
setup: function setup(_, _ref) {
|
|
7745
7740
|
var slots = _ref.slots;
|
|
7746
7741
|
|
|
7747
|
-
var _useRelation = (0,relation/* useRelation */.jQ)(tabs
|
|
7742
|
+
var _useRelation = (0,relation/* useRelation */.jQ)(tabs.TABS_KEY),
|
|
7748
7743
|
parent = _useRelation.parent;
|
|
7749
7744
|
|
|
7750
7745
|
var instance = (0,external_vue_.getCurrentInstance)();
|
|
@@ -7794,8 +7789,8 @@ tab.install = function (Vue) {
|
|
|
7794
7789
|
|
|
7795
7790
|
// EXPORTS
|
|
7796
7791
|
__webpack_require__.d(__webpack_exports__, {
|
|
7797
|
-
"
|
|
7798
|
-
"default": function() { return /*
|
|
7792
|
+
"TABS_KEY": function() { return /* reexport */ TABS_KEY; },
|
|
7793
|
+
"default": function() { return /* reexport */ tabs; }
|
|
7799
7794
|
});
|
|
7800
7795
|
|
|
7801
7796
|
// UNUSED EXPORTS: acceptProps, unknownProp
|
|
@@ -8356,7 +8351,6 @@ tabs.install = function (Vue) {
|
|
|
8356
8351
|
Vue.component(name, tabs);
|
|
8357
8352
|
};
|
|
8358
8353
|
|
|
8359
|
-
/* harmony default export */ var packages_tabs = (tabs);
|
|
8360
8354
|
|
|
8361
8355
|
|
|
8362
8356
|
|
|
@@ -8369,7 +8363,7 @@ tabs.install = function (Vue) {
|
|
|
8369
8363
|
|
|
8370
8364
|
// EXPORTS
|
|
8371
8365
|
__webpack_require__.d(__webpack_exports__, {
|
|
8372
|
-
"
|
|
8366
|
+
"toastCreate": function() { return /* reexport */ create; }
|
|
8373
8367
|
});
|
|
8374
8368
|
|
|
8375
8369
|
// UNUSED EXPORTS: default
|
|
@@ -8592,7 +8586,7 @@ var create_close = function close(id, userOnClose) {
|
|
|
8592
8586
|
* @Author: ruan fei
|
|
8593
8587
|
* @Date: 2021-05-13 16:22:30
|
|
8594
8588
|
* @LastEditors: ruan fei
|
|
8595
|
-
* @LastEditTime:
|
|
8589
|
+
* @LastEditTime: 2022-08-11 17:05:23
|
|
8596
8590
|
* @FilePath: /yui-vue/packages/toast/index.ts
|
|
8597
8591
|
*/
|
|
8598
8592
|
|
|
@@ -8603,7 +8597,6 @@ toast.install = function (app) {
|
|
|
8603
8597
|
app.provide('toast', create);
|
|
8604
8598
|
};
|
|
8605
8599
|
|
|
8606
|
-
/* harmony default export */ var packages_toast = ((/* unused pure expression or super */ null && (Toast)));
|
|
8607
8600
|
|
|
8608
8601
|
|
|
8609
8602
|
/***/ }),
|
|
@@ -8615,8 +8608,8 @@ toast.install = function (app) {
|
|
|
8615
8608
|
|
|
8616
8609
|
// EXPORTS
|
|
8617
8610
|
__webpack_require__.d(__webpack_exports__, {
|
|
8618
|
-
"default": function() { return /*
|
|
8619
|
-
"
|
|
8611
|
+
"default": function() { return /* reexport */ tooltip; },
|
|
8612
|
+
"tooltipDirective": function() { return /* reexport */ direactive; }
|
|
8620
8613
|
});
|
|
8621
8614
|
|
|
8622
8615
|
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.function.name.js
|
|
@@ -9107,7 +9100,7 @@ function direactive_objectSpread(target) { for (var i = 1; i < arguments.length;
|
|
|
9107
9100
|
* @Author: liuwentao
|
|
9108
9101
|
* @Date: 2021-06-18 15:51:15
|
|
9109
9102
|
* @LastEditors: ruan fei
|
|
9110
|
-
* @LastEditTime: 2022-
|
|
9103
|
+
* @LastEditTime: 2022-08-11 17:04:41
|
|
9111
9104
|
* @Description: Do not edit
|
|
9112
9105
|
* @FilePath: /yui-vue/packages/tooltip/index.ts
|
|
9113
9106
|
*/
|
|
@@ -9122,7 +9115,6 @@ tooltip.install = function (app) {
|
|
|
9122
9115
|
app.use(direactive);
|
|
9123
9116
|
};
|
|
9124
9117
|
|
|
9125
|
-
/* harmony default export */ var packages_tooltip = (tooltip);
|
|
9126
9118
|
|
|
9127
9119
|
|
|
9128
9120
|
/***/ }),
|
|
@@ -15344,11 +15336,57 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__4103__;
|
|
|
15344
15336
|
/******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }
|
|
15345
15337
|
/******/ }();
|
|
15346
15338
|
/******/
|
|
15339
|
+
/******/ /* webpack/runtime/make namespace object */
|
|
15340
|
+
/******/ !function() {
|
|
15341
|
+
/******/ // define __esModule on exports
|
|
15342
|
+
/******/ __webpack_require__.r = function(exports) {
|
|
15343
|
+
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
|
15344
|
+
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
15345
|
+
/******/ }
|
|
15346
|
+
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
|
15347
|
+
/******/ };
|
|
15348
|
+
/******/ }();
|
|
15349
|
+
/******/
|
|
15347
15350
|
/************************************************************************/
|
|
15348
15351
|
var __webpack_exports__ = {};
|
|
15349
15352
|
// This entry need to be wrapped in an IIFE because it need to be in strict mode.
|
|
15350
15353
|
!function() {
|
|
15351
15354
|
"use strict";
|
|
15355
|
+
__webpack_require__.r(__webpack_exports__);
|
|
15356
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
15357
|
+
/* harmony export */ "locale": function() { return /* reexport safe */ _locale__WEBPACK_IMPORTED_MODULE_8__.Z; },
|
|
15358
|
+
/* harmony export */ "empty": function() { return /* reexport safe */ _empty__WEBPACK_IMPORTED_MODULE_25__.empty; },
|
|
15359
|
+
/* harmony export */ "createLoading": function() { return /* reexport safe */ _loading__WEBPACK_IMPORTED_MODULE_21__.createLoading; },
|
|
15360
|
+
/* harmony export */ "loadingDirective": function() { return /* reexport safe */ _loading__WEBPACK_IMPORTED_MODULE_21__.loadingDirective; },
|
|
15361
|
+
/* harmony export */ "tooltipDirective": function() { return /* reexport safe */ _tooltip__WEBPACK_IMPORTED_MODULE_36__.tooltipDirective; },
|
|
15362
|
+
/* harmony export */ "Icon": function() { return /* reexport safe */ _icon__WEBPACK_IMPORTED_MODULE_24__.default; },
|
|
15363
|
+
/* harmony export */ "Switch": function() { return /* reexport safe */ _switch__WEBPACK_IMPORTED_MODULE_17__.default; },
|
|
15364
|
+
/* harmony export */ "Pullrefresh": function() { return /* reexport safe */ _pullrefresh__WEBPACK_IMPORTED_MODULE_18__.default; },
|
|
15365
|
+
/* harmony export */ "Checkbox": function() { return /* reexport safe */ _checkbox__WEBPACK_IMPORTED_MODULE_15__.default; },
|
|
15366
|
+
/* harmony export */ "CheckboxGroup": function() { return /* reexport safe */ _checkboxGroup__WEBPACK_IMPORTED_MODULE_16__.default; },
|
|
15367
|
+
/* harmony export */ "Cell": function() { return /* reexport safe */ _cell__WEBPACK_IMPORTED_MODULE_19__.default; },
|
|
15368
|
+
/* harmony export */ "Form": function() { return /* reexport safe */ _form__WEBPACK_IMPORTED_MODULE_31__.default; },
|
|
15369
|
+
/* harmony export */ "FormItem": function() { return /* reexport safe */ _formItem__WEBPACK_IMPORTED_MODULE_32__.default; },
|
|
15370
|
+
/* harmony export */ "Button": function() { return /* reexport safe */ _button__WEBPACK_IMPORTED_MODULE_20__.default; },
|
|
15371
|
+
/* harmony export */ "Input": function() { return /* reexport safe */ _input__WEBPACK_IMPORTED_MODULE_33__.default; },
|
|
15372
|
+
/* harmony export */ "Loading": function() { return /* reexport safe */ _loading__WEBPACK_IMPORTED_MODULE_21__.default; },
|
|
15373
|
+
/* harmony export */ "Empty": function() { return /* reexport safe */ _empty__WEBPACK_IMPORTED_MODULE_25__.default; },
|
|
15374
|
+
/* harmony export */ "Row": function() { return /* reexport safe */ _row__WEBPACK_IMPORTED_MODULE_22__.default; },
|
|
15375
|
+
/* harmony export */ "Col": function() { return /* reexport safe */ _col__WEBPACK_IMPORTED_MODULE_23__.default; },
|
|
15376
|
+
/* harmony export */ "Progress": function() { return /* reexport safe */ _progress__WEBPACK_IMPORTED_MODULE_26__.default; },
|
|
15377
|
+
/* harmony export */ "Popup": function() { return /* reexport safe */ _popup__WEBPACK_IMPORTED_MODULE_28__.default; },
|
|
15378
|
+
/* harmony export */ "Mask": function() { return /* reexport safe */ _mask__WEBPACK_IMPORTED_MODULE_29__.default; },
|
|
15379
|
+
/* harmony export */ "Stepper": function() { return /* reexport safe */ _stepper__WEBPACK_IMPORTED_MODULE_30__.default; },
|
|
15380
|
+
/* harmony export */ "Dialog": function() { return /* reexport safe */ _dialog__WEBPACK_IMPORTED_MODULE_35__.default; },
|
|
15381
|
+
/* harmony export */ "CountDown": function() { return /* reexport safe */ _countdown__WEBPACK_IMPORTED_MODULE_34__.default; },
|
|
15382
|
+
/* harmony export */ "Tooltip": function() { return /* reexport safe */ _tooltip__WEBPACK_IMPORTED_MODULE_36__.default; },
|
|
15383
|
+
/* harmony export */ "Slider": function() { return /* reexport safe */ _slider__WEBPACK_IMPORTED_MODULE_11__.default; },
|
|
15384
|
+
/* harmony export */ "Tabs": function() { return /* reexport safe */ _tabs__WEBPACK_IMPORTED_MODULE_9__.default; },
|
|
15385
|
+
/* harmony export */ "Tab": function() { return /* reexport safe */ _tab__WEBPACK_IMPORTED_MODULE_10__.default; },
|
|
15386
|
+
/* harmony export */ "List": function() { return /* reexport safe */ _list__WEBPACK_IMPORTED_MODULE_12__.default; },
|
|
15387
|
+
/* harmony export */ "Swipe": function() { return /* reexport safe */ _swipe__WEBPACK_IMPORTED_MODULE_13__.default; },
|
|
15388
|
+
/* harmony export */ "SwipeItem": function() { return /* reexport safe */ _swipeItem__WEBPACK_IMPORTED_MODULE_14__.default; }
|
|
15389
|
+
/* harmony export */ });
|
|
15352
15390
|
/* harmony import */ var _babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(6156);
|
|
15353
15391
|
/* harmony import */ var core_js_modules_web_dom_collections_for_each_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(4747);
|
|
15354
15392
|
/* harmony import */ var core_js_modules_web_dom_collections_for_each_js__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_web_dom_collections_for_each_js__WEBPACK_IMPORTED_MODULE_1__);
|
|
@@ -15449,12 +15487,12 @@ var install = function install(app) {
|
|
|
15449
15487
|
component.name && app.component(component.name, component);
|
|
15450
15488
|
}); // provide loading
|
|
15451
15489
|
|
|
15452
|
-
app.provide('loading', _loading__WEBPACK_IMPORTED_MODULE_21__
|
|
15453
|
-
app.provide('toast', _toast__WEBPACK_IMPORTED_MODULE_27__
|
|
15454
|
-
app.provide('dialog', _dialog__WEBPACK_IMPORTED_MODULE_35__
|
|
15490
|
+
app.provide('loading', _loading__WEBPACK_IMPORTED_MODULE_21__.createLoading);
|
|
15491
|
+
app.provide('toast', _toast__WEBPACK_IMPORTED_MODULE_27__.toastCreate);
|
|
15492
|
+
app.provide('dialog', _dialog__WEBPACK_IMPORTED_MODULE_35__.createDialog); // 注册插件及v-loading
|
|
15455
15493
|
|
|
15456
|
-
app.use(_loading__WEBPACK_IMPORTED_MODULE_21__
|
|
15457
|
-
app.use(_tooltip__WEBPACK_IMPORTED_MODULE_36__
|
|
15494
|
+
app.use(_loading__WEBPACK_IMPORTED_MODULE_21__.loadingDirective);
|
|
15495
|
+
app.use(_tooltip__WEBPACK_IMPORTED_MODULE_36__.tooltipDirective);
|
|
15458
15496
|
}; // 判断是否是直接引入文件
|
|
15459
15497
|
|
|
15460
15498
|
|
|
@@ -15467,7 +15505,6 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
15467
15505
|
}, components));
|
|
15468
15506
|
|
|
15469
15507
|
}();
|
|
15470
|
-
__webpack_exports__ = __webpack_exports__.default;
|
|
15471
15508
|
/******/ return __webpack_exports__;
|
|
15472
15509
|
/******/ })()
|
|
15473
15510
|
;
|