@nurihaus/web-design-system 1.4.31 → 1.4.33

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.
@@ -22,6 +22,8 @@ export interface MenuProps {
22
22
  onOpenChange?: (open: boolean) => void;
23
23
  side?: 'top' | 'bottom' | 'left' | 'right';
24
24
  align?: 'start' | 'center' | 'end';
25
+ /** Menu content max-height. 숫자는 px로 처리됩니다. */
26
+ contentMaxHeight?: number | string;
25
27
  disabled?: boolean;
26
28
  style?: CSSProperties;
27
29
  className?: string;
@@ -2,8 +2,8 @@ import React, { PropsWithChildren } from 'react';
2
2
  import { TextFieldHelperTextProps, TextFieldInputProps, TextFieldLabelProps, TextFieldRootProps } from './text-field-type';
3
3
  declare const TextFieldRoot: {
4
4
  (props: PropsWithChildren<TextFieldRootProps>): import("react/jsx-runtime").JSX.Element;
5
- TextLabel: (props: TextFieldLabelProps) => number | boolean | Iterable<React.ReactNode> | import("react/jsx-runtime").JSX.Element | null | undefined;
5
+ TextLabel: (props: TextFieldLabelProps) => number | boolean | import("react/jsx-runtime").JSX.Element | Iterable<React.ReactNode> | null | undefined;
6
6
  InputField: React.ForwardRefExoticComponent<Omit<TextFieldInputProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
7
- HelperText: (props: TextFieldHelperTextProps) => number | boolean | Iterable<React.ReactNode> | import("react/jsx-runtime").JSX.Element | null | undefined;
7
+ HelperText: (props: TextFieldHelperTextProps) => number | boolean | import("react/jsx-runtime").JSX.Element | Iterable<React.ReactNode> | null | undefined;
8
8
  };
9
9
  export default TextFieldRoot;