eoss-mobiles 0.2.11 → 0.2.13
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/CHANGELOG.md +4 -1
- package/lib/action-sheet.js +2 -2
- package/lib/button-group.js +2 -2
- package/lib/button.js +2 -2
- package/lib/calendar.js +2 -2
- package/lib/cascader.js +2 -2
- package/lib/cell.js +2 -2
- package/lib/checkbox.js +112 -112
- package/lib/circle.js +2 -2
- package/lib/count-down.js +2 -2
- package/lib/date.js +38 -4
- package/lib/empty.js +2 -2
- package/lib/eoss-mobile.common.js +291 -105
- package/lib/esign.js +2 -2
- package/lib/field.js +2 -2
- package/lib/flow.js +133 -159
- package/lib/form.js +5 -5
- package/lib/grid-item.js +2 -2
- package/lib/grid.js +2 -2
- package/lib/image-preview.js +2 -2
- package/lib/image.js +2 -2
- package/lib/index.js +1 -1
- package/lib/list.js +2 -2
- package/lib/loading.js +2 -2
- package/lib/nav-bar.js +2 -2
- package/lib/notice-bar.js +273 -0
- package/lib/pagination.js +2 -2
- package/lib/picker.js +111 -111
- package/lib/popover.js +2 -2
- package/lib/popup.js +2 -2
- package/lib/pull-refresh.js +2 -2
- package/lib/radio.js +111 -111
- package/lib/rate.js +2 -2
- package/lib/search.js +2 -2
- package/lib/selector.js +112 -112
- package/lib/skeleton.js +2 -2
- package/lib/stepper.js +2 -2
- package/lib/swipe.js +2 -2
- package/lib/switch.js +2 -2
- package/lib/tab.js +2 -2
- package/lib/table-column.js +687 -147
- package/lib/table.js +114 -115
- package/lib/tabs.js +2 -2
- package/lib/tag.js +2 -2
- package/lib/theme-chalk/flow.css +1 -1
- package/lib/theme-chalk/fonts/iconfont.scss +7 -3
- package/lib/theme-chalk/index.css +1 -1
- package/lib/theme-chalk/notice-bar.css +0 -0
- package/lib/theme-chalk/selector.css +1 -1
- package/lib/uploader.js +2 -2
- package/package.json +1 -1
- package/packages/date/src/main.vue +14 -0
- package/packages/flow/src/components/Handle.vue +3 -3
- package/packages/flow/src/components/Opinion.vue +3 -3
- package/packages/form/src/main.vue +1 -1
- package/packages/notice-bar/index.js +5 -0
- package/packages/notice-bar/src/main.vue +15 -0
- package/packages/table/src/main.vue +0 -1
- package/packages/table-column/src/main.vue +272 -199
- package/packages/theme-chalk/lib/flow.css +1 -1
- package/packages/theme-chalk/lib/fonts/iconfont.scss +7 -3
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/lib/notice-bar.css +0 -0
- package/packages/theme-chalk/lib/selector.css +1 -1
- package/packages/theme-chalk/src/flow.scss +9 -1
- package/packages/theme-chalk/src/fonts/iconfont.scss +7 -3
- package/packages/theme-chalk/src/index.scss +1 -0
- package/packages/theme-chalk/src/notice-bar.scss +0 -0
- package/src/index.js +7 -4
package/lib/radio.js
CHANGED
|
@@ -90,111 +90,7 @@ module.exports =
|
|
|
90
90
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
91
91
|
|
|
92
92
|
"use strict";
|
|
93
|
-
/* harmony
|
|
94
|
-
/* globals __VUE_SSR_CONTEXT__ */
|
|
95
|
-
|
|
96
|
-
// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
|
|
97
|
-
// This module is a runtime utility for cleaner component module output and will
|
|
98
|
-
// be included in the final webpack user bundle.
|
|
99
|
-
|
|
100
|
-
function normalizeComponent(
|
|
101
|
-
scriptExports,
|
|
102
|
-
render,
|
|
103
|
-
staticRenderFns,
|
|
104
|
-
functionalTemplate,
|
|
105
|
-
injectStyles,
|
|
106
|
-
scopeId,
|
|
107
|
-
moduleIdentifier /* server only */,
|
|
108
|
-
shadowMode /* vue-cli only */
|
|
109
|
-
) {
|
|
110
|
-
// Vue.extend constructor export interop
|
|
111
|
-
var options =
|
|
112
|
-
typeof scriptExports === 'function' ? scriptExports.options : scriptExports
|
|
113
|
-
|
|
114
|
-
// render functions
|
|
115
|
-
if (render) {
|
|
116
|
-
options.render = render
|
|
117
|
-
options.staticRenderFns = staticRenderFns
|
|
118
|
-
options._compiled = true
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
// functional template
|
|
122
|
-
if (functionalTemplate) {
|
|
123
|
-
options.functional = true
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
// scopedId
|
|
127
|
-
if (scopeId) {
|
|
128
|
-
options._scopeId = 'data-v-' + scopeId
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
var hook
|
|
132
|
-
if (moduleIdentifier) {
|
|
133
|
-
// server build
|
|
134
|
-
hook = function (context) {
|
|
135
|
-
// 2.3 injection
|
|
136
|
-
context =
|
|
137
|
-
context || // cached call
|
|
138
|
-
(this.$vnode && this.$vnode.ssrContext) || // stateful
|
|
139
|
-
(this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
|
|
140
|
-
// 2.2 with runInNewContext: true
|
|
141
|
-
if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
|
|
142
|
-
context = __VUE_SSR_CONTEXT__
|
|
143
|
-
}
|
|
144
|
-
// inject component styles
|
|
145
|
-
if (injectStyles) {
|
|
146
|
-
injectStyles.call(this, context)
|
|
147
|
-
}
|
|
148
|
-
// register component module identifier for async chunk inferrence
|
|
149
|
-
if (context && context._registeredComponents) {
|
|
150
|
-
context._registeredComponents.add(moduleIdentifier)
|
|
151
|
-
}
|
|
152
|
-
}
|
|
153
|
-
// used by ssr in case component is cached and beforeCreate
|
|
154
|
-
// never gets called
|
|
155
|
-
options._ssrRegister = hook
|
|
156
|
-
} else if (injectStyles) {
|
|
157
|
-
hook = shadowMode
|
|
158
|
-
? function () {
|
|
159
|
-
injectStyles.call(
|
|
160
|
-
this,
|
|
161
|
-
(options.functional ? this.parent : this).$root.$options.shadowRoot
|
|
162
|
-
)
|
|
163
|
-
}
|
|
164
|
-
: injectStyles
|
|
165
|
-
}
|
|
166
|
-
|
|
167
|
-
if (hook) {
|
|
168
|
-
if (options.functional) {
|
|
169
|
-
// for template-only hot-reload because in that case the render fn doesn't
|
|
170
|
-
// go through the normalizer
|
|
171
|
-
options._injectStyles = hook
|
|
172
|
-
// register for functional component in vue file
|
|
173
|
-
var originalRender = options.render
|
|
174
|
-
options.render = function renderWithStyleInjection(h, context) {
|
|
175
|
-
hook.call(context)
|
|
176
|
-
return originalRender(h, context)
|
|
177
|
-
}
|
|
178
|
-
} else {
|
|
179
|
-
// inject component registration as beforeCreate hook
|
|
180
|
-
var existing = options.beforeCreate
|
|
181
|
-
options.beforeCreate = existing ? [].concat(existing, hook) : [hook]
|
|
182
|
-
}
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
return {
|
|
186
|
-
exports: scriptExports,
|
|
187
|
-
options: options
|
|
188
|
-
}
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
/***/ }),
|
|
193
|
-
/* 1 */
|
|
194
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
195
|
-
|
|
196
|
-
"use strict";
|
|
197
|
-
/* harmony import */ var _eoss_design_color__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(5);
|
|
93
|
+
/* harmony import */ var _eoss_design_color__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(6);
|
|
198
94
|
/* harmony import */ var _eoss_design_color__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_eoss_design_color__WEBPACK_IMPORTED_MODULE_0__);
|
|
199
95
|
var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
|
|
200
96
|
|
|
@@ -1508,6 +1404,110 @@ var exclAttribute = function exclAttribute(_ref4) {
|
|
|
1508
1404
|
exportXls: exportXls
|
|
1509
1405
|
});
|
|
1510
1406
|
|
|
1407
|
+
/***/ }),
|
|
1408
|
+
/* 1 */
|
|
1409
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
1410
|
+
|
|
1411
|
+
"use strict";
|
|
1412
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return normalizeComponent; });
|
|
1413
|
+
/* globals __VUE_SSR_CONTEXT__ */
|
|
1414
|
+
|
|
1415
|
+
// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
|
|
1416
|
+
// This module is a runtime utility for cleaner component module output and will
|
|
1417
|
+
// be included in the final webpack user bundle.
|
|
1418
|
+
|
|
1419
|
+
function normalizeComponent(
|
|
1420
|
+
scriptExports,
|
|
1421
|
+
render,
|
|
1422
|
+
staticRenderFns,
|
|
1423
|
+
functionalTemplate,
|
|
1424
|
+
injectStyles,
|
|
1425
|
+
scopeId,
|
|
1426
|
+
moduleIdentifier /* server only */,
|
|
1427
|
+
shadowMode /* vue-cli only */
|
|
1428
|
+
) {
|
|
1429
|
+
// Vue.extend constructor export interop
|
|
1430
|
+
var options =
|
|
1431
|
+
typeof scriptExports === 'function' ? scriptExports.options : scriptExports
|
|
1432
|
+
|
|
1433
|
+
// render functions
|
|
1434
|
+
if (render) {
|
|
1435
|
+
options.render = render
|
|
1436
|
+
options.staticRenderFns = staticRenderFns
|
|
1437
|
+
options._compiled = true
|
|
1438
|
+
}
|
|
1439
|
+
|
|
1440
|
+
// functional template
|
|
1441
|
+
if (functionalTemplate) {
|
|
1442
|
+
options.functional = true
|
|
1443
|
+
}
|
|
1444
|
+
|
|
1445
|
+
// scopedId
|
|
1446
|
+
if (scopeId) {
|
|
1447
|
+
options._scopeId = 'data-v-' + scopeId
|
|
1448
|
+
}
|
|
1449
|
+
|
|
1450
|
+
var hook
|
|
1451
|
+
if (moduleIdentifier) {
|
|
1452
|
+
// server build
|
|
1453
|
+
hook = function (context) {
|
|
1454
|
+
// 2.3 injection
|
|
1455
|
+
context =
|
|
1456
|
+
context || // cached call
|
|
1457
|
+
(this.$vnode && this.$vnode.ssrContext) || // stateful
|
|
1458
|
+
(this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
|
|
1459
|
+
// 2.2 with runInNewContext: true
|
|
1460
|
+
if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
|
|
1461
|
+
context = __VUE_SSR_CONTEXT__
|
|
1462
|
+
}
|
|
1463
|
+
// inject component styles
|
|
1464
|
+
if (injectStyles) {
|
|
1465
|
+
injectStyles.call(this, context)
|
|
1466
|
+
}
|
|
1467
|
+
// register component module identifier for async chunk inferrence
|
|
1468
|
+
if (context && context._registeredComponents) {
|
|
1469
|
+
context._registeredComponents.add(moduleIdentifier)
|
|
1470
|
+
}
|
|
1471
|
+
}
|
|
1472
|
+
// used by ssr in case component is cached and beforeCreate
|
|
1473
|
+
// never gets called
|
|
1474
|
+
options._ssrRegister = hook
|
|
1475
|
+
} else if (injectStyles) {
|
|
1476
|
+
hook = shadowMode
|
|
1477
|
+
? function () {
|
|
1478
|
+
injectStyles.call(
|
|
1479
|
+
this,
|
|
1480
|
+
(options.functional ? this.parent : this).$root.$options.shadowRoot
|
|
1481
|
+
)
|
|
1482
|
+
}
|
|
1483
|
+
: injectStyles
|
|
1484
|
+
}
|
|
1485
|
+
|
|
1486
|
+
if (hook) {
|
|
1487
|
+
if (options.functional) {
|
|
1488
|
+
// for template-only hot-reload because in that case the render fn doesn't
|
|
1489
|
+
// go through the normalizer
|
|
1490
|
+
options._injectStyles = hook
|
|
1491
|
+
// register for functional component in vue file
|
|
1492
|
+
var originalRender = options.render
|
|
1493
|
+
options.render = function renderWithStyleInjection(h, context) {
|
|
1494
|
+
hook.call(context)
|
|
1495
|
+
return originalRender(h, context)
|
|
1496
|
+
}
|
|
1497
|
+
} else {
|
|
1498
|
+
// inject component registration as beforeCreate hook
|
|
1499
|
+
var existing = options.beforeCreate
|
|
1500
|
+
options.beforeCreate = existing ? [].concat(existing, hook) : [hook]
|
|
1501
|
+
}
|
|
1502
|
+
}
|
|
1503
|
+
|
|
1504
|
+
return {
|
|
1505
|
+
exports: scriptExports,
|
|
1506
|
+
options: options
|
|
1507
|
+
}
|
|
1508
|
+
}
|
|
1509
|
+
|
|
1510
|
+
|
|
1511
1511
|
/***/ }),
|
|
1512
1512
|
/* 2 */
|
|
1513
1513
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
@@ -1543,7 +1543,7 @@ var exclAttribute = function exclAttribute(_ref4) {
|
|
|
1543
1543
|
/* unused harmony export toTwoOfficesDispatch */
|
|
1544
1544
|
/* unused harmony export twoOfficesDispatch */
|
|
1545
1545
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return isCanStartSubFlow; });
|
|
1546
|
-
/* harmony import */ var _utils_util__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
1546
|
+
/* harmony import */ var _utils_util__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(0);
|
|
1547
1547
|
|
|
1548
1548
|
var activiti = '/bpm';
|
|
1549
1549
|
var pending = '/bpm';
|
|
@@ -1635,10 +1635,10 @@ var external_axios_ = __webpack_require__(7);
|
|
|
1635
1635
|
var external_axios_default = /*#__PURE__*/__webpack_require__.n(external_axios_);
|
|
1636
1636
|
|
|
1637
1637
|
// EXTERNAL MODULE: external "eoss-mobile-vant"
|
|
1638
|
-
var external_eoss_mobile_vant_ = __webpack_require__(
|
|
1638
|
+
var external_eoss_mobile_vant_ = __webpack_require__(5);
|
|
1639
1639
|
|
|
1640
1640
|
// EXTERNAL MODULE: ./src/utils/util.js
|
|
1641
|
-
var util = __webpack_require__(
|
|
1641
|
+
var util = __webpack_require__(0);
|
|
1642
1642
|
|
|
1643
1643
|
// EXTERNAL MODULE: external "qs"
|
|
1644
1644
|
var external_qs_ = __webpack_require__(4);
|
|
@@ -1927,13 +1927,13 @@ module.exports = require("qs");
|
|
|
1927
1927
|
/* 5 */
|
|
1928
1928
|
/***/ (function(module, exports) {
|
|
1929
1929
|
|
|
1930
|
-
module.exports = require("
|
|
1930
|
+
module.exports = require("eoss-mobile-vant");
|
|
1931
1931
|
|
|
1932
1932
|
/***/ }),
|
|
1933
1933
|
/* 6 */
|
|
1934
1934
|
/***/ (function(module, exports) {
|
|
1935
1935
|
|
|
1936
|
-
module.exports = require("eoss-
|
|
1936
|
+
module.exports = require("@eoss-design/color");
|
|
1937
1937
|
|
|
1938
1938
|
/***/ }),
|
|
1939
1939
|
/* 7 */
|
|
@@ -2207,7 +2207,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
|
|
|
2207
2207
|
// CONCATENATED MODULE: ./packages/radio/src/main.vue?vue&type=script&lang=js&
|
|
2208
2208
|
/* harmony default export */ var src_mainvue_type_script_lang_js_ = (mainvue_type_script_lang_js_);
|
|
2209
2209
|
// EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
|
2210
|
-
var componentNormalizer = __webpack_require__(
|
|
2210
|
+
var componentNormalizer = __webpack_require__(1);
|
|
2211
2211
|
|
|
2212
2212
|
// CONCATENATED MODULE: ./packages/radio/src/main.vue
|
|
2213
2213
|
|
package/lib/rate.js
CHANGED
|
@@ -87,7 +87,7 @@ module.exports =
|
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
89
89
|
|
|
90
|
-
/***/
|
|
90
|
+
/***/ 1:
|
|
91
91
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
92
92
|
|
|
93
93
|
"use strict";
|
|
@@ -264,7 +264,7 @@ render._withStripped = true
|
|
|
264
264
|
// CONCATENATED MODULE: ./packages/rate/src/main.vue?vue&type=script&lang=js&
|
|
265
265
|
/* harmony default export */ var src_mainvue_type_script_lang_js_ = (mainvue_type_script_lang_js_);
|
|
266
266
|
// EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
|
267
|
-
var componentNormalizer = __webpack_require__(
|
|
267
|
+
var componentNormalizer = __webpack_require__(1);
|
|
268
268
|
|
|
269
269
|
// CONCATENATED MODULE: ./packages/rate/src/main.vue
|
|
270
270
|
|
package/lib/search.js
CHANGED
|
@@ -87,7 +87,7 @@ module.exports =
|
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
89
89
|
|
|
90
|
-
/***/
|
|
90
|
+
/***/ 1:
|
|
91
91
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
92
92
|
|
|
93
93
|
"use strict";
|
|
@@ -280,7 +280,7 @@ render._withStripped = true
|
|
|
280
280
|
// CONCATENATED MODULE: ./packages/search/src/main.vue?vue&type=script&lang=js&
|
|
281
281
|
/* harmony default export */ var src_mainvue_type_script_lang_js_ = (mainvue_type_script_lang_js_);
|
|
282
282
|
// EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
|
283
|
-
var componentNormalizer = __webpack_require__(
|
|
283
|
+
var componentNormalizer = __webpack_require__(1);
|
|
284
284
|
|
|
285
285
|
// CONCATENATED MODULE: ./packages/search/src/main.vue
|
|
286
286
|
|
package/lib/selector.js
CHANGED
|
@@ -90,111 +90,7 @@ module.exports =
|
|
|
90
90
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
91
91
|
|
|
92
92
|
"use strict";
|
|
93
|
-
/* harmony
|
|
94
|
-
/* globals __VUE_SSR_CONTEXT__ */
|
|
95
|
-
|
|
96
|
-
// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
|
|
97
|
-
// This module is a runtime utility for cleaner component module output and will
|
|
98
|
-
// be included in the final webpack user bundle.
|
|
99
|
-
|
|
100
|
-
function normalizeComponent(
|
|
101
|
-
scriptExports,
|
|
102
|
-
render,
|
|
103
|
-
staticRenderFns,
|
|
104
|
-
functionalTemplate,
|
|
105
|
-
injectStyles,
|
|
106
|
-
scopeId,
|
|
107
|
-
moduleIdentifier /* server only */,
|
|
108
|
-
shadowMode /* vue-cli only */
|
|
109
|
-
) {
|
|
110
|
-
// Vue.extend constructor export interop
|
|
111
|
-
var options =
|
|
112
|
-
typeof scriptExports === 'function' ? scriptExports.options : scriptExports
|
|
113
|
-
|
|
114
|
-
// render functions
|
|
115
|
-
if (render) {
|
|
116
|
-
options.render = render
|
|
117
|
-
options.staticRenderFns = staticRenderFns
|
|
118
|
-
options._compiled = true
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
// functional template
|
|
122
|
-
if (functionalTemplate) {
|
|
123
|
-
options.functional = true
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
// scopedId
|
|
127
|
-
if (scopeId) {
|
|
128
|
-
options._scopeId = 'data-v-' + scopeId
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
var hook
|
|
132
|
-
if (moduleIdentifier) {
|
|
133
|
-
// server build
|
|
134
|
-
hook = function (context) {
|
|
135
|
-
// 2.3 injection
|
|
136
|
-
context =
|
|
137
|
-
context || // cached call
|
|
138
|
-
(this.$vnode && this.$vnode.ssrContext) || // stateful
|
|
139
|
-
(this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
|
|
140
|
-
// 2.2 with runInNewContext: true
|
|
141
|
-
if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
|
|
142
|
-
context = __VUE_SSR_CONTEXT__
|
|
143
|
-
}
|
|
144
|
-
// inject component styles
|
|
145
|
-
if (injectStyles) {
|
|
146
|
-
injectStyles.call(this, context)
|
|
147
|
-
}
|
|
148
|
-
// register component module identifier for async chunk inferrence
|
|
149
|
-
if (context && context._registeredComponents) {
|
|
150
|
-
context._registeredComponents.add(moduleIdentifier)
|
|
151
|
-
}
|
|
152
|
-
}
|
|
153
|
-
// used by ssr in case component is cached and beforeCreate
|
|
154
|
-
// never gets called
|
|
155
|
-
options._ssrRegister = hook
|
|
156
|
-
} else if (injectStyles) {
|
|
157
|
-
hook = shadowMode
|
|
158
|
-
? function () {
|
|
159
|
-
injectStyles.call(
|
|
160
|
-
this,
|
|
161
|
-
(options.functional ? this.parent : this).$root.$options.shadowRoot
|
|
162
|
-
)
|
|
163
|
-
}
|
|
164
|
-
: injectStyles
|
|
165
|
-
}
|
|
166
|
-
|
|
167
|
-
if (hook) {
|
|
168
|
-
if (options.functional) {
|
|
169
|
-
// for template-only hot-reload because in that case the render fn doesn't
|
|
170
|
-
// go through the normalizer
|
|
171
|
-
options._injectStyles = hook
|
|
172
|
-
// register for functional component in vue file
|
|
173
|
-
var originalRender = options.render
|
|
174
|
-
options.render = function renderWithStyleInjection(h, context) {
|
|
175
|
-
hook.call(context)
|
|
176
|
-
return originalRender(h, context)
|
|
177
|
-
}
|
|
178
|
-
} else {
|
|
179
|
-
// inject component registration as beforeCreate hook
|
|
180
|
-
var existing = options.beforeCreate
|
|
181
|
-
options.beforeCreate = existing ? [].concat(existing, hook) : [hook]
|
|
182
|
-
}
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
return {
|
|
186
|
-
exports: scriptExports,
|
|
187
|
-
options: options
|
|
188
|
-
}
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
/***/ }),
|
|
193
|
-
/* 1 */
|
|
194
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
195
|
-
|
|
196
|
-
"use strict";
|
|
197
|
-
/* harmony import */ var _eoss_design_color__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(5);
|
|
93
|
+
/* harmony import */ var _eoss_design_color__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(6);
|
|
198
94
|
/* harmony import */ var _eoss_design_color__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_eoss_design_color__WEBPACK_IMPORTED_MODULE_0__);
|
|
199
95
|
var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
|
|
200
96
|
|
|
@@ -1508,6 +1404,110 @@ var exclAttribute = function exclAttribute(_ref4) {
|
|
|
1508
1404
|
exportXls: exportXls
|
|
1509
1405
|
});
|
|
1510
1406
|
|
|
1407
|
+
/***/ }),
|
|
1408
|
+
/* 1 */
|
|
1409
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
1410
|
+
|
|
1411
|
+
"use strict";
|
|
1412
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return normalizeComponent; });
|
|
1413
|
+
/* globals __VUE_SSR_CONTEXT__ */
|
|
1414
|
+
|
|
1415
|
+
// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
|
|
1416
|
+
// This module is a runtime utility for cleaner component module output and will
|
|
1417
|
+
// be included in the final webpack user bundle.
|
|
1418
|
+
|
|
1419
|
+
function normalizeComponent(
|
|
1420
|
+
scriptExports,
|
|
1421
|
+
render,
|
|
1422
|
+
staticRenderFns,
|
|
1423
|
+
functionalTemplate,
|
|
1424
|
+
injectStyles,
|
|
1425
|
+
scopeId,
|
|
1426
|
+
moduleIdentifier /* server only */,
|
|
1427
|
+
shadowMode /* vue-cli only */
|
|
1428
|
+
) {
|
|
1429
|
+
// Vue.extend constructor export interop
|
|
1430
|
+
var options =
|
|
1431
|
+
typeof scriptExports === 'function' ? scriptExports.options : scriptExports
|
|
1432
|
+
|
|
1433
|
+
// render functions
|
|
1434
|
+
if (render) {
|
|
1435
|
+
options.render = render
|
|
1436
|
+
options.staticRenderFns = staticRenderFns
|
|
1437
|
+
options._compiled = true
|
|
1438
|
+
}
|
|
1439
|
+
|
|
1440
|
+
// functional template
|
|
1441
|
+
if (functionalTemplate) {
|
|
1442
|
+
options.functional = true
|
|
1443
|
+
}
|
|
1444
|
+
|
|
1445
|
+
// scopedId
|
|
1446
|
+
if (scopeId) {
|
|
1447
|
+
options._scopeId = 'data-v-' + scopeId
|
|
1448
|
+
}
|
|
1449
|
+
|
|
1450
|
+
var hook
|
|
1451
|
+
if (moduleIdentifier) {
|
|
1452
|
+
// server build
|
|
1453
|
+
hook = function (context) {
|
|
1454
|
+
// 2.3 injection
|
|
1455
|
+
context =
|
|
1456
|
+
context || // cached call
|
|
1457
|
+
(this.$vnode && this.$vnode.ssrContext) || // stateful
|
|
1458
|
+
(this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
|
|
1459
|
+
// 2.2 with runInNewContext: true
|
|
1460
|
+
if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
|
|
1461
|
+
context = __VUE_SSR_CONTEXT__
|
|
1462
|
+
}
|
|
1463
|
+
// inject component styles
|
|
1464
|
+
if (injectStyles) {
|
|
1465
|
+
injectStyles.call(this, context)
|
|
1466
|
+
}
|
|
1467
|
+
// register component module identifier for async chunk inferrence
|
|
1468
|
+
if (context && context._registeredComponents) {
|
|
1469
|
+
context._registeredComponents.add(moduleIdentifier)
|
|
1470
|
+
}
|
|
1471
|
+
}
|
|
1472
|
+
// used by ssr in case component is cached and beforeCreate
|
|
1473
|
+
// never gets called
|
|
1474
|
+
options._ssrRegister = hook
|
|
1475
|
+
} else if (injectStyles) {
|
|
1476
|
+
hook = shadowMode
|
|
1477
|
+
? function () {
|
|
1478
|
+
injectStyles.call(
|
|
1479
|
+
this,
|
|
1480
|
+
(options.functional ? this.parent : this).$root.$options.shadowRoot
|
|
1481
|
+
)
|
|
1482
|
+
}
|
|
1483
|
+
: injectStyles
|
|
1484
|
+
}
|
|
1485
|
+
|
|
1486
|
+
if (hook) {
|
|
1487
|
+
if (options.functional) {
|
|
1488
|
+
// for template-only hot-reload because in that case the render fn doesn't
|
|
1489
|
+
// go through the normalizer
|
|
1490
|
+
options._injectStyles = hook
|
|
1491
|
+
// register for functional component in vue file
|
|
1492
|
+
var originalRender = options.render
|
|
1493
|
+
options.render = function renderWithStyleInjection(h, context) {
|
|
1494
|
+
hook.call(context)
|
|
1495
|
+
return originalRender(h, context)
|
|
1496
|
+
}
|
|
1497
|
+
} else {
|
|
1498
|
+
// inject component registration as beforeCreate hook
|
|
1499
|
+
var existing = options.beforeCreate
|
|
1500
|
+
options.beforeCreate = existing ? [].concat(existing, hook) : [hook]
|
|
1501
|
+
}
|
|
1502
|
+
}
|
|
1503
|
+
|
|
1504
|
+
return {
|
|
1505
|
+
exports: scriptExports,
|
|
1506
|
+
options: options
|
|
1507
|
+
}
|
|
1508
|
+
}
|
|
1509
|
+
|
|
1510
|
+
|
|
1511
1511
|
/***/ }),
|
|
1512
1512
|
/* 2 */
|
|
1513
1513
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
@@ -1543,7 +1543,7 @@ var exclAttribute = function exclAttribute(_ref4) {
|
|
|
1543
1543
|
/* unused harmony export toTwoOfficesDispatch */
|
|
1544
1544
|
/* unused harmony export twoOfficesDispatch */
|
|
1545
1545
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return isCanStartSubFlow; });
|
|
1546
|
-
/* harmony import */ var _utils_util__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
1546
|
+
/* harmony import */ var _utils_util__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(0);
|
|
1547
1547
|
|
|
1548
1548
|
var activiti = '/bpm';
|
|
1549
1549
|
var pending = '/bpm';
|
|
@@ -1635,10 +1635,10 @@ var external_axios_ = __webpack_require__(7);
|
|
|
1635
1635
|
var external_axios_default = /*#__PURE__*/__webpack_require__.n(external_axios_);
|
|
1636
1636
|
|
|
1637
1637
|
// EXTERNAL MODULE: external "eoss-mobile-vant"
|
|
1638
|
-
var external_eoss_mobile_vant_ = __webpack_require__(
|
|
1638
|
+
var external_eoss_mobile_vant_ = __webpack_require__(5);
|
|
1639
1639
|
|
|
1640
1640
|
// EXTERNAL MODULE: ./src/utils/util.js
|
|
1641
|
-
var util = __webpack_require__(
|
|
1641
|
+
var util = __webpack_require__(0);
|
|
1642
1642
|
|
|
1643
1643
|
// EXTERNAL MODULE: external "qs"
|
|
1644
1644
|
var external_qs_ = __webpack_require__(4);
|
|
@@ -1927,13 +1927,13 @@ module.exports = require("qs");
|
|
|
1927
1927
|
/* 5 */
|
|
1928
1928
|
/***/ (function(module, exports) {
|
|
1929
1929
|
|
|
1930
|
-
module.exports = require("
|
|
1930
|
+
module.exports = require("eoss-mobile-vant");
|
|
1931
1931
|
|
|
1932
1932
|
/***/ }),
|
|
1933
1933
|
/* 6 */
|
|
1934
1934
|
/***/ (function(module, exports) {
|
|
1935
1935
|
|
|
1936
|
-
module.exports = require("eoss-
|
|
1936
|
+
module.exports = require("@eoss-design/color");
|
|
1937
1937
|
|
|
1938
1938
|
/***/ }),
|
|
1939
1939
|
/* 7 */
|
|
@@ -2808,7 +2808,7 @@ treevue_type_template_id_bacc904e_render._withStripped = true
|
|
|
2808
2808
|
// CONCATENATED MODULE: ./packages/selector/src/tree.vue?vue&type=script&lang=js&
|
|
2809
2809
|
/* harmony default export */ var src_treevue_type_script_lang_js_ = (treevue_type_script_lang_js_);
|
|
2810
2810
|
// EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
|
2811
|
-
var componentNormalizer = __webpack_require__(
|
|
2811
|
+
var componentNormalizer = __webpack_require__(1);
|
|
2812
2812
|
|
|
2813
2813
|
// CONCATENATED MODULE: ./packages/selector/src/tree.vue
|
|
2814
2814
|
|
|
@@ -2834,7 +2834,7 @@ var component = Object(componentNormalizer["a" /* default */])(
|
|
|
2834
2834
|
var api = __webpack_require__(2);
|
|
2835
2835
|
|
|
2836
2836
|
// EXTERNAL MODULE: ./src/utils/util.js
|
|
2837
|
-
var util = __webpack_require__(
|
|
2837
|
+
var util = __webpack_require__(0);
|
|
2838
2838
|
|
|
2839
2839
|
// EXTERNAL MODULE: ./src/utils/http.js + 1 modules
|
|
2840
2840
|
var http = __webpack_require__(3);
|
package/lib/skeleton.js
CHANGED
|
@@ -87,7 +87,7 @@ module.exports =
|
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
89
89
|
|
|
90
|
-
/***/
|
|
90
|
+
/***/ 1:
|
|
91
91
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
92
92
|
|
|
93
93
|
"use strict";
|
|
@@ -241,7 +241,7 @@ render._withStripped = true
|
|
|
241
241
|
// CONCATENATED MODULE: ./packages/skeleton/src/main.vue?vue&type=script&lang=js&
|
|
242
242
|
/* harmony default export */ var src_mainvue_type_script_lang_js_ = (mainvue_type_script_lang_js_);
|
|
243
243
|
// EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
|
244
|
-
var componentNormalizer = __webpack_require__(
|
|
244
|
+
var componentNormalizer = __webpack_require__(1);
|
|
245
245
|
|
|
246
246
|
// CONCATENATED MODULE: ./packages/skeleton/src/main.vue
|
|
247
247
|
|
package/lib/stepper.js
CHANGED
|
@@ -87,7 +87,7 @@ module.exports =
|
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
89
89
|
|
|
90
|
-
/***/
|
|
90
|
+
/***/ 1:
|
|
91
91
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
92
92
|
|
|
93
93
|
"use strict";
|
|
@@ -264,7 +264,7 @@ render._withStripped = true
|
|
|
264
264
|
// CONCATENATED MODULE: ./packages/stepper/src/main.vue?vue&type=script&lang=js&
|
|
265
265
|
/* harmony default export */ var src_mainvue_type_script_lang_js_ = (mainvue_type_script_lang_js_);
|
|
266
266
|
// EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
|
267
|
-
var componentNormalizer = __webpack_require__(
|
|
267
|
+
var componentNormalizer = __webpack_require__(1);
|
|
268
268
|
|
|
269
269
|
// CONCATENATED MODULE: ./packages/stepper/src/main.vue
|
|
270
270
|
|
package/lib/swipe.js
CHANGED
|
@@ -87,7 +87,7 @@ module.exports =
|
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
89
89
|
|
|
90
|
-
/***/
|
|
90
|
+
/***/ 1:
|
|
91
91
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
92
92
|
|
|
93
93
|
"use strict";
|
|
@@ -291,7 +291,7 @@ render._withStripped = true
|
|
|
291
291
|
// CONCATENATED MODULE: ./packages/swipe/src/main.vue?vue&type=script&lang=js&
|
|
292
292
|
/* harmony default export */ var src_mainvue_type_script_lang_js_ = (mainvue_type_script_lang_js_);
|
|
293
293
|
// EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
|
294
|
-
var componentNormalizer = __webpack_require__(
|
|
294
|
+
var componentNormalizer = __webpack_require__(1);
|
|
295
295
|
|
|
296
296
|
// CONCATENATED MODULE: ./packages/swipe/src/main.vue
|
|
297
297
|
|
package/lib/switch.js
CHANGED
|
@@ -87,7 +87,7 @@ module.exports =
|
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
89
89
|
|
|
90
|
-
/***/
|
|
90
|
+
/***/ 1:
|
|
91
91
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
92
92
|
|
|
93
93
|
"use strict";
|
|
@@ -278,7 +278,7 @@ render._withStripped = true
|
|
|
278
278
|
// CONCATENATED MODULE: ./packages/switch/src/main.vue?vue&type=script&lang=js&
|
|
279
279
|
/* harmony default export */ var src_mainvue_type_script_lang_js_ = (mainvue_type_script_lang_js_);
|
|
280
280
|
// EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
|
281
|
-
var componentNormalizer = __webpack_require__(
|
|
281
|
+
var componentNormalizer = __webpack_require__(1);
|
|
282
282
|
|
|
283
283
|
// CONCATENATED MODULE: ./packages/switch/src/main.vue
|
|
284
284
|
|
package/lib/tab.js
CHANGED
|
@@ -87,7 +87,7 @@ module.exports =
|
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
89
89
|
|
|
90
|
-
/***/
|
|
90
|
+
/***/ 1:
|
|
91
91
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
92
92
|
|
|
93
93
|
"use strict";
|
|
@@ -238,7 +238,7 @@ render._withStripped = true
|
|
|
238
238
|
// CONCATENATED MODULE: ./packages/tab/src/main.vue?vue&type=script&lang=js&
|
|
239
239
|
/* harmony default export */ var src_mainvue_type_script_lang_js_ = (mainvue_type_script_lang_js_);
|
|
240
240
|
// EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
|
241
|
-
var componentNormalizer = __webpack_require__(
|
|
241
|
+
var componentNormalizer = __webpack_require__(1);
|
|
242
242
|
|
|
243
243
|
// CONCATENATED MODULE: ./packages/tab/src/main.vue
|
|
244
244
|
|