@mmb-digital/design-system-web 0.1.321 → 0.1.323
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.cjs.js +2 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.esm.js +2 -2
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2651,6 +2651,7 @@ interface FileInputControlProps extends FileInputSettings, DesignSystemBaseProps
|
|
|
2651
2651
|
/** aria-label for remove file button. */
|
|
2652
2652
|
getRemoveButtonAriaLabel: (fileName: string) => string;
|
|
2653
2653
|
invalid?: boolean;
|
|
2654
|
+
name: string;
|
|
2654
2655
|
onBlur?: () => void;
|
|
2655
2656
|
onChange: (files: File[]) => void;
|
|
2656
2657
|
value: File[];
|
|
@@ -2683,7 +2684,6 @@ declare const FileInput: React__default.ForwardRefExoticComponent<Omit<FileInput
|
|
|
2683
2684
|
type FileInputProps = ComponentProps<typeof FileInput>;
|
|
2684
2685
|
|
|
2685
2686
|
interface FileInputFieldProps extends Omit<FileInputProps, 'onBlur' | 'onChange' | 'value'> {
|
|
2686
|
-
name: string;
|
|
2687
2687
|
options?: RegisterOptions;
|
|
2688
2688
|
}
|
|
2689
2689
|
declare const FileInputField: (props: FileInputFieldProps) => React__default.JSX.Element;
|