private _handleClick()

in components/RuiExpandCollapse/src/RuiExpandCollapse.ts [98:106]


	private _handleClick(): void {
		this.open = !this.open;
		this.dispatchEvent(
			new CustomEvent(this.open ? 'opened' : 'closed', {
				bubbles: true,
				composed: true
			})
		);
	}