easy-email-extensions 4.1.8 → 4.1.13

Sign up to get free protection for your applications and to get access to all the features.
package/License CHANGED
@@ -1,5 +1,3 @@
1
- Copyright (c) 2021-2022 AfterShip
2
-
3
1
  Permission is hereby granted, free of charge, to any person
4
2
  obtaining a copy of this software and associated documentation
5
3
  files (the "Software"), to deal in the Software without
@@ -1,8 +1,13 @@
1
+ import React from 'react';
1
2
  import { UploaderServer } from '../../../AttributePanel/utils/Uploader';
2
3
  export interface ImageUploaderProps {
3
4
  onChange: (val: string) => void;
4
5
  value: string;
5
6
  label: string;
6
7
  uploadHandler?: UploaderServer;
8
+ autoCompleteOptions?: Array<{
9
+ value: string;
10
+ label: React.ReactNode;
11
+ }>;
7
12
  }
8
13
  export declare function ImageUploader(props: ImageUploaderProps): JSX.Element;