andoncloud-sdk 1.6.10 → 1.6.12
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/andoncloud-sdk.js +8 -8
- package/dist/andoncloud-sdk.js.map +1 -1
- package/dist/app/components/container.styles.d.ts +3 -3
- package/dist/app/components/footer.d.ts +1 -1
- package/dist/app/components/messageNavigator.d.ts +2 -0
- package/dist/app/providers/displayMode.d.ts +5 -0
- package/dist/app/utils/display.d.ts +1 -0
- package/dist/index.d.ts +6 -0
- package/dist/version.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export default makeStyles;
|
|
2
|
-
declare function makeStyles({
|
|
3
|
-
|
|
2
|
+
declare function makeStyles({ isEmbeddedMode }: {
|
|
3
|
+
isEmbeddedMode: any;
|
|
4
4
|
}): {
|
|
5
5
|
root: {
|
|
6
6
|
height: string;
|
|
7
|
-
paddingTop: string;
|
|
7
|
+
paddingTop: string | number;
|
|
8
8
|
mixBlendMode: string;
|
|
9
9
|
background: string;
|
|
10
10
|
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export function getDisplayMode(): "standalone" | "iframe";
|
package/dist/index.d.ts
CHANGED
|
@@ -45,6 +45,12 @@ declare module 'andoncloud-sdk' {
|
|
|
45
45
|
releasePageLink?: string;
|
|
46
46
|
}
|
|
47
47
|
|
|
48
|
+
interface DisplayMode {
|
|
49
|
+
mode: 'standalone' | 'iframe';
|
|
50
|
+
isEmbeddedMode: boolean;
|
|
51
|
+
}
|
|
52
|
+
export const useDisplayMode: () => DisplayMode;
|
|
53
|
+
|
|
48
54
|
interface AppProps {
|
|
49
55
|
children: React.ReactNode;
|
|
50
56
|
baseUrl: string;
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const LIBRARY_VERSION = "1.6.
|
|
1
|
+
export declare const LIBRARY_VERSION = "1.6.12";
|