jderobot-ide-interface 0.2.104 → 0.2.105

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.
@@ -0,0 +1,5 @@
1
+ declare const LocalVideo: ({ src, position, }: {
2
+ src: string;
3
+ position?: string;
4
+ }) => JSX.Element;
5
+ export default LocalVideo;
@@ -0,0 +1,6 @@
1
+ interface StyledLocalVideoProps {
2
+ roundness?: number;
3
+ position?: string;
4
+ }
5
+ export declare const StyledLocalVideo: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement>, StyledLocalVideoProps>> & string;
6
+ export {};
@@ -14,3 +14,4 @@ export { default as YoutubeVideo } from "./YoutubeVideo";
14
14
  export { default as Image } from "./Image";
15
15
  export { default as ImageRow } from "./ImageRow";
16
16
  export { default as Link } from "./Link";
17
+ export { default as LocalVideo } from "./LocalVideo";
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, TheorySubsubsection, CarouselDisplay, TheoryList, TheoryCanvas, Timeline, ComparisonDisplay, TimelineComparison, YoutubeVideo, Image, ImageRow, Link, FormulaSection } from "./components";
9
+ export { HighlightedSection, Code, TheorySection, TheorySubsection, TheorySubsubsection, CarouselDisplay, TheoryList, TheoryCanvas, Timeline, ComparisonDisplay, TimelineComparison, YoutubeVideo, LocalVideo, Image, ImageRow, Link, FormulaSection } 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";