docs: finalized wiki integrity maintenance (v3.0 standard) - pruned 1400+ stubs and fixed 11k+ ghost links

This commit is contained in:
Antigravity Agent
2026-05-02 09:18:34 +09:00
parent c84dcb8371
commit 6445fcc05b
13150 changed files with 55394 additions and 100862 deletions
@@ -1,4 +1,4 @@
# [[Styled Components v6]]
# [[Styled Components v6|Styled Components v6]]
## 📌 Brief Summary
Styled Components v6는 React 프로젝트에서 널리 사용되는 CSS-in-JS 라이브러리의 주요 메이저 업데이트 버전입니다 [1, 2]. 이 버전은 TypeScript로 완전히 재작성되고 내부 CSS 파서로 Stylis v4를 채택하여 구조적인 혁신을 이루었습니다 [3, 4]. 또한 자동 Prop 필터링을 제거하고 Transient Props(`$`)를 도입했으며 [3, 5], 최신 업데이트(v6.3.0 이상)를 통해 React Server Components(RSC) 환경을 기본적으로 지원하여 런타임 테마의 한계를 극복하는 데 중점을 두었습니다 [6, 7].
@@ -10,8 +10,8 @@ Styled Components v6는 React 프로젝트에서 널리 사용되는 CSS-in-JS
* **API 정리 및 엔진 변경:** 구버전의 `$as``$forwardedAs` prop은 제거되었고, `as``forwardedAs` prop으로 완전히 대체되었습니다 [3, 8]. 또한 `disableVendorPrefixes` 속성이 `enableVendorPrefixes`로 교체되어, 이전 브라우저 지원을 위한 자동 벤더 프리픽스(vendor prefixing) 기능이 기본적으로 비활성화되었습니다 [3]. 내부 CSS 파서 엔진은 stylis v4로 업그레이드되었습니다 [3, 4].
## 🔗 Knowledge Connections
- **Related Topics:** [[CSS-in-JS]], [[React Server Components]], [[Transient Props]], [[Tailwind CSS]]
- **Projects/Contexts:** [[Next.js App Router]], [[Scalable Frontend Architecture]]
- **Related Topics:** [[CSS-in-JS|CSS-in-JS]], [[React Server Components|React Server Components]], Transient Props, [[Tailwind CSS|Tailwind CSS]]
- **Projects/Contexts:** [[Next.js App Router|Next.js App Router]], [[Scalable Frontend Architecture|Scalable Frontend Architecture]]
- **Contradictions/Notes:** 소스에 포함된 일부 아티클은 Styled Components가 React Context에 의존하기 때문에 React Server Components(RSC) 환경과 근본적으로 호환되지 않아 Next.js App Router 프로젝트에 부적합하다고 주장합니다 [17-19]. 그러나 Styled Components의 공식 릴리스 노트에 따르면 v6.3.0부터 RSC 환경을 공식 지원하며 [7], v6.4.0의 `createTheme`을 통한 CSS 변수 접근 방식을 사용하여 Context 부재로 인한 런타임 한계를 구조적으로 극복하고 있습니다 [6, 7, 16].
---