jderobot-ide-interface 0.2.100 → 0.2.102

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,4 +1,5 @@
1
+ import { ReactNode } from "react";
1
2
  declare const HighlightedSection: ({ children }: {
2
- children: any;
3
+ children: ReactNode;
3
4
  }) => JSX.Element;
4
5
  export default HighlightedSection;
@@ -1,4 +1,5 @@
1
+ import { ReactNode } from "react";
1
2
  declare const ImageRow: ({ children }: {
2
- children?: JSX.Element | JSX.Element[];
3
+ children: ReactNode;
3
4
  }) => JSX.Element;
4
5
  export default ImageRow;
@@ -1,4 +1,5 @@
1
+ import { ReactNode } from "react";
1
2
  declare const List: ({ children }: {
2
- children: any;
3
+ children: ReactNode;
3
4
  }) => JSX.Element;
4
5
  export default List;
@@ -1,6 +1,7 @@
1
+ import { ReactNode } from "react";
1
2
  declare const TheorySection: ({ title, href, children, }: {
2
3
  title: string;
3
4
  href: string;
4
- children: any;
5
+ children: ReactNode;
5
6
  }) => JSX.Element;
6
7
  export default TheorySection;
@@ -1,6 +1,7 @@
1
+ import { ReactNode } from "react";
1
2
  declare const TheorySubsection: ({ title, href, children, }: {
2
3
  title: string;
3
4
  href: string;
4
- children: any;
5
+ children: ReactNode;
5
6
  }) => JSX.Element;
6
7
  export default TheorySubsection;
@@ -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";