@overmap-ai/blocks 1.0.39-alpha.0 → 1.0.39
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/Layout/SlideOut.d.ts +1 -2
- package/dist/Layout/index.d.ts +14 -0
- package/dist/blocks.js.map +1 -1
- package/dist/blocks.umd.cjs.map +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ComponentPropsWithRef } from 'react';
|
|
2
2
|
import { SlideOutProps } from '../SlideOut';
|
|
3
|
-
interface LayoutSlideOutProps extends Omit<SlideOutProps, "open" | "initialWidth">, Omit<ComponentPropsWithRef<"div">, "content"> {
|
|
3
|
+
export interface LayoutSlideOutProps extends Omit<SlideOutProps, "open" | "initialWidth">, Omit<ComponentPropsWithRef<"div">, "content"> {
|
|
4
4
|
/** controls if the SlideOut is initially open once mounted when NOT in smallMode.
|
|
5
5
|
* NOTE: changing the value of this will cause the SlideOut to open/close after mounting NOT in smallMode depending on
|
|
6
6
|
* its passed in value.
|
|
@@ -18,4 +18,3 @@ interface LayoutSlideOutProps extends Omit<SlideOutProps, "open" | "initialWidth
|
|
|
18
18
|
id: string;
|
|
19
19
|
}
|
|
20
20
|
export declare const LayoutSlideOut: import('react').NamedExoticComponent<LayoutSlideOutProps>;
|
|
21
|
-
export {};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export * from './Container';
|
|
3
|
+
export * from './context';
|
|
4
|
+
export * from './Root';
|
|
5
|
+
export * from './SlideOut';
|
|
6
|
+
export * from './SlideOutOverlay';
|
|
7
|
+
export * from './SlideOutTrigger';
|
|
8
|
+
export declare const Layout: {
|
|
9
|
+
Root: import('react').MemoExoticComponent<(props: import('./Root').LayoutRootProps) => import("react/jsx-runtime").JSX.Element>;
|
|
10
|
+
Container: import('react').NamedExoticComponent<import('./Container').LayoutContainerProps>;
|
|
11
|
+
SlideOutOverlay: import('react').NamedExoticComponent<import('./SlideOutOverlay').LayoutSlideOutOverlayProps>;
|
|
12
|
+
SlideOut: import('react').NamedExoticComponent<import('./SlideOut').LayoutSlideOutProps>;
|
|
13
|
+
SlideOutTrigger: import('react').NamedExoticComponent<import('./SlideOutTrigger').LayoutSlideOutTriggerProps>;
|
|
14
|
+
};
|