@ehfuse/mui-form-controls 3.0.2 → 3.0.3
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.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 +5 -2
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -147,7 +147,11 @@ export type AutocompleteProps = Omit<MuiAutocompleteProps<AutocompleteOption, fa
|
|
|
147
147
|
export type LabelSelectOption = {
|
|
148
148
|
value: string | number | boolean;
|
|
149
149
|
label: string;
|
|
150
|
-
/** `true`면
|
|
150
|
+
/** `true`면 해당 옵션은 선택할 수 없습니다. */
|
|
151
|
+
readonly?: boolean;
|
|
152
|
+
/**
|
|
153
|
+
* 선택은 가능합니다. 목록에서 회색 등 시각적 구분용(스타일은 추후 적용 가능).
|
|
154
|
+
*/
|
|
151
155
|
disabled?: boolean;
|
|
152
156
|
/** 호버 시 브라우저 기본 툴팁(네이티브 `title`)로 표시할 안내 문구입니다. */
|
|
153
157
|
title?: string;
|
|
@@ -161,7 +165,6 @@ export type LabelSelectProps = Omit<MuiSelectProps, "value" | "onChange" | "defa
|
|
|
161
165
|
enableWheel?: boolean;
|
|
162
166
|
showLabel?: boolean;
|
|
163
167
|
emptyLabel?: string;
|
|
164
|
-
readOnly?: boolean;
|
|
165
168
|
showEmptyOption?: boolean;
|
|
166
169
|
fullWidth?: boolean;
|
|
167
170
|
formControlProps?: Omit<FormControlProps, "children">;
|