@fctc/sme-widget-ui 1.9.9 → 2.0.0

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/types.d.mts CHANGED
@@ -30,6 +30,7 @@ interface IInputFieldProps {
30
30
  idForm?: boolean;
31
31
  widget?: string;
32
32
  options?: any;
33
+ filename?: string;
33
34
  }
34
35
  declare const loginSchema: z.ZodObject<{
35
36
  username: z.ZodString;
package/dist/types.d.ts CHANGED
@@ -30,6 +30,7 @@ interface IInputFieldProps {
30
30
  idForm?: boolean;
31
31
  widget?: string;
32
32
  options?: any;
33
+ filename?: string;
33
34
  }
34
35
  declare const loginSchema: z.ZodObject<{
35
36
  username: z.ZodString;
@@ -158,16 +158,14 @@ interface IAvatarProps extends IInputFieldProps {
158
158
  declare const AvatarField: (props: IAvatarProps) => JSX.Element;
159
159
 
160
160
  interface IBinaryFieldProps extends IInputFieldProps {
161
- inputId: any;
162
- selectedImage: any;
163
- initialImage: any;
164
- isInsideTable: any;
165
- binaryRef: any;
166
- handleImageChange: any;
167
- handleRemoveImage: any;
168
- checkIsImageLink: any;
169
- getImageBase64WithMimeType: any;
170
- image: any;
161
+ placeHolderImage?: any;
162
+ inputId?: any;
163
+ initialFile?: any;
164
+ binaryRef?: any;
165
+ handleFileChange?: any;
166
+ handleRemoveFile?: any;
167
+ checkIsImageLink?: any;
168
+ onDownload?: any;
171
169
  }
172
170
 
173
171
  declare const BinaryField: (props: IBinaryFieldProps) => JSX.Element;
package/dist/widgets.d.ts CHANGED
@@ -158,16 +158,14 @@ interface IAvatarProps extends IInputFieldProps {
158
158
  declare const AvatarField: (props: IAvatarProps) => JSX.Element;
159
159
 
160
160
  interface IBinaryFieldProps extends IInputFieldProps {
161
- inputId: any;
162
- selectedImage: any;
163
- initialImage: any;
164
- isInsideTable: any;
165
- binaryRef: any;
166
- handleImageChange: any;
167
- handleRemoveImage: any;
168
- checkIsImageLink: any;
169
- getImageBase64WithMimeType: any;
170
- image: any;
161
+ placeHolderImage?: any;
162
+ inputId?: any;
163
+ initialFile?: any;
164
+ binaryRef?: any;
165
+ handleFileChange?: any;
166
+ handleRemoveFile?: any;
167
+ checkIsImageLink?: any;
168
+ onDownload?: any;
171
169
  }
172
170
 
173
171
  declare const BinaryField: (props: IBinaryFieldProps) => JSX.Element;