andoncloud-sdk 1.6.36 → 1.6.37

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.
@@ -1,3 +1,6 @@
1
1
  export function isTrustedOrigin(origin: any): boolean;
2
2
  export function getDisplayMode(): "standalone" | "iframe";
3
- export function updateParentHeaderStyles(styles: any): void;
3
+ export function updateParentHeaderStyles({ target, styles }: {
4
+ target: any;
5
+ styles: any;
6
+ }): void;
package/dist/index.d.ts CHANGED
@@ -57,7 +57,11 @@ declare module 'andoncloud-sdk' {
57
57
 
58
58
  export const getDisplayMode: () => Display['mode'];
59
59
 
60
- export const updateParentHeaderStyles: (styles: SxProps<Theme>) => void;
60
+ type UpdateParentHeaderStylesArgs = {
61
+ target?: string;
62
+ styles: SxProps<Theme>;
63
+ };
64
+ export const updateParentHeaderStyles: ({ target, styles }: UpdateParentHeaderStylesArgs) => void;
61
65
 
62
66
  interface AppProps {
63
67
  children: React.ReactNode;
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const LIBRARY_VERSION = "1.6.36";
1
+ export declare const LIBRARY_VERSION = "1.6.37";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "andoncloud-sdk",
3
- "version": "1.6.36",
3
+ "version": "1.6.37",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "source": "src/index.js",