@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/icons.d.mts +5 -1
- package/dist/icons.d.ts +5 -1
- package/dist/icons.js +67 -13
- package/dist/icons.mjs +65 -13
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1181 -1000
- package/dist/index.mjs +965 -786
- package/dist/types.d.mts +1 -0
- package/dist/types.d.ts +1 -0
- package/dist/widgets.d.mts +8 -10
- package/dist/widgets.d.ts +8 -10
- package/dist/widgets.js +1151 -974
- package/dist/widgets.mjs +937 -760
- package/package.json +1 -1
package/dist/types.d.mts
CHANGED
package/dist/types.d.ts
CHANGED
package/dist/widgets.d.mts
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
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
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
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
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;
|