Components
info
Please note that this content is under development and is not ready for implementation. This status message will be updated as content development progresses.
Components are reusable UI elements that make up the visual and interactive parts of a feature. Some components encapsulate additional logic other than just UI functionalities, like downloading credentials, storing credentials to local storage and generating barcodes.
Available Components
- Json Form
- Custom Button
- Barcode Generator
- Local Storage Loader
- Conformity Credential
- Conformity Credential Checkbox
- Render Check List
- Import Button
- QR Code Scanner Dialog Button
Diagram
Config
Property | Required | Description | Type |
---|---|---|---|
name | Yes | The name of the component (depends on component used) | Component |
type | Yes | The type of the component (depends on component used) | ComponentType |
props | Yes | Properties passed to the component (depends on component used) | Component |
Example
{
"name": "CustomButton",
"type": "Submit",
"props": {
"label": "Submit",
"description": "Click to submit the form"
}
}
For detailed information about each component, please refer to their respective documentation pages linked above.