@umami/react-zen 0.139.0 → 0.141.0

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.d.mts CHANGED
@@ -667,9 +667,10 @@ interface TextFieldProps extends TextFieldProps$1 {
667
667
  placeholder?: string;
668
668
  allowCopy?: boolean;
669
669
  asTextArea?: boolean;
670
+ resize?: 'vertical' | 'horizontal' | 'both' | 'none';
670
671
  onChange?: (e: any) => void;
671
672
  }
672
- declare function TextField({ value, defaultValue, label, placeholder, allowCopy, asTextArea, onChange, isReadOnly, isDisabled, className, children, ...props }: TextFieldProps): react.JSX.Element;
673
+ declare function TextField({ value, defaultValue, label, placeholder, allowCopy, asTextArea, resize, onChange, isReadOnly, isDisabled, className, children, ...props }: TextFieldProps): react.JSX.Element;
673
674
 
674
675
  interface ThemeButtonProps extends ButtonProps {
675
676
  defaultTheme?: string;
package/dist/index.d.ts CHANGED
@@ -667,9 +667,10 @@ interface TextFieldProps extends TextFieldProps$1 {
667
667
  placeholder?: string;
668
668
  allowCopy?: boolean;
669
669
  asTextArea?: boolean;
670
+ resize?: 'vertical' | 'horizontal' | 'both' | 'none';
670
671
  onChange?: (e: any) => void;
671
672
  }
672
- declare function TextField({ value, defaultValue, label, placeholder, allowCopy, asTextArea, onChange, isReadOnly, isDisabled, className, children, ...props }: TextFieldProps): react.JSX.Element;
673
+ declare function TextField({ value, defaultValue, label, placeholder, allowCopy, asTextArea, resize, onChange, isReadOnly, isDisabled, className, children, ...props }: TextFieldProps): react.JSX.Element;
673
674
 
674
675
  interface ThemeButtonProps extends ButtonProps {
675
676
  defaultTheme?: string;