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

Refs #8513
This commit is contained in:
Vladimir Gorej
2023-04-14 14:32:57 +02:00
committed by Vladimír Gorej
parent f06c1caed5
commit c4ec33b82c
8 changed files with 41 additions and 15 deletions

View File

@@ -7,6 +7,7 @@ import JSONSchema from "./components/JSONSchema/JSONSchema"
import BooleanJSONSchema from "./components/BooleanJSONSchema/BooleanJSONSchema"
import KeywordProperties from "./components/keywords/Properties"
import KeywordType from "./components/keywords/Type/Type"
import KeywordFormat from "./components/keywords/Format/Format"
import Accordion from "./components/Accordion/Accordion"
import ExpandDeepButton from "./components/ExpandDeepButton/ExpandDeepButton"
import ChevronRightIcon from "./components/icons/ChevronRight"
@@ -20,6 +21,7 @@ export const withJSONSchemaContext = (Component, overrides = {}) => {
BooleanJSONSchema,
KeywordProperties,
KeywordType,
KeywordFormat,
Accordion,
ExpandDeepButton,
ChevronRightIcon,