BREAKING CHANGE(decorators): Migrate to TC39 standard decorators (accessor) across components, update tsconfig and bump dependencies
This commit is contained in:
@@ -48,28 +48,28 @@ export class DeesSpeechbubble extends DeesElement {
|
||||
@property({
|
||||
type: Object,
|
||||
})
|
||||
reffedElement: HTMLElement;
|
||||
accessor reffedElement: HTMLElement;
|
||||
|
||||
@property({
|
||||
type: String,
|
||||
reflect: true,
|
||||
})
|
||||
public text: string;
|
||||
accessor text: string;
|
||||
|
||||
@property({
|
||||
type: Boolean,
|
||||
})
|
||||
public wave: boolean = false;
|
||||
accessor wave: boolean = false;
|
||||
|
||||
@property({
|
||||
type: Boolean,
|
||||
})
|
||||
public manifested = false;
|
||||
accessor manifested = false;
|
||||
|
||||
@property({
|
||||
type: String,
|
||||
})
|
||||
public status: 'normal' | 'pending' | 'success' | 'error' = 'normal';
|
||||
accessor status: 'normal' | 'pending' | 'success' | 'error' = 'normal';
|
||||
|
||||
public windowLayer: DeesWindowLayer;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user