@v2coding/ui 0.1.23 → 0.1.25
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 +1 -0
- package/dist/v2coding-ui.esm.js +10 -3
- package/dist/v2coding-ui.min.js +2 -2
- package/dist/v2coding-ui.ssr.js +8 -3
- package/package.json +1 -1
package/dist/v2coding-ui.ssr.js
CHANGED
|
@@ -43,7 +43,7 @@ var isFunction = function isFunction() {
|
|
|
43
43
|
}
|
|
44
44
|
|
|
45
45
|
return args.every(function (arg) {
|
|
46
|
-
return
|
|
46
|
+
return typeof arg === 'function';
|
|
47
47
|
});
|
|
48
48
|
};
|
|
49
49
|
var isDate$1 = function isDate() {
|
|
@@ -12681,10 +12681,14 @@ var __vue_component__$4 = /*#__PURE__*/normalizeComponent({
|
|
|
12681
12681
|
staticRenderFns: __vue_staticRenderFns__$4
|
|
12682
12682
|
}, __vue_inject_styles__$4, __vue_script__$4, __vue_scope_id__$4, __vue_is_functional_template__$4, __vue_module_identifier__$4, false, undefined, createInjectorSSR, undefined);
|
|
12683
12683
|
|
|
12684
|
-
var ScrollView = __vue_component__$4;var
|
|
12684
|
+
var ScrollView$1 = __vue_component__$4;var ScrollView = {
|
|
12685
|
+
install: function install(Vue) {
|
|
12686
|
+
Vue.component(ScrollView$1.name, ScrollView$1);
|
|
12687
|
+
}
|
|
12688
|
+
};var script$3 = {
|
|
12685
12689
|
name: "ui-history",
|
|
12686
12690
|
components: {
|
|
12687
|
-
ScrollView: ScrollView
|
|
12691
|
+
ScrollView: ScrollView$1
|
|
12688
12692
|
},
|
|
12689
12693
|
props: {
|
|
12690
12694
|
items: Array,
|
|
@@ -13346,6 +13350,7 @@ var SearchPage = __vue_component__;var Page = {
|
|
|
13346
13350
|
Permission: Permission,
|
|
13347
13351
|
DocumentTitle: DocumentTitle$1,
|
|
13348
13352
|
FillView: FillView,
|
|
13353
|
+
ScrollView: ScrollView,
|
|
13349
13354
|
History: History,
|
|
13350
13355
|
Minimize: Minimize,
|
|
13351
13356
|
Page: Page
|