climb-onyx-gui 0.15.5-dev.10 → 0.15.5-dev.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "climb-onyx-gui",
3
- "version": "0.15.5-dev.10",
3
+ "version": "0.15.5-dev.3",
4
4
  "description": "Onyx Graphical User Interface",
5
5
  "keywords": [
6
6
  "gui",
@@ -1,11 +0,0 @@
1
- import { default as React } from 'react';
2
- import { ModalProps } from 'react-bootstrap';
3
- interface ContainerModalProps extends Omit<ModalProps, "container"> {
4
- children: React.ReactNode;
5
- }
6
- /**
7
- * Base modal component that automatically scopes modals to a parent container
8
- * to ensure Bootstrap styles are properly applied when scoped.
9
- */
10
- export declare function ContainerModal({ children, ...props }: ContainerModalProps): import("react/jsx-runtime").JSX.Element;
11
- export default ContainerModal;