@panomc/sdk 1.0.0-dev.22 → 1.0.0-dev.23
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/package.json +1 -1
- package/src/components/index.js +2 -1
- package/src/svelte.js +3 -2
- package/src/utils/auth.js +1 -1
- package/src/utils/component.js +1 -1
- package/src/utils/text.js +1 -1
package/package.json
CHANGED
package/src/components/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { getPanoContext } from
|
|
1
|
+
import { getPanoContext } from "../internal/index.js";
|
|
2
2
|
|
|
3
3
|
const panoContext = getPanoContext();
|
|
4
4
|
const components = panoContext.context.components;
|
|
@@ -19,3 +19,4 @@ export const Date = components.Date;
|
|
|
19
19
|
export const NoContent = components.NoContent;
|
|
20
20
|
export const Editor = components.Editor;
|
|
21
21
|
export const DragAndDropZone = components.DragAndDropZone;
|
|
22
|
+
export const PageTitle = components.PageTitle;
|
package/src/svelte.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { getPanoContext } from
|
|
1
|
+
import { getPanoContext } from './internal/index.js';
|
|
2
2
|
|
|
3
3
|
const panoContext = getPanoContext();
|
|
4
|
-
const { page, base, navigating, browser, goto, invalidate, invalidateAll, error, redirect } =
|
|
4
|
+
const { page, base, navigating, browser, goto, invalidate, invalidateAll, error, redirect } =
|
|
5
|
+
panoContext.context;
|
|
5
6
|
|
|
6
7
|
export { page, base, navigating, browser, goto, invalidate, invalidateAll, error, redirect };
|
package/src/utils/auth.js
CHANGED
package/src/utils/component.js
CHANGED
package/src/utils/text.js
CHANGED