jderobot-ide-interface 0.2.98 → 0.2.99
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.
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { Layout } from "Types";
|
|
3
3
|
export declare const ResizableHoriz: {
|
|
4
|
-
({ width, min, max, snap, children, }: {
|
|
4
|
+
({ width, min, max, snap, hidden, expand, children, }: {
|
|
5
5
|
width: number;
|
|
6
6
|
min: number;
|
|
7
7
|
max: number;
|
|
8
8
|
snap: number[];
|
|
9
|
+
hidden?: boolean;
|
|
10
|
+
expand?: boolean;
|
|
9
11
|
children: any;
|
|
10
12
|
}): JSX.Element;
|
|
11
13
|
defaultProps: {
|
|
@@ -2,6 +2,7 @@ import { Resizable } from "re-resizable";
|
|
|
2
2
|
interface StyledResizableHorizProps {
|
|
3
3
|
color?: string;
|
|
4
4
|
hover?: string;
|
|
5
|
+
expand?: boolean;
|
|
5
6
|
}
|
|
6
7
|
export declare const StyledResizableHoriz: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("re-resizable").ResizableProps & import("react").RefAttributes<Resizable>, StyledResizableHorizProps>> & string & Omit<typeof Resizable, keyof import("react").Component<any, {}, any>>;
|
|
7
8
|
interface StyledResizableVertProps {
|