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

@@ -23,13 +23,13 @@ class TestNestedWrapper extends DeesElement {
@customElement('test-nested-target')
class TestNestedTarget extends DeesElement {
@property({ type: String })
public message: string = 'I am deeply nested!';
accessor message: string = 'I am deeply nested!';
@property({ type: Number })
public depth: number = 0;
accessor depth: number = 0;
@property({ type: Boolean })
public found: boolean = false;
accessor found: boolean = false;
public static styles = [
css`
@@ -67,7 +67,7 @@ export class TestNested extends DeesElement {
`;
@property({ type: String })
public testId: string = 'nested-test';
accessor testId: string = 'nested-test';
public static styles = [
css`