@pretextbook/web-editor 0.0.16 → 0.0.18

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.
package/dist/App.d.ts CHANGED
@@ -1,7 +1,3 @@
1
- import "primereact/resources/themes/lara-light-blue/theme.css";
2
- import "primereact/resources/primereact.min.css";
3
- import "primeicons/primeicons.css";
4
- import "primeflex/primeflex.css";
5
1
  import "./App.css";
6
2
  declare function App(): import("react/jsx-runtime").JSX.Element;
7
3
  export default App;
@@ -4,6 +4,5 @@ interface FullPreviewProps {
4
4
  title?: string;
5
5
  onRebuild: (content: string, title: string, postToIframe: (url: string, data: any) => void) => void;
6
6
  }
7
- export declare const postToIframe: (url: string, data: any, iframeName: string) => void;
8
7
  declare const FullPreview: ({ content, title, onRebuild }: FullPreviewProps) => import("react/jsx-runtime").JSX.Element;
9
8
  export default FullPreview;
@@ -0,0 +1 @@
1
+ export declare const postToIframe: (url: string, data: any, iframeName: string) => void;
package/dist/index.d.ts CHANGED
@@ -3,4 +3,5 @@ export { default as Editors } from './components/Editors';
3
3
  export type { editorProps } from './components/Editors';
4
4
  export { default as CodeEditor } from './components/CodeEditor';
5
5
  export { default as VisualEditor } from './components/VisualEditor';
6
- export { default as FullPreview, postToIframe } from './components/FullPreview';
6
+ export { default as FullPreview } from './components/FullPreview';
7
+ export { postToIframe } from './components/postToIframe';