@ehfuse/mui-form-controls 3.1.19 → 3.1.20

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.
@@ -9,7 +9,7 @@
9
9
  */
10
10
  import * as React from "react";
11
11
  import { type ThousandSeparatorProp } from "../utils/number";
12
- export declare function useNumberFieldLiveGrouping({ thousandSeparator, locale, format, clearWhenZero, }: {
12
+ export declare function useNumberFieldLiveGrouping({ thousandSeparator, locale, format, clearWhenZero, min, max, }: {
13
13
  thousandSeparator?: ThousandSeparatorProp;
14
14
  locale?: Intl.LocalesArgument;
15
15
  format?: Intl.NumberFormatOptions;
@@ -19,6 +19,10 @@ export declare function useNumberFieldLiveGrouping({ thousandSeparator, locale,
19
19
  * @default false
20
20
  */
21
21
  clearWhenZero?: boolean;
22
+ /** 입력 중 즉시 경계값으로 고정하기 위한 최소값 */
23
+ min?: number;
24
+ /** 입력 중 즉시 경계값으로 고정하기 위한 최대값 */
25
+ max?: number;
22
26
  }): {
23
27
  getDisplayValue: (baseInputValue: string) => string;
24
28
  syncBaseInputValue: (baseInputValue: string) => void;