Heeryong Kang
Heeryong Kang
as-is ```ts const someContext = createContext({ stringValue: '', functionValue: noop, }) function useSomeContext() { const context = useContext(someContext) return context } ``` to-be ```ts const someContext = createContext(undefined) function useSomeContext()...
경우에 따라 컴포넌트를 Uncontrolled로 사용하면 코드량을 줄일 수 있을 수 있습니다. 아래 컴포넌트들은 지금은 controlled로 사용해야 하는 컴포넌트들이지만 uncontrolled로도 사용할 수 있게 개선해봅니다. `open, active`가 필요한 컴포넌트 - [ ]...
## PR 설명 RecommendedArticles의 carousel이 circular하지 않도록 수정 ## 변경 내역 - FlickingCarousel의 options가 기본값에 merge될 수 있도록 수정 - RecommendedArticles의 carousel이 circular하지 않도록 수정 - 캐러셀에 아이템 개수가 적어도...
## PR 설명 i18next 대신 react-i18next 사용 ## 변경 내역 리액트 context가 필요하므로 i18next 대신 react-i18next 사용
v14 버그 수정
## PR 설명 v14 버그 수정 ## 변경 내역 tds-ui / Input 파일 prop 타입 수정 rollup-plugin-preserve-directives 추가 i18n provider 제거 context에 use client directive 추가
## PR 설명 i18next 제거 & triple-web에 i18n context 추가 ## 변경 내역 - i18next를 app router에서 사용하기 어려워 i18next를 제거합니다. - TripleWeb에 i18n provider를 추가합니다. - defaultLocale은 required, locale은...