{"version":3,"file":"components--C6sh-Q19.js","sources":["../../../../../node_modules/nuxt/dist/head/runtime/components.js"],"sourcesContent":["import { defineComponent, inject, onUnmounted, provide, reactive } from \"vue\";\nimport { useHead } from \"#app/composables/head\";\nconst HeadComponentCtxSymbol = Symbol(\"head-component\");\nconst TagPositionProps = {\n /**\n * @deprecated Use tagPosition\n */\n body: { type: Boolean, default: void 0 },\n tagPosition: { type: String }\n};\nconst normalizeProps = (_props) => {\n const props = Object.fromEntries(\n Object.entries(_props).filter(([_, value]) => value !== void 0)\n );\n if (typeof props.body !== \"undefined\") {\n props.tagPosition = props.body ? \"bodyClose\" : \"head\";\n }\n if (typeof props.renderPriority !== \"undefined\") {\n props.tagPriority = props.renderPriority;\n }\n return props;\n};\nfunction useHeadComponentCtx() {\n return inject(HeadComponentCtxSymbol, createHeadComponentCtx, true);\n}\nfunction createHeadComponentCtx() {\n const prev = inject(HeadComponentCtxSymbol, null);\n if (prev) {\n return prev;\n }\n const input = reactive({});\n const entry = useHead(input);\n const ctx = { input, entry };\n provide(HeadComponentCtxSymbol, ctx);\n return ctx;\n}\nconst globalProps = {\n accesskey: String,\n autocapitalize: String,\n autofocus: {\n type: Boolean,\n default: void 0\n },\n class: { type: [String, Object, Array], default: void 0 },\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: { type: [String, Object, Array], default: void 0 },\n tabindex: String,\n title: String,\n translate: String,\n /**\n * @deprecated Use tagPriority\n */\n renderPriority: [String, Number],\n /**\n * Unhead prop to modify the priority of the tag.\n */\n tagPriority: { type: [String, Number] }\n};\nexport const NoScript = defineComponent({\n name: \"NoScript\",\n inheritAttrs: false,\n props: {\n ...globalProps,\n ...TagPositionProps,\n title: String\n },\n setup(props, { slots }) {\n const { input } = useHeadComponentCtx();\n input.noscript ||= [];\n const idx = input.noscript.push({}) - 1;\n onUnmounted(() => input.noscript[idx] = null);\n return () => {\n const noscript = normalizeProps(props);\n const slotVnodes = slots.default?.();\n const textContent = slotVnodes ? slotVnodes.filter(({ children }) => children).map(({ children }) => children).join(\"\") : \"\";\n if (textContent) {\n noscript.innerHTML = textContent;\n }\n input.noscript[idx] = noscript;\n return null;\n };\n }\n});\nexport const Link = defineComponent({\n name: \"Link\",\n inheritAttrs: false,\n props: {\n ...globalProps,\n ...TagPositionProps,\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 },\n setup(props) {\n const { input } = useHeadComponentCtx();\n input.link ||= [];\n const idx = input.link.push({}) - 1;\n onUnmounted(() => input.link[idx] = null);\n return () => {\n input.link[idx] = normalizeProps(props);\n return null;\n };\n }\n});\nexport const Base = defineComponent({\n name: \"Base\",\n inheritAttrs: false,\n props: {\n ...globalProps,\n href: String,\n target: String\n },\n setup(props) {\n const { input } = useHeadComponentCtx();\n onUnmounted(() => input.base = null);\n return () => {\n input.base = normalizeProps(props);\n return null;\n };\n }\n});\nexport const Title = defineComponent({\n name: \"Title\",\n inheritAttrs: false,\n setup(_, { slots }) {\n const { input } = useHeadComponentCtx();\n onUnmounted(() => input.title = null);\n return () => {\n const defaultSlot = slots.default?.();\n input.title = defaultSlot?.[0]?.children ? String(defaultSlot?.[0]?.children) : void 0;\n if (import.meta.dev) {\n if (defaultSlot && (defaultSlot.length > 1 || defaultSlot[0] && typeof defaultSlot[0].children !== \"string\")) {\n console.error(\"