{"version":3,"file":"haveselskabet.bundle.js","sources":["webpack://haveselskabet/./Src/Scripts/architecture/componentRepository.js","webpack://haveselskabet/./Src/Scripts/components/favoritize.js","webpack://haveselskabet/webpack/bootstrap","webpack://haveselskabet/webpack/runtime/define property getters","webpack://haveselskabet/webpack/runtime/ensure chunk","webpack://haveselskabet/webpack/runtime/get javascript chunk filename","webpack://haveselskabet/webpack/runtime/global","webpack://haveselskabet/webpack/runtime/hasOwnProperty shorthand","webpack://haveselskabet/webpack/runtime/load script","webpack://haveselskabet/webpack/runtime/make namespace object","webpack://haveselskabet/webpack/runtime/publicPath","webpack://haveselskabet/webpack/runtime/jsonp chunk loading","webpack://haveselskabet/./Src/Scripts/index.js"],"sourcesContent":["export default class ComponentRepository {\n constructor(componentSourceMap) {\n // The property name is the key used to instantiate the component.\n // The property value is the path of the file (navigated from the scripts folder) excluded the file ending.\n // The order they appear in the sourcemap will affect the order they are instantiated in.\n // Shared components should generally be instantiated before controllers.\n this.componentSourceMap = componentSourceMap;\n\n this.componentClassPromiseMap = {}; // Will hold promises for all for classes needed to instantiate components\n this.globalInstances = {}; // Will hold components with a data-component-id, that can be queried globally\n this.loadedComponents = {}; // Will hold all loaded component instances\n\n // initializedPromise will resolve when the load function has run and all components have been initialized.\n this.initializedPromiseResolve = null;\n this.initializedPromiseReject = null;\n this.initializedPromise = new Promise((resolve, reject) => {\n this.initializedPromiseResolve = resolve;\n this.initializedPromiseReject = reject;\n });\n\n // Load all classes required for the components on the current page.\n for (const componentKey in this.componentSourceMap) {\n if (document.querySelector('[data-component=\"' + componentKey + '\"]') || document.querySelector('[data-preload-component=\"' + componentKey + '\"]')) {\n this.loadComponentClass(componentKey);\n }\n }\n\n this.load(document);\n\n window.addEventListener('new-html-loaded', element => {\n this.load(element.detail);\n })\n }\n\n /*\n * Iterates all elements in the DOM with the 'data-component' attribute,\n * and instantiates the corresponding component.\n * Returns a promise that will resolve when all components have been instantiated or have failed.\n */\n load(elm) {\n const loadComponentsPromiseArray = [];\n elm.querySelectorAll('[data-component]').forEach(c => {\n const componentKey = c.getAttribute('data-component');\n const componentId = c.getAttribute('data-component-id');\n const componentArgs = c.getAttribute('data-component-args');\n if (this.componentClassPromiseMap[componentKey]) {\n const loadPromise = new Promise((resolve, reject) => {\n this.componentClassPromiseMap[componentKey]\n .then(Component => {\n let args = null;\n if (componentArgs) {\n args = JSON.parse(componentArgs);\n }\n\n const newComponentInstance = new Component(c, args);\n\n if (!this.loadedComponents[componentKey]) {\n this.loadedComponents[componentKey] = [];\n }\n this.loadedComponents[componentKey].push(newComponentInstance);\n\n // If the component has a component ID, add it to globalInstances\n if (componentId) {\n this.globalInstances[componentId] = newComponentInstance;\n }\n\n resolve(newComponentInstance);\n })\n .catch(error => {\n console.error('Error instantiating component: ', componentKey, error);\n reject();\n });\n });\n loadComponentsPromiseArray.push(loadPromise);\n } else {\n //Gives warning even when it finds??\n console.warn('unable to find component: ', componentKey);\n }\n });\n\n return Promise.all(loadComponentsPromiseArray)\n .then(() => {\n this.initializedPromiseResolve();\n });\n }\n\n /**\n * Returns a promise that will eventually resolve with\n * the class corresponsing the component key.\n */\n loadComponentClass(key) {\n if (this.componentClassPromiseMap[key]) {\n return this.componentClassPromiseMap[key];\n }\n\n // If the requested class is not specified in the source map, return a failed promise.\n if (!this.componentSourceMap[key])\n {\n return new Promise((resolve, reject) => {\n reject();\n });\n }\n\n this.componentClassPromiseMap[key] = this.componentSourceMap[key]()\n .then(componentLoad => {\n return componentLoad.default;\n });\n return this.componentClassPromiseMap[key];\n }\n\n\n /**\n * Returns a promise that will eventually resolve with\n * a specific instance of a component, based on its ID.\n */\n getGlobalInstance(instanceId) {\n return this.initializedPromise\n .then(() => {\n return instanceId ? this.globalInstances[instanceId] : undefined;\n });\n }\n\n\n /**\n * Returns a promise that will eventually resolve with\n * all instances of a specific type.\n */\n getInstancesOfType(key) {\n return this.initializedPromise\n .then(() => {\n return this.loadedComponents[key];\n });\n }\n}\n","export default class Favoritize {\n constructor(elm, args) {\n window.addEventListener('click', e => {\n var favoritize = e.target.closest('[data-favoritize]');\n if (favoritize) {\n e.preventDefault();\n if (favoritize.classList.contains('favoritize--active')) {\n favoritize.classList.remove('favoritize--active');\n addOrRemoveFromFavourites(false, 0, favoritize.dataset.articleId, 0);\n } else {\n favoritize.classList.add('favoritize--active');\n addOrRemoveFromFavourites(true, 0, favoritize.dataset.articleId, 0)\n }\n }\n });\n\n function addOrRemoveFromFavourites(isFavourite, id, itemId, categoryId) {\n var bodys = {\n \"id\": id,\n \"itemId\": itemId,\n \"categoryId\": categoryId,\n \"isFavoritized\": isFavourite\n };\n if (itemId) {\n fetch(`/Umbraco/surface/Favourite/AddOrRemoveFavourites`, {\n method: 'Post',\n body: JSON.stringify(bodys),\n headers: {\n 'Content-Type': 'application/json',\n },\n })\n .then(response => {\n if (response.status == 302) {\n window.location.href = \"/login\"\n }\n })\n .then(json => {\n });\n }\n }\n }\n}\n","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tif(__webpack_module_cache__[moduleId]) {\n\t\treturn __webpack_module_cache__[moduleId].exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n// expose the modules object (__webpack_modules__)\n__webpack_require__.m = __webpack_modules__;\n\n","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.f = {};\n// This file contains only the entry chunk.\n// The chunk loading function for additional chunks\n__webpack_require__.e = (chunkId) => {\n\treturn Promise.all(Object.keys(__webpack_require__.f).reduce((promises, key) => {\n\t\t__webpack_require__.f[key](chunkId, promises);\n\t\treturn promises;\n\t}, []));\n};","// This function allow to reference async chunks\n__webpack_require__.u = (chunkId) => {\n\t// return url for filenames based on template\n\treturn \"\" + chunkId + \".\" + {\"Src_Scripts_components_top-navigation_js\":\"8ce6f436b3d04f34df7e\",\"vendors-node_modules_bootstrap_js_src_base-component_js-node_modules_bootstrap_js_src_dom_man-aeeb22\":\"51f0794fa7b194c98ee2\",\"vendors-node_modules_bootstrap_js_src_collapse_js\":\"cc127f7ec3443fae6aff\",\"vendors-node_modules_popperjs_core_lib_index_js\":\"e4ea3b20bbaaed3a7407\",\"vendors-node_modules_bootstrap_js_src_dropdown_js\":\"2a210a902a5cbe27ad9d\",\"Src_Scripts_components_hero-swiper_js\":\"c4808635abbe34e5cf8c\",\"vendors-node_modules_swiper_swiper_esm_js\":\"a3734a8b1d7eb87a3b46\",\"Src_Scripts_components_article-swiper_js\":\"5bfb940c7dfb1b0a43e4\",\"Src_Scripts_components_related-articles-swiper_js\":\"f3b7d5d70fb846ccc9f3\",\"Src_Scripts_components_media-swiper_js\":\"927943db722ad3a365bd\",\"Src_Scripts_components_thumbnail-swiper_js\":\"534f63491df65ccdd459\",\"Src_Scripts_components_image-gallery_js\":\"3002e63555185e7ee74e\",\"Src_Scripts_components_accordion_js\":\"93aa0fdeeb78a7826bb1\",\"vendors-node_modules_swiper_swiper-bundle_js\":\"35839c1924211c2e419d\",\"vendors-node_modules_vimeo_player_dist_player_es_js\":\"3ceeaf34152e2234066c\",\"Src_Scripts_components_modal_js\":\"2fbbeadf01a9b773c5af\",\"Src_Scripts_models_map-location-types_map-location_js\":\"7d5e44400c5b51410862\",\"Src_Scripts_components_map_js\":\"0e17c54972f87bbf52e3\",\"Src_Scripts_components_password-reveal_js\":\"3172cfafe2635b29dbc6\",\"Src_Scripts_components_footer-newsletter_js\":\"b7e34f6fdbb7def8caf6\",\"Src_Scripts_components_link-swiper_js\":\"0dfbbffdc5008513d9e3\",\"Src_Scripts_components_article-overview_js\":\"9be0b7edf49e78172707\",\"Src_Scripts_components_share-area_js\":\"562e9c35be1384ed5d5b\",\"Src_Scripts_components_factbox_js\":\"ed9edb6e7ddaa6eb6908\",\"Src_Scripts_components_progress_js\":\"f6c89c84acf795ee3447\",\"Src_Scripts_components_form-elements_js\":\"28be9055e0b25811bbff\",\"Src_Scripts_components_shop-facets_js\":\"693487a4e4bed3328531\",\"Src_Scripts_components_shop-sortproducts_js\":\"5bad9e2432968bc02461\",\"Src_Scripts_components_shop-category-overview_js\":\"743949f9831e333cd6ec\",\"Src_Scripts_components_variant-product_js\":\"1b9b48555e7956f950e5\",\"Src_Scripts_components_google-maps-content-page_js\":\"b0bc3bcd04cb8ea748e9\",\"Src_Scripts_components_events-filterable-map_js\":\"12c0f760f29718dff390\",\"Src_Scripts_components_open-garden-activities-slider_js\":\"83637dcc1fac75690891\",\"vendors-node_modules_color-calendar_dist_bundle_js\":\"916dee7428cde2f2b5f6\",\"Src_Scripts_components_open-garden-calendar_js\":\"caad5be6920bb99070e6\",\"Src_Scripts_components_local-menu-swiper_js\":\"66b733fd3c5d6097f6da\",\"Src_Scripts_components_product-swiper_js\":\"aef1a4927da8e2580a35\",\"Src_Scripts_components_generic-dropdown-container_js\":\"9f02d7def6d7eadc5009\",\"Src_Scripts_components_purchase-membership_js\":\"73060f0d6bf95d1476f2\",\"Src_Scripts_components_tab_js\":\"2ce5c253864e87a10180\",\"vendors-node_modules_easepick_bundle_dist_index_esm_js-node_modules_easepick_range-plugin_dis-cf57c7\":\"d4bdee4bb81ac769431a\",\"Src_Scripts_components_period-picker_js\":\"dcbe6874f363c584b86a\",\"vendors-node_modules_nouislider_dist_nouislider_mjs\":\"ce90cecdcfa015072cd6\",\"Src_Scripts_components_range-picker_js\":\"ebc1943ed86c16a41894\",\"Src_Scripts_components_shop-basket_js\":\"d3bf7d41bb7b88326234\",\"Src_Scripts_components_slider-section-swiper_js\":\"d20adc8f8145469f2b17\",\"Src_Scripts_components_shop-customerinfo_js\":\"d5189ede709554ad3ff4\",\"Src_Scripts_components_mapster_js\":\"2b383dee5e29169fcef1\",\"Src_Scripts_components_sidebanner-ad_js\":\"bc713cd5e8f79b55a9a0\",\"Src_Scripts_components_favorite-list_js\":\"ab536f47535a58bd7eb7\",\"Src_Scripts_components_edit-profile_js\":\"ef0fe1e9c09672826bf5\",\"Src_Scripts_components_shop-shippinginfo_js\":\"967f50452de395ca12fe\",\"Src_Scripts_components_shop-gls-shops-map_js\":\"35313905ae577f2320f4\",\"vendors-node_modules_bootstrap_dist_js_bootstrap_esm_js\":\"b6ffcd2dc0f4cf49fab5\",\"Src_Scripts_components_accordion-nested_js\":\"7955d9b52d6b6f6f1027\",\"Src_Scripts_components_search_js\":\"3209090f5c339db22d75\",\"Src_Scripts_components_top-level-usps_js\":\"de13ad764f36fc6fe695\",\"Src_Scripts_components_my-interests_js\":\"4ea8e1ee50a0b3cacb94\",\"Src_Scripts_components_basket-breadcrumb_js\":\"69f7b18930db8979ab66\",\"Src_Scripts_components_product-info_js\":\"83b9dbaf6b8de8c7937f\",\"Src_Scripts_components_product-image-display_js\":\"8717bd0734cd1d2470c8\",\"Src_Scripts_components_my-garden_js\":\"2e008c9c1a40116dd0d0\",\"Src_Scripts_components_readmore-content_js\":\"e656054e19067e5679f3\",\"Src_Scripts_components_mypage-details_js\":\"33fb41b06b1d7faf8a05\",\"Src_Scripts_components_working-hours_js\":\"34f473cdc61428b76ec2\",\"Src_Scripts_components_household-member_js\":\"13a79de90beda3f90eae\",\"Src_Scripts_components_ret-din-adgangskode_js\":\"44536bcd0b1335cd3e94\",\"Src_Scripts_components_have-grupper_js\":\"fe21759c33429637d55d\",\"Src_Scripts_components_shop-search_js\":\"97dfd7332651de4971e6\",\"Src_Scripts_components_shop-theme_js\":\"8bec2bd278ee53d7f263\",\"Src_Scripts_components_welcome-screen_js\":\"477c1bd14f7cabc9c863\",\"Src_Scripts_components_become-member_js\":\"acae4de50041ca8f18fe\",\"Src_Scripts_components_profile-billeder_js\":\"c34607a58d8701d5b404\",\"Src_Scripts_components_gift-member_js\":\"d4ff10fb1ea126749d87\",\"Src_Scripts_components_overlapping-background_js\":\"a0cdeb69a0267119f211\",\"Src_Scripts_components_changing-themes_js\":\"cdfffa54ba7f025cd627\",\"Src_Scripts_components_my-page-mobile-swiper_js\":\"920fdd6d5889c20dfa04\",\"Src_Scripts_components_my-page-sidebar-mobile-swiper_js\":\"4213cc3de759bcc289e3\",\"Src_Scripts_components_my-page-gardens-image-group-slider_js\":\"4c91ca558b2ee7458692\",\"Src_Scripts_components_my-page-sidebar_js\":\"eb47a2dbdc4eab740fdd\",\"Src_Scripts_components_text-area_js\":\"bc835e9e2cce5747da8e\",\"Src_Scripts_components_order-confirmation_js\":\"3c564ecd2181e7e39e09\",\"Src_Scripts_functionality-classes_tracking_js\":\"011ca66dd06f1d1113f0\"}[chunkId] + \".js\";\n};","__webpack_require__.g = (function() {\n\tif (typeof globalThis === 'object') return globalThis;\n\ttry {\n\t\treturn this || new Function('return this')();\n\t} catch (e) {\n\t\tif (typeof window === 'object') return window;\n\t}\n})();","__webpack_require__.o = (obj, prop) => Object.prototype.hasOwnProperty.call(obj, prop)","var inProgress = {};\nvar dataWebpackPrefix = \"haveselskabet:\";\n// loadScript function to load a script via script tag\n__webpack_require__.l = (url, done, key) => {\n\tif(inProgress[url]) { inProgress[url].push(done); return; }\n\tvar script, needAttach;\n\tif(key !== undefined) {\n\t\tvar scripts = document.getElementsByTagName(\"script\");\n\t\tfor(var i = 0; i < scripts.length; i++) {\n\t\t\tvar s = scripts[i];\n\t\t\tif(s.getAttribute(\"src\") == url || s.getAttribute(\"data-webpack\") == dataWebpackPrefix + key) { script = s; break; }\n\t\t}\n\t}\n\tif(!script) {\n\t\tneedAttach = true;\n\t\tscript = document.createElement('script');\n\n\t\tscript.charset = 'utf-8';\n\t\tscript.timeout = 120;\n\t\tif (__webpack_require__.nc) {\n\t\t\tscript.setAttribute(\"nonce\", __webpack_require__.nc);\n\t\t}\n\t\tscript.setAttribute(\"data-webpack\", dataWebpackPrefix + key);\n\t\tscript.src = url;\n\t}\n\tinProgress[url] = [done];\n\tvar onScriptComplete = (prev, event) => {\n\t\t// avoid mem leaks in IE.\n\t\tscript.onerror = script.onload = null;\n\t\tclearTimeout(timeout);\n\t\tvar doneFns = inProgress[url];\n\t\tdelete inProgress[url];\n\t\tscript.parentNode && script.parentNode.removeChild(script);\n\t\tdoneFns && doneFns.forEach((fn) => fn(event));\n\t\tif(prev) return prev(event);\n\t}\n\t;\n\tvar timeout = setTimeout(onScriptComplete.bind(null, undefined, { type: 'timeout', target: script }), 120000);\n\tscript.onerror = onScriptComplete.bind(null, script.onerror);\n\tscript.onload = onScriptComplete.bind(null, script.onload);\n\tneedAttach && document.head.appendChild(script);\n};","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","__webpack_require__.p = \"/Frontend/Scripts/\";","// no baseURI\n\n// object to store loaded and loading chunks\n// undefined = chunk not loaded, null = chunk preloaded/prefetched\n// Promise = chunk loading, 0 = chunk loaded\nvar installedChunks = {\n\t\"haveselskabet\": 0\n};\n\n\n__webpack_require__.f.j = (chunkId, promises) => {\n\t\t// JSONP chunk loading for javascript\n\t\tvar installedChunkData = __webpack_require__.o(installedChunks, chunkId) ? installedChunks[chunkId] : undefined;\n\t\tif(installedChunkData !== 0) { // 0 means \"already installed\".\n\n\t\t\t// a Promise means \"currently loading\".\n\t\t\tif(installedChunkData) {\n\t\t\t\tpromises.push(installedChunkData[2]);\n\t\t\t} else {\n\t\t\t\tif(true) { // all chunks have JS\n\t\t\t\t\t// setup Promise in chunk cache\n\t\t\t\t\tvar promise = new Promise((resolve, reject) => {\n\t\t\t\t\t\tinstalledChunkData = installedChunks[chunkId] = [resolve, reject];\n\t\t\t\t\t});\n\t\t\t\t\tpromises.push(installedChunkData[2] = promise);\n\n\t\t\t\t\t// start chunk loading\n\t\t\t\t\tvar url = __webpack_require__.p + __webpack_require__.u(chunkId);\n\t\t\t\t\t// create error before stack unwound to get useful stacktrace later\n\t\t\t\t\tvar error = new Error();\n\t\t\t\t\tvar loadingEnded = (event) => {\n\t\t\t\t\t\tif(__webpack_require__.o(installedChunks, chunkId)) {\n\t\t\t\t\t\t\tinstalledChunkData = installedChunks[chunkId];\n\t\t\t\t\t\t\tif(installedChunkData !== 0) installedChunks[chunkId] = undefined;\n\t\t\t\t\t\t\tif(installedChunkData) {\n\t\t\t\t\t\t\t\tvar errorType = event && (event.type === 'load' ? 'missing' : event.type);\n\t\t\t\t\t\t\t\tvar realSrc = event && event.target && event.target.src;\n\t\t\t\t\t\t\t\terror.message = 'Loading chunk ' + chunkId + ' failed.\\n(' + errorType + ': ' + realSrc + ')';\n\t\t\t\t\t\t\t\terror.name = 'ChunkLoadError';\n\t\t\t\t\t\t\t\terror.type = errorType;\n\t\t\t\t\t\t\t\terror.request = realSrc;\n\t\t\t\t\t\t\t\tinstalledChunkData[1](error);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t\t__webpack_require__.l(url, loadingEnded, \"chunk-\" + chunkId);\n\t\t\t\t} else installedChunks[chunkId] = 0;\n\t\t\t}\n\t\t}\n};\n\n// no prefetching\n\n// no preloaded\n\n// no HMR\n\n// no HMR manifest\n\n// no deferred startup\n\n// install a JSONP callback for chunk loading\nvar webpackJsonpCallback = (data) => {\n\tvar [chunkIds, moreModules, runtime] = data;\n\t// add \"moreModules\" to the modules object,\n\t// then flag all \"chunkIds\" as loaded and fire callback\n\tvar moduleId, chunkId, i = 0, resolves = [];\n\tfor(;i < chunkIds.length; i++) {\n\t\tchunkId = chunkIds[i];\n\t\tif(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {\n\t\t\tresolves.push(installedChunks[chunkId][0]);\n\t\t}\n\t\tinstalledChunks[chunkId] = 0;\n\t}\n\tfor(moduleId in moreModules) {\n\t\tif(__webpack_require__.o(moreModules, moduleId)) {\n\t\t\t__webpack_require__.m[moduleId] = moreModules[moduleId];\n\t\t}\n\t}\n\tif(runtime) runtime(__webpack_require__);\n\tparentChunkLoadingFunction(data);\n\twhile(resolves.length) {\n\t\tresolves.shift()();\n\t}\n\n}\n\nvar chunkLoadingGlobal = globalThis[\"webpackChunkhaveselskabet\"] = globalThis[\"webpackChunkhaveselskabet\"] || [];\nvar parentChunkLoadingFunction = chunkLoadingGlobal.push.bind(chunkLoadingGlobal);\nchunkLoadingGlobal.push = webpackJsonpCallback;","import ComponentRepository from \"./architecture/componentRepository\";\nimport Favoritize from \"./components/favoritize\";\n\ndocument.addEventListener(\"DOMContentLoaded\", function () {\n\n new Favoritize(document.body);\n window.cr = new ComponentRepository({\n 'header': () => import('./components/top-navigation'),\n 'accordions': () => import('../../node_modules/bootstrap/js/src/collapse.js'),\n 'dropdown': () => import('../../node_modules/bootstrap/js/src/dropdown.js'),\n 'hero-swiper': () => import('./components/hero-swiper'),\n 'article-swiper': () => import('./components/article-swiper'),\n 'related-articles-swiper': () => import('./components/related-articles-swiper'),\n 'media-swiper': () => import('./components/media-swiper'),\n 'thumbnail-swiper': () => import('./components/thumbnail-swiper'),\n 'image-gallery': () => import('./components/image-gallery'),\n 'accordion': () => import('./components/accordion'),\n 'top-navigation': () => import('./components/top-navigation'),\n 'swiper': () => import('../../node_modules/swiper/swiper-bundle.js'),\n 'modal': () => import('./components/modal'),\n 'map': () => import('./components/map'),\n 'password-reveal': () => import('./components/password-reveal'),\n 'footer-newsletter': () => import('./components/footer-newsletter'),\n 'link-swiper': () => import('./components/link-swiper'),\n 'article-overview': () => import('./components/article-overview'),\n 'favoritize': () => import('./components/favoritize'),\n 'share-area': () => import('./components/share-area'),\n 'factbox': () => import('./components/factbox'),\n 'progress': () => import('./components/progress'),\n 'form-elements': () => import('./components/form-elements'),\n 'shop-facets': () => import('./components/shop-facets'),\n 'shop-sortproducts': () => import('./components/shop-sortproducts'),\n 'shop-category-overview': () => import('./components/shop-category-overview'),\n 'variant-product': () => import('./components/variant-product'),\n 'google-maps-content-page': () => import('./components/google-maps-content-page'),\n 'events-filterable-map': () => import('./components/events-filterable-map'),\n 'open-garden-activities-slider': () => import('./components/open-garden-activities-slider'),\n 'open-garden-calendar': () => import('./components/open-garden-calendar'),\n 'local-menu-swiper': () => import('./components/local-menu-swiper'),\n 'product-swiper': () => import('./components/product-swiper'),\n 'generic-dropdown-container': () => import('./components/generic-dropdown-container'),\n 'purchase-membership': () => import('./components/purchase-membership'),\n 'tab': () => import('./components/tab'),\n 'period-picker': () => import('./components/period-picker'),\n 'range-picker': () => import('./components/range-picker'),\n 'shop-basket': () => import('./components/shop-basket'),\n 'slider-section-swiper': () => import('./components/slider-section-swiper'),\n 'eventPage': () => import('./models/map-location-types/map-location.js'),\n 'shop-customerinfo': () => import('./components/shop-customerinfo'),\n 'mapster': () => import('./components/mapster'),\n 'sidebanner-ad': () => import('./components/sidebanner-ad'),\n 'list-favoritize': () => import('./components/favorite-list'),\n 'edit-profile': () => import('./components/edit-profile.js'),\n 'shop-shippinginfo': () => import('./components/shop-shippinginfo'),\n 'shop-gls-shops-map': () => import('./components/shop-gls-shops-map'),\n 'accordion-nested': () => import('./components/accordion-nested'),\n 'search': () => import('./components/search'),\n 'top-level-usps': () => import('./components/top-level-usps'),\n 'my-interests': () => import('./components/my-interests.js'),\n 'basket-breadcrumb': () => import('./components/basket-breadcrumb'),\n 'product-info': () => import('./components/product-info'),\n 'product-image-display': () => import('./components/product-image-display'),\n 'my-garden': () => import('./components/my-garden.js'),\n 'readmore-content': () => import('./components/readmore-content.js'),\n 'mypage-details': () => import('./components/mypage-details'),\n 'working-hours': () => import('./components/working-hours'),\n 'household-member': () => import('./components/household-member'),\n 'ret-din-adgangskode': () => import('./components/ret-din-adgangskode'),\n 'have-grupper': () => import('./components/have-grupper'),\n 'shop-search': () => import('./components/shop-search'),\n 'shop-theme': () => import('./components/shop-theme'),\n 'welcome-screen': () => import('./components/welcome-screen'),\n 'become-member': () => import('./components/become-member.js'),\n 'profile-billeder': () => import('./components/profile-billeder'),\n 'gift-member': () => import('./components/gift-member.js'),\n 'overlapping-background': () => import('./components/overlapping-background.js'),\n 'changing-themes': () => import('./components/changing-themes.js'),\n 'my-page-mobile-swiper': () => import('./components/my-page-mobile-swiper.js'),\n 'my-page-sidebar-mobile-swiper': () => import('./components/my-page-sidebar-mobile-swiper.js'),\n 'my-page-gardens-image-group-slider': () => import('./components/my-page-gardens-image-group-slider.js'),\n 'my-page-sidebar': () => import('./components/my-page-sidebar.js'),\n 'text-area': () => import('./components/text-area.js'),\n 'order-confirmation': () => import('./components/order-confirmation.js'),\n 'tracking': () => import('./functionality-classes/tracking.js'),\n });\n});\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAAA;;A;;;;;;;;;;;;;;;;;;;ACrIA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAGA;AACA;AACA;AACA;AAAA;;A;;;;ACzCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;ACzBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;ACPA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;ACRA;AACA;AACA;AACA;AACA;;;;;ACJA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;ACPA;;;;;ACAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;ACzCA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;ACNA;;;;;ACAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACzFA;AACA;AAAA;AAEA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;A","sourceRoot":""}