@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.
- package/dist/index.js +65 -1483
- package/dist/index.mjs +65 -1483
- package/dist/widgets.d.mts +5 -1
- package/dist/widgets.d.ts +5 -1
- package/dist/widgets.js +65 -1483
- package/dist/widgets.mjs +65 -1483
- package/package.json +1 -1
package/dist/widgets.d.mts
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
|
-
|
|
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
|
-
|
|
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[];
|