@cloud-os/sandbox-app-standard-bridge 20251211.0.1 → 20251211.0.3
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/Bridge/Authorization/Payload/AuthorizatioBridgePayload.d.ts +4 -0
- package/dist/Bridge/Authorization/Payload/AuthorizatioBridgePayload.js +1 -0
- package/dist/Bridge/Authorization/index.d.ts +8 -0
- package/dist/Bridge/Authorization/index.js +9 -0
- package/dist/Bridge/index.d.ts +1 -0
- package/dist/Bridge/index.js +1 -0
- package/dist/Components/SafeAntd/index.d.ts +4 -0
- package/dist/Components/SafeAntd/index.js +11 -0
- package/dist/Components/index.d.ts +1 -1
- package/dist/Components/index.js +1 -1
- package/dist/Event/Authorization/AuthorizationEvent.d.ts +4 -0
- package/dist/Event/Authorization/AuthorizationEvent.js +1 -0
- package/dist/Event/Authorization/Payload/CompleteChallengePayload.d.ts +4 -0
- package/dist/Event/Authorization/Payload/CompleteChallengePayload.js +1 -0
- package/dist/Event/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { CompleteChallengePayload } from "../../Event/Authorization/Payload/CompleteChallengePayload";
|
|
2
|
+
import { AuthorizationEvent } from "../../index";
|
|
3
|
+
import { AuthorizatioBridgePayload } from "./Payload/AuthorizatioBridgePayload";
|
|
4
|
+
export default class AuthorizationBridge implements AuthorizationEvent {
|
|
5
|
+
private readonly payload;
|
|
6
|
+
constructor(payload: AuthorizatioBridgePayload);
|
|
7
|
+
completeChallengeAsync(payload: CompleteChallengePayload): Promise<void>;
|
|
8
|
+
}
|
package/dist/Bridge/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
export { default as SandboxApplicationBridge } from "./SandboxApplication/index";
|
|
2
2
|
export { default as CommunicationBridge } from "./Communication/index";
|
|
3
3
|
export { default as SystemBridge } from "./System/index";
|
|
4
|
+
export { default as AuthorizationBridge } from "./Authorization/index";
|
package/dist/Bridge/index.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
export { default as SandboxApplicationBridge } from "./SandboxApplication/index";
|
|
2
2
|
export { default as CommunicationBridge } from "./Communication/index";
|
|
3
3
|
export { default as SystemBridge } from "./System/index";
|
|
4
|
+
export { default as AuthorizationBridge } from "./Authorization/index";
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { StyleProvider } from "@ant-design/cssinjs";
|
|
3
|
+
import { v4 as uuidv4 } from "uuid";
|
|
4
|
+
import { ConfigProvider } from "antd";
|
|
5
|
+
export default ({ children }) => {
|
|
6
|
+
return (_jsx(StyleProvider, { children: _jsx(ConfigProvider, { theme: {
|
|
7
|
+
cssVar: {
|
|
8
|
+
prefix: uuidv4(),
|
|
9
|
+
},
|
|
10
|
+
}, children: children }) }));
|
|
11
|
+
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default as
|
|
1
|
+
export { default as SafeAntd } from "./SafeAntd/index";
|
package/dist/Components/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default as
|
|
1
|
+
export { default as SafeAntd } from "./SafeAntd/index";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/Event/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
export { SandboxApplicationEvent } from "./SandboxApplication/SandboxApplicationEvent";
|
|
2
2
|
export { CommunicationEvent } from "./Communication/CommunicationEvent";
|
|
3
3
|
export { SystemEvent } from "./System/SystemEvent";
|
|
4
|
+
export { AuthorizationEvent } from "./Authorization/AuthorizationEvent";
|