{"version":3,"sources":["src/app/shared/services/toast.service.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\n\nexport interface Toast {\n classname?: string;\n delay?: number;\n title?: string;\n message: string;\n}\n\n@Injectable({ providedIn: 'root' })\nexport class ToastService {\n toasts: Toast[] = [];\n\n show(toast: Toast) {\n this.toasts.push(toast);\n }\n\n remove(toast: Toast) {\n this.toasts = this.toasts.filter((t) => t !== toast);\n }\n\n clear() {\n this.toasts.splice(0, this.toasts.length);\n }\n}\n"],"names":["ToastService","toasts","show","toast","push","remove","filter","t","clear","splice","length","factory","ɵfac","providedIn"],"mappings":";;wCAUA,IAAaA,GAAY,IAAA,CAAnB,MAAOA,CAAY,CACrBC,OAAkB,CAAA,EAElBC,KAAKC,EAAY,CACb,KAAKF,OAAOG,KAAKD,CAAK,CAC1B,CAEAE,OAAOF,EAAY,CACf,KAAKF,OAAS,KAAKA,OAAOK,OAAQC,GAAMA,IAAMJ,CAAK,CACvD,CAEAK,OAAK,CACD,KAAKP,OAAOQ,OAAO,EAAG,KAAKR,OAAOS,MAAM,CAC5C,4CAbSV,EAAY,6BAAZA,EAAYW,QAAZX,EAAYY,UAAAC,WADC,MAAM,CAAA,SACnBb,CAAY,GAAA","debug_id":"3102efd9-9d1c-5bda-a4d2-e2c35b0fa369"}