jderobot-ide-interface 0.2.87 → 0.2.89
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/components/IdeInterface/TheoryInterface.d.ts +12 -0
- package/dist/components/IdeInterface/TheoryInterface.styles.d.ts +21 -0
- package/dist/components/IdeInterface/index.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/main.js +137 -2
- package/dist/package.json +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
interface TheoryIndex {
|
|
2
|
+
href: string;
|
|
3
|
+
title: string;
|
|
4
|
+
subsections: TheoryIndex[];
|
|
5
|
+
}
|
|
6
|
+
interface IdeInterfaceProps {
|
|
7
|
+
title: string;
|
|
8
|
+
index: TheoryIndex[];
|
|
9
|
+
children?: JSX.Element;
|
|
10
|
+
}
|
|
11
|
+
declare const TheoryInterface: ({ title, index, children, }: IdeInterfaceProps) => JSX.Element;
|
|
12
|
+
export default TheoryInterface;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
interface StyledTheoryTitleProps {
|
|
2
|
+
color?: string;
|
|
3
|
+
}
|
|
4
|
+
export declare const StyledTheoryTitle: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, StyledTheoryTitleProps>> & string;
|
|
5
|
+
interface StyledIndexProps {
|
|
6
|
+
color?: string;
|
|
7
|
+
link?: string;
|
|
8
|
+
depth: number;
|
|
9
|
+
}
|
|
10
|
+
export declare const StyledIndex: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLUListElement>, HTMLUListElement>, StyledIndexProps>> & string;
|
|
11
|
+
interface StyledIndexContainerProps {
|
|
12
|
+
bg?: string;
|
|
13
|
+
border?: string;
|
|
14
|
+
roundness?: number;
|
|
15
|
+
}
|
|
16
|
+
export declare const StyledIndexContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, StyledIndexContainerProps>> & string;
|
|
17
|
+
interface StyledIndexTitleProps {
|
|
18
|
+
color?: string;
|
|
19
|
+
}
|
|
20
|
+
export declare const StyledIndexTitle: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, StyledIndexTitleProps>> & string;
|
|
21
|
+
export {};
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { IdeInterface } from "./components";
|
|
2
2
|
export default IdeInterface;
|
|
3
3
|
export { VncViewer } from "./components";
|
|
4
|
+
export { TheoryInterface } from "./components";
|
|
4
5
|
export { StatusBarCustomUniverseSelector, StyledStatusBarEntry } from "./components";
|
|
5
6
|
export { ProgressBar } from "./components";
|
|
6
7
|
export { Button, MenuButton, MenuButtonStroke, MenuButtonLabel, } from "./components";
|