@digi-frontend/dgate-api-documentation 2.0.6 → 2.0.7

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.js CHANGED
@@ -2259,7 +2259,10 @@ function CodeboxSidebar() {
2259
2259
  return /* @__PURE__ */ jsxs("div", {
2260
2260
  className: cx("container"),
2261
2261
  children: [selectedEndpoint?.requestBody && /* @__PURE__ */ jsx(Card, {
2262
- title: "Request",
2262
+ title: /* @__PURE__ */ jsx("span", {
2263
+ style: { color: "#fff" },
2264
+ children: "Request"
2265
+ }),
2263
2266
  variant: "borderless",
2264
2267
  className: cx("rightCard"),
2265
2268
  extra: /* @__PURE__ */ jsx(Tooltip, {
@@ -2283,7 +2286,10 @@ function CodeboxSidebar() {
2283
2286
  },
2284
2287
  children: /* @__PURE__ */ jsx(Codebox_default, { code: JSON.stringify(selectedEndpoint?.requestBody, null, 2) || "" })
2285
2288
  }), selectedEndpoint?.responses && /* @__PURE__ */ jsx(Card, {
2286
- title: "Response",
2289
+ title: /* @__PURE__ */ jsx("span", {
2290
+ style: { color: "#fff" },
2291
+ children: "Request"
2292
+ }),
2287
2293
  variant: "borderless",
2288
2294
  className: cx("rightCardFlex"),
2289
2295
  extra: /* @__PURE__ */ jsx(Select, {