@digi-frontend/dgate-api-documentation 2.0.4 → 2.0.5

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/index.cjs CHANGED
@@ -2361,7 +2361,7 @@ const DocumentationLayout = ({ data }) => {
2361
2361
  selectedApi,
2362
2362
  selectFirstApi
2363
2363
  ]);
2364
- const { cx } = useStyle("DocumentationLayout", (token$1, scope) => ({
2364
+ const { cx } = useStyle("APIDocumentationLayout", (token$1, scope) => ({
2365
2365
  [scope("container")]: {
2366
2366
  display: "flex",
2367
2367
  flexDirection: "column",
@@ -2379,16 +2379,19 @@ const DocumentationLayout = ({ data }) => {
2379
2379
  width: "100%"
2380
2380
  }
2381
2381
  }));
2382
- return /* @__PURE__ */ (0, react_jsx_runtime.jsx)(__ant_design_nextjs_registry.AntdRegistry, { children: /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("div", {
2383
- className: cx("container"),
2384
- children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)(Header, {}), /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("div", {
2385
- className: cx("layout"),
2386
- children: [
2387
- /* @__PURE__ */ (0, react_jsx_runtime.jsx)(Sidebar, {}),
2388
- /* @__PURE__ */ (0, react_jsx_runtime.jsx)(MainContent, {}),
2389
- focusedContent === "ENDPOINT" && /* @__PURE__ */ (0, react_jsx_runtime.jsx)(CodeboxSidebar_default, {})
2390
- ]
2391
- })]
2382
+ return /* @__PURE__ */ (0, react_jsx_runtime.jsx)(__ant_design_nextjs_registry.AntdRegistry, { children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)(antd.ConfigProvider, {
2383
+ prefixCls: "isolated",
2384
+ children: /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("div", {
2385
+ className: cx("container"),
2386
+ children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)(Header, {}), /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("div", {
2387
+ className: cx("layout"),
2388
+ children: [
2389
+ /* @__PURE__ */ (0, react_jsx_runtime.jsx)(Sidebar, {}),
2390
+ /* @__PURE__ */ (0, react_jsx_runtime.jsx)(MainContent, {}),
2391
+ focusedContent === "ENDPOINT" && /* @__PURE__ */ (0, react_jsx_runtime.jsx)(CodeboxSidebar_default, {})
2392
+ ]
2393
+ })]
2394
+ })
2392
2395
  }) });
2393
2396
  };
2394
2397