feat(json-schema-2020-12): add support for writeOnly keyword (#8650)

Refs #8513
This commit is contained in:
Vladimír Gorej
2023-05-11 09:58:03 +02:00
committed by GitHub
parent 964a11ad3e
commit d7b489c283
9 changed files with 34 additions and 2 deletions

View File

@@ -41,6 +41,7 @@ import KeywordDescription from "./components/keywords/Description/Description"
import KeywordDefault from "./components/keywords/Default"
import KeywordDeprecated from "./components/keywords/Deprecated/Deprecated"
import KeywordReadOnly from "./components/keywords/ReadOnly/ReadOnly"
import KeywordWriteOnly from "./components/keywords/WriteOnly/WriteOnly"
import Accordion from "./components/Accordion/Accordion"
import ExpandDeepButton from "./components/ExpandDeepButton/ExpandDeepButton"
import ChevronRightIcon from "./components/icons/ChevronRight"
@@ -98,6 +99,7 @@ export const withJSONSchemaContext = (Component, overrides = {}) => {
KeywordDefault,
KeywordDeprecated,
KeywordReadOnly,
KeywordWriteOnly,
Accordion,
ExpandDeepButton,
ChevronRightIcon,