{"version":3,"sources":["node_modules/date-fns/addDays.mjs","src/app/common/account/login/login-dialog/login-dialog.service.ts"],"sourcesContent":["import { toDate } from \"./toDate.mjs\";\nimport { constructFrom } from \"./constructFrom.mjs\";\n\n/**\n * @name addDays\n * @category Day Helpers\n * @summary Add the specified number of days to the given date.\n *\n * @description\n * Add the specified number of days to the given date.\n *\n * @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).\n *\n * @param date - The date to be changed\n * @param amount - The amount of days to be added.\n *\n * @returns The new date with the days added\n *\n * @example\n * // Add 10 days to 1 September 2014:\n * const result = addDays(new Date(2014, 8, 1), 10)\n * //=> Thu Sep 11 2014 00:00:00\n */\nexport function addDays(date, amount) {\n const _date = toDate(date);\n if (isNaN(amount)) return constructFrom(date, NaN);\n if (!amount) {\n // If 0 days, no-op to avoid changing times in the hour before end of DST\n return _date;\n }\n _date.setDate(_date.getDate() + amount);\n return _date;\n}\n\n// Fallback for modularized imports:\nexport default addDays;","import { Injectable } from '@angular/core'\nimport { MatDialog } from '@angular/material/dialog'\nimport { Observable, from } from 'rxjs'\n\n@Injectable({\n providedIn: 'root',\n})\nexport class loginService {\n constructor(private dialog: MatDialog) {}\n\n public open(): Observable {\n return from(\n import('./login-dialog.component').then((x) => {\n return this.dialog\n .open(x.LoginDialogComponent, {\n disableClose: true,\n closeOnNavigation: true,\n minWidth: '90wv',\n width: '300px',\n })\n .afterClosed()\n .toPromise()\n })\n )\n }\n}\n"],"mappings":"8IAuBO,SAASA,EAAQC,EAAMC,EAAQ,CACpC,IAAMC,EAAQC,EAAOH,CAAI,EACzB,OAAI,MAAMC,CAAM,EAAUG,EAAcJ,EAAM,GAAG,GAC5CC,GAILC,EAAM,QAAQA,EAAM,QAAQ,EAAID,CAAM,EAC/BC,EACT,CCzBA,IAAaG,GAAY,IAAA,CAAnB,IAAOA,EAAP,MAAOA,CAAY,CACrBC,YAAoBC,EAAiB,CAAjB,KAAAA,OAAAA,CAAoB,CAEjCC,MAAI,CACP,OAAOC,EACH,OAAO,qBAA0B,EAAEC,KAAMC,GAC9B,KAAKJ,OACPC,KAAKG,EAAEC,qBAAsB,CAC1BC,aAAc,GACdC,kBAAmB,GACnBC,SAAU,OACVC,MAAO,QACV,EACAC,YAAW,EACXC,UAAS,CACjB,CAAC,CAEV,yCAjBSb,GAAYc,EAAAC,CAAA,CAAA,CAAA,wBAAZf,EAAYgB,QAAZhB,EAAYiB,UAAAC,WAFT,MAAM,CAAA,EAEhB,IAAOlB,EAAPmB,SAAOnB,CAAY,GAAA","names":["addDays","date","amount","_date","toDate","constructFrom","loginService","constructor","dialog","open","from","then","x","LoginDialogComponent","disableClose","closeOnNavigation","minWidth","width","afterClosed","toPromise","ɵɵinject","MatDialog","factory","ɵfac","providedIn","_loginService"],"x_google_ignoreList":[0]}