{"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(\" can take only one string in its default slot.\");\n }\n }\n return null;\n };\n }\n});\nexport const Meta = defineComponent({\n name: \"Meta\",\n inheritAttrs: false,\n props: {\n ...globalProps,\n charset: String,\n content: String,\n httpEquiv: String,\n name: String,\n property: String\n },\n setup(props) {\n const { input } = useHeadComponentCtx();\n input.meta ||= [];\n const idx = input.meta.push({}) - 1;\n onUnmounted(() => input.meta[idx] = null);\n return () => {\n const meta = { \"http-equiv\": props.httpEquiv, ...normalizeProps(props) };\n if (\"httpEquiv\" in meta) {\n delete meta.httpEquiv;\n }\n input.meta[idx] = meta;\n return null;\n };\n }\n});\nexport const Style = defineComponent({\n name: \"Style\",\n inheritAttrs: false,\n props: {\n ...globalProps,\n ...TagPositionProps,\n type: String,\n media: String,\n nonce: String,\n title: String,\n /** @deprecated **/\n scoped: {\n type: Boolean,\n default: void 0\n }\n },\n setup(props, { slots }) {\n const { input } = useHeadComponentCtx();\n input.style ||= [];\n const idx = input.style.push({}) - 1;\n onUnmounted(() => input.style[idx] = null);\n return () => {\n const style = normalizeProps(props);\n const textContent = slots.default?.()?.[0]?.children;\n if (textContent) {\n if (import.meta.dev && typeof textContent !== \"string\") {\n console.error(\"<Style> can only take a string in its default slot.\");\n }\n input.style[idx] = style;\n style.textContent = textContent;\n }\n return null;\n };\n }\n});\nexport const Head = defineComponent({\n name: \"Head\",\n inheritAttrs: false,\n setup: (_props, ctx) => {\n createHeadComponentCtx();\n return () => ctx.slots.default?.();\n }\n});\nexport const Html = defineComponent({\n name: \"Html\",\n inheritAttrs: false,\n props: {\n ...globalProps,\n manifest: String,\n version: String,\n xmlns: String\n },\n setup(_props, ctx) {\n const { input } = useHeadComponentCtx();\n onUnmounted(() => input.htmlAttrs = null);\n return () => {\n input.htmlAttrs = { ..._props };\n return ctx.slots.default?.();\n };\n }\n});\nexport const Body = defineComponent({\n name: \"Body\",\n inheritAttrs: false,\n props: globalProps,\n setup(_props, ctx) {\n const { input } = useHeadComponentCtx();\n onUnmounted(() => input.bodyAttrs = null);\n return () => {\n input.bodyAttrs = { ..._props };\n return ctx.slots.default?.();\n };\n }\n});\n"],"names":["HeadComponentCtxSymbol","TagPositionProps","normalizeProps","_props","props","_","value","useHeadComponentCtx","inject","createHeadComponentCtx","prev","input","reactive","entry","useHead","ctx","provide","globalProps","defineComponent","slots","idx","onUnmounted","noscript","slotVnodes","_a","textContent","children","Title","defaultSlot","_b","_c","meta","style","Head"],"mappings":"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","x_google_ignoreList":[0]}