-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixes #204 update Checkbox to functional component with default value…
… handling
- Loading branch information
Showing
30 changed files
with
2,424 additions
and
2,043 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,145 @@ | ||
{ | ||
"schema": { | ||
"type": "object", | ||
"title": "Config Detail", | ||
"properties": { | ||
"name": { | ||
"title": "API Name", | ||
"type": "string" | ||
}, | ||
"version": { | ||
"title": "API Version", | ||
"type": "string" | ||
}, | ||
"group": { | ||
"title": "Maven Group", | ||
"type": "string" | ||
}, | ||
"artifactId": { | ||
"title": "Artifact Id", | ||
"type": "string" | ||
}, | ||
"rootPackage": { | ||
"title": "Root Package", | ||
"type": "string" | ||
}, | ||
"handlerPackage": { | ||
"title": "Handler Package", | ||
"type": "string" | ||
}, | ||
"modelPackage": { | ||
"title": "Model Package", | ||
"type": "string" | ||
}, | ||
"overwriteHandler": { | ||
"title": "Overwrite Handler", | ||
"type": "boolean", | ||
"default": true | ||
}, | ||
"overwriteHandlerTest": { | ||
"title": "Overwrite Handler Test", | ||
"type": "boolean", | ||
"default": true | ||
}, | ||
"overwriteModel": { | ||
"title": "Overwrite Model", | ||
"type": "boolean", | ||
"default": true | ||
}, | ||
"httpPort": { | ||
"title": "HTTP Port", | ||
"type": "integer", | ||
"default": 8080 | ||
}, | ||
"enableHttp": { | ||
"title": "Enable HTTP", | ||
"type": "boolean", | ||
"default": false | ||
}, | ||
"httpsPort": { | ||
"title": "HTTPS Port", | ||
"type": "integer", | ||
"default": 8443 | ||
}, | ||
"enableHttps": { | ||
"title": "Enable HTTPS", | ||
"type": "boolean", | ||
"default": true | ||
}, | ||
"enableRegistry": { | ||
"title": "Enable Registry", | ||
"type": "boolean", | ||
"default": false | ||
}, | ||
"eclipseIDE": { | ||
"title": "Eclipse IDE", | ||
"type": "boolean", | ||
"default": false | ||
}, | ||
"supportDb": { | ||
"title": "Support Database", | ||
"type": "boolean", | ||
"default": false | ||
}, | ||
"supportH2ForTest": { | ||
"title": "Support H2 Test", | ||
"type": "boolean", | ||
"default": false | ||
}, | ||
"supportClient": { | ||
"title": "Support Client", | ||
"type": "boolean", | ||
"default": false | ||
}, | ||
"dockerOrganization": { | ||
"title": "Docker Organization", | ||
"type": "string", | ||
"default": "networknt" | ||
} | ||
}, | ||
"required": [ | ||
"name", | ||
"version", | ||
"groupId", | ||
"artifactId", | ||
"rootPackage", | ||
"handlerPackage", | ||
"modelPackage", | ||
"overwriteHandler", | ||
"overwriteHandlerTest", | ||
"overwriteModel", | ||
"httpPort", | ||
"enableHttp", | ||
"httpsPort", | ||
"enableHttps", | ||
"enableRegistry", | ||
"eclipseIDE", | ||
"supportDb", | ||
"supportH2ForTest", | ||
"supportClient", | ||
"dockerOrganization" | ||
] | ||
}, | ||
"form": [ | ||
"name", | ||
"version", | ||
"groupId", | ||
"artifactId", | ||
"rootPackage", | ||
"handlerPackage", | ||
"modelPackage", | ||
"overwriteHandler", | ||
"overwriteHandlerTest", | ||
"overwriteModel", | ||
"httpPort", | ||
"enableHttp", | ||
"httpsPort", | ||
"enableHttps", | ||
"enableRegistry", | ||
"eclipseIDE", | ||
"supportDb", | ||
"supportH2ForTest", | ||
"supportClient", | ||
"dockerOrganization" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.