@aivex/ui 1.1.0-dev.5 → 1.1.0-dev.6
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/Textbox/Textbox.d.ts +3 -1
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +26 -25
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -12,7 +12,9 @@ export interface TextboxProps extends Omit<InputHTMLAttributes<HTMLInputElement>
|
|
|
12
12
|
leadingElement?: ReactNode;
|
|
13
13
|
/** 인풋 우측 슬롯 (clearable=true 이고 값이 있으면 삭제 버튼이 추가됨) */
|
|
14
14
|
trailingElement?: ReactNode;
|
|
15
|
+
/** InputBase 컨테이너에 적용할 className */
|
|
16
|
+
containerClassName?: string;
|
|
15
17
|
ref?: Ref<HTMLInputElement>;
|
|
16
18
|
}
|
|
17
|
-
declare function Textbox({ className, label, helperText, error, disabled, clearable, leadingElement, trailingElement, size, id, ref, value, defaultValue, onChange, onFocus, onBlur, ...props }: TextboxProps): import("react/jsx-runtime").JSX.Element;
|
|
19
|
+
declare function Textbox({ className, containerClassName, label, helperText, error, disabled, clearable, leadingElement, trailingElement, size, id, ref, value, defaultValue, onChange, onFocus, onBlur, ...props }: TextboxProps): import("react/jsx-runtime").JSX.Element;
|
|
18
20
|
export { inputContainerVariants as inputWrapperVariants, Textbox };
|