jderobot-ide-interface 0.2.89 → 0.2.94

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.
Files changed (38) hide show
  1. package/dist/components/IdeInterface/TheoryInterface.d.ts +4 -4
  2. package/dist/components/IdeInterface/TheoryInterface.stories.d.ts +6 -0
  3. package/dist/components/IdeInterface/TheoryInterface.styles.d.ts +7 -2
  4. package/dist/components/Theory/Canvas.d.ts +5 -0
  5. package/dist/components/Theory/Canvas.styles.d.ts +6 -0
  6. package/dist/components/Theory/CarouselDisplay.d.ts +8 -0
  7. package/dist/components/Theory/CarouselDisplay.styles.d.ts +43 -0
  8. package/dist/components/Theory/Code.d.ts +4 -0
  9. package/dist/components/Theory/Code.styles.d.ts +8 -0
  10. package/dist/components/Theory/ComparisonDisplay.d.ts +6 -0
  11. package/dist/components/Theory/HighlightedSection.d.ts +4 -0
  12. package/dist/components/Theory/HighlightedSection.styles.d.ts +7 -0
  13. package/dist/components/Theory/Image.d.ts +7 -0
  14. package/dist/components/Theory/Image.styles.d.ts +7 -0
  15. package/dist/components/Theory/ImageRow.d.ts +4 -0
  16. package/dist/components/Theory/ImageRow.styles.d.ts +1 -0
  17. package/dist/components/Theory/Link.d.ts +6 -0
  18. package/dist/components/Theory/Link.styles.d.ts +5 -0
  19. package/dist/components/Theory/List.d.ts +4 -0
  20. package/dist/components/Theory/List.styles.d.ts +1 -0
  21. package/dist/components/Theory/Section.d.ts +6 -0
  22. package/dist/components/Theory/Section.styles.d.ts +6 -0
  23. package/dist/components/Theory/Subsection.d.ts +6 -0
  24. package/dist/components/Theory/Subsection.styles.d.ts +6 -0
  25. package/dist/components/Theory/Timeline.d.ts +6 -0
  26. package/dist/components/Theory/Timeline.styles.d.ts +26 -0
  27. package/dist/components/Theory/TimelineComparison.d.ts +6 -0
  28. package/dist/components/Theory/TimelineComparison.styles.d.ts +15 -0
  29. package/dist/components/Theory/YoutubeVideo.d.ts +6 -0
  30. package/dist/components/Theory/YoutubeVideo.styles.d.ts +7 -0
  31. package/dist/components/Theory/index.d.ts +14 -0
  32. package/dist/components/index.d.ts +1 -0
  33. package/dist/index.d.ts +4 -3
  34. package/dist/main.js +42606 -28033
  35. package/dist/package.json +7 -2
  36. package/dist/types/index.d.ts +1 -0
  37. package/dist/types/theory.d.ts +22 -0
  38. package/package.json +7 -2
@@ -1,12 +1,12 @@
1
1
  interface TheoryIndex {
2
2
  href: string;
3
3
  title: string;
4
- subsections: TheoryIndex[];
4
+ subsections?: TheoryIndex[];
5
5
  }
6
6
  interface IdeInterfaceProps {
7
7
  title: string;
8
- index: TheoryIndex[];
9
- children?: JSX.Element;
8
+ index?: TheoryIndex[];
9
+ children?: JSX.Element | JSX.Element[];
10
10
  }
11
- declare const TheoryInterface: ({ title, index, children, }: IdeInterfaceProps) => JSX.Element;
11
+ declare const TheoryInterface: ({ title, index, children }: IdeInterfaceProps) => JSX.Element;
12
12
  export default TheoryInterface;
@@ -0,0 +1,6 @@
1
+ import type { Meta, StoryObj } from "@storybook/react-webpack5";
2
+ import TheoryInterface from "./TheoryInterface";
3
+ type Story = StoryObj<typeof TheoryInterface>;
4
+ declare const meta: Meta<typeof TheoryInterface>;
5
+ export default meta;
6
+ export declare const Main: Story;
@@ -4,10 +4,9 @@ interface StyledTheoryTitleProps {
4
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
5
  interface StyledIndexProps {
6
6
  color?: string;
7
- link?: string;
8
7
  depth: number;
9
8
  }
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;
9
+ export declare const StyledIndex: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>, StyledIndexProps>> & string;
11
10
  interface StyledIndexContainerProps {
12
11
  bg?: string;
13
12
  border?: string;
@@ -18,4 +17,10 @@ interface StyledIndexTitleProps {
18
17
  color?: string;
19
18
  }
20
19
  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;
20
+ export declare const StyledTheoryContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
21
+ export declare const StyledTheoryContentContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
22
+ interface StyledTheoryPageProps {
23
+ bg?: string;
24
+ }
25
+ export declare const StyledTheoryPage: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledTheoryPageProps>> & string;
21
26
  export {};
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ declare const Canvas: ({ ref }: {
3
+ ref: React.RefObject<HTMLCanvasElement>;
4
+ }) => JSX.Element;
5
+ export default Canvas;
@@ -0,0 +1,6 @@
1
+ interface StyledCanvasProps {
2
+ bg?: string;
3
+ roundness?: number;
4
+ }
5
+ export declare const StyledCanvas: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").CanvasHTMLAttributes<HTMLCanvasElement>, HTMLCanvasElement>, StyledCanvasProps>> & string;
6
+ export {};
@@ -0,0 +1,8 @@
1
+ import { CarouselData } from "Types";
2
+ declare const CarouselDisplay: ({ title, data, comparison, maxImageHeight, }: {
3
+ title: string;
4
+ data: CarouselData[];
5
+ comparison?: boolean;
6
+ maxImageHeight?: number;
7
+ }) => JSX.Element;
8
+ export default CarouselDisplay;
@@ -0,0 +1,43 @@
1
+ interface StyledCarouselContainerProps {
2
+ bg?: string;
3
+ roundness?: number;
4
+ }
5
+ export declare const StyledCarouselContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledCarouselContainerProps>> & string;
6
+ interface StyledCarouselTitleProps {
7
+ color?: string;
8
+ }
9
+ export declare const StyledCarouselTitle: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, StyledCarouselTitleProps>> & string;
10
+ export declare const StyledCarouselSections: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
11
+ interface StyledCarouselSectionProps {
12
+ text?: string;
13
+ altText?: string;
14
+ bg?: string;
15
+ altBg?: string;
16
+ roundness?: number;
17
+ change: boolean;
18
+ }
19
+ export declare const StyledCarouselSection: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, StyledCarouselSectionProps>> & string;
20
+ export declare const StyledCarouselSectionSpacer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
21
+ export declare const StyledCarouselContentContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
22
+ interface StyledCarouselContentProps {
23
+ sideBySide?: boolean;
24
+ }
25
+ export declare const StyledCarouselContent: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledCarouselContentProps>> & string;
26
+ interface StyledCarouselImageContainerProps {
27
+ bg?: string;
28
+ color?: string;
29
+ roundness?: number;
30
+ sideBySide?: boolean;
31
+ }
32
+ export declare const StyledCarouselImageContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledCarouselImageContainerProps>> & string;
33
+ interface StyledCarouselImageWrapperProps {
34
+ bg?: string;
35
+ roundness?: number;
36
+ maxHeight?: number;
37
+ }
38
+ export declare const StyledCarouselImageWrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledCarouselImageWrapperProps>> & string;
39
+ export declare const StyledCarouselImage: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, never>> & string;
40
+ export declare const StyledCarouselVideo: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement>, never>> & string;
41
+ export declare const StyledCarouselImageTitle: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, never>> & string;
42
+ export declare const StyledCarouselImageDesc: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, never>> & string;
43
+ export {};
@@ -0,0 +1,4 @@
1
+ declare const Code: ({ children }: {
2
+ children: string;
3
+ }) => JSX.Element;
4
+ export default Code;
@@ -0,0 +1,8 @@
1
+ interface StyledTheoryCodeProps {
2
+ bg?: string;
3
+ color?: string;
4
+ roundness?: number;
5
+ border?: string;
6
+ }
7
+ export declare const StyledTheoryCode: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, StyledTheoryCodeProps>> & string;
8
+ export {};
@@ -0,0 +1,6 @@
1
+ import { CarouselData } from "Types";
2
+ declare const ComparisonDisplay: ({ title, data, }: {
3
+ title: string;
4
+ data: CarouselData[];
5
+ }) => JSX.Element;
6
+ export default ComparisonDisplay;
@@ -0,0 +1,4 @@
1
+ declare const HighlightedSection: ({ children }: {
2
+ children: any;
3
+ }) => JSX.Element;
4
+ export default HighlightedSection;
@@ -0,0 +1,7 @@
1
+ interface StyledHighlightContainerProps {
2
+ bg?: string;
3
+ color?: string;
4
+ roundness?: number;
5
+ }
6
+ export declare const StyledHighlightContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, StyledHighlightContainerProps>> & string;
7
+ export {};
@@ -0,0 +1,7 @@
1
+ declare const Image: ({ title, caption, src, height, }: {
2
+ title: string;
3
+ caption: string;
4
+ src: string;
5
+ height?: number;
6
+ }) => JSX.Element;
7
+ export default Image;
@@ -0,0 +1,7 @@
1
+ interface StyledImageContainerProps {
2
+ roundness?: number;
3
+ height?: number;
4
+ color?: string;
5
+ }
6
+ export declare const StyledImageContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, StyledImageContainerProps>> & string;
7
+ export {};
@@ -0,0 +1,4 @@
1
+ declare const ImageRow: ({ children }: {
2
+ children?: JSX.Element | JSX.Element[];
3
+ }) => JSX.Element;
4
+ export default ImageRow;
@@ -0,0 +1 @@
1
+ export declare const StyledImageRow: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
@@ -0,0 +1,6 @@
1
+ declare const Link: ({ href, title, newTab, }: {
2
+ href: string;
3
+ title: string;
4
+ newTab?: boolean;
5
+ }) => JSX.Element;
6
+ export default Link;
@@ -0,0 +1,5 @@
1
+ interface StyledLinkProps {
2
+ color?: string;
3
+ }
4
+ export declare const StyledLink: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, StyledLinkProps>> & string;
5
+ export {};
@@ -0,0 +1,4 @@
1
+ declare const List: ({ children }: {
2
+ children: any;
3
+ }) => JSX.Element;
4
+ export default List;
@@ -0,0 +1 @@
1
+ export declare const StyledList: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLUListElement>, HTMLUListElement>, never>> & string;
@@ -0,0 +1,6 @@
1
+ declare const TheorySection: ({ title, href, children, }: {
2
+ title: string;
3
+ href: string;
4
+ children: any;
5
+ }) => JSX.Element;
6
+ export default TheorySection;
@@ -0,0 +1,6 @@
1
+ interface StyledSectionProps {
2
+ color?: string;
3
+ }
4
+ export declare const StyledSection: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, StyledSectionProps>> & string;
5
+ export declare const StyledSectionTitle: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, never>> & string;
6
+ export {};
@@ -0,0 +1,6 @@
1
+ declare const TheorySubsection: ({ title, href, children, }: {
2
+ title: string;
3
+ href: string;
4
+ children: any;
5
+ }) => JSX.Element;
6
+ export default TheorySubsection;
@@ -0,0 +1,6 @@
1
+ interface StyledSubsectionProps {
2
+ color?: string;
3
+ }
4
+ export declare const StyledSubsection: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, StyledSubsectionProps>> & string;
5
+ export declare const StyledSubsectionTitle: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, never>> & string;
6
+ export {};
@@ -0,0 +1,6 @@
1
+ import { TimelineEntry } from "Types";
2
+ declare const Timeline: ({ title, timeline, }: {
3
+ title: string;
4
+ timeline: TimelineEntry[];
5
+ }) => JSX.Element;
6
+ export default Timeline;
@@ -0,0 +1,26 @@
1
+ interface SStyledTimelineContainerProps {
2
+ bg?: string;
3
+ roundness?: number;
4
+ }
5
+ export declare const StyledTimelineContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, SStyledTimelineContainerProps>> & string;
6
+ interface StyledTimelineTitleProps {
7
+ color?: string;
8
+ }
9
+ export declare const StyledTimelineTitle: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, StyledTimelineTitleProps>> & string;
10
+ export declare const StyledTimelineSection: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
11
+ interface StyledTimelineCardProps {
12
+ bg?: string;
13
+ roundness?: number;
14
+ offset: number;
15
+ hidden?: boolean;
16
+ }
17
+ export declare const StyledTimelineCard: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledTimelineCardProps>> & string;
18
+ export declare const StyledTimelineControlContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
19
+ interface StyledTimelineControlsProps {
20
+ color?: string;
21
+ accent?: string;
22
+ }
23
+ export declare const StyledTimelineControls: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledTimelineControlsProps>> & string;
24
+ export declare const StyledTimelineSubtitle: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, never>> & string;
25
+ export declare const StyledTimelineImageDesc: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, never>> & string;
26
+ export {};
@@ -0,0 +1,6 @@
1
+ import { TimelineComparisonEntry } from "Types";
2
+ declare const TimelineComparison: ({ title, timelines, }: {
3
+ title: string;
4
+ timelines: (TimelineComparisonEntry | undefined)[];
5
+ }) => JSX.Element;
6
+ export default TimelineComparison;
@@ -0,0 +1,15 @@
1
+ export declare const StyledTimelineComparisonContent: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
2
+ export declare const StyledTimelineComparisonContentContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
3
+ export declare const StyledTimelineComparisonTabsContent: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
4
+ interface StyledTimelineComparisonControlsProps {
5
+ color?: string;
6
+ accent?: string;
7
+ }
8
+ export declare const StyledTimelineComparisonControls: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledTimelineComparisonControlsProps>> & string;
9
+ interface StyledTimelineComparisonDescProps {
10
+ color?: string;
11
+ bg?: string;
12
+ roundness?: number;
13
+ }
14
+ export declare const StyledTimelineComparisonDesc: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledTimelineComparisonDescProps>> & string;
15
+ export {};
@@ -0,0 +1,6 @@
1
+ declare const YoutubeVideo: ({ title, id, position, }: {
2
+ title: string;
3
+ id: string;
4
+ position?: string;
5
+ }) => JSX.Element;
6
+ export default YoutubeVideo;
@@ -0,0 +1,7 @@
1
+ import YouTube from "react-youtube";
2
+ interface StyledYoutubeProps {
3
+ roundness?: number;
4
+ position?: string;
5
+ }
6
+ export declare const StyledYoutube: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<Omit<any, "ref"> & import("react").RefAttributes<YouTube>, StyledYoutubeProps>> & string & Omit<typeof YouTube, keyof import("react").Component<any, {}, any>>;
7
+ export {};
@@ -0,0 +1,14 @@
1
+ export { default as HighlightedSection } from "./HighlightedSection";
2
+ export { default as Code } from "./Code";
3
+ export { default as TheorySection } from "./Section";
4
+ export { default as TheorySubsection } from "./Subsection";
5
+ export { default as CarouselDisplay } from "./CarouselDisplay";
6
+ export { default as TheoryList } from "./List";
7
+ export { default as TheoryCanvas } from "./Canvas";
8
+ export { default as Timeline } from "./Timeline";
9
+ export { default as ComparisonDisplay } from "./ComparisonDisplay";
10
+ export { default as TimelineComparison } from "./TimelineComparison";
11
+ export { default as YoutubeVideo } from "./YoutubeVideo";
12
+ export { default as Image } from "./Image";
13
+ export { default as ImageRow } from "./ImageRow";
14
+ export { default as Link } from "./Link";
@@ -9,3 +9,4 @@ export * from "./Button";
9
9
  export * from "./ButtonsContainer";
10
10
  export * from "./ProgressBar";
11
11
  export * from "./Dropdown";
12
+ export * from "./Theory";
package/dist/index.d.ts CHANGED
@@ -2,9 +2,10 @@ import { IdeInterface } from "./components";
2
2
  export default IdeInterface;
3
3
  export { VncViewer } from "./components";
4
4
  export { TheoryInterface } from "./components";
5
- export { StatusBarCustomUniverseSelector, StyledStatusBarEntry } from "./components";
5
+ export { StatusBarCustomUniverseSelector, StyledStatusBarEntry, } from "./components";
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 { ThemeProvider, useTheme, OptionsProvider, useOptions, ErrorProvider, useError, contrastSelector } from "./utils";
10
- export type { ExtraEditorProps, Layout, Entry, Options, Theme, ExplorerEntry, EditorsEntry, ViewersEntry, ExtraApi, StatusBarComponents, ModelRowTypes, ModalInputSelectIconEntry, ExtraSnippets, Snippet } from "./types";
9
+ export { HighlightedSection, Code, TheorySection, TheorySubsection, CarouselDisplay, TheoryList, TheoryCanvas, Timeline, ComparisonDisplay, TimelineComparison, YoutubeVideo, Image, ImageRow, Link } from "./components";
10
+ export { ThemeProvider, useTheme, OptionsProvider, useOptions, ErrorProvider, useError, contrastSelector, } from "./utils";
11
+ export type { ExtraEditorProps, Layout, Entry, Options, Theme, ExplorerEntry, EditorsEntry, ViewersEntry, ExtraApi, StatusBarComponents, ModelRowTypes, ModalInputSelectIconEntry, ExtraSnippets, Snippet, CarouselData, TimelineComparisonEntry, TimelineEntry, } from "./types";