@nookuio/iframe 0.9.5 → 0.9.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.
- package/dist/constants.d.ts +1 -1
- package/dist/constants.js +1 -1
- package/dist/constants.mjs +1 -1
- package/dist/types.d.ts +0 -4
- package/package.json +1 -1
package/dist/constants.d.ts
CHANGED
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export declare const EDITOR_PAGE_PATH = "/__nooku__/editor";
|
|
5
5
|
export declare const COMPONENT_PREVIEW_PAGE_PATH = "/__nooku__/component-preview";
|
|
6
|
-
export declare const VIRTUAL_VUE_SFC_RENDERER_PAGE_PATH = "/__nooku__/virtual-sfc-
|
|
6
|
+
export declare const VIRTUAL_VUE_SFC_RENDERER_PAGE_PATH = "/__nooku__/virtual-sfc-editor";
|
|
7
7
|
export declare const IFRAME_SOURCE_NAME = "nooku-frame";
|
|
8
8
|
export declare const EDITOR_SOURCE_NAME = "nooku-editor";
|
package/dist/constants.js
CHANGED
|
@@ -6,6 +6,6 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
exports.VIRTUAL_VUE_SFC_RENDERER_PAGE_PATH = exports.IFRAME_SOURCE_NAME = exports.EDITOR_SOURCE_NAME = exports.EDITOR_PAGE_PATH = exports.COMPONENT_PREVIEW_PAGE_PATH = void 0;
|
|
7
7
|
const EDITOR_PAGE_PATH = exports.EDITOR_PAGE_PATH = `/__nooku__/editor`;
|
|
8
8
|
const COMPONENT_PREVIEW_PAGE_PATH = exports.COMPONENT_PREVIEW_PAGE_PATH = `/__nooku__/component-preview`;
|
|
9
|
-
const VIRTUAL_VUE_SFC_RENDERER_PAGE_PATH = exports.VIRTUAL_VUE_SFC_RENDERER_PAGE_PATH = `/__nooku__/virtual-sfc-
|
|
9
|
+
const VIRTUAL_VUE_SFC_RENDERER_PAGE_PATH = exports.VIRTUAL_VUE_SFC_RENDERER_PAGE_PATH = `/__nooku__/virtual-sfc-editor`;
|
|
10
10
|
const IFRAME_SOURCE_NAME = exports.IFRAME_SOURCE_NAME = "nooku-frame";
|
|
11
11
|
const EDITOR_SOURCE_NAME = exports.EDITOR_SOURCE_NAME = "nooku-editor";
|
package/dist/constants.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export const EDITOR_PAGE_PATH = `/__nooku__/editor`;
|
|
2
2
|
export const COMPONENT_PREVIEW_PAGE_PATH = `/__nooku__/component-preview`;
|
|
3
|
-
export const VIRTUAL_VUE_SFC_RENDERER_PAGE_PATH = `/__nooku__/virtual-sfc-
|
|
3
|
+
export const VIRTUAL_VUE_SFC_RENDERER_PAGE_PATH = `/__nooku__/virtual-sfc-editor`;
|
|
4
4
|
export const IFRAME_SOURCE_NAME = "nooku-frame";
|
|
5
5
|
export const EDITOR_SOURCE_NAME = "nooku-editor";
|
package/dist/types.d.ts
CHANGED