@iyulab/components 1.3.3 → 1.3.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/CHANGELOG.md +5 -0
- package/README.md +6 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.3.4] - 2026-07-03
|
|
4
|
+
|
|
5
|
+
### Documentation
|
|
6
|
+
- `README.md`의 `## React` 섹션에 peerDependency 설치 안내(`npm install @iyulab/components @lit/react react`)를 추가. 기존 문서는 래퍼 사용 예제만 있어 `@lit/react`·`react`를 별도 설치해야 한다는 전제가 누락되어 있었고, 예제를 그대로 따라하면 `@lit/react` 미설치로 모듈 해석 오류가 났다. `@iyulab/data-components` README의 `/react` 안내와 형식을 통일.
|
|
7
|
+
|
|
3
8
|
## [1.3.3] - 2026-07-03
|
|
4
9
|
|
|
5
10
|
### Fixed
|
package/README.md
CHANGED
|
@@ -25,6 +25,12 @@ import '@iyulab/components/u-input';
|
|
|
25
25
|
|
|
26
26
|
React 프로젝트에서는 `@iyulab/components/react` 서브패스가 모든 컴포넌트를 `forwardRef` 래퍼로 제공합니다. Web Component를 직접 다루지 않고도 JSX props(`color`, `size`, 이벤트 `onXxx` 등)로 사용할 수 있습니다.
|
|
27
27
|
|
|
28
|
+
`@lit/react`·`react`는 peerDependency이므로 소비 앱에 함께 설치해야 합니다.
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
npm install @iyulab/components @lit/react react
|
|
32
|
+
```
|
|
33
|
+
|
|
28
34
|
```tsx
|
|
29
35
|
import { UButton, UInput } from '@iyulab/components/react';
|
|
30
36
|
|