@ehfuse/mui-form-controls 3.1.48 → 3.1.49
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/components/ReadonlyDisplay.d.ts +34 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +17 -1
- package/dist/index.js.map +4 -4
- package/dist/index.mjs +17 -1
- package/dist/index.mjs.map +4 -4
- package/dist/types.d.ts +7 -0
- package/package.json +2 -2
package/dist/types.d.ts
CHANGED
|
@@ -41,6 +41,13 @@ export type FormLike = {
|
|
|
41
41
|
};
|
|
42
42
|
export type BaseTextFieldProps = {
|
|
43
43
|
readonly?: boolean;
|
|
44
|
+
/**
|
|
45
|
+
* readonly 일 때 실제 <input> 대신 경량 표시(ReadonlyDisplay)로 렌더할지 여부 (기본값: false).
|
|
46
|
+
* 상품 목록처럼 readonly 필드가 많아 입력 머신러리 렌더 비용이 부담될 때 켠다.
|
|
47
|
+
* 외관은 outlined 입력칸과 동일하되 입력 요소/포커스/IME 처리가 없어 가볍다.
|
|
48
|
+
* readonly 가 false 면 무시된다.
|
|
49
|
+
*/
|
|
50
|
+
readonlyLight?: boolean;
|
|
44
51
|
debounce?: number;
|
|
45
52
|
form?: FormLike | null;
|
|
46
53
|
disableInternalState?: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ehfuse/mui-form-controls",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.49",
|
|
4
4
|
"description": "Material-UI form controls and text fields for complex forms",
|
|
5
5
|
"private": false,
|
|
6
6
|
"publishConfig": {
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"peerDependencies": {
|
|
72
72
|
"@base-ui/react": "^1.1.0",
|
|
73
73
|
"@ehfuse/alerts": ">=1.1.0",
|
|
74
|
-
"@ehfuse/forma": "^3.
|
|
74
|
+
"@ehfuse/forma": "^3.4.0",
|
|
75
75
|
"@ehfuse/mui-datetime-picker": "^1.0.16",
|
|
76
76
|
"@ehfuse/overlay-scrollbar": ">=1.6.9",
|
|
77
77
|
"@emotion/react": "^11.0.0",
|