build: compile 1.0.0

This commit is contained in:
rex-zsd 2019-12-11 10:06:36 +08:00
parent 4210edae6d
commit e5496ae832
3 changed files with 25 additions and 8 deletions

View File

@ -12,5 +12,8 @@ interface NotifyOptions {
onOpened?: () => void;
onClose?: () => void;
}
export default function Notify(options: NotifyOptions | string): void;
export {};
declare function Notify(options: NotifyOptions | string): any;
declare namespace Notify {
var clear: (options?: NotifyOptions) => void;
}
export default Notify;

View File

@ -27,8 +27,15 @@ export default function Notify(options) {
if (notify) {
notify.set(options);
notify.show();
return notify;
}
else {
console.warn('未找到 van-notify 节点,请确认 selector 及 context 是否正确');
}
Notify.clear = function (options) {
options = Object.assign({}, defaultOptions, parseOptions(options));
const context = options.context || getContext();
const notify = context.selectComponent(options.selector);
if (notify) {
notify.hide();
}
};

View File

@ -29,9 +29,16 @@ function Notify(options) {
if (notify) {
notify.set(options);
notify.show();
return notify;
}
else {
console.warn('未找到 van-notify 节点,请确认 selector 及 context 是否正确');
}
}
exports.default = Notify;
Notify.clear = function (options) {
options = Object.assign({}, defaultOptions, parseOptions(options));
var context = options.context || getContext();
var notify = context.selectComponent(options.selector);
if (notify) {
notify.hide();
}
};