{"version":3,"file":"482.chunk.b9c3a23bef1eea0f551b.js","mappings":"kPAEO,MAAMA,UAA+BC,EAAAA,EACxCC,WAAAA,CACoBC,EAChBC,GAEAC,MAAMD,GAAI,KAHMD,qBAAAA,CAIpB,EAGG,MAAMG,UAAqCN,EAG9CE,WAAAA,CAAYC,GACRE,MAAMF,EAAsBG,EAA6BF,GAC7D,EALSE,EACcF,GAAK,+BAOzB,MAAMG,UAAmCP,EAG5CE,WAAAA,CAAYC,GACRE,MAAMF,EAAsBI,EAA2BH,GAC3D,EALSG,EACcH,GAAK,6BAOzB,MAAMI,UAAkCR,EAG3CE,WAAAA,CAAYC,GACRE,MAAMF,EAAsBK,EAA0BJ,GAC1D,EALSI,EACcJ,GAAK,4BAOzB,MAAMK,UAAmCT,EAG5CE,WAAAA,CAAYC,GACRE,MAAMF,EAAsBM,EAA2BL,GAC3D,EALSK,EACcL,GAAK,6BAOzB,MAAMM,UAAmCV,EAG5CE,WAAAA,CAAYS,GACRN,MAAMM,EAAkBD,EAA2BN,GACvD,EALSM,EACcN,GAAK,4B","sources":["webpack://Kristiania.Web/./Features/CampusApplication/Events/CampusApplicationEvents.ts"],"sourcesContent":["import { Event } from '~/Features/Messaging/types';\n\nexport class CampusApplicationEvent extends Event {\n constructor(\n public readonly currentChoicesNumber: number,\n id: string\n ) {\n super(id);\n }\n}\n\nexport class CampusApplicationItemRemoved extends CampusApplicationEvent {\n public static readonly id = 'CampusApplicationItemRemoved';\n\n constructor(currentChoicesNumber: number) {\n super(currentChoicesNumber, CampusApplicationItemRemoved.id);\n }\n}\n\nexport class CampusApplicationItemAdded extends CampusApplicationEvent {\n public static readonly id = 'CampusApplicationItemAdded';\n\n constructor(currentChoicesNumber: number) {\n super(currentChoicesNumber, CampusApplicationItemAdded.id);\n }\n}\n\nexport class AddingExistingItemAttempt extends CampusApplicationEvent {\n public static readonly id = 'AddingExistingItemAttempt';\n\n constructor(currentChoicesNumber: number) {\n super(currentChoicesNumber, AddingExistingItemAttempt.id);\n }\n}\n\nexport class AddingAnotherOptionAttempt extends CampusApplicationEvent {\n public static readonly id = 'AddingAnotherOptionAttempt';\n\n constructor(currentChoicesNumber: number) {\n super(currentChoicesNumber, AddingAnotherOptionAttempt.id);\n }\n}\n\nexport class MaxNumberOfChoicesExceeded extends CampusApplicationEvent {\n public static readonly id = 'MaxNumberOfChoicesExceeded';\n\n constructor(maxChoicesNumber: number) {\n super(maxChoicesNumber, MaxNumberOfChoicesExceeded.id);\n }\n}\n"],"names":["CampusApplicationEvent","Event","constructor","currentChoicesNumber","id","super","CampusApplicationItemRemoved","CampusApplicationItemAdded","AddingExistingItemAttempt","AddingAnotherOptionAttempt","MaxNumberOfChoicesExceeded","maxChoicesNumber"],"sourceRoot":""}