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

Refs #8513
This commit is contained in:
Vladimir Gorej
2023-04-19 19:21:13 +02:00
committed by Vladimír Gorej
parent d6d3e9ffc1
commit 679698b998
9 changed files with 83 additions and 1 deletions

View File

@@ -5,6 +5,7 @@ import React from "react"
import JSONSchema from "./components/JSONSchema/JSONSchema"
import Keyword$schema from "./components/keywords/$schema"
import Keyword$vocabulary from "./components/keywords/$vocabulary/$vocabulary"
import KeywordProperties from "./components/keywords/Properties"
import KeywordType from "./components/keywords/Type/Type"
import KeywordFormat from "./components/keywords/Format/Format"
@@ -27,6 +28,7 @@ export const withJSONSchemaContext = (Component, overrides = {}) => {
components: {
JSONSchema,
Keyword$schema,
Keyword$vocabulary,
KeywordProperties,
KeywordType,
KeywordFormat,