
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
ele-dialogsvc
Advanced tools
yarn install
yarn run serve
yarn run build
yarn run test
yarn run lint
yarn install ele-dialogsvc
import dialogSvc from 'ele-dialogsvc';
const modal = dialogSvc.open(<div>message</div>, {
title: 'hello world',
parent: '',
});
modal.result.then(
(result) => {
console.log(result);
},
(reason) => {
console.log(reason);
},
);
// modal.close('okok');
// modal.dismiss('okok');
dialogSvc.alert({
title: 'hello world',
message: 'alert message',
});
dialogSvc.alert({
title: 'hello world',
message: <div style="color:red">alert message</div>,
});
dialogSvc
.confirm({
title: 'hello world',
message: 'confirm message',
})
.result.then(
(result) => {
console.log(result);
},
(reason) => {
console.log(reason);
},
);
interface ModalOptions {
// visible?: boolean; // 是否显示 Dialog
title?: string; // Dialog 的标题
// width?: number; // Dialog 的宽度
// top?: number; // Dialog CSS 中的 margin-top 值 default 15vh
fullscreen?: boolean; // 是否为全屏 Dialog default false
modal?: boolean; //是否需要遮罩层 default true
modalAppendToBody?: boolean; // 遮罩层是否插入至 body 元素上,若为 false,则遮罩层会插入至 Dialog 的父元素上 default true
appendToBody?: boolean; // Dialog 自身是否插入至 body 元素上
lockScroll?: boolean; // 是否在 Dialog 出现时将 body 滚动锁定 default true
customClass?: boolean; // Dialog 的自定义类名
closeOnClickModal?: boolean; // 是否可以通过点击 modal 关闭 Dialog
closeOnPressEscape?: boolean; // 是否可以通过按下 ESC 关闭 Dialog
message?: any; // for alert/confirm
showClose?: boolean; // 是否显示关闭按钮 default true
center?: boolean; // 是否对头部和底部采用居中布局 defualt false
parent?: Vue; // mounte dialog to parent or global
beforeClose?: Callback; // 关闭前的回调,会暂停 Dialog 的关闭
}
interface ModalService {
open: (content: VNode | Component, options: ModalOptions | void) => ModalRef; // vnode or {render:Function} component
dismissAll: (reason: any) => void;
hasOpenModals: () => boolean;
alert: (options: ModalOptions) => ModalRef;
confirm: (options: ModalOptions) => ModalRef;
}
interface ModalRef {
id: number; // modal id
context: Vue; // modal component instance
result: Promise<any>; // A promise that is resolved when the modal is closed and rejected when the modal is dismissed
close: (result: any) => void; // close modal with result value
dismiss: (reason: any) => void; // dismiss modal with reason value
options: ModalOptions;
}
FAQs
## Project setup
We found that ele-dialogsvc demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.