aq-fe-framework 0.1.524 → 0.1.525
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/core/index.d.mts +1 -1
- package/package.json +1 -1
package/dist/core/index.d.mts
CHANGED
@@ -196,7 +196,7 @@ interface MyFlexEndProps extends GroupProps {
|
|
196
196
|
}
|
197
197
|
declare function MyFlexEnd({ children, ...rest }: MyFlexEndProps): react_jsx_runtime.JSX.Element;
|
198
198
|
|
199
|
-
interface MyModalDeleteProps extends ModalProps {
|
199
|
+
interface MyModalDeleteProps extends Omit<ModalProps, "opened" | "onClose"> {
|
200
200
|
disclosure: ReturnType<typeof useDisclosure>;
|
201
201
|
contextData?: string;
|
202
202
|
onSubmit?: () => void;
|