@mcurros2/microm 1.1.250-0 → 1.1.252-0
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.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +16 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -877,6 +877,8 @@ export interface NumberFieldProps extends Omit<NumberInputProps, 'autoFocus'> {
|
|
|
877
877
|
children: ReactNode;
|
|
878
878
|
}>;
|
|
879
879
|
autoFocus?: 'autoFocusOnAdd' | 'autoFocusOnEdit' | boolean;
|
|
880
|
+
maxWidth?: keyof typeof MicroMWidthSizes;
|
|
881
|
+
minWidth?: keyof typeof MicroMWidthSizes;
|
|
880
882
|
}
|
|
881
883
|
export const NumberField: ForwardRefExoticComponent<NumberFieldProps & RefAttributes<HTMLInputElement>>;
|
|
882
884
|
export interface UseHierarchyKeysProps {
|