David Enke
David Enke
The problem is that the `loadingBarTemplate` template is not compiled. A little workaround is to manually trigger the compiler at runtime. You can use the `cfpLoadingBar:started` event for that. ```...
Here is an [example](https://plnkr.co/S6yIDjtBhCPzczcWgObF) with an indeterminate linear progress bar.
Just a little Typescript alternative without the `any`s: ```ts import _ from 'lodash'; import Benchmark from 'benchmark'; // declare the global property declare global { interface Window { Benchmark: typeof...
Sorry for the late response. Unfortunately you have to do it yourself, the keyboard components do all have CSS-classes or its components tag names. But you're right, we really need...
I think you have an issue with your layout. If it relates to this component please provide an example.
Looks like a simple string cast is missing.
I think the responsible issue is the missing binding of ngControl (ngModel), as already determined by @digaus. Unfortunately, I had to little time for this project. But I hope it'll...
You're right. Unfortunately not yet :( I hope to get my hands on this project again soon...
Sorry for the late reply: what do you mean with "mask"? Could you provide an example please?
What you're doing is basically covered by the structural directive which should be preferred for binding inputs to the keyboard. For now there's no way for setting a base config,...