climb-onyx-gui 0.15.5-dev → 0.15.5-dev.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/climb-onyx-gui.js +6066 -6091
- package/dist/components/OnyxModal.d.ts +11 -0
- package/dist/style.css +5 -5
- package/package.json +1 -1
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { ModalProps } from 'react-bootstrap';
|
|
3
|
+
interface OnyxModalProps extends Omit<ModalProps, "container"> {
|
|
4
|
+
children: React.ReactNode;
|
|
5
|
+
}
|
|
6
|
+
/**
|
|
7
|
+
* Base modal component that automatically scopes modals to the .Onyx container
|
|
8
|
+
* to ensure Bootstrap styles are properly applied when scoped.
|
|
9
|
+
*/
|
|
10
|
+
export declare function OnyxModal({ children, ...props }: OnyxModalProps): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export default OnyxModal;
|