{"version":3,"sources":["node_modules/.pnpm/@angular+material-moment-adapter@18.2.2_@angular+core@18.2.2_rxjs@7.8.2_zone.js@0.14.10__@ang_nbsyd2wfladbqyglxpwqyrmvje/node_modules/@angular/material-moment-adapter/fesm2022/material-moment-adapter.mjs"],"sourcesContent":["import * as i0 from '@angular/core';\nimport { InjectionToken, Injectable, Optional, Inject, NgModule } from '@angular/core';\nimport { DateAdapter, MAT_DATE_LOCALE, MAT_DATE_FORMATS } from '@angular/material/core';\nimport * as _rollupMoment from 'moment';\nimport _rollupMoment__default from 'moment';\nconst moment = _rollupMoment__default || _rollupMoment;\n/** InjectionToken for moment date adapter to configure options. */\nconst MAT_MOMENT_DATE_ADAPTER_OPTIONS = /*#__PURE__*/new InjectionToken('MAT_MOMENT_DATE_ADAPTER_OPTIONS', {\n providedIn: 'root',\n factory: MAT_MOMENT_DATE_ADAPTER_OPTIONS_FACTORY\n});\n/** @docs-private */\nfunction MAT_MOMENT_DATE_ADAPTER_OPTIONS_FACTORY() {\n return {\n useUtc: false\n };\n}\n/** Creates an array and fills it with values. */\nfunction range(length, valueFunction) {\n const valuesArray = Array(length);\n for (let i = 0; i < length; i++) {\n valuesArray[i] = valueFunction(i);\n }\n return valuesArray;\n}\n/** Adapts Moment.js Dates for use with Angular Material. */\nlet MomentDateAdapter = /*#__PURE__*/(() => {\n class MomentDateAdapter extends DateAdapter {\n constructor(dateLocale, _options) {\n super();\n this._options = _options;\n this.setLocale(dateLocale || moment.locale());\n }\n setLocale(locale) {\n super.setLocale(locale);\n let momentLocaleData = moment.localeData(locale);\n this._localeData = {\n firstDayOfWeek: momentLocaleData.firstDayOfWeek(),\n longMonths: momentLocaleData.months(),\n shortMonths: momentLocaleData.monthsShort(),\n dates: range(31, i => this.createDate(2017, 0, i + 1).format('D')),\n longDaysOfWeek: momentLocaleData.weekdays(),\n shortDaysOfWeek: momentLocaleData.weekdaysShort(),\n narrowDaysOfWeek: momentLocaleData.weekdaysMin()\n };\n }\n getYear(date) {\n return this.clone(date).year();\n }\n getMonth(date) {\n return this.clone(date).month();\n }\n getDate(date) {\n return this.clone(date).date();\n }\n getDayOfWeek(date) {\n return this.clone(date).day();\n }\n getMonthNames(style) {\n // Moment.js doesn't support narrow month names, so we just use short if narrow is requested.\n return style == 'long' ? this._localeData.longMonths : this._localeData.shortMonths;\n }\n getDateNames() {\n return this._localeData.dates;\n }\n getDayOfWeekNames(style) {\n if (style == 'long') {\n return this._localeData.longDaysOfWeek;\n }\n if (style == 'short') {\n return this._localeData.shortDaysOfWeek;\n }\n return this._localeData.narrowDaysOfWeek;\n }\n getYearName(date) {\n return this.clone(date).format('YYYY');\n }\n getFirstDayOfWeek() {\n return this._localeData.firstDayOfWeek;\n }\n getNumDaysInMonth(date) {\n return this.clone(date).daysInMonth();\n }\n clone(date) {\n return date.clone().locale(this.locale);\n }\n createDate(year, month, date) {\n // Moment.js will create an invalid date if any of the components are out of bounds, but we\n // explicitly check each case so we can throw more descriptive errors.\n if (typeof ngDevMode === 'undefined' || ngDevMode) {\n if (month < 0 || month > 11) {\n throw Error(`Invalid month index \"${month}\". Month index has to be between 0 and 11.`);\n }\n if (date < 1) {\n throw Error(`Invalid date \"${date}\". Date has to be greater than 0.`);\n }\n }\n const result = this._createMoment({\n year,\n month,\n date\n }).locale(this.locale);\n // If the result isn't valid, the date must have been out of bounds for this month.\n if (!result.isValid() && (typeof ngDevMode === 'undefined' || ngDevMode)) {\n throw Error(`Invalid date \"${date}\" for month with index \"${month}\".`);\n }\n return result;\n }\n today() {\n return this._createMoment().locale(this.locale);\n }\n parse(value, parseFormat) {\n if (value && typeof value == 'string') {\n return this._createMoment(value, parseFormat, this.locale);\n }\n return value ? this._createMoment(value).locale(this.locale) : null;\n }\n format(date, displayFormat) {\n date = this.clone(date);\n if (!this.isValid(date) && (typeof ngDevMode === 'undefined' || ngDevMode)) {\n throw Error('MomentDateAdapter: Cannot format invalid date.');\n }\n return date.format(displayFormat);\n }\n addCalendarYears(date, years) {\n return this.clone(date).add({\n years\n });\n }\n addCalendarMonths(date, months) {\n return this.clone(date).add({\n months\n });\n }\n addCalendarDays(date, days) {\n return this.clone(date).add({\n days\n });\n }\n toIso8601(date) {\n return this.clone(date).format();\n }\n /**\n * Returns the given value if given a valid Moment or null. Deserializes valid ISO 8601 strings\n * (https://www.ietf.org/rfc/rfc3339.txt) and valid Date objects into valid Moments and empty\n * string into null. Returns an invalid date for all other values.\n */\n deserialize(value) {\n let date;\n if (value instanceof Date) {\n date = this._createMoment(value).locale(this.locale);\n } else if (this.isDateInstance(value)) {\n // Note: assumes that cloning also sets the correct locale.\n return this.clone(value);\n }\n if (typeof value === 'string') {\n if (!value) {\n return null;\n }\n date = this._createMoment(value, moment.ISO_8601).locale(this.locale);\n }\n if (date && this.isValid(date)) {\n return this._createMoment(date).locale(this.locale);\n }\n return super.deserialize(value);\n }\n isDateInstance(obj) {\n return moment.isMoment(obj);\n }\n isValid(date) {\n return this.clone(date).isValid();\n }\n invalid() {\n return moment.invalid();\n }\n /** Creates a Moment instance while respecting the current UTC settings. */\n _createMoment(date, format, locale) {\n const {\n strict,\n useUtc\n } = this._options || {};\n return useUtc ? moment.utc(date, format, locale, strict) : moment(date, format, locale, strict);\n }\n static {\n this.ɵfac = function MomentDateAdapter_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || MomentDateAdapter)(i0.ɵɵinject(MAT_DATE_LOCALE, 8), i0.ɵɵinject(MAT_MOMENT_DATE_ADAPTER_OPTIONS, 8));\n };\n }\n static {\n this.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: MomentDateAdapter,\n factory: MomentDateAdapter.ɵfac\n });\n }\n }\n return MomentDateAdapter;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nconst MAT_MOMENT_DATE_FORMATS = {\n parse: {\n dateInput: 'l'\n },\n display: {\n dateInput: 'l',\n monthYearLabel: 'MMM YYYY',\n dateA11yLabel: 'LL',\n monthYearA11yLabel: 'MMMM YYYY'\n }\n};\nlet MomentDateModule = /*#__PURE__*/(() => {\n class MomentDateModule {\n static {\n this.ɵfac = function MomentDateModule_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || MomentDateModule)();\n };\n }\n static {\n this.ɵmod = /* @__PURE__ */i0.ɵɵdefineNgModule({\n type: MomentDateModule\n });\n }\n static {\n this.ɵinj = /* @__PURE__ */i0.ɵɵdefineInjector({\n providers: [{\n provide: DateAdapter,\n useClass: MomentDateAdapter,\n deps: [MAT_DATE_LOCALE, MAT_MOMENT_DATE_ADAPTER_OPTIONS]\n }]\n });\n }\n }\n return MomentDateModule;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet MatMomentDateModule = /*#__PURE__*/(() => {\n class MatMomentDateModule {\n static {\n this.ɵfac = function MatMomentDateModule_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || MatMomentDateModule)();\n };\n }\n static {\n this.ɵmod = /* @__PURE__ */i0.ɵɵdefineNgModule({\n type: MatMomentDateModule\n });\n }\n static {\n this.ɵinj = /* @__PURE__ */i0.ɵɵdefineInjector({\n providers: [provideMomentDateAdapter()]\n });\n }\n }\n return MatMomentDateModule;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nfunction provideMomentDateAdapter(formats = MAT_MOMENT_DATE_FORMATS, options) {\n const providers = [{\n provide: DateAdapter,\n useClass: MomentDateAdapter,\n deps: [MAT_DATE_LOCALE, MAT_MOMENT_DATE_ADAPTER_OPTIONS]\n }, {\n provide: MAT_DATE_FORMATS,\n useValue: formats\n }];\n if (options) {\n providers.push({\n provide: MAT_MOMENT_DATE_ADAPTER_OPTIONS,\n useValue: options\n });\n }\n return providers;\n}\n\n/**\n * Generated bundle index. Do not edit.\n */\n\nexport { MAT_MOMENT_DATE_ADAPTER_OPTIONS, MAT_MOMENT_DATE_ADAPTER_OPTIONS_FACTORY, MAT_MOMENT_DATE_FORMATS, MatMomentDateModule, MomentDateAdapter, MomentDateModule, provideMomentDateAdapter };\n"],"mappings":"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","names":["_rollupMoment","import_moment","moment","_rollupMoment__default","MAT_MOMENT_DATE_ADAPTER_OPTIONS","InjectionToken","MAT_MOMENT_DATE_ADAPTER_OPTIONS_FACTORY","range","length","valueFunction","valuesArray","i","MomentDateAdapter","_MomentDateAdapter","DateAdapter","dateLocale","_options","locale","momentLocaleData","date","style","year","month","result","value","parseFormat","displayFormat","years","months","days","obj","format","strict","useUtc","__ngFactoryType__","ɵɵinject","MAT_DATE_LOCALE","ɵɵdefineInjectable","MAT_MOMENT_DATE_FORMATS","MatMomentDateModule","_MatMomentDateModule","__ngFactoryType__","ɵɵdefineNgModule","ɵɵdefineInjector","provideMomentDateAdapter","formats","MAT_MOMENT_DATE_FORMATS","options","providers","DateAdapter","MomentDateAdapter","MAT_DATE_LOCALE","MAT_MOMENT_DATE_ADAPTER_OPTIONS","MAT_DATE_FORMATS"],"x_google_ignoreList":[0]}