doc-render-sdk 0.0.5 → 0.0.6

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.
@@ -285,7 +285,8 @@ function startDevServer(configPath, options) {
285
285
  server: {
286
286
  port: Number(options.port) || 8080,
287
287
  host: options.host || 'localhost'
288
- }
288
+ },
289
+ plugins: createVitePlugins()
289
290
  });
290
291
 
291
292
  await server.listen();
package/dist/index.d.mts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { ComponentType, ReactNode } from "react";
2
- import * as react_jsx_runtime0 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime1 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/core/PluginManager.d.ts
5
5
  /**
@@ -572,7 +572,7 @@ declare const Layout: ({
572
572
  routerManager: any;
573
573
  componentRegistry: any;
574
574
  onRouteChange: any;
575
- }) => react_jsx_runtime0.JSX.Element;
575
+ }) => react_jsx_runtime1.JSX.Element;
576
576
  //#endregion
577
577
  //#region src/components/Navigation.d.ts
578
578
  /**
@@ -592,7 +592,7 @@ declare const Navigation: ({
592
592
  componentRegistry: any;
593
593
  onNavigate: any;
594
594
  compact?: boolean | undefined;
595
- }) => react_jsx_runtime0.JSX.Element;
595
+ }) => react_jsx_runtime1.JSX.Element;
596
596
  //#endregion
597
597
  //#region src/components/Demo.d.ts
598
598
  /**
@@ -610,7 +610,7 @@ declare const Demo: ({
610
610
  config: any;
611
611
  theme: any;
612
612
  renderer: any;
613
- }) => react_jsx_runtime0.JSX.Element;
613
+ }) => react_jsx_runtime1.JSX.Element;
614
614
  //#endregion
615
615
  //#region src/components/ApiDoc.d.ts
616
616
  /**
@@ -626,7 +626,7 @@ declare const ApiDoc: ({
626
626
  componentId: any;
627
627
  config: any;
628
628
  theme: any;
629
- }) => react_jsx_runtime0.JSX.Element;
629
+ }) => react_jsx_runtime1.JSX.Element;
630
630
  //#endregion
631
631
  //#region src/components/CodeBlock.d.ts
632
632
  /**
@@ -646,7 +646,7 @@ declare const CodeBlock: ({
646
646
  showLineNumbers?: boolean | undefined;
647
647
  highlightLines?: never[] | undefined;
648
648
  className?: string | undefined;
649
- }) => react_jsx_runtime0.JSX.Element;
649
+ }) => react_jsx_runtime1.JSX.Element;
650
650
  //#endregion
651
651
  //#region src/index.d.ts
652
652
  declare class DocSDK {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "doc-render-sdk",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "A powerful documentation rendering SDK for component libraries",
5
5
  "main": "dist/index.mjs",
6
6
  "module": "dist/index.mjs",