easy-email-extensions 4.1.8 → 4.1.13

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/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;