@max-ts/components 0.5.3 → 0.5.4

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.
@@ -9,10 +9,6 @@ export type CheckboxFieldProps = CheckboxProps & {
9
9
  * Текст-подсказка
10
10
  */
11
11
  helperText?: ReactNode;
12
- /**
13
- * Флаг принудительного скрытия блока helperText
14
- */
15
- hideHelperText?: boolean;
16
12
  /**
17
13
  * Текст или элемент около чекбокса (обычно краткое описание назначения чекбокса)
18
14
  */
@@ -21,4 +17,4 @@ export type CheckboxFieldProps = CheckboxProps & {
21
17
  /**
22
18
  * Составной компонент чекбокса. Содержит label, tooltip, helperText и т.д.
23
19
  */
24
- export declare const CheckboxField: ({ isSuccess, helperText, hideHelperText, label, isError, ...restProps }: CheckboxFieldProps) => import("react/jsx-runtime").JSX.Element;
20
+ export declare const CheckboxField: ({ isSuccess, helperText, label, isError, ...restProps }: CheckboxFieldProps) => import("react/jsx-runtime").JSX.Element;
@@ -21,5 +21,6 @@ export type SelectProps<Value> = WithoutEmotionSpecific<Omit<MuiSelectProps<Valu
21
21
  success?: boolean;
22
22
  error?: boolean;
23
23
  label?: string;
24
+ id?: string;
24
25
  };
25
- export declare function Select<TValue>({ required, getOptionLabel, placeholder, helperText, hideHelperText, loading, success, children, disabled, error, label, fullWidth, onChange: externalOnChange, isShowClearButton, ...props }: SelectProps<TValue>): import("react/jsx-runtime").JSX.Element;
26
+ export declare function Select<TValue>({ required, getOptionLabel, placeholder, helperText, hideHelperText, loading, success, children, disabled, error, label, fullWidth, id, onChange: externalOnChange, isShowClearButton, ...props }: SelectProps<TValue>): import("react/jsx-runtime").JSX.Element;