This commit is contained in:
2025-12-11 11:23:02 +00:00
parent 52ffe81352
commit 278000bb36
6 changed files with 50 additions and 48 deletions

View File

@@ -39,13 +39,13 @@ export class TestWithWrapper extends DeesElement {
`;
@property({ type: String })
public dynamicValue: string = 'Initial value';
accessor dynamicValue: string = 'Initial value';
@property({ type: Number })
public counter: number = 0;
accessor counter: number = 0;
@property({ type: Boolean })
public isActive: boolean = false;
accessor isActive: boolean = false;
public static styles = [
css`