refactor(devtools): removes unused classes (#60475)

These `cy-*` classes are not referenced in any styles and appear to be unused.

PR Close #60475
This commit is contained in:
Doug Parker
2025-03-19 17:04:14 -07:00
committed by Jessica Janiuk
parent 61ff42a263
commit ab9dd73a92
2 changed files with 1 additions and 4 deletions
@@ -25,7 +25,7 @@
@for (panel of panels(); track $index) {
<div class="mat-accordion-content" cdkDrag>
@if (panel.controls().dataSource.data.length > 0) {
<mat-expansion-panel [class]="panel.class" [expanded]="true">
<mat-expansion-panel [expanded]="true">
<mat-expansion-panel-header collapsedHeight="25px" expandedHeight="25px">
<mat-panel-title>{{ panel.title }}</mat-panel-title>
</mat-expansion-panel-header>
@@ -48,17 +48,14 @@ export class PropertyViewBodyComponent {
{
title: 'Inputs',
controls: () => this.directiveInputControls(),
class: 'cy-inputs',
},
{
title: 'Outputs',
controls: () => this.directiveOutputControls(),
class: 'cy-outputs',
},
{
title: 'Properties',
controls: () => this.directiveStateControls(),
class: 'cy-properties',
},
]);