@cloud-os/sandbox-app-standard-bridge 20251211.0.1 → 20251211.0.2

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.
@@ -0,0 +1,4 @@
1
+ declare const _default: ({ children }: {
2
+ children: React.ReactNode;
3
+ }) => import("react/jsx-runtime").JSX.Element;
4
+ export default _default;
@@ -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 SandBoxApplication } from "./SandBoxApplication/index";
1
+ export { default as SafeAntd } from "./SafeAntd/index";
@@ -1 +1 @@
1
- export { default as SandBoxApplication } from "./SandBoxApplication/index";
1
+ export { default as SafeAntd } from "./SafeAntd/index";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cloud-os/sandbox-app-standard-bridge",
3
- "version": "20251211.0.1",
3
+ "version": "20251211.0.2",
4
4
  "description": "",
5
5
  "author": "jack8228@enerqi.tw <jack8228@enerqi.tw>",
6
6
  "main": "dist/index.js",