jderobot-ide-interface 0.2.103-beta1 → 0.2.103-beta3

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,12 +1,7 @@
1
- interface SubTheoryIndex {
2
- href: string;
3
- title: string;
4
- subsubsections?: SubTheoryIndex[];
5
- }
6
1
  interface TheoryIndex {
7
2
  href: string;
8
3
  title: string;
9
- subsections?: SubTheoryIndex[];
4
+ subsections?: TheoryIndex[];
10
5
  }
11
6
  interface IdeInterfaceProps {
12
7
  title: string;
@@ -0,0 +1,2 @@
1
+ declare const FormulaSection: () => JSX.Element;
2
+ export default FormulaSection;
@@ -0,0 +1,6 @@
1
+ interface StyledFormulaContainerProps {
2
+ bg?: string;
3
+ color?: string;
4
+ }
5
+ export declare const StyledFormulaContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, StyledFormulaContainerProps>> & string;
6
+ export {};
@@ -13,3 +13,4 @@ export { default as YoutubeVideo } from "./YoutubeVideo";
13
13
  export { default as Image } from "./Image";
14
14
  export { default as ImageRow } from "./ImageRow";
15
15
  export { default as Link } from "./Link";
16
+ export { default as FormulaSection } from "./FormulaSection";