wacomm 2.2.5 → 2.2.7

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.
@@ -4,6 +4,7 @@ interface MediaUploadProps {
4
4
  maxFiles?: number;
5
5
  className?: string;
6
6
  accept?: string;
7
+ loading?: boolean;
7
8
  }
8
- export default function MediaUpload({ onChange, multiple, maxFiles, className, accept }: MediaUploadProps): import("react/jsx-runtime").JSX.Element;
9
+ export default function MediaUpload({ onChange, multiple, maxFiles, className, accept, loading, }: MediaUploadProps): import("react/jsx-runtime").JSX.Element;
9
10
  export {};
@@ -4,6 +4,7 @@ declare const meta: Meta<typeof MediaUpload>;
4
4
  export default meta;
5
5
  type Story = StoryObj<typeof meta>;
6
6
  export declare const Default: Story;
7
+ export declare const Loading: Story;
7
8
  export declare const SingleFile: Story;
8
9
  export declare const ImagesOnly: Story;
9
10
  export declare const MaxFilesExceeded: Story;