Hello, I am new to JsonForms! I am exploring customRenderers so I want to know if all components are standalone the customRenderers components are not showing. I try to add in the uischema
"options": {
"variant": "stepper",
"showNavButtons": true
}
const stepperLayout: RankedTester = rankWith(1, and(
uiTypeIs('Categorization'),
categorizationHasCategory,
optionIs('variant', 'stepper')
));
renderers = [
...angularMaterialRenderers,
{ tester: stepperLayout, renderer: StepperLayoutComponent },
];
The component where I set the schema and also the customer components are standalone is that the reason why StepperLayoutComponent not rendering or do I need to have a different setting?