update web dist

This commit is contained in:
王劲鹏 2020-04-30 14:52:18 +08:00 committed by osborn
parent b7da580842
commit cc5a7ab011
2 changed files with 12 additions and 4 deletions

View File

@ -2937,7 +2937,8 @@ class List extends Superview {
} }
} }
scrollToItem(context, index, config) { scrollToItem(context, index, config) {
const animated = config === null || config === void 0 ? void 0 : config.animated; var _a;
const animated = (_a = config) === null || _a === void 0 ? void 0 : _a.animated;
return this.nativeChannel(context, 'scrollToItem')({ index, animated, }); return this.nativeChannel(context, 'scrollToItem')({ index, animated, });
} }
reset() { reset() {
@ -3686,7 +3687,14 @@ function navbar(context) {
panel.addHeadView("navbar_right", view); panel.addHeadView("navbar_right", view);
} }
return context.callNative('navbar', 'setRight', view.toModel()); return context.callNative('navbar', 'setRight', view.toModel());
},
setCenter: (view) => {
if (panel) {
panel.clearHeadViews("navbar_center");
panel.addHeadView("navbar_center", view);
} }
return context.callNative('navbar', 'setCenter', view.toModel());
},
}; };
} }
@ -4191,7 +4199,7 @@ return __module.exports;
var doric_web = (function (exports, axios, sandbox) { var doric_web = (function (exports, axios, sandbox) {
'use strict'; 'use strict';
axios = axios && Object.prototype.hasOwnProperty.call(axios, 'default') ? axios['default'] : axios; axios = axios && axios.hasOwnProperty('default') ? axios['default'] : axios;
class DoricPlugin { class DoricPlugin {
constructor(context) { constructor(context) {