feat(json-schema-2020-12): add support for comment keyword

Refs #8513
This commit is contained in:
Vladimir Gorej
2023-04-20 12:52:40 +02:00
committed by Vladimír Gorej
parent daa0506163
commit 2f08f6424b
6 changed files with 34 additions and 0 deletions

View File

@@ -12,6 +12,7 @@ import Keyword$dynamicAnchor from "./components/keywords/$dynamicAnchor"
import Keyword$ref from "./components/keywords/$ref"
import Keyword$dynamicRef from "./components/keywords/$dynamicRef"
import Keyword$defs from "./components/keywords/$defs/$defs"
import Keyword$comment from "./components/keywords/$comment"
import KeywordProperties from "./components/keywords/Properties/Properties"
import KeywordType from "./components/keywords/Type/Type"
import KeywordFormat from "./components/keywords/Format/Format"
@@ -41,6 +42,7 @@ export const withJSONSchemaContext = (Component, overrides = {}) => {
Keyword$ref,
Keyword$dynamicRef,
Keyword$defs,
Keyword$comment,
KeywordProperties,
KeywordType,
KeywordFormat,