@designfever/web-review-kit 0.8.3 → 0.8.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/react-shell.cjs +14 -0
- package/dist/react-shell.cjs.map +1 -1
- package/dist/react-shell.js +14 -0
- package/dist/react-shell.js.map +1 -1
- package/docs/README.md +1 -0
- package/docs/release-notes-0.8.4.md +23 -0
- package/package.json +1 -1
package/docs/README.md
CHANGED
|
@@ -28,6 +28,7 @@ Public docs are intentionally small. Keep implementation history, handoff notes,
|
|
|
28
28
|
|
|
29
29
|
## Release History
|
|
30
30
|
|
|
31
|
+
- [0.8.4](release-notes-0.8.4.md): reliable viewport capture for zero-size gradient elements.
|
|
31
32
|
- [0.8.3](release-notes-0.8.3.md): code-review bug fixes (hidden draft composer, select hotkeys, overlay state writes, URL hash), sitemap state persistence/filtering, tests, and feature-module cleanup.
|
|
32
33
|
- [0.8.2](release-notes-0.8.2.md): Figma image layer edit/delete tooltip removal.
|
|
33
34
|
- [0.8.1](release-notes-0.8.1.md): QA prompt prefix, QA filtering, counters, tooltip, long-content, and outside marker fixes.
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# 릴리즈 노트: 0.8.4
|
|
2
|
+
|
|
3
|
+
`html2canvas`가 크기 0인 gradient 요소를 렌더링할 때 color stop을
|
|
4
|
+
`NaN`으로 계산해 선택 영역 캡처가 실패하던 문제를 수정한 patch release.
|
|
5
|
+
|
|
6
|
+
비교 기준: `0.8.3`
|
|
7
|
+
|
|
8
|
+
## 버그 수정
|
|
9
|
+
|
|
10
|
+
- 캡처용 document clone에서 너비나 높이가 0인 요소의 gradient 배경을
|
|
11
|
+
제거한다. 화면에 보이지 않는 요소만 대상으로 하므로 캡처 결과의
|
|
12
|
+
가시 콘텐츠에는 영향을 주지 않는다.
|
|
13
|
+
- `CanvasGradient.addColorStop()`에 non-finite 값이 전달되면서 발생하던
|
|
14
|
+
`Selected region capture failed` 오류를 방지한다.
|
|
15
|
+
|
|
16
|
+
## 검증
|
|
17
|
+
|
|
18
|
+
- `pnpm test`
|
|
19
|
+
- `pnpm typecheck`
|
|
20
|
+
- `pnpm build`
|
|
21
|
+
- `pnpm lint:dead-code`
|
|
22
|
+
- Kia Worldwide `1920x1080` review shell에서 Element 선택 후 WebP attachment
|
|
23
|
+
생성 확인
|