@designbasekorea/ui 0.2.38 → 0.2.40
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/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.esm.css +1 -1
- package/dist/index.esm.css.map +1 -1
- package/dist/index.esm.js +36 -4
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +36 -4
- package/dist/index.js.map +1 -1
- package/dist/index.umd.css +1 -1
- package/dist/index.umd.css.map +1 -1
- package/dist/index.umd.js +36 -4
- package/dist/index.umd.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -2064,7 +2064,7 @@ interface InputProps {
|
|
|
2064
2064
|
/** 입력 필드 클래스 */
|
|
2065
2065
|
inputClassName?: string;
|
|
2066
2066
|
/** 값 변경 핸들러 */
|
|
2067
|
-
onChange?: (
|
|
2067
|
+
onChange?: (e: React$1.ChangeEvent<HTMLInputElement>) => void;
|
|
2068
2068
|
/** 포커스 핸들러 */
|
|
2069
2069
|
onFocus?: (e: React$1.FocusEvent<HTMLInputElement>) => void;
|
|
2070
2070
|
/** 블러 핸들러 */
|
|
@@ -3950,7 +3950,7 @@ interface TabsProps {
|
|
|
3950
3950
|
/** 전체 너비 여부 */
|
|
3951
3951
|
fullWidth?: boolean;
|
|
3952
3952
|
/** 탭 스타일 */
|
|
3953
|
-
variant?: 'default' | 'pills'
|
|
3953
|
+
variant?: 'default' | 'pills';
|
|
3954
3954
|
/** 추가 CSS 클래스 */
|
|
3955
3955
|
className?: string;
|
|
3956
3956
|
/** 탭 변경 핸들러 */
|