@ehfuse/mui-form-controls 3.0.61 → 3.0.62
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/README.md +2 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +2 -2
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +2 -2
- package/dist/types.d.ts +4 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -280,6 +280,10 @@ export type TagsTextFieldProps = Omit<TextFieldProps, "value" | "defaultValue" |
|
|
|
280
280
|
allowDuplicates?: boolean;
|
|
281
281
|
maxTags?: number;
|
|
282
282
|
chipProps?: Partial<ChipProps>;
|
|
283
|
+
/**
|
|
284
|
+
* `startAdornment` 안 칩들을 감싼 `Box`에 병합되는 sx(`columnGap`/`rowGap`/padding 등).
|
|
285
|
+
* 아웃라인 안쪽 전체·입력 칸은 `sx`(TextField)로 조정하며, 구현상 `sx`는 `.MuiInputBase-root` 아래로 감싸짐.
|
|
286
|
+
*/
|
|
283
287
|
chipsSx?: SxProps<Theme>;
|
|
284
288
|
deleteIconSx?: SxProps<Theme>;
|
|
285
289
|
draggable?: boolean;
|