@ehfuse/mui-form-controls 3.1.43 → 3.1.44
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/LICENSE +21 -21
- package/dist/SwitchField.d.ts +10 -0
- package/dist/ToggleButtonGroupField.d.ts +10 -0
- package/dist/address.js +1 -1
- package/dist/address.js.map +1 -1
- package/dist/address.mjs +1 -1
- package/dist/address.mjs.map +1 -1
- package/dist/devDebug.d.ts +35 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +3 -3
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +3 -3
- package/dist/types.d.ts +7 -0
- package/dist/utils/outlinedFieldStyles.d.ts +5 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -580,4 +580,11 @@ export type DateTimeTextFieldProps = Omit<TextFieldProps, "type"> & BaseTextFiel
|
|
|
580
580
|
minuteStep?: number;
|
|
581
581
|
secondStep?: number;
|
|
582
582
|
hideDisabledTime?: boolean;
|
|
583
|
+
/**
|
|
584
|
+
* Tab 키 이동 방식 (기본값: "component")
|
|
585
|
+
* - "component": Tab 시 다음 컴포넌트로 이동(기존 동작)
|
|
586
|
+
* - "segment": Tab 시 컴포넌트 내부(날짜 → 시 → 분 → (초))로 이동하고,
|
|
587
|
+
* 마지막 칸에서 Tab을 누르면 다음 컴포넌트로 이동. Shift+Tab은 역순.
|
|
588
|
+
*/
|
|
589
|
+
tabNavigation?: "component" | "segment";
|
|
583
590
|
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { SxProps, Theme } from "@mui/material/styles";
|
|
2
|
+
export declare const CLOSED_OUTLINED_BORDER_COLOR = "rgba(0, 0, 0, 0.23)";
|
|
3
|
+
export declare const CLOSED_OUTLINED_LABEL_COLOR = "rgba(0, 0, 0, 0.6)";
|
|
4
|
+
export declare const outlinedFieldFocusToneSx: SxProps<Theme>;
|
|
5
|
+
export declare const outlinedFieldReadonlyToneSx: SxProps<Theme>;
|