Version Packages - #704
Open
github-actions[bot] wants to merge 1 commit into
Open
Version Packages#704github-actions[bot] wants to merge 1 commit into
github-actions[bot] wants to merge 1 commit into
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
Important Review skippedBot user detected. To trigger a single review, invoke the ⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Advanced Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
github-actions
Bot
force-pushed
the
changeset-release/dev
branch
from
September 18, 2026 06:57
71f1e4e to
c53bf3f
Compare
github-actions
Bot
force-pushed
the
changeset-release/dev
branch
from
September 20, 2026 13:32
c53bf3f to
4fbe3e4
Compare
github-actions
Bot
force-pushed
the
changeset-release/dev
branch
from
September 21, 2026 06:43
4fbe3e4 to
5d73db1
Compare
This branch was successfully deployed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to dev, this PR will be updated.
Releases
@jects/jds@0.7.0
Minor Changes
6fc7ae7: Divider
variant="dashed"의 대시가 6px 선, 6px 간격으로 그려집니다. 이전에는 브라우저가 대시 길이를 정했습니다.DividerProps가variant값에 따라 갈리는 유니온 타입이 되었고, 선이border가 아닌background로 그려집니다.소비처 영향 (코드 수정 필요)
interface X extends DividerProps { ... }type X = DividerProps & { ... }border로 선 두께나 색을 덮어쓰기thicknessprop,dividerColorVar로 지정DividerProps를 확장하던 타입은 교차 타입으로 바꿉니다.border로 선을 덮어쓰던 스타일은 제거합니다. 기본 선을 대체하지 않고 겹쳐 그려지며, 요소 높이가thickness만큼 늘어납니다.dashLength와dashGap은variant="dashed"를 함께 지정해야 쓸 수 있습니다.추가
dashLength— 점선 한 칸의 길이(px), 기본값6, 최솟값1dashGap— 점선 사이 간격(px), 지정하지 않으면 하한이 적용된dashLength를 따라감, 최솟값1동작 변경 (코드 수정 불필요)
forced-colors: active)에서dashLength와dashGap이 반영되지 않음, 브라우저가 정한 대시가 적용됨dividerColorVar로 색을 덮어쓰는 방식은 그대로 동작orientation,thickness,variant와 렌더 엘리먼트,role은 변경 없음Patch Changes
1ffb35f: Listbox
내부 프리미티브인
Listbox에 표면을 그리지 않는surface옵션을 추가했습니다.Listbox는 배럴에 공개되지 않으므로 소비처에서 직접 사용할 수 없습니다.Select,MultiSelect,SelectField,MultiSelectField,SuggestionField는 기본값을 사용하므로 렌더 결과가 바뀌지 않습니다.60370aa: Menu (Menu.Anchor / DropdownMenu.Anchor)
Menu.Anchor와DropdownMenu.Anchor에asChildprop을 추가했습니다.asChild를 사용하면 Next.js의Link나 React Router의Link같은 라우팅 컴포넌트를 메뉴 항목의 루트 요소로 사용할 수 있습니다.asChild를 사용하지 않고href를 직접 전달하는 방식도 계속 지원합니다.추가
asChild(false) — 자식 라우팅 컴포넌트를 메뉴 앵커의 루트 요소로 합성asChild사용 시 단일 React 요소를children으로 전달,disabled와 동시 사용 불가동작 변경 (코드 수정 불필요)
disabled인Menu.Anchor,DropdownMenu.Anchor의href제거, 각각link,menuitem역할 유지, 키보드 포커스와 클릭 핸들러 호출 차단09be450:
radix-ui의존성을1.6.7로 업데이트했습니다. 기존 JDS 공개 API와 사용 방법은 동일합니다.