{"version":3,"file":"BMqh8L9e.js","sources":["../../../../../node_modules/nuxt/dist/app/composables/id.js"],"sourcesContent":["import { getCurrentInstance, inject } from \"vue\";\nimport { useNuxtApp } from \"../nuxt.js\";\nimport { clientOnlySymbol } from \"#app/components/client-only\";\nconst ATTR_KEY = \"data-n-ids\";\nconst SEPARATOR = \"-\";\nexport function useId(key) {\n if (typeof key !== \"string\") {\n throw new TypeError(\"[nuxt] [useId] key must be a string.\");\n }\n key = `n${key.slice(1)}`;\n const nuxtApp = useNuxtApp();\n const instance = getCurrentInstance();\n if (!instance) {\n throw new TypeError(\"[nuxt] `useId` must be called within a component setup function.\");\n }\n nuxtApp._id ||= 0;\n instance._nuxtIdIndex ||= {};\n instance._nuxtIdIndex[key] ||= 0;\n const instanceIndex = key + SEPARATOR + instance._nuxtIdIndex[key]++;\n if (import.meta.server) {\n const ids = JSON.parse(instance.attrs[ATTR_KEY] || \"{}\");\n ids[instanceIndex] = key + SEPARATOR + nuxtApp._id++;\n instance.attrs[ATTR_KEY] = JSON.stringify(ids);\n return ids[instanceIndex];\n }\n if (nuxtApp.payload.serverRendered && nuxtApp.isHydrating && !inject(clientOnlySymbol, false)) {\n const el = instance.vnode.el?.nodeType === 8 && instance.vnode.el?.nextElementSibling?.getAttribute ? instance.vnode.el?.nextElementSibling : instance.vnode.el;\n const ids = JSON.parse(el?.getAttribute?.(ATTR_KEY) || \"{}\");\n if (ids[instanceIndex]) {\n return ids[instanceIndex];\n }\n if (import.meta.dev && instance.vnode.type && typeof instance.vnode.type === \"object\" && \"inheritAttrs\" in instance.vnode.type && instance.vnode.type.inheritAttrs === false) {\n console.warn(\"[nuxt] `useId` might not work correctly with components that have `inheritAttrs: false`.\");\n }\n }\n return key + \"_\" + nuxtApp._id++;\n}\n"],"names":["ATTR_KEY","SEPARATOR","useId","key","nuxtApp","useNuxtApp","instance","getCurrentInstance","_a","instanceIndex","inject","clientOnlySymbol","el","_b","_d","_c","_e","ids","_f"],"mappings":"0DAGA,MAAMA,EAAW,aACXC,EAAY,IACX,SAASC,EAAMC,EAAK,iBACzB,GAAI,OAAOA,GAAQ,SACjB,MAAM,IAAI,UAAU,sCAAsC,EAE5DA,EAAM,IAAIA,EAAI,MAAM,CAAC,CAAC,GACtB,MAAMC,EAAUC,IACVC,EAAWC,IACjB,GAAI,CAACD,EACH,MAAM,IAAI,UAAU,kEAAkE,EAExFF,EAAQ,MAARA,EAAQ,IAAQ,GAChBE,EAAS,eAATA,EAAS,aAAiB,KAC1BE,EAAAF,EAAS,cAATH,KAAAK,EAAAL,GAA+B,GAC/B,MAAMM,EAAgBN,EAAMF,EAAYK,EAAS,aAAaH,CAAG,IAOjE,GAAIC,EAAQ,QAAQ,gBAAkBA,EAAQ,aAAe,CAACM,EAAOC,EAAkB,EAAK,EAAG,CAC7F,MAAMC,IAAKC,EAAAP,EAAS,MAAM,KAAf,YAAAO,EAAmB,YAAa,KAAKC,GAAAC,EAAAT,EAAS,MAAM,KAAf,YAAAS,EAAmB,qBAAnB,MAAAD,EAAuC,eAAeE,EAAAV,EAAS,MAAM,KAAf,YAAAU,EAAmB,mBAAqBV,EAAS,MAAM,GACvJW,EAAM,KAAK,QAAMC,EAAAN,GAAA,YAAAA,EAAI,eAAJ,YAAAM,EAAA,KAAAN,EAAmBZ,KAAa,IAAI,EAC3D,GAAIiB,EAAIR,CAAa,EACnB,OAAOQ,EAAIR,CAAa,CAK3B,CACD,OAAON,EAAM,IAAMC,EAAQ,KAC7B","x_google_ignoreList":[0]}