{"version":3,"file":"ThemeProvider-CDoJsRl0.js","sources":["../../../../libs/utils/src/dom/styles.ts","../../../../libs/ui-xc/src/components/ThemeProvider.tsx"],"sourcesContent":["export const downloadPostData = (blob: Blob, extension = 'csv') => {\n const link = document.createElement('a')\n link.href = window.URL.createObjectURL(blob)\n link.download = `data.${extension}`\n link.click()\n}\n\nexport const injectStyle = (id: string, textContent: string) => {\n let style = document.getElementById(id) as HTMLStyleElement | null\n if (!style) {\n style = document.createElement('style')\n style.setAttribute('id', id)\n document.getElementsByTagName('head')[0].appendChild(style)\n }\n if (textContent) {\n style.textContent = textContent\n }\n return style\n}\n","import {useEffect} from 'react'\nimport {twJoin} from 'tailwind-merge'\n\nimport {injectStyle, IS_TEST} from '@sdox/utils/dom'\n\nimport type {XcThemeFragment} from '@sdox/api'\nimport type {ReactNode} from 'react'\n\nconst structureTokensClass = 'structure-tokens'\n\nexport interface ThemeOnElementByIdHookProps {\n elementId?: string\n themeId?: string\n}\n\nexport const useThemeOnElementById = ({elementId, themeId}: ThemeOnElementByIdHookProps) => {\n useEffect(() => {\n if (elementId && themeId) {\n const el = document.getElementById(elementId)\n const className = `theme-${themeId} ${structureTokensClass}`\n if (el && !el.className.includes(className)) {\n el.className = className\n }\n }\n }, [elementId, themeId])\n}\n\nexport interface DocumentThemeProps {\n children?: ReactNode\n xcTheme?: XcThemeFragment | null\n className?: string\n}\n\nexport const ThemeProvider = ({children, className, xcTheme}: DocumentThemeProps) => {\n const {id, cssHeader, cssVariablesStr} = xcTheme ?? {}\n const themeId = `theme-${id}`\n const styleContent = [\n cssHeader,\n `.${themeId}`,\n `{${cssVariablesStr}};`,\n ].filter(Boolean).join(' ')\n\n useEffect(() => {\n if (styleContent) {\n injectStyle(themeId, styleContent)\n }\n }, [xcTheme, styleContent, themeId])\n\n return (\n