@digi-frontend/dgate-api-documentation 2.0.5 → 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.cjs +9 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +9 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1295,7 +1295,7 @@ const ApiCard = ({ api, viewStyle }) => {
|
|
|
1295
1295
|
width: "6.5625rem",
|
|
1296
1296
|
height: "2rem",
|
|
1297
1297
|
borderRadius: token$2.borderRadius,
|
|
1298
|
-
border: `${token$2.lineWidth}
|
|
1298
|
+
border: `${token$2.lineWidth}px solid ${token$2.Button?.defaultBorderColor}`,
|
|
1299
1299
|
paddingRight: token$2.Button?.paddingInline,
|
|
1300
1300
|
paddingLeft: token$2.Button?.paddingInline,
|
|
1301
1301
|
background: token$2.Button?.defaultBg,
|
|
@@ -2281,7 +2281,10 @@ function CodeboxSidebar() {
|
|
|
2281
2281
|
return /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("div", {
|
|
2282
2282
|
className: cx("container"),
|
|
2283
2283
|
children: [selectedEndpoint?.requestBody && /* @__PURE__ */ (0, react_jsx_runtime.jsx)(antd.Card, {
|
|
2284
|
-
title: "
|
|
2284
|
+
title: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("span", {
|
|
2285
|
+
style: { color: "#fff" },
|
|
2286
|
+
children: "Request"
|
|
2287
|
+
}),
|
|
2285
2288
|
variant: "borderless",
|
|
2286
2289
|
className: cx("rightCard"),
|
|
2287
2290
|
extra: /* @__PURE__ */ (0, react_jsx_runtime.jsx)(antd.Tooltip, {
|
|
@@ -2305,7 +2308,10 @@ function CodeboxSidebar() {
|
|
|
2305
2308
|
},
|
|
2306
2309
|
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)(Codebox_default, { code: JSON.stringify(selectedEndpoint?.requestBody, null, 2) || "" })
|
|
2307
2310
|
}), selectedEndpoint?.responses && /* @__PURE__ */ (0, react_jsx_runtime.jsx)(antd.Card, {
|
|
2308
|
-
title: "
|
|
2311
|
+
title: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("span", {
|
|
2312
|
+
style: { color: "#fff" },
|
|
2313
|
+
children: "Request"
|
|
2314
|
+
}),
|
|
2309
2315
|
variant: "borderless",
|
|
2310
2316
|
className: cx("rightCardFlex"),
|
|
2311
2317
|
extra: /* @__PURE__ */ (0, react_jsx_runtime.jsx)(antd.Select, {
|