in src/app/main/main.component.ts [544:555]
private reportStyles() {
for (const styleProperty of Object.keys(this.stylesFormGroup.getRawValue())) {
const style = this.styles[styleProperty];
if (style?.isComputed && style?.function) {
this.analyticsService.report(`${styleProperty}`, 'visualize', style.function);
} else if (!style?.isComputed && style?.value) {
this.analyticsService.report(`${styleProperty}`, 'visualize', 'global');
} else {
this.analyticsService.report(`${styleProperty}`, 'visualize', 'none');
}
}
}