{
  "version": 3,
  "sources": ["../../src/ssr/StyleSheetManager.tsx", "../../src/server/registryGuard.ts"],
  "sourcesContent": ["/**\n * Legacy SSR compatibility layer.\n *\n * The former styled-components integration offered helpers for collecting\n * styles during server-side rendering. AuraGlass has fully migrated to a\n * build-time CSS pipeline, so these utilities now no-op while keeping the API\n * surface for consumers that still import from `aura-glass/ssr`.\n */\n\nimport React from \"react\";\n\nexport interface StyleSheet {\n  collectStyles: (children: React.ReactNode) => React.ReactElement;\n  getStyleElement: () => React.ReactElement[];\n  getStyleTags: () => string;\n  seal: () => void;\n  instance: null;\n}\n\nconst createFallbackSheet = (): StyleSheet => ({\n  collectStyles: (children: React.ReactNode) => <>{children}</>,\n  getStyleElement: () => [],\n  getStyleTags: () => \"\",\n  seal: () => undefined,\n  instance: null,\n});\n\nexport function createStyleSheet(): StyleSheet {\n  return createFallbackSheet();\n}\n\nexport function collectStyles(): StyleSheet {\n  return createFallbackSheet();\n}\n\nexport const AuraGlassSSRProvider: React.FC<{ children: React.ReactNode }> = ({\n  children,\n}) => <>{children}</>;\n\nexport function isStyledComponentsSSRReady(): boolean {\n  return true;\n}\n\nexport function getStyledComponentsVersion(): null {\n  return null;\n}\n", "/**\n * Registry helpers are retained for backward compatibility. The design-token\n * architecture no longer requires a runtime stylesheet registry, so these\n * functions are implemented as innocuous no-ops that always report success.\n */\nexport const markStyledRegistryHealthy = (): void => {\n  /* noop */\n};\n\nexport const clearStyledRegistryHealth = (): void => {\n  /* noop */\n};\n\nexport const hasStyledComponentsRegistry = (): boolean => true;\n\nexport const ensureStyledComponentsRegistry = (): void => {\n  /* noop */\n};\n"],
  "mappings": ";AAoBgD;AADhD,IAAM,sBAAsB,OAAmB;AAAA,EAC7C,eAAe,CAAC,aAA8B,gCAAG,UAAS;AAAA,EAC1D,iBAAiB,MAAM,CAAC;AAAA,EACxB,cAAc,MAAM;AAAA,EACpB,MAAM,MAAM;AAAA,EACZ,UAAU;AACZ;AAEO,SAAS,mBAA+B;AAC7C,SAAO,oBAAoB;AAC7B;AAEO,SAAS,gBAA4B;AAC1C,SAAO,oBAAoB;AAC7B;AAEO,IAAM,uBAAgE,CAAC;AAAA,EAC5E;AACF,MAAM,gCAAG,UAAS;AAEX,SAAS,6BAAsC;AACpD,SAAO;AACT;AAEO,SAAS,6BAAmC;AACjD,SAAO;AACT;;;ACxCO,IAAM,4BAA4B,MAAY;AAErD;AAEO,IAAM,4BAA4B,MAAY;AAErD;AAEO,IAAM,8BAA8B,MAAe;AAEnD,IAAM,iCAAiC,MAAY;AAE1D;",
  "names": []
}
