jderobot-ide-interface 0.2.97 → 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: {
|
|
@@ -15,13 +17,15 @@ export declare const ResizableHoriz: {
|
|
|
15
17
|
};
|
|
16
18
|
};
|
|
17
19
|
export declare const ResizableVert: {
|
|
18
|
-
({ height, min, max, snap, top, roundness, children, }: {
|
|
20
|
+
({ height, min, max, snap, top, roundness, hidden, expand, children, }: {
|
|
19
21
|
height: number;
|
|
20
22
|
min: number;
|
|
21
23
|
max: number;
|
|
22
24
|
snap: number[];
|
|
23
25
|
top?: boolean;
|
|
24
26
|
roundness?: number;
|
|
27
|
+
hidden?: boolean;
|
|
28
|
+
expand?: boolean;
|
|
25
29
|
children: any;
|
|
26
30
|
}): JSX.Element;
|
|
27
31
|
defaultProps: {
|
|
@@ -42,6 +46,7 @@ export declare const ResizableLayout: ({ baseWidth, maxWidth, showExplorer, layo
|
|
|
42
46
|
children: any[];
|
|
43
47
|
}) => JSX.Element;
|
|
44
48
|
export declare const CollapsableResizableColumn: React.NamedExoticComponent<{
|
|
49
|
+
state: boolean[];
|
|
45
50
|
splashIcon: JSX.Element;
|
|
46
51
|
children: any[];
|
|
47
52
|
}>;
|
|
@@ -2,11 +2,13 @@ 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 {
|
|
8
9
|
color?: string;
|
|
9
10
|
hover?: string;
|
|
11
|
+
expand?: boolean;
|
|
10
12
|
}
|
|
11
13
|
export declare const StyledResizableVert: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("re-resizable").ResizableProps & import("react").RefAttributes<Resizable>, StyledResizableVertProps>> & string & Omit<typeof Resizable, keyof import("react").Component<any, {}, any>>;
|
|
12
14
|
interface StyledResizableVertBlockProps {
|
|
@@ -25,6 +27,10 @@ interface StyledVertContinerProps {
|
|
|
25
27
|
bgColor?: string;
|
|
26
28
|
}
|
|
27
29
|
export declare const StyledVertContiner: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledVertContinerProps>> & string;
|
|
30
|
+
interface StyledVertRContainerProps {
|
|
31
|
+
roundness?: number;
|
|
32
|
+
}
|
|
33
|
+
export declare const StyledVertRContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledVertRContainerProps>> & string;
|
|
28
34
|
interface StyledVertFillerContinerProps {
|
|
29
35
|
bgColor?: string;
|
|
30
36
|
roundness?: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -6,6 +6,6 @@ export { StatusBarCustomUniverseSelector, StyledStatusBarEntry, } from "./compon
|
|
|
6
6
|
export { ProgressBar } from "./components";
|
|
7
7
|
export { Button, MenuButton, MenuButtonStroke, MenuButtonLabel, } from "./components";
|
|
8
8
|
export { Modal, ModalTitlebar, ModalRow, ModalInputBox, ModalInputDropdown, ModalEditableList, ModalInputDropArea, ModalInputSelectIcon, ModalActionList, ModalRowDataText, } from "./components";
|
|
9
|
-
export { HighlightedSection, Code, TheorySection, TheorySubsection, CarouselDisplay, TheoryList, TheoryCanvas, Timeline, ComparisonDisplay, TimelineComparison, YoutubeVideo, Image, ImageRow, Link } from "./components";
|
|
9
|
+
export { HighlightedSection, Code, TheorySection, TheorySubsection, CarouselDisplay, TheoryList, TheoryCanvas, Timeline, ComparisonDisplay, TimelineComparison, YoutubeVideo, Image, ImageRow, Link, } from "./components";
|
|
10
10
|
export { ThemeProvider, useTheme, OptionsProvider, useOptions, ErrorProvider, useError, contrastSelector, } from "./utils";
|
|
11
11
|
export type { ExtraEditorProps, Layout, Entry, Options, Theme, ExplorerEntry, EditorsEntry, ViewersEntry, ExtraApi, StatusBarComponents, ModelRowTypes, ModalInputSelectIconEntry, ExtraSnippets, Snippet, CarouselData, TimelineComparisonEntry, TimelineEntry, } from "./types";
|