docusaurus-theme-openapi-docs 0.0.0-1042 → 0.0.0-1044

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.
@@ -615,7 +615,7 @@ const SchemaEdge = ({ name, schema, required, discriminator, schemaType }) => {
615
615
  schemaType: schemaType,
616
616
  });
617
617
  }
618
- if (schema.items?.anyOf || schema.items?.oneOf) {
618
+ if (schema.items?.anyOf || schema.items?.oneOf || schema.items?.allOf) {
619
619
  return react_1.default.createElement(SchemaNodeDetails, {
620
620
  name: name,
621
621
  schemaName: schemaName,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "docusaurus-theme-openapi-docs",
3
3
  "description": "OpenAPI theme for Docusaurus.",
4
- "version": "0.0.0-1042",
4
+ "version": "0.0.0-1044",
5
5
  "license": "MIT",
6
6
  "keywords": [
7
7
  "openapi",
@@ -38,7 +38,7 @@
38
38
  "@types/postman-collection": "^3.5.11",
39
39
  "@types/react-modal": "^3.16.3",
40
40
  "concurrently": "^5.2.0",
41
- "docusaurus-plugin-openapi-docs": "0.0.0-1042",
41
+ "docusaurus-plugin-openapi-docs": "0.0.0-1044",
42
42
  "docusaurus-plugin-sass": "^0.2.3",
43
43
  "eslint-plugin-prettier": "^5.0.1"
44
44
  },
@@ -81,5 +81,5 @@
81
81
  "engines": {
82
82
  "node": ">=14"
83
83
  },
84
- "gitHead": "98ebbfe202dafb2736efc0f9a2f10786d9f61d2c"
84
+ "gitHead": "bdd32db26a197886f962ced5049686b7672d79aa"
85
85
  }
@@ -672,7 +672,7 @@ const SchemaEdge: React.FC<SchemaEdgeProps> = ({
672
672
  );
673
673
  }
674
674
 
675
- if (schema.items?.anyOf || schema.items?.oneOf) {
675
+ if (schema.items?.anyOf || schema.items?.oneOf || schema.items?.allOf) {
676
676
  return (
677
677
  <SchemaNodeDetails
678
678
  name={name}