Props Schemas
A Props Schema lets you configure the API for whatever you build with the SDK — like Custom Elements, Custom Actions, and custom Dynamic Properties. It lets you control what properties your users can configure in the HELIO IDE.
These properties will show up in the Properties Panel of the Project Editor whenever an item of your extension is added or selected.
You define a props schemas by using the createPropsSchema() function.
Props Schemas Specify
- What properties are available and how they are called
- The types of these properties (text, numbers, etc.)
- The default property values for new instances
- Validation rules
Learn more with the following resources:
- Check out the Create a Control Element guide to learn how to utilize a schema to describe your Custom Elements