jderobot-ide-interface 0.2.97 → 0.2.98
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.
|
@@ -15,13 +15,15 @@ export declare const ResizableHoriz: {
|
|
|
15
15
|
};
|
|
16
16
|
};
|
|
17
17
|
export declare const ResizableVert: {
|
|
18
|
-
({ height, min, max, snap, top, roundness, children, }: {
|
|
18
|
+
({ height, min, max, snap, top, roundness, hidden, expand, children, }: {
|
|
19
19
|
height: number;
|
|
20
20
|
min: number;
|
|
21
21
|
max: number;
|
|
22
22
|
snap: number[];
|
|
23
23
|
top?: boolean;
|
|
24
24
|
roundness?: number;
|
|
25
|
+
hidden?: boolean;
|
|
26
|
+
expand?: boolean;
|
|
25
27
|
children: any;
|
|
26
28
|
}): JSX.Element;
|
|
27
29
|
defaultProps: {
|
|
@@ -42,6 +44,7 @@ export declare const ResizableLayout: ({ baseWidth, maxWidth, showExplorer, layo
|
|
|
42
44
|
children: any[];
|
|
43
45
|
}) => JSX.Element;
|
|
44
46
|
export declare const CollapsableResizableColumn: React.NamedExoticComponent<{
|
|
47
|
+
state: boolean[];
|
|
45
48
|
splashIcon: JSX.Element;
|
|
46
49
|
children: any[];
|
|
47
50
|
}>;
|
|
@@ -7,6 +7,7 @@ export declare const StyledResizableHoriz: import("styled-components/dist/types"
|
|
|
7
7
|
interface StyledResizableVertProps {
|
|
8
8
|
color?: string;
|
|
9
9
|
hover?: string;
|
|
10
|
+
expand?: boolean;
|
|
10
11
|
}
|
|
11
12
|
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
13
|
interface StyledResizableVertBlockProps {
|
|
@@ -25,6 +26,10 @@ interface StyledVertContinerProps {
|
|
|
25
26
|
bgColor?: string;
|
|
26
27
|
}
|
|
27
28
|
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;
|
|
29
|
+
interface StyledVertRContainerProps {
|
|
30
|
+
roundness?: number;
|
|
31
|
+
}
|
|
32
|
+
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
33
|
interface StyledVertFillerContinerProps {
|
|
29
34
|
bgColor?: string;
|
|
30
35
|
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";
|