@mcurros2/microm 1.1.231-0 → 1.1.238-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.ts +8 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +14 -9
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -640,6 +640,10 @@ export interface TextFieldProps extends TextInputProps, Omit<useTextTransformPro
|
|
|
640
640
|
children: ReactNode;
|
|
641
641
|
}>;
|
|
642
642
|
autoFocus?: boolean;
|
|
643
|
+
autoMaxWidth?: {
|
|
644
|
+
columnLenghtLessThanOrEqual: number;
|
|
645
|
+
maxWidth: string;
|
|
646
|
+
};
|
|
643
647
|
}
|
|
644
648
|
export const TextField: ForwardRefExoticComponent<TextFieldProps & RefAttributes<HTMLInputElement>>;
|
|
645
649
|
export interface AutoFormFieldsProps<T extends Entity<EntityDefinition>> {
|
|
@@ -751,6 +755,10 @@ export interface PasswordFieldProps extends PasswordInputProps {
|
|
|
751
755
|
validationContainer?: React.ComponentType<{
|
|
752
756
|
children: ReactNode;
|
|
753
757
|
}>;
|
|
758
|
+
autoMaxWidth?: {
|
|
759
|
+
columnLenghtLessThanOrEqual: number;
|
|
760
|
+
maxWidth: string;
|
|
761
|
+
};
|
|
754
762
|
}
|
|
755
763
|
export function PasswordField(props: PasswordFieldProps): JSX.Element;
|
|
756
764
|
export type useExecuteServerActionReturnType<TReturn extends ValuesObject> = {
|