Update style modifier for new structure

pull/19226/head
wenincode 2023-10-13 15:13:43 -06:00 committed by Chris Hut
parent 0519b9bd73
commit 50cbd00683
1 changed files with 8 additions and 6 deletions

View File

@ -40,15 +40,17 @@ export default class StyleModifier extends Modifier {
this._oldStyles = new Set(newStyles.map((e) => e[0]));
}
didReceiveArguments() {
if (typeof this.args.named.delay !== 'undefined') {
modify(element, positional, named) {
this.element = element;
if (typeof named.delay !== 'undefined') {
setTimeout((_) => {
if (typeof this !== this.args.positional[0]) {
this.setStyles(this.args.positional[0]);
if (typeof this !== positional[0]) {
this.setStyles(positional[0]);
}
}, this.args.named.delay);
}, named?.delay);
} else {
this.setStyles(this.args.positional[0]);
this.setStyles(positional[0]);
}
}
}