{"version":3,"file":"store.9430dea3.js","sources":["../../../../../../src/lib/notification/store.ts"],"sourcesContent":["import { writable, derived, readable } from 'svelte/store';\n\nexport type Notification = {\n id: string,\n icon: string,\n title: string,\n subtitle?: string,\n isExpired: boolean,\n actionCTA?: string,\n action?: () => void,\n}\n\n\nconst defaultStore = {\n notifications: [] as Notification[],\n};\n\nexport const store = {\n notifications: writable([...defaultStore.notifications]),\n displayNotification: readable([] as Notification[])\n};\n\nstore.displayNotification = derived([\n store.notifications\n], ([\n $notifications,\n]) => {\n return $notifications.filter((n) => !n.isExpired)\n})\n\n\nexport function resetStore() {\n store.notifications.set([...defaultStore.notifications])\n}\n"],"names":["defaultStore","store","writable","readable","derived","$notifications","n"],"mappings":"yYAaA,MAAMA,EAAe,CACnB,cAAe,CAAC,CAClB,EAEaC,EAAQ,CACnB,cAAeC,EAAS,CAAC,GAAGF,EAAa,aAAa,CAAC,EACvD,oBAAqBG,EAAS,EAAoB,CACpD,EAEAF,EAAM,oBAAsBG,EAAQ,CAClCH,EAAM,aACR,EAAG,CAAC,CACFI,CACF,IACSA,EAAe,OAAQC,GAAM,CAACA,EAAE,SAAS,CACjD"}