Heo
Heo
Can you try #329 ?
Angular recommends ng-packagr to make angular library. But it seems angular-froala-wysiwyg use `ngm-cli` to build. Angular team consider ng-packagr based library to compatible with ivy compiler. I can try to...
@mgm87 Angular 8.2.3 supports differential loading in cli build process (Differential loading requires ES5, ES2015, UMD build artifacts). But angular-froala-wysiwyg only have umd build artifacts now. https://docs.google.com/document/d/1Dije0AsJ0PxL3NaeNPxpYDeapj30b_QC0xfeIvIIzgg/preview# As this official...
I guess #329 will resolve these issue. We have to use `ng-packagr` to build Angular library. angular-froala-wysiwyg still use `ngm` cli to build library. ngm cli is not maintained for...
@1-0-1 Thanks for sharing. I resolved all conflicts in #329 . Hope it could be merged. :)
i got same problem. Also ` [(froalaModel)]="content" ` not works. It only works with `[froalaModel]="content" (fraolaModelChange)="content = $event"`
I found one more error case.   ``` background-image: url($file-1x); ```
Related: https://github.com/angular/angular-cli/pull/24285 PR
In my case, i got the same error in production and its call stack trace is related with `hydrate` function. https://github.com/angular/angular/blob/254023a03c3aaa26e2d01c02f9b9933b82fd971e/packages/core/src/di/r3_injector.ts#L387 the related codes is here. (`22:120020 line` in vendor.js)...
```html ... ``` ```typescript @Component({ ... }) export class AComponent { @ViewChild('swiper') swiperComponent: SwiperComponent; goTo() { this.swiperComponent.swiper. slideTo(4); // or 5 } } ``` You can call Swiper API through...