claude-web/node_modules/primevue/toastservice/index.mjs

27 lines
787 B
JavaScript
Raw Normal View History

2026-02-23 02:23:38 +00:00
import ToastEventBus from 'primevue/toasteventbus';
import { PrimeVueToastSymbol } from 'primevue/usetoast';
var ToastService = {
install: function install(app) {
var ToastService = {
add: function add(message) {
ToastEventBus.emit('add', message);
},
remove: function remove(message) {
ToastEventBus.emit('remove', message);
},
removeGroup: function removeGroup(group) {
ToastEventBus.emit('remove-group', group);
},
removeAllGroups: function removeAllGroups() {
ToastEventBus.emit('remove-all-groups');
}
};
app.config.globalProperties.$toast = ToastService;
app.provide(PrimeVueToastSymbol, ToastService);
}
};
export { ToastService as default };
//# sourceMappingURL=index.mjs.map