-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
23 changed files
with
160 additions
and
89 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1 +1 @@ | ||
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"><link rel="icon" href="favicon.ico"><title>@educorvi/vue-json-form</title><link href="css/app.be04920c.css" rel="preload" as="style"><link href="css/chunk-vendors.5699e6ca.css" rel="preload" as="style"><link href="js/app.39513a81.js" rel="preload" as="script"><link href="js/chunk-vendors.98709b53.js" rel="preload" as="script"><link href="css/chunk-vendors.5699e6ca.css" rel="stylesheet"><link href="css/app.be04920c.css" rel="stylesheet"></head><body><noscript><strong>We're sorry but @educorvi/vue-json-form doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id="app"></div><script src="js/chunk-vendors.98709b53.js"></script><script src="js/app.39513a81.js"></script></body></html> | ||
<!DOCTYPE html><html lang=en><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1,shrink-to-fit=no"><link rel=icon href=favicon.ico><title>@educorvi/vue-json-form</title><link href=css/app.1e3d846d.css rel=preload as=style><link href=css/chunk-vendors.5699e6ca.css rel=preload as=style><link href=js/app.3cd9c991.js rel=preload as=script><link href=js/chunk-vendors.99d4e714.js rel=preload as=script><link href=css/chunk-vendors.5699e6ca.css rel=stylesheet><link href=css/app.1e3d846d.css rel=stylesheet></head><body><noscript><strong>We're sorry but @educorvi/vue-json-form doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id=app></div><script src=js/chunk-vendors.99d4e714.js></script><script src=js/app.3cd9c991.js></script></body></html> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
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 |
---|---|---|
@@ -1 +1 @@ | ||
{"$id":"https://educorvi.github.io/vue_json_form/schemas/control.schema.json","$schema":"http://json-schema.org/draft-07/schema#","type":"object","title":"Control","description":"Contains a form element, e. g. a text input","properties":{"type":{"type":"string","enum":["Control"]},"scope":{"type":"string","description":"A json pointer referring to the form element in the forms json schema","format":"json-pointer"},"format":{"description":"Format for string fields","type":"string","enum":["time","date","date-time","email","password","search","url","tel","color"]},"options":{"type":"object","title":"Options","description":"Gives multiple options to configure the element","properties":{"label":{"type":"boolean","description":"Defines whether the fields label is activated","default":true},"multi":{"oneOf":[{"type":"boolean"},{"type":"integer"}],"default":false,"description":"If set true, textarea will be shown instead of textfield. \n Alternatively can be set to the number of wanted lines"},"rating":{"type":"boolean","default":false,"description":"If set to true, numberfield will appear as star-rating-field"},"placeholder":{"type":"string","description":"Will be shown as placeholder in form fields, if supported by field"},"drop-placeholder":{"type":"string","description":"Will be shown as placeholder in file upload field when file drag and drop"},"allowMultipleFiles":{"type":"boolean","description":"Allows the upload of multiple files with fileupload"},"acceptedFileType":{"type":"string","description":"The accepted File Types","examples":["image/*","image/jpeg, image/png, image/gif",".jpg, .png, .gif"]},"enumTitles":{"type":"object","title":"Titles for enum","description":"If the text in a enums select field is supposed to differ from the keys, they can be specified as properties of this object. The value in the enum must be used as property name","propertyNames":{"type":"string","minLength":1},"patternProperties":{"":{"type":"string","minLength":1}}},"radiobuttons":{"type":"boolean","description":"If set to true, a group of radiobuttons will be shown instead of the select field","default":false},"stacked":{"type":"boolean","description":"Radiobutton-/Checkbox group will be stacked if set to true","default":false},"buttons":{"title":"Buttons","description":"Render fields that support it (Radiobuttons, Checkboxgroups) as Buttons","oneOf":[{"type":"boolean","description":"set to true, if should be rendered as buttons"},{"$ref":"https://educorvi.github.io/vue_json_form/schemas/variants.schema.json"}]},"switch":{"type":"boolean","title":"Switch(es)","description":"If set to true, the checkbox(-group) it was specified for will be rendered as switch(es)"},"append":{"type":"string","description":"Will be appended to field"},"tags":{"type":"object","description":"Will be rendered as tags-Field","properties":{"enabled":{"type":"boolean"},"variant":{"$ref":"https://educorvi.github.io/vue_json_form/schemas/variants.schema.json"},"pills":{"type":"boolean"}}},"autocomplete":{"type":"string","description":"Specifies what should be autocompleted by the browser. Possible values are listed here: https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete#values"}}},"showOn":{"$ref":"https://educorvi.github.io/vue_json_form/schemas/show_on.schema.json"}},"additionalProperties":false,"required":["type","scope"]} | ||
{"$id":"https://educorvi.github.io/vue_json_form/schemas/control.schema.json","$schema":"http://json-schema.org/draft-07/schema#","type":"object","title":"Control","description":"Contains a form element, e. g. a text input","properties":{"type":{"type":"string","enum":["Control"]},"scope":{"type":"string","description":"A json pointer referring to the form element in the forms json schema","format":"json-pointer"},"format":{"description":"Format for string fields","type":"string","enum":["time","date","date-time","email","password","search","url","tel","color"]},"options":{"type":"object","title":"Options","description":"Gives multiple options to configure the element","properties":{"label":{"type":"boolean","description":"Defines whether the fields label is activated","default":true},"multi":{"oneOf":[{"type":"boolean"},{"type":"integer"}],"default":false,"description":"If set true, textarea will be shown instead of textfield. \n Alternatively can be set to the number of wanted lines"},"rating":{"type":"boolean","default":false,"description":"If set to true, numberfield will appear as star-rating-field"},"placeholder":{"type":"string","description":"Will be shown as placeholder in form fields, if supported by field"},"drop-placeholder":{"type":"string","description":"Will be shown as placeholder in file upload field when file drag and drop"},"allowMultipleFiles":{"type":"boolean","description":"Allows the upload of multiple files with fileupload"},"acceptedFileType":{"type":"string","description":"The accepted File Types","examples":["image/*","image/jpeg, image/png, image/gif",".jpg, .png, .gif"]},"enumTitles":{"type":"object","title":"Titles for enum","description":"If the text in a enums select field is supposed to differ from the keys, they can be specified as properties of this object. The value in the enum must be used as property name","propertyNames":{"type":"string","minLength":1},"patternProperties":{"":{"type":"string","minLength":1}}},"radiobuttons":{"type":"boolean","description":"If set to true, a group of radiobuttons will be shown instead of the select field","default":false},"stacked":{"type":"boolean","description":"Radiobutton-/Checkbox group will be stacked if set to true","default":false},"buttons":{"title":"Buttons","description":"Render fields that support it (Radiobuttons, Checkboxgroups) as Buttons","oneOf":[{"type":"boolean","description":"set to true, if should be rendered as buttons"},{"$ref":"https://educorvi.github.io/vue_json_form/schemas/variants.schema.json"}]},"switch":{"type":"boolean","title":"Switch(es)","description":"If set to true, the checkbox(-group) it was specified for will be rendered as switch(es)"},"append":{"type":"string","description":"Will be appended to field"},"tags":{"type":"object","description":"Will be rendered as tags-Field","properties":{"enabled":{"type":"boolean"},"variant":{"$ref":"https://educorvi.github.io/vue_json_form/schemas/variants.schema.json"},"pills":{"type":"boolean"}}},"autocomplete":{"type":"string","description":"Specifies what should be autocompleted by the browser. Possible values are listed here: https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete#values"}}},"showOn":{"$ref":"https://educorvi.github.io/vue_json_form/schemas/show_on.schema.json"}},"examples":[{"type":"Control","scope":"#/properties/objectInJsonSchema"},{"type":"Control","scope":"#/properties/field","showOn":{"scope":"#/properties/referenceField","type":"EQUALS","referenceValue":"awesomeValue"},"options":{"label":false,"radiobuttons":true,"stacked":true}}],"additionalProperties":false,"required":["type","scope"]} |
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 |
---|---|---|
@@ -1 +1 @@ | ||
{"title":"Layout","$schema":"http://json-schema.org/draft-07/schema#","$id":"https://educorvi.github.io/vue_json_form/schemas/layout.schema.json","type":"object","description":"The different Layouts","properties":{"type":{"type":"string","enum":["VerticalLayout","HorizontalLayout","Group"]},"elements":{"title":"Elements","description":"The elements of the layout","type":"array","default":[],"items":{"title":"Layoutelement","oneOf":[{"$ref":"https://educorvi.github.io/vue_json_form/schemas/control.schema.json"},{"$ref":"https://educorvi.github.io/vue_json_form/schemas/layout.schema.json"},{"$ref":"https://educorvi.github.io/vue_json_form/schemas/html.schema.json"},{"$ref":"https://educorvi.github.io/vue_json_form/schemas/divider.schema.json"},{"$ref":"https://educorvi.github.io/vue_json_form/schemas/wizard.schema.json"},{"$ref":"https://educorvi.github.io/vue_json_form/schemas/button.schema.json"}]}},"showOn":{"$ref":"https://educorvi.github.io/vue_json_form/schemas/show_on.schema.json"},"label":{"type":"string"},"$schema":{"type":"string","description":"May contain a schema reference to the uischema"}},"additionalProperties":false,"required":["type","elements"]} | ||
{"title":"Layout","$schema":"http://json-schema.org/draft-07/schema#","$id":"https://educorvi.github.io/vue_json_form/schemas/layout.schema.json","type":"object","description":"The different Layouts","properties":{"type":{"type":"string","enum":["VerticalLayout","HorizontalLayout","Group"]},"elements":{"title":"Elements","description":"The elements of the layout","type":"array","default":[],"items":{"title":"Layoutelement","oneOf":[{"$ref":"https://educorvi.github.io/vue_json_form/schemas/control.schema.json"},{"$ref":"https://educorvi.github.io/vue_json_form/schemas/layout.schema.json"},{"$ref":"https://educorvi.github.io/vue_json_form/schemas/html.schema.json"},{"$ref":"https://educorvi.github.io/vue_json_form/schemas/divider.schema.json"},{"$ref":"https://educorvi.github.io/vue_json_form/schemas/wizard.schema.json"},{"$ref":"https://educorvi.github.io/vue_json_form/schemas/button.schema.json"}]}},"showOn":{"$ref":"https://educorvi.github.io/vue_json_form/schemas/show_on.schema.json"},"label":{"type":"string"},"$schema":{"type":"string","description":"May contain a schema reference to the uischema"}},"examples":[{"type":"VerticalLayout","elements":[]},{"type":"Group","label":"This is a group","elements":[]}],"additionalProperties":false,"required":["type","elements"]} |
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