@hybr1d-tech/charizard 2.3.2 → 2.3.3
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 +455 -453
- package/dist/hybr1d-ui.umd.cjs +7 -7
- package/dist/index.d.ts +3 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import { ClassNames } from 'react-day-picker';
|
|
|
4
4
|
import { ColumnPinningState } from '@tanstack/react-table';
|
|
5
5
|
import { DateRange } from 'react-day-picker';
|
|
6
6
|
import { default as default_2 } from 'react';
|
|
7
|
+
import * as dialog from '@zag-js/dialog';
|
|
7
8
|
import { HTMLInputTypeAttribute } from 'react';
|
|
8
9
|
import { Id } from 'react-toastify';
|
|
9
10
|
import { JSX } from 'react/jsx-runtime';
|
|
@@ -1905,7 +1906,7 @@ declare type ModalProps = {
|
|
|
1905
1906
|
* @param {ModalV2Props} props - The props for the ModalV2 component.
|
|
1906
1907
|
* @returns {JSX.Element} The rendered modal component.
|
|
1907
1908
|
*/
|
|
1908
|
-
export declare function ModalV2({ isOpen, title, subTitle, trigger, children, footerButtons, showBackdrop, onClose, customModalClasses, }: ModalV2Props): JSX.Element;
|
|
1909
|
+
export declare function ModalV2({ isOpen, title, subTitle, trigger, children, footerButtons, showBackdrop, onClose, customModalClasses, onCustomInteractOutside, }: ModalV2Props): JSX.Element;
|
|
1909
1910
|
|
|
1910
1911
|
declare interface ModalV2Props {
|
|
1911
1912
|
/** Indicates if the modal is open. */
|
|
@@ -1925,6 +1926,7 @@ declare interface ModalV2Props {
|
|
|
1925
1926
|
/** Indicates whether to show a backdrop behind the modal. */
|
|
1926
1927
|
showBackdrop?: boolean;
|
|
1927
1928
|
customModalClasses?: string;
|
|
1929
|
+
onCustomInteractOutside?: (event: dialog.InteractOutsideEvent) => void;
|
|
1928
1930
|
}
|
|
1929
1931
|
|
|
1930
1932
|
/**
|