ui-mathilde-web 0.11.0 → 0.11.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/style.css +1 -1
- package/dist/ui-mathilde-web.d.ts +2 -1
- package/dist/ui-mathilde-web.js +1639 -1637
- package/dist/ui-mathilde-web.umd.cjs +36 -36
- package/package.json +1 -1
|
@@ -834,12 +834,13 @@ declare interface ToggleProps {
|
|
|
834
834
|
boldWhenActive?: boolean;
|
|
835
835
|
}
|
|
836
836
|
|
|
837
|
-
export declare function TooltipComponent({ content, trigger, children }: TooltipProps): JSX_2.Element;
|
|
837
|
+
export declare function TooltipComponent({ content, trigger, children, disabled }: TooltipProps): JSX_2.Element;
|
|
838
838
|
|
|
839
839
|
declare interface TooltipProps {
|
|
840
840
|
content: string;
|
|
841
841
|
trigger: 'hover' | 'click';
|
|
842
842
|
children?: ReactNode;
|
|
843
|
+
disabled?: boolean;
|
|
843
844
|
}
|
|
844
845
|
|
|
845
846
|
declare interface ValidationListProps {
|