@fctc/sme-widget-ui 1.8.0 → 1.8.2

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.
@@ -294,7 +294,11 @@ declare const FloatTimeField: React__default.FC<IInputFieldProps>;
294
294
 
295
295
  declare const HtmlField: (props: IInputFieldProps) => JSX.Element;
296
296
 
297
- declare const ImageField: (props: IInputFieldProps) => JSX.Element | null;
297
+ interface ImageFieldProps extends IInputFieldProps {
298
+ baseURL?: string;
299
+ }
300
+
301
+ declare const ImageField: (props: ImageFieldProps) => JSX.Element | null;
298
302
 
299
303
  interface IMany2ManyTagsProps extends IInputFieldProps {
300
304
  options: any[];
package/dist/widgets.d.ts CHANGED
@@ -294,7 +294,11 @@ declare const FloatTimeField: React__default.FC<IInputFieldProps>;
294
294
 
295
295
  declare const HtmlField: (props: IInputFieldProps) => JSX.Element;
296
296
 
297
- declare const ImageField: (props: IInputFieldProps) => JSX.Element | null;
297
+ interface ImageFieldProps extends IInputFieldProps {
298
+ baseURL?: string;
299
+ }
300
+
301
+ declare const ImageField: (props: ImageFieldProps) => JSX.Element | null;
298
302
 
299
303
  interface IMany2ManyTagsProps extends IInputFieldProps {
300
304
  options: any[];