I have this shell panel
<calcite-shell-panel slot="panel-start" position="start" id="shell-panel-start">
and want to monitor whether it's expended or not.
So I use JS reactiveutils but it doesn't seem to work.
const shellPanel = document.getElementById("shell-panel-start");
reactiveUtils.watch(
() => shellPanel.collapsed,
() => {
console.log("collapsed");
});