@ehfuse/mui-form-controls 3.2.1 → 3.2.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 +6 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -235,6 +235,12 @@ export type LabelSelectOption = {
|
|
|
235
235
|
disabled?: boolean;
|
|
236
236
|
/** 호버 시 브라우저 기본 툴팁(네이티브 `title`)로 표시할 안내 문구입니다. */
|
|
237
237
|
title?: string;
|
|
238
|
+
/**
|
|
239
|
+
* `true`면 드롭다운 옵션 메뉴에서만 강조(파란색·굵게) 표시합니다.
|
|
240
|
+
* 닫힌 선택 표시(renderValue)에는 적용되지 않아 선택 후에는 일반 텍스트로 보입니다.
|
|
241
|
+
* 추천/우선 후보 옵션을 목록 안에서만 눈에 띄게 할 때 씁니다.
|
|
242
|
+
*/
|
|
243
|
+
highlight?: boolean;
|
|
238
244
|
};
|
|
239
245
|
export type SelectOption = {
|
|
240
246
|
value: string | number | boolean;
|