@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.css +1467 -1442
- package/dist/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +641 -633
- package/dist/index.mjs +641 -633
- package/package.json +1 -1
- package/styles.css +1467 -1442
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;
|