vrfi-design-system 1.1.15 → 1.1.17
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.d.ts +3 -0
- package/dist/main.es.js +4418 -4350
- package/dist/main.umd.js +73 -73
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -769,6 +769,7 @@ export declare interface PopoverIconCardProps {
|
|
|
769
769
|
editIconClick?: () => void;
|
|
770
770
|
deleteIconClick?: () => void;
|
|
771
771
|
icon?: Icons_2;
|
|
772
|
+
className?: string;
|
|
772
773
|
}
|
|
773
774
|
|
|
774
775
|
export { PopoverProps }
|
|
@@ -797,6 +798,8 @@ export declare interface PreviewDocumentsCardProps {
|
|
|
797
798
|
onRemove: () => void;
|
|
798
799
|
onRename?: (newName: string) => void;
|
|
799
800
|
canRename?: boolean;
|
|
801
|
+
canView?: boolean;
|
|
802
|
+
fileUrl?: string;
|
|
800
803
|
}
|
|
801
804
|
|
|
802
805
|
export declare function ProfileAssignedCard({ name }: ProfileAssignedCardProps): default_2.JSX.Element;
|