@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.
@@ -2,7 +2,6 @@
2
2
  * JuminTextField.tsx
3
3
  *
4
4
  * @license MIT
5
- form,
6
5
  * @copyright 2025 김영진 (Kim Young Jin)
7
6
  * @author 김영진 (ehfuse@gmail.com)
8
7
  */
@@ -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";