\n\n\n\n","import mod from \"-!../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../node_modules/thread-loader/dist/cjs.js!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./user-avatar.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../node_modules/thread-loader/dist/cjs.js!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./user-avatar.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./user-avatar.vue?vue&type=template&id=b5041b52&scoped=true&\"\nimport script from \"./user-avatar.vue?vue&type=script&lang=js&\"\nexport * from \"./user-avatar.vue?vue&type=script&lang=js&\"\nimport style0 from \"./user-avatar.vue?vue&type=style&index=0&id=b5041b52&lang=scss&scoped=true&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"b5041b52\",\n null\n \n)\n\nexport default component.exports\n\n/* vuetify-loader */\nimport installComponents from \"!../../../node_modules/vuetify-loader/lib/runtime/installComponents.js\"\nimport { VAvatar } from 'vuetify/lib/components/VAvatar';\nimport { VBadge } from 'vuetify/lib/components/VBadge';\nimport { VIcon } from 'vuetify/lib/components/VIcon';\nimport { VImg } from 'vuetify/lib/components/VImg';\nimport { VTooltip } from 'vuetify/lib/components/VTooltip';\ninstallComponents(component, {VAvatar,VBadge,VIcon,VImg,VTooltip})\n","export const PermissionScope = Object.freeze({\n ACCOUNTS: 'accounts',\n BOOKING: 'booking',\n TIMESHEETS: 'timesheets',\n REPLACE_ME: 'replaceMe',\n PENDING_BOOKING: 'pendingBooking',\n})\n","// eslint-disable-next-line no-unused-vars\nimport InteractionType from '@/shared/constants/core/InteractionType'\n// eslint-disable-next-line no-unused-vars\nimport EmitEvent from './emitEvent'\n\n/**\n * Describes an interaction when the user clicks a UI element\n */\nexport default class Interaction {\n /**\n * @param {{type: InteractionType, value: EmitEvent|URL|Object|Function}}\n */\n constructor({ type, value } = {}) {\n /**\n * @type {String}\n * @see {InteractionType} for valid range of values\n */\n this.type = type\n\n /**\n * Contains data required to action interation\n * @type {EmitEvent|URL|Object|Function}\n */\n this.value = value\n }\n\n /**\n * @returns {Boolean}\n */\n isEmitEvent() {\n return this.type === InteractionType.emitEvent\n }\n\n /**\n * @returns {Boolean}\n */\n isRouterLink() {\n return this.type === InteractionType.routerLink\n }\n\n /**\n * @returns {Boolean}\n */\n isExternalLink() {\n return this.type === InteractionType.externalLink\n }\n\n /**\n * @returns {Boolean}\n */\n isFunction() {\n return this.type === InteractionType.function\n }\n\n /**\n * Determines if an interaction is even possible\n * @returns {Boolean}\n */\n isInteractionPossible() {\n return (\n this.isEmitEvent ||\n this.isRouterLink ||\n this.isExternalLink ||\n this.isFunction\n )\n }\n\n /**\n * @returns {EmitEvent}\n */\n getEmitEvent() {\n if (!this.isEmitEvent())\n throw new TypeError('This interaction is not an emit event')\n return this.value\n }\n\n /**\n * @returns {RouterLink}\n */\n getRouterLink() {\n if (!this.isRouterLink())\n throw new TypeError('This interaction is not a router link')\n return this.value\n }\n\n /**\n * @returns {URL}\n */\n getExternalLink() {\n if (!this.isExternalLink())\n throw new TypeError('This interaction is not an external link')\n return this.value\n }\n\n /**\n * @returns {Function}\n */\n getFunction() {\n if (!this.isFunction())\n throw new TypeError('This interaction is not an action function')\n return this.value\n }\n}\n","/**\n *\n * @param {String} time e.g. '09:30'\n * @returns Object e.g. { hours: 8, minutes: 0 }\n */\nexport default function parseTimeStringToObject(time) {\n // e.g. ['09', '30']\n const splitTime = time.split(':')\n\n // If not a valid time, return base value\n if (!splitTime || splitTime.length !== 2) {\n throw new Error(`Invalid time format. Should be HH:mm. Received: ${time}`)\n }\n\n const parseHours = parseInt(splitTime[0])\n const parseMinutes = parseInt(splitTime[1])\n\n if (isNaN(parseHours)) {\n throw new Error(\n `Unable to parse hours time part. Received: ${splitTime[0]}`\n )\n }\n\n if (isNaN(parseMinutes)) {\n throw new Error(\n `Unable to parse minutes time part. Received: ${splitTime[1]}`\n )\n }\n\n return { hours: parseHours, minutes: parseMinutes }\n}\n","const MILLISECONDS_PER_SECOND = 1000\nconst SECONDS_PER_MINUTE = 60\nconst MINUTES_PER_HOUR = 60\nconst HOURS_PER_DAY = 24\nconst DAYS_PER_WEEK = 7\n\nconst MILLISECONDS_PER_MINUTE = MILLISECONDS_PER_SECOND * SECONDS_PER_MINUTE\nconst MILLISECONDS_PER_HOUR = MILLISECONDS_PER_MINUTE * MINUTES_PER_HOUR\nconst MILLISECONDS_PER_DAY = MILLISECONDS_PER_HOUR * HOURS_PER_DAY\nconst MILLISECONDS_PER_WEEK = MILLISECONDS_PER_DAY * DAYS_PER_WEEK\n\nexport default {\n MILLISECONDS_PER_SECOND,\n SECONDS_PER_MINUTE,\n MINUTES_PER_HOUR,\n HOURS_PER_DAY,\n DAYS_PER_WEEK,\n MILLISECONDS_PER_MINUTE,\n MILLISECONDS_PER_HOUR,\n MILLISECONDS_PER_DAY,\n MILLISECONDS_PER_WEEK,\n}\n","import DateTokens from './DateFormatToken'\n\nconst {\n YYYYMMDDWithSlash,\n YYYYMMDDWithDash,\n MMDDYYWithSlash,\n MMDDYYWithDash,\n MMDDYYYYWithSlash,\n MMDDYYYYWithDash,\n DDMMYYYYWithSlash,\n DDMMYYYYWithDash,\n DDMMYYWithSlash,\n DDMMYYWithDash,\n} = DateTokens\n\nexport const AusDateFormats = [\n DDMMYYWithSlash,\n DDMMYYWithDash,\n DDMMYYYYWithSlash,\n DDMMYYYYWithDash,\n YYYYMMDDWithDash,\n YYYYMMDDWithSlash,\n]\n\nexport const USADateFormats = [\n MMDDYYWithSlash,\n MMDDYYWithDash,\n MMDDYYYYWithSlash,\n MMDDYYYYWithDash,\n YYYYMMDDWithDash,\n YYYYMMDDWithSlash,\n]\n","export default {\n computed: {\n getLocale() {\n return this.$i18n.locale\n },\n isUSALoginOrLocation() {\n return this.getLocale === 'en-US'\n },\n isAUSLoginOrLocation() {\n return this.getLocale === 'en-AU'\n },\n },\n}\n","import { mapGetters } from 'vuex'\nimport dayjs from '@/services/date'\nimport parseTimeStringToObject from '@/utils/parse-time-string-to-object'\nimport config from '@/common/config'\nimport { PermissionScope } from '@/shared/constants/permissions/PermissionScope'\nimport formatDate from '@/utils/format-date'\nimport { DayOfWeek } from '@/shared/constants/date/DayOfWeek'\nimport TimeDenominations from '@/shared/constants/date/TimeDenominations'\nimport DateFormatToken from '@/shared/constants/date/DateFormatToken'\nimport {\n AusDateFormats,\n USADateFormats,\n} from '@/shared/constants/date/DateFormats'\nimport { DurationUnits } from '@/shared/constants/date/DurationUnits'\nimport locationMixin from './locationMixin'\n\nconst { SATURDAY, SUNDAY, MONDAY } = DayOfWeek\n\nconst {\n MILLISECONDS_PER_SECOND,\n MILLISECONDS_PER_MINUTE,\n MILLISECONDS_PER_HOUR,\n MILLISECONDS_PER_DAY,\n MILLISECONDS_PER_WEEK,\n} = TimeDenominations\n\nexport default {\n mixins: [locationMixin],\n data: () => ({\n usaShortDateFormat: DateFormatToken.MMDDYYWithSlash,\n ausShortDateFormat: DateFormatToken.DDMMYYWithSlash,\n durationUnits: DurationUnits,\n dateFormatToken: DateFormatToken,\n }),\n computed: {\n ...mapGetters({\n getSelectedClients: 'client/getSelectedClients',\n getAllClientLocationsWithPermission:\n 'auth/getAllClientLocationsWithPermission',\n }),\n dateFormats() {\n return this.isUSALoginOrLocation ? USADateFormats : AusDateFormats\n },\n firstDayOfWeek() {\n return this.isUSALoginOrLocation ? SUNDAY : MONDAY\n },\n compSameDayCutOffObject() {\n try {\n return parseTimeStringToObject(config.get('sameDayBookingCutOffTime'))\n } catch (ex) {\n console.warn(\n 'Failed to parse same day cut off time. Defaulting to 8:00 am'\n )\n return { hours: 8, minutes: 0 }\n }\n },\n /**\n * TODO: Re-write to handle multi-client.\n * Should also be relocated into component as this logic isn't shared\n * and will make the implementation less complex.\n */\n hasAtLeastOneLocationNotPassedSameDayCutOff() {\n const locations = this.getAllClientLocationsWithPermission(\n this.getSelectedClients[0],\n PermissionScope.BOOKING\n )\n\n if (!locations || locations.length < 0) return false\n\n for (const location of locations) {\n if (!this.hasPassedSameDayCutOff(location.timeZone)) return true\n }\n\n return false\n },\n localShortDateFormat() {\n return (\n this.dateFormats.find((format) =>\n [this.ausShortDateFormat, this.usaShortDateFormat].includes(format)\n ) || this.ausShortDateFormat\n )\n },\n },\n methods: {\n /**\n * Returns a new date object\n * @returns {Date}\n */\n getDate(date) {\n return dayjs(date).toDate()\n },\n /**\n * Returns a date object that represents today's date\n * @returns {Date}\n */\n getTodaysDate() {\n return this.getDate()\n },\n /**\n * This indicates whether the date is before the other supplied date-time.\n *\n * ```js\n * this.isBefore('2011-01-01', '2011-01-02') // default milliseconds\n * ```\n *\n * If you want to limit the granularity to a unit other than milliseconds,\n * pass it as the second parameter.\n *\n * In that case, the comparison respects the given unit and the units above.\n *\n * ```js\n * this.isBefore('2011-01-01', '2011-01-02', DurationUnits.MONTH) // compares month and year\n * ```\n *\n * @param {*} dateA\n * @param {*} dateB\n * @param {string?} unit - See {@link DurationUnits} for full list of units\n * @returns {boolean}\n */\n isBefore(dateA, dateB, unit) {\n return dayjs(dateA).isBefore(dayjs(dateB), unit)\n },\n /**\n * Indicates if a date is same or before another date.\n *\n * ```js\n * this.isSameOrBefore('2011-01-01', '2011-01-02', DurationUnits.MONTH) // compares month and year\n * ```\n *\n * @param {*} dateA\n * @param {*} dateB\n * @param {string?} unit - See {@link DurationUnits} for full list of units\n * @returns {boolean}\n */\n isSameOrBefore(dateA, dateB, unit) {\n return dayjs(dateA).isSameOrBefore(dateB, unit)\n },\n /**\n * Indicates if a date is same or after another date.\n *\n * ```js\n * this.isSameOrAfter('2011-01-01', '2011-01-02', DurationUnits.MONTH) // compares month and year\n * ```\n *\n * @param {*} dateA\n * @param {*} dateB\n * @param {string?} unit - See {@link DurationUnits} for full list of units\n * @returns {boolean}\n */\n isSameOrAfter(dateA, dateB, unit) {\n return dayjs(dateA).isSameOrAfter(dateB, unit)\n },\n /**\n * This indicates whether the date object is after the other supplied date-time.\n *\n * ```js\n * this.isAfter('2011-01-02', '2011-01-01') // default milliseconds\n * ```\n *\n * If you want to limit the granularity to a unit other than milliseconds,\n * pass it as the second parameter. In that case the comparision respects\n * the given unit and the units above.\n *\n * ```js\n * this.isAfter('2011-01-02', '2011-01-01', DurationUnits.MONTH) // compares month and year\n * ```\n *\n * @param {*} dateA\n * @param {*} dateB\n * @param {string?} unit - See {@link DurationUnits} for full list of units\n * @returns {boolean}\n */\n isAfter(dateA, dateB, unit) {\n return dayjs(dateA).isAfter(dayjs(dateB), unit)\n },\n /**\n * This indicates whether the date is the same as the other supplied date-time.\n *\n * ```js\n * this.isSame('2011-01-01', '2011-01-01') // default milliseconds\n * ```\n * If you want to limit the granularity to a unit other than milliseconds,\n * pass it as the third parameter.\n *\n * When including a third parameter, it will match all units equal or larger.\n * Passing in month will check month and year.\n * Passing in day will check day, month, and year.\n *\n * ```js\n * this.isSame('2011-01-01', '2011-01-01', DurationUnits.YEAR) // true\n * ```\n *\n * @param {*} dateA\n * @param {*} dateB\n * @param {string?} unit - See {@link DurationUnits} for full list of units\n * @returns\n */\n isSame(dateA, dateB, unit) {\n return dayjs(dateA).isSame(dayjs(dateB), unit)\n },\n /**\n * Returns a date object and sets it to the start of a unit of time.\n *\n * ```js\n * this.startOf('2025-04-01', DurationUnits.YEAR)\n * ```\n *\n * @param {*} date\n * @param {string} unit - See {@link DurationUnits} for full list of units\n * @returns {Date}\n */\n startOf(date, unit) {\n return dayjs(date).startOf(unit).toDate()\n },\n /**\n * This indicates the difference between two date-time in the specified unit.\n *\n * The difference is defaulted to milliseconds if no unit is provided\n *\n * ```js\n * this.diff('2019-01-25', '2018-06-05') // 20214000000 default milliseconds\n * ```\n *\n * To get the difference in another unit of measurement, pass that\n * measurement as the second argument.\n *\n * ```js\n * this.diff('2019-01-25', '2018-06-05', DurationUnits.MONTH) // 7\n * ```\n *\n * @param {*} dateA\n * @param {*} dateB\n * @param {string} unit - See {@link DurationUnits} for full list of units\n * @returns\n */\n diff(dateA, dateB, unit) {\n return dayjs(dateA).diff(dateB, unit)\n },\n /**\n * Generates a duration object that is used in other functions.\n *\n * For example, the humanReadableDuration function\n *\n * Usage:\n * ```js\n * this.duration(this.diff('2019-01-25', '2018-06-05'))\n * ```\n *\n * @param {*} difference\n * @param {string?} unit - See {@link DurationUnits} for full list of units\n * @returns\n */\n duration(difference, unit) {\n return dayjs.duration(difference, unit)\n },\n /**\n * Returns a human readable duration based on the difference between\n * two dates.\n *\n * ```js\n * this.humanReadableDuration('2019-01-25', '2019-01-26') // a day\n * ```\n *\n * Setting the 3rd parameter will set how the difference is compared. Defaults to {@link DurationUnits.DAY}.\n * See `diff()` for more details.\n *\n * Setting the 4th parameter to true will add a suffix to the string\n *\n * ```js\n * this.humanReadableDuration('2019-01-25T10:30:00', '2019-01-25T10:29:00', DurationUnits.MINUTE, true) // a minute ago\n * ```\n *\n * @param {*} dateA\n * @param {*} dateB\n * @param {string?} unit - See {@link DurationUnits} for full list of units (Default: {@link DurationUnits.DAY})\n * @param {boolean?} displaySuffix adds suffix to duration string (e.g. in a minute)\n * @returns {string}\n */\n humanReadableDuration(\n dateA,\n dateB,\n unit = DurationUnits.DAY,\n displaySuffix = false\n ) {\n return this.duration(this.diff(dateA, dateB, unit), unit).humanize(\n displaySuffix\n )\n },\n /**\n * Returns a new date object with a specified amount of time added\n *\n * ```js\n * this.dateAdd('2019-01-25', 1, DurationUnits.DAY) // date object that represents 2019-01-26\n * ```\n *\n * @param {*} date\n * @param {number} amount\n * @param {string} unit - See {@link DurationUnits} for full list of units\n * @returns {Date}\n */\n dateAdd(date, amount, unit) {\n return dayjs(date).add(amount, unit).toDate()\n },\n /**\n * Returns a new date object with a specified amount of time subtracted\n *\n * ```js\n * this.dateSubtract('2019-01-25', 1, DurationUnits.DAY) // date object that represents 2019-01-24\n * ```\n *\n * @param {*} date\n * @param {number} amount\n * @param {string} unit - See {@link DurationUnits} for full list of units\n * @returns {Date}\n */\n dateSubtract(date, amount, unit) {\n return dayjs(date).subtract(amount, unit).toDate()\n },\n formatDate,\n formatDateToFriendlyString(rawDate) {\n const date = typeof rawDate === 'string' ? new Date(rawDate) : rawDate\n const day = date.getDate()\n const month = date.toLocaleString('en-US', { month: 'long' })\n const year = date.getFullYear()\n\n return `${this.getOrdinalSuffix(day)} ${month} ${year}`\n },\n formatTimesToFriendlyDuration(startDate, endDate) {\n const timeFormat = DateFormatToken.Hmm\n\n const startTime = this.formatDate(startDate, timeFormat)\n const endTime = this.formatDate(endDate, timeFormat)\n\n return `${startTime} - ${endTime}`\n },\n convertDateToTimezone(date, tz) {\n return dayjs(date).tz(tz)\n },\n isValidDate(dateStr) {\n if (typeof dateStr !== 'string' || dateStr.length < 8) return false\n\n return dayjs(dateStr, this.dateFormats, true).isValid()\n },\n dateIsWeekday(date) {\n const parsedDate = typeof date === 'string' ? new Date(date) : date\n return ![SATURDAY, SUNDAY].includes(parsedDate.getDay())\n },\n adjustDateToNextWeekday(date) {\n const EXTRA_DAYS_FOR_WEEKEND = {\n [SATURDAY]: 2,\n [SUNDAY]: 1,\n }\n const extraDays = EXTRA_DAYS_FOR_WEEKEND[date.getDay()] || 0\n date.setDate(date.getDate() + extraDays)\n return date\n },\n getDateSpanDuration(startDateStr, endDateStr, durationType) {\n if (!startDateStr || !endDateStr) return null\n\n const startDate = new Date(startDateStr)\n const endDate = new Date(endDateStr)\n\n // Calc absolute diff in ms\n const diffTime = Math.abs(endDate - startDate)\n\n switch (durationType) {\n case 'seconds':\n return Math.ceil(diffTime / MILLISECONDS_PER_SECOND)\n case 'minutes':\n return Math.ceil(diffTime / MILLISECONDS_PER_MINUTE)\n case 'hours':\n return Math.ceil(diffTime / MILLISECONDS_PER_HOUR)\n case 'days':\n return Math.floor(diffTime / MILLISECONDS_PER_DAY)\n case 'weeks':\n return Math.floor(diffTime / MILLISECONDS_PER_WEEK)\n default:\n return Math.floor(diffTime / MILLISECONDS_PER_DAY)\n }\n },\n getOrdinalSuffix(day) {\n // Range where the \"th\" suffix always applies (4 through 20)\n const LOWER_BOUND_TH = 4\n const UPPER_BOUND_TH = 20\n\n if (day >= LOWER_BOUND_TH && day <= UPPER_BOUND_TH) {\n return `${day}th`\n }\n\n // Constants for switch cases (last digit of the day)\n const FIRST_DIGIT = 1\n const SECOND_DIGIT = 2\n const THIRD_DIGIT = 3\n\n switch (day % 10) {\n case FIRST_DIGIT:\n return `${day}st`\n case SECOND_DIGIT:\n return `${day}nd`\n case THIRD_DIGIT:\n return `${day}rd`\n default:\n return `${day}th`\n }\n },\n hasPassedSameDayCutOff(timezone) {\n const today = dayjs().tz(timezone)\n const cutOff = dayjs()\n .tz(timezone)\n .startOf('day')\n .add(this.compSameDayCutOffObject)\n\n return today.isAfter(cutOff)\n },\n isDateOnWeekend(date) {\n const { SATURDAY, SUNDAY } = DayOfWeek\n const parsedDate = typeof date === 'string' ? new Date(date) : date\n\n return [SATURDAY, SUNDAY].includes(dayjs(parsedDate).day())\n },\n },\n}\n","/**\n * List of units available from https://day.js.org/docs/en/display/difference\n */\nexport const DurationUnits = Object.freeze({\n DAY: 'd',\n WEEK: 'w',\n QUARTER: 'Q',\n MONTH: 'M',\n YEAR: 'y',\n HOUR: 'h',\n MINUTE: 'm',\n SECOND: 's',\n MILLISECOND: 'ms',\n})\n","export default class VueErrorDTO {\n constructor({ err, vm, info } = {}) {\n /**\n * @type {Object} complete error trace, contains the `message` and `error stack`\n */\n this.err = err\n\n /**\n * @type {Object} Vue component/instance in which error is occurred\n */\n this.vm = vm\n\n /**\n * @type {Object} info Vue specific error information such as lifecycle hooks, events etc.\n */\n this.info = info\n }\n}\n","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.offlineConfirmed)?_c('Layout',[_c('h1',{class:_vm.$style.title},[_vm._v(\" The page timed out while loading. Are you sure you're still connected to the Internet? \")])]):_c('LoadingView')}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n \n
\n The page timed out while loading. Are you sure you're still connected to\n the Internet?\n
\n \n \n\n\n\n","import mod from \"-!../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../node_modules/thread-loader/dist/cjs.js!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./_timeout.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../node_modules/thread-loader/dist/cjs.js!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./_timeout.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./_timeout.vue?vue&type=template&id=c7520ae8&\"\nimport script from \"./_timeout.vue?vue&type=script&lang=js&\"\nexport * from \"./_timeout.vue?vue&type=script&lang=js&\"\nimport style0 from \"./_timeout.vue?vue&type=style&index=0&lang=scss&module=true&\"\n\n\n\n\nfunction injectStyles (context) {\n \n this[\"$style\"] = (style0.locals || style0)\n\n}\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n injectStyles,\n null,\n null\n \n)\n\nexport default component.exports","import { nanoid } from 'nanoid'\n\n/**\n * @property {String} id - id of the table item\n */\n\nexport default class SimpleTableItem {\n constructor() {\n this.id = nanoid()\n\n /**\n * Whether the table item is removed or not (only relevant if removable prop active)\n * @type {Boolean}\n */\n this.removed = false\n }\n}\n","export default class StoreErrorDTO {\n constructor({ err, module, errorResponse, logIpAddress = false } = {}) {\n /**\n * @type {Error} complete error trace, contains the `message` and `error stack`\n */\n this.err = err\n\n /**\n * @type {String} Name of module the error occurred in\n */\n this.module = module\n\n /**\n * @type {ErrorResponse} Object that determines which error page to display based on error returned from response\n */\n this.errorResponse = errorResponse\n\n /**\n * @type {Boolean} Indicates whether or not to log the user's IP address\n */\n this.logIpAddress = logIpAddress\n }\n}\n","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('section',{class:[_vm.isMobileViewPort ? 'mb-4' : 'mb-8', 'd-flex align-center mt-3']},[_vm._t(\"leftAction\"),_c('header',[(_vm.subtitleOnTop)?_c('h4',{class:_vm.subtitleClass,attrs:{\"id\":\"page-subtitle\"}},[_vm._v(\" \"+_vm._s(_vm.subtitle)+\" \")]):_vm._e(),_vm._t(\"title\",[_c('h2',{class:[\n !_vm.isMobileViewPort ? ((_vm.textClass.h5) + \" d-inline-block\") : _vm.textClass.h6,\n _vm.subtitleOnTop ? 'mt-0 mb-8' : 'mb-0' ],attrs:{\"id\":\"page-title\"}},[_vm._v(\" \"+_vm._s(_vm.title)+\" \")]),_vm._t(\"appendTitle\")]),_vm._t(\"bottomSubtitle\",[(!_vm.subtitleOnTop)?_c('h4',{class:_vm.subtitleClass,attrs:{\"id\":\"page-subtitle\"}},[_vm._v(\" \"+_vm._s(_vm.subtitle)+\" \")]):_vm._e()])],2)],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n \n \n \n
\n {{ subtitle }}\n
\n \n
\n {{ title }}\n
\n \n \n \n
\n {{ subtitle }}\n
\n \n \n \n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./_base-page-title.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./_base-page-title.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./_base-page-title.vue?vue&type=template&id=093bc5ec&\"\nimport script from \"./_base-page-title.vue?vue&type=script&lang=js&\"\nexport * from \"./_base-page-title.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports"],"sourceRoot":""}