@ehfuse/mui-form-controls 3.1.10 → 3.1.12

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/types.d.ts CHANGED
@@ -179,7 +179,7 @@ export type AutocompleteProps = BaseTextFieldProps & {
179
179
  hideEmptyMessage?: boolean;
180
180
  autoFocus?: boolean;
181
181
  blurOnSelect?: boolean;
182
- moveFocusOnSelect?: boolean;
182
+ moveFocusOnSelect?: boolean | number;
183
183
  clearOnBlur?: boolean;
184
184
  disablePortal?: boolean;
185
185
  freeSolo?: boolean;
@@ -232,7 +232,7 @@ export type LabelSelectProps = Omit<MuiSelectProps, "value" | "onChange" | "defa
232
232
  options: LabelSelectOption[];
233
233
  inputProps?: InputBaseComponentProps;
234
234
  enableWheel?: boolean;
235
- moveFocusOnSelect?: boolean;
235
+ moveFocusOnSelect?: boolean | number;
236
236
  showLabel?: boolean;
237
237
  emptyLabel?: string;
238
238
  showEmptyOption?: boolean;
@@ -554,6 +554,7 @@ export type DateTimeTextFieldProps = Omit<TextFieldProps, "type"> & BaseTextFiel
554
554
  dateSeparator?: string;
555
555
  minDateTime?: Date;
556
556
  maxDateTime?: Date;
557
+ defaultCalendarDate?: Date;
557
558
  minTime?: string;
558
559
  maxTime?: string;
559
560
  holidays?: Date[];
@@ -1,2 +1,4 @@
1
+ /** 이동할 포커스 단계 수를 양의 정수로 정규화한다. */
2
+ export declare function resolveFocusMoveSteps(moveFocusOnSelect: boolean | number | undefined): number;
1
3
  /** 다음 탭 순서의 포커스 가능한 요소로 이동한다. */
2
- export declare function focusNextTabbable(currentElement: HTMLElement | null): void;
4
+ export declare function focusNextTabbable(currentElement: HTMLElement | null, steps?: number): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ehfuse/mui-form-controls",
3
- "version": "3.1.10",
3
+ "version": "3.1.12",
4
4
  "description": "Material-UI form controls and text fields for complex forms",
5
5
  "private": false,
6
6
  "publishConfig": {