@inkline/inkline
Version:
Inkline is the intuitive UI Components library that gives you a developer-friendly foundation for building high-quality, accessible, and customizable Vue.js 3 Design Systems.
19 lines (18 loc) • 385 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.createModalService = createModalService;
function createModalService(eventBus) {
return {
show: options => {
eventBus.emit("show", options);
},
hide: options => {
eventBus.emit("hide", options);
},
hideAll: () => {
eventBus.emit("hideAll", {});
}
};
}