BREAKING CHANGE(decorators): Migrate to TC39 standard decorators (accessor) across components, update tsconfig and bump dependencies

This commit is contained in:
2025-11-17 13:27:11 +00:00
parent 70c29c778c
commit 92f69e2aa6
75 changed files with 2142 additions and 1901 deletions

View File

@@ -83,15 +83,15 @@ export class DeesMobilenavigation extends DeesElement {
@property({
type: String,
})
public heading: string = `Menu`;
accessor heading: string = `Menu`;
@property({
type: Array,
})
public menuItems: plugins.tsclass.website.IMenuItem[] = [];
accessor menuItems: plugins.tsclass.website.IMenuItem[] = [];
@state()
private mobileNavZIndex: number = 1000;
accessor mobileNavZIndex: number = 1000;
readyDeferred: plugins.smartpromise.Deferred<any> = domtools.plugins.smartpromise.defer();