Skip to content

Commit 21b21f3

Browse files
committed
Merge branch 'renovate/node-25.x' of github.com:daangn/seed-design into renovate/node-25.x
2 parents 279b6a2 + ba27118 commit 21b21f3

File tree

258 files changed

+9390
-2002
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

258 files changed

+9390
-2002
lines changed

.changeset/bumpy-lizards-relax.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changeset/dark-pandas-study.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

.changeset/fluffy-owls-cheer.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
"@seed-design/stackflow": patch
3+
"@seed-design/css": patch
4+
---
5+
6+
Stackflow와 함께 AppScreen 사용 시 최상위 AppScreen이 push/pop될 때, 이외의 AppScreen이 고유한 `transitionStyle`을 재생하는 문제를 수정합니다. 같은 스택 내에 여러 `transitionStyle`이 공존할 때 자연스러운 트랜지션을 제공하기 위해 최상위 AppScreen의 `transitionStyle`을 재생합니다. ([데모](https://seed-design.io/react/stackflow/app-screen#transition-styles))
7+
8+
- 예를 들면, `transitionStyle="fadeFromBottomAndroid"`인 0번 AppScreen 위에 `transitionStyle="slideFromLeftIOS"`인 1번 AppScreen이 push되는 경우, 0번 AppScreen이 `slideFromLeftIOS` 트랜지션을 재생하도록 수정합니다.
9+
- 0번 AppScreen이 자연스럽게 좌측으로 조금 밀려나며 어두워지고(`slideFromLeftIOS`) 1번 AppScreen이 우측에서 슬라이드 인(`slideFromLeftIOS`)

.claude/settings.json

Lines changed: 25 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,36 @@
11
{
22
"hooks": {
3+
"PostToolUse": [
4+
{
5+
"matcher": "Write|Edit",
6+
"hooks": [
7+
{
8+
"type": "command",
9+
"command": "jq -r '.tool_response.filePath' | xargs bun biome format --write"
10+
}
11+
]
12+
}
13+
],
314
"UserPromptSubmit": [
415
{
5-
"type": "command",
6-
"command": "bash .claude/hooks/skill-activation-prompt.sh",
7-
"timeout": 3000
16+
"hooks": [
17+
{
18+
"type": "command",
19+
"command": "bash .claude/hooks/skill-activation-prompt.sh",
20+
"timeout": 3000
21+
}
22+
]
823
}
924
],
1025
"Stop": [
1126
{
12-
"type": "command",
13-
"command": "bash .claude/hooks/validation-reminder.sh",
14-
"timeout": 2000
27+
"hooks": [
28+
{
29+
"type": "command",
30+
"command": "bash .claude/hooks/validation-reminder.sh",
31+
"timeout": 2000
32+
}
33+
]
1534
}
1635
]
1736
}

.github/workflows/chromatic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
- uses: oven-sh/setup-bun@v2
3636
with:
37-
bun-version: "1.3.4"
37+
bun-version: "1.3.5"
3838

3939
- name: Install dependencies
4040
run: bun install --frozen-lockfile

.github/workflows/docs-deploy-alpha-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
- uses: oven-sh/setup-bun@v2
3737
with:
38-
bun-version: "1.3.4"
38+
bun-version: "1.3.5"
3939

4040
- name: Restore Figma image cache
4141
if: ${{ !inputs.skip-figma-cache }}

.github/workflows/docs-deploy-production-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
- uses: oven-sh/setup-bun@v2
4040
with:
41-
bun-version: "1.3.4"
41+
bun-version: "1.3.5"
4242

4343
- name: Restore Figma image cache
4444
if: ${{ !inputs.skip-figma-cache }}

.github/workflows/docs-deploy-qa-pages.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
on:
22
push:
33
branches:
4-
- "*"
5-
4+
- "**"
65
paths:
76
- "docs/**"
87
- "examples/stackflow-spa/**"
@@ -30,7 +29,7 @@ jobs:
3029

3130
- uses: oven-sh/setup-bun@v2
3231
with:
33-
bun-version: "1.3.4"
32+
bun-version: "1.3.5"
3433

3534
- name: Install Dependencies
3635
run: bun install --frozen-lockfile

.github/workflows/docs-deploy-storybook-alpha-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
- uses: oven-sh/setup-bun@v2
3131
with:
32-
bun-version: "1.3.4"
32+
bun-version: "1.3.5"
3333

3434
- name: Install Dependencies
3535
run: bun install --frozen-lockfile

.github/workflows/docs-deploy-storybook-production-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
- uses: oven-sh/setup-bun@v2
3030
with:
31-
bun-version: "1.3.4"
31+
bun-version: "1.3.5"
3232

3333
- name: Install Dependencies
3434
run: bun install --frozen-lockfile

0 commit comments

Comments
 (0)