@hybr1d-tech/charizard 2.3.42 → 2.3.43
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.css +1 -1
- package/dist/hybr1d-ui.js +1355 -1346
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1906,7 +1906,7 @@ declare type ModalProps = {
|
|
|
1906
1906
|
* @param {ModalV2Props} props - The props for the ModalV2 component.
|
|
1907
1907
|
* @returns {JSX.Element} The rendered modal component.
|
|
1908
1908
|
*/
|
|
1909
|
-
export declare function ModalV2({ isOpen, title, subTitle, trigger, children, footerButtons, showBackdrop, onClose, customModalClasses, onCustomInteractOutside, closeOnInteractOutside, }: ModalV2Props): JSX.Element;
|
|
1909
|
+
export declare function ModalV2({ isOpen, title, subTitle, trigger, children, footerButtons, showBackdrop, onClose, customModalClasses, onCustomInteractOutside, closeOnInteractOutside, hideHeader, }: ModalV2Props): JSX.Element;
|
|
1910
1910
|
|
|
1911
1911
|
declare interface ModalV2Props {
|
|
1912
1912
|
/** Indicates if the modal is open. */
|
|
@@ -1928,6 +1928,7 @@ declare interface ModalV2Props {
|
|
|
1928
1928
|
customModalClasses?: string;
|
|
1929
1929
|
onCustomInteractOutside?: (event: dialog.InteractOutsideEvent) => void;
|
|
1930
1930
|
closeOnInteractOutside?: boolean;
|
|
1931
|
+
hideHeader?: boolean;
|
|
1931
1932
|
}
|
|
1932
1933
|
|
|
1933
1934
|
/**
|