@ehfuse/mui-form-controls 3.0.57 → 3.0.58
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/JuminTextField.d.ts +0 -1
- package/dist/components/GroupedInputWrapper.d.ts +2 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -2
- package/dist/index.js.map +3 -3
- package/dist/index.mjs +1 -2
- package/dist/index.mjs.map +3 -3
- package/dist/types.d.ts +10 -0
- package/dist/utils/index.d.ts +1 -1
- package/dist/utils/jumin.d.ts +6 -0
- package/package.json +1 -1
package/dist/JuminTextField.d.ts
CHANGED
|
@@ -18,7 +18,9 @@ export interface GroupedInputWrapperProps {
|
|
|
18
18
|
focusedGroup: number | null;
|
|
19
19
|
setFocusedGroup: (group: number | null) => void;
|
|
20
20
|
hasValue: boolean;
|
|
21
|
+
/** MUI `error` 동일. 외부 `error` prop과 내부 유효성이 합쳐진 최종 오류 여부. */
|
|
21
22
|
isInvalid?: boolean;
|
|
23
|
+
/** 오류일 때( `isInvalid` ) notched outline·라벨에 쓰는 색. 없으면 `theme.palette.error` 사용. */
|
|
22
24
|
invalidBorderColor?: string;
|
|
23
25
|
inputRefs: RefObject<HTMLInputElement | null>[];
|
|
24
26
|
getTargetRefOnClick: () => {
|
package/dist/index.d.ts
CHANGED
|
@@ -29,6 +29,7 @@ export { AddressTextField } from "./AddressTextField";
|
|
|
29
29
|
export { PhoneTextField } from "./PhoneTextField";
|
|
30
30
|
export { NumberTextField } from "./NumberTextField";
|
|
31
31
|
export { JuminTextField } from "./JuminTextField";
|
|
32
|
+
export { isJuminValueInvalidState } from "./utils/jumin";
|
|
32
33
|
export { VerificationCodeTextField } from "./VerificationCodeTextField";
|
|
33
34
|
export { EmailTextField } from "./EmailTextField";
|
|
34
35
|
export { DateTextField } from "./DateTextField";
|