daniel-seitz

Results 15 comments of daniel-seitz

What about 5.1? Would you edit the README.md?

1. The text states it. If you require CommonModule and/or FormsModule in your SharedModule, then import it there. If you require it in the CoreModule, import it there. If you...

P.S. while you're at it, Angular 11 is out already as well. What about making this package less restrictive and just specify the minimum version to avoid future issues like...

Also when multiple simultaneous requests are made, the bar gets confused about start and finish. Interesting would be to check if the bar is already running / has open requests.

Also the new HttpClient: `@angular/common/http` might provide some better options like interceptors to realize this. https://angular.io/guide/http#intercepting-all-requests-or-responses

Does using decimalMarker="," fix your issue?

Same here: ``` @Selector() static hasRole(role: AuthRoles): (state: AuthStateModel) => boolean { console.log('role', role) return createSelector([AuthState], (state: AuthStateModel) => { console.log('####################', state.roles, role) // error ``` results in ``` {...

We have the similar issue that if the date is not picked but written in the input and the written input is before the minDate or after the maxDate then...

Just wanted to open this as well. The problem lies in the position: absolute within .ng-select-single.ng-select .ng-select-container .ng-value-container **.ng-input** Not sure why this is specified. Doesn't seem to have any...