@mintlify/common 1.0.911 → 1.0.912
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/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/live-preview.d.ts +9 -0
- package/dist/live-preview.js +9 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export declare const LIVE_PREVIEW_READY_MESSAGE_TYPE = "livePreviewReady";
|
|
2
|
+
export declare const LIVE_PREVIEW_DOCSJSON_OVERRIDE_MESSAGE_TYPE = "livePreviewDocsJsonOverride";
|
|
3
|
+
export declare const LIVE_PREVIEW_RESET_MESSAGE_TYPE = "livePreviewReset";
|
|
4
|
+
export declare const LIVE_PREVIEW_URL_CHANGE_MESSAGE_TYPE = "LIVE_PREVIEW_URL_CHANGE";
|
|
5
|
+
export declare const LIVE_PREVIEW_NAVIGATE_TO_URL_MESSAGE_TYPE = "LIVE_PREVIEW_NAVIGATE_TO_URL";
|
|
6
|
+
export declare const LIVE_PREVIEW_COMPILED_CONTENT_UPDATE_MESSAGE_TYPE = "livePreviewCompiledContentUpdate";
|
|
7
|
+
export declare const LIVE_PREVIEW_NAVIGATION_UPDATE_MESSAGE_TYPE = "livePreviewNavigationUpdate";
|
|
8
|
+
export declare const LIVE_PREVIEW_REQUEST_CONTENT_MESSAGE_TYPE = "livePreviewRequestContent";
|
|
9
|
+
export declare const LIVE_PREVIEW_CONTENT_UNAVAILABLE_MESSAGE_TYPE = "livePreviewContentUnavailable";
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export const LIVE_PREVIEW_READY_MESSAGE_TYPE = 'livePreviewReady';
|
|
2
|
+
export const LIVE_PREVIEW_DOCSJSON_OVERRIDE_MESSAGE_TYPE = 'livePreviewDocsJsonOverride';
|
|
3
|
+
export const LIVE_PREVIEW_RESET_MESSAGE_TYPE = 'livePreviewReset';
|
|
4
|
+
export const LIVE_PREVIEW_URL_CHANGE_MESSAGE_TYPE = 'LIVE_PREVIEW_URL_CHANGE';
|
|
5
|
+
export const LIVE_PREVIEW_NAVIGATE_TO_URL_MESSAGE_TYPE = 'LIVE_PREVIEW_NAVIGATE_TO_URL';
|
|
6
|
+
export const LIVE_PREVIEW_COMPILED_CONTENT_UPDATE_MESSAGE_TYPE = 'livePreviewCompiledContentUpdate';
|
|
7
|
+
export const LIVE_PREVIEW_NAVIGATION_UPDATE_MESSAGE_TYPE = 'livePreviewNavigationUpdate';
|
|
8
|
+
export const LIVE_PREVIEW_REQUEST_CONTENT_MESSAGE_TYPE = 'livePreviewRequestContent';
|
|
9
|
+
export const LIVE_PREVIEW_CONTENT_UNAVAILABLE_MESSAGE_TYPE = 'livePreviewContentUnavailable';
|