Hi, just tried api-viewer but could not get how to pass an array to an element The element, written in lit expects a property to be passed as array. It does not reflect to attribute. I tried using lit-html as below without success: ```js import 'api-viewer-element' import '../browserAction/patient-list.js' import { html, render } from '../third-party/lit.js' const patients = [{ name: 'João' }, { name: 'Maria' }] const apiTemplate = html` <api-viewer src="../custom-elements.json"> <template data-element="patient-list" data-target="host"> <patient-list .patients=${patients}></patient-list> </template> </api-viewer> ` render(apiTemplate, document.body) ```