Describe the bug
import { CreateFormGroupArgs } from '@progress/kendo-angular-scheduler'; is not working, because that type has not been exported.
Instead, I have to resort to this:
import {CreateFormGroupArgs} from '@progress/kendo-angular-scheduler/dist/es2015/editing-directives/create-form-group-args.interface';
Expected behavior
It should work - the documentation even says it should work: https://www.telerik.com/kendo-angular-ui/components/scheduler/editing/editing-directives/
Additional context
I am using the latest dev version: 0.10.0-dev.201903080807
Fix available in latest dev build.
Fix released in 0.10.0
Has this fix been pushed to the main branch yet?
@xinthose Yes 馃憤
@Raisolution OK. Well, I was still having problems for some reason.
Please, check that you're using v0.11.0:
npm ls @progress/kendo-angular-scheduler
It might be necessary clean-up lock files and reinstall to get the latest version:
rm -rf node_modules package-lock.json
npm install
@tsvetomir Thank you. I changed this line and got the latest version:
"@progress/kendo-angular-scheduler": "^0.4.1", ==> "@progress/kendo-angular-scheduler": "latest",