jderobot-ide-interface 0.2.101 → 0.2.103-beta1

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,7 +1,12 @@
1
+ interface SubTheoryIndex {
2
+ href: string;
3
+ title: string;
4
+ subsubsections?: SubTheoryIndex[];
5
+ }
1
6
  interface TheoryIndex {
2
7
  href: string;
3
8
  title: string;
4
- subsections?: TheoryIndex[];
9
+ subsections?: SubTheoryIndex[];
5
10
  }
6
11
  interface IdeInterfaceProps {
7
12
  title: string;
@@ -0,0 +1,7 @@
1
+ import { ReactNode } from "react";
2
+ declare const TheorySubsubsection: ({ title, href, children, }: {
3
+ title: string;
4
+ href: string;
5
+ children: ReactNode;
6
+ }) => JSX.Element;
7
+ export default TheorySubsubsection;
@@ -0,0 +1,6 @@
1
+ interface StyledSubsubsectionProps {
2
+ color?: string;
3
+ }
4
+ export declare const StyledSubsubsection: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, StyledSubsubsectionProps>> & string;
5
+ export declare const StyledSubsubsectionTitle: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, never>> & string;
6
+ export {};
@@ -2,6 +2,7 @@ export { default as HighlightedSection } from "./HighlightedSection";
2
2
  export { default as Code } from "./Code";
3
3
  export { default as TheorySection } from "./Section";
4
4
  export { default as TheorySubsection } from "./Subsection";
5
+ export { default as TheorySubsubsection } from "./Subsubsection";
5
6
  export { default as CarouselDisplay } from "./CarouselDisplay";
6
7
  export { default as TheoryList } from "./List";
7
8
  export { default as TheoryCanvas } from "./Canvas";
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, TheorySubsubsection, 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";