@panomc/sdk 1.0.0-dev.22 → 1.0.0-dev.24

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@panomc/sdk",
3
- "version": "1.0.0-dev.22",
3
+ "version": "1.0.0-dev.24",
4
4
  "author": "PanoMC",
5
5
  "repository": {
6
6
  "url": "https://github.com/PanoMC/sdk"
@@ -1,4 +1,4 @@
1
- import { getPanoContext } from '../internal/index.js';
1
+ import { getPanoContext } from "../internal/index.js";
2
2
 
3
3
  const panoContext = getPanoContext();
4
4
  const components = panoContext.context.components;
@@ -19,3 +19,5 @@ 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;
23
+ export const PlayerHead = components.PlayerHead;
package/src/svelte.js CHANGED
@@ -1,6 +1,7 @@
1
- import { getPanoContext } from "./internal/index.js";
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 } = panoContext.context;
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
@@ -1,4 +1,4 @@
1
- import { getPanoContext } from "../internal/index.js";
1
+ import { getPanoContext } from '../internal/index.js';
2
2
 
3
3
  const panoContext = getPanoContext();
4
4
  const authStuff = panoContext.context.utils.auth;
@@ -1,4 +1,4 @@
1
- import { hydrate, mount, unmount } from "svelte";
1
+ import { hydrate, mount, unmount } from 'svelte';
2
2
 
3
3
  /**
4
4
  * Wraps a dynamic component import to include the correct Svelte runtime mount/unmount methods.
package/src/utils/text.js CHANGED
@@ -5,4 +5,4 @@ const textStuff = panoContext.context.utils.text;
5
5
 
6
6
  const copy = textStuff.copy;
7
7
 
8
- export { copy };
8
+ export { copy };