[COMPONENT CONNECTIONS]
Sun Feb 09 2025 21:08:38 GMT+0000 (Coordinated Universal Time)
Saved by
@jjesal
function getComponentConnections(componentName=''){
if(!componentName){return};
var currentPage=window.cells.PageManager.TemplateManager.selected;
const component=[...window.cells.TemplateManager.templates[currentPage].childNodes].find((e)=>e.localName===componentName);
window.$00=component;
const componentConnections=component.cellsConnections;
console.log('mine ',component,' connections:',componentConnections)
}
content_copyCOPY
Comments