{"version":3,"names":["processAriaObject","ariaObj","componentName","ariaPropertyName","indexOf","replace","JSON","parse","error","console","Object","fromEntries","entries","map","property","value","processedName","camelToKebabCase"],"sources":["../src/utils/aria-object.ts"],"sourcesContent":["import { camelToKebabCase } from './camel-to-kebab-case';\n\nexport interface AriaObject {\n\t[property: string]: string;\n}\n\nexport const processAriaObject = (ariaObj: AriaObject | string, componentName: string, ariaPropertyName: string) => {\n\tif (!ariaObj) return {};\n\n\tif (typeof ariaObj === 'string') {\n\t\t// Convert single quotes to double quotes for each of use in HTML\n\t\tif (ariaObj.indexOf('\"') === -1) {\n\t\t\tariaObj = ariaObj.replace(/'/g, '\"');\n\t\t}\n\n\t\ttry {\n\t\t\tariaObj = JSON.parse(ariaObj);\n\t\t} catch (error) {\n\t\t\tconsole.error(`${componentName}: could not parse '${ariaPropertyName}' property value '${ariaObj}'`, error);\n\t\t\treturn {};\n\t\t}\n\t}\n\n\treturn Object.fromEntries(\n\t\tObject.entries(ariaObj).map(([property, value]) => {\n\t\t\tconst processedName = `aria-${camelToKebabCase(property)}`;\n\t\t\treturn [processedName, value];\n\t\t}),\n\t);\n};\n"],"mappings":"0CAMaA,EAAoB,CAACC,EAA8BC,EAAuBC,KACtF,IAAKF,EAAS,MAAO,GAErB,UAAWA,IAAY,SAAU,CAEhC,GAAIA,EAAQG,QAAQ,QAAU,EAAG,CAChCH,EAAUA,EAAQI,QAAQ,KAAM,I,CAGjC,IACCJ,EAAUK,KAAKC,MAAMN,E,CACpB,MAAOO,GACRC,QAAQD,MAAM,GAAGN,uBAAmCC,sBAAqCF,KAAYO,GACrG,MAAO,E,EAIT,OAAOE,OAAOC,YACbD,OAAOE,QAAQX,GAASY,KAAI,EAAEC,EAAUC,MACvC,MAAMC,EAAgB,QAAQC,EAAiBH,KAC/C,MAAO,CAACE,EAAeD,EAAM,IAE9B,S","ignoreList":[]}