We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e69525 commit 3ea7365Copy full SHA for 3ea7365
tns-core-modules/ui/core/properties/properties.ts
@@ -570,7 +570,11 @@ export class CssAnimationProperty<T extends Style, U> {
570
const propertyName = options.name;
571
this.name = propertyName;
572
573
- CssAnimationProperty.properties[options.cssName || propertyName] = this;
+ CssAnimationProperty.properties[propertyName] = this;
574
+ if (options.cssName && options.cssName !== propertyName) {
575
+ CssAnimationProperty.properties[options.cssName] = this;
576
+ }
577
+
578
this._valueConverter = options.valueConverter;
579
580
const cssName = "css:" + (options.cssName || propertyName);
0 commit comments