{"version":3,"file":"B8IWh6UL.js","sources":["../../../../node_modules/nuxt/dist/head/runtime/components.js","../../../../src/components/layout/HeadAttributes.vue"],"sourcesContent":["import { defineComponent } from \"vue\";\nimport { useHead } from \"@unhead/vue\";\nconst removeUndefinedProps = (props) => {\n const filteredProps = /* @__PURE__ */ Object.create(null);\n for (const key in props) {\n const value = props[key];\n if (value !== void 0) {\n filteredProps[key] = value;\n }\n }\n return filteredProps;\n};\nconst setupForUseMeta = (metaFactory, renderChild) => (props, ctx) => {\n useHead(() => metaFactory({ ...removeUndefinedProps(props), ...ctx.attrs }, ctx));\n return () => renderChild ? ctx.slots.default?.() : null;\n};\nconst globalProps = {\n accesskey: String,\n autocapitalize: String,\n autofocus: {\n type: Boolean,\n default: void 0\n },\n class: [String, Object, Array],\n contenteditable: {\n type: Boolean,\n default: void 0\n },\n contextmenu: String,\n dir: String,\n draggable: {\n type: Boolean,\n default: void 0\n },\n enterkeyhint: String,\n exportparts: String,\n hidden: {\n type: Boolean,\n default: void 0\n },\n id: String,\n inputmode: String,\n is: String,\n itemid: String,\n itemprop: String,\n itemref: String,\n itemscope: String,\n itemtype: String,\n lang: String,\n nonce: String,\n part: String,\n slot: String,\n spellcheck: {\n type: Boolean,\n default: void 0\n },\n style: String,\n tabindex: String,\n title: String,\n translate: String\n};\nexport const NoScript = defineComponent({\n name: \"NoScript\",\n inheritAttrs: false,\n props: {\n ...globalProps,\n title: String,\n body: Boolean,\n renderPriority: [String, Number]\n },\n setup: setupForUseMeta((props, { slots }) => {\n const noscript = { ...props };\n const slotVnodes = slots.default?.();\n const textContent = slotVnodes ? slotVnodes.filter(({ children }) => children).map(({ children }) => children).join(\"\") : \"\";\n if (textContent) {\n noscript.children = textContent;\n }\n return {\n noscript: [noscript]\n };\n })\n});\nexport const Link = defineComponent({\n // eslint-disable-next-line vue/no-reserved-component-names\n name: \"Link\",\n inheritAttrs: false,\n props: {\n ...globalProps,\n as: String,\n crossorigin: String,\n disabled: Boolean,\n fetchpriority: String,\n href: String,\n hreflang: String,\n imagesizes: String,\n imagesrcset: String,\n integrity: String,\n media: String,\n prefetch: {\n type: Boolean,\n default: void 0\n },\n referrerpolicy: String,\n rel: String,\n sizes: String,\n title: String,\n type: String,\n /** @deprecated **/\n methods: String,\n /** @deprecated **/\n target: String,\n body: Boolean,\n renderPriority: [String, Number]\n },\n setup: setupForUseMeta((link) => ({\n link: [link]\n }))\n});\nexport const Base = defineComponent({\n // eslint-disable-next-line vue/no-reserved-component-names\n name: \"Base\",\n inheritAttrs: false,\n props: {\n ...globalProps,\n href: String,\n target: String\n },\n setup: setupForUseMeta((base) => ({\n base\n }))\n});\nexport const Title = defineComponent({\n // eslint-disable-next-line vue/no-reserved-component-names\n name: \"Title\",\n inheritAttrs: false,\n setup: setupForUseMeta((_, { slots }) => {\n if (import.meta.dev) {\n const defaultSlot = slots.default?.();\n if (defaultSlot && (defaultSlot.length > 1 || typeof defaultSlot[0].children !== \"string\")) {\n console.error(\"