Skip to content

Commit 6c9049b

Browse files
author
Suhan Moon
committed
Default Changelist
1 parent 4a94274 commit 6c9049b

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,8 @@ width, height값을 별도로 줄 수 있습니다.
104104
프로젝트 문의 혹은 제휴가 필요한 경우 [email protected]로 연락주세요.
105105

106106
# Changes
107+
- 1.0.4
108+
- 웹버전에서 width 500 해제
107109
- 1.0.2
108110
- 웹버전에서 onSelected 장애 처리
109111
- 1.0.1

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@actbase/react-daum-postcode",
3-
"version": "1.0.2",
3+
"version": "1.0.4",
44
"description": "다음 우편번호찾기 for React, React-Native",
55
"main": "lib/index.js",
66
"module": "lib/index.js",

src/app.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ const Postcode: React.FC<PostcodeProps> = ({ onSelected, jsOptions, style }) =>
3131
// @ts-ignore
3232
new window.daum.Postcode({
3333
...jsOptions,
34+
width: '100%',
3435
oncomplete: function(data: OnCompleteParams) {
3536
onSelected(data);
3637
},

0 commit comments

Comments
 (0)