@hybr1d-tech/charizard 0.7.48 → 0.7.49
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/hybr1d-ui.js +1620 -1614
- package/dist/hybr1d-ui.umd.cjs +14 -14
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2889,7 +2889,7 @@ declare interface TooltipV2Props {
|
|
|
2889
2889
|
contentMaxLength?: number;
|
|
2890
2890
|
}
|
|
2891
2891
|
|
|
2892
|
-
export declare function Upload({ getUploadDoc, setIsUploading, customComponent, fileUploadLimit, type, isMultiple, uploadFileLimit, singleFileClassName, fileContainerClassName, uploadBtnClassName, alignContent, showUploadIcon, additionalNode, disabled, addDocumentText, customUrl, beforeUploadHandler, extraSubtitleText, inventoryId, softwareId, preLoadedFiles, showFileList, acceptedFileTypes, error, addDocumentSubtitle, handleImageUpload, }: UploadProps): JSX_2.Element;
|
|
2892
|
+
export declare function Upload({ getUploadDoc, setIsUploading, customComponent, fileUploadLimit, type, isMultiple, uploadFileLimit, singleFileClassName, fileContainerClassName, uploadBtnClassName, alignContent, showUploadIcon, additionalNode, disabled, addDocumentText, customUrl, beforeUploadHandler, extraSubtitleText, inventoryId, softwareId, preLoadedFiles, showFileList, acceptedFileTypes, error, addDocumentSubtitle, handleImageUpload, variant, }: UploadProps): JSX_2.Element;
|
|
2893
2893
|
|
|
2894
2894
|
export declare enum UPLOAD_ALIGN_BTN_CONTENT {
|
|
2895
2895
|
LEFT = "flex-start",
|
|
@@ -2940,6 +2940,7 @@ declare interface UploadProps {
|
|
|
2940
2940
|
error?: string | null;
|
|
2941
2941
|
addDocumentSubtitle?: string;
|
|
2942
2942
|
handleImageUpload: (images: any[], type: DOCS_TYPE, key?: string, value?: string, customUrl?: string, inventoryId?: string | null, softwareId?: string | null) => Promise<UploadFileType[]>;
|
|
2943
|
+
variant?: string;
|
|
2943
2944
|
}
|
|
2944
2945
|
|
|
2945
2946
|
export declare const useBreadcrumbs: (breadcrumbs: Breadcrumb_2[]) => void;
|