Krzysztof Platis

Results 15 comments of Krzysztof Platis

Hey @ffoodd Thank you all Bootstrap folks for doing the great job of maintaining 2 major release versions: v5 and v4! In our [project](https://github.com/SAP/spartacus/) we still depend on Bootstrap v4....

✅ **Lazy loaded chunks:** In the fresh app, the comparison of JS chunks in dev mode looks as expected (a little more bytes in `main` js, more in the lazy...

This approach was rejected by visual designers as not consistent with other views. Moreover it doesn't make sense, when we'll change the design of alerts, to have a solid border...

Hi @octogonz When running API Extractor for each library separately in the monorepo, to my surprise, in the API report of certain library I get full declarations of the types...

When creating a custom Angular library, the flattened d.ts file in public_api allows the library consumers for easy [type augmentation](https://www.typescriptlang.org/docs/handbook/declaration-merging.html#module-augmentation). For example a library user might want want to extend...

This issue is a bummer **also for 3rd party Angular library authors that depend on REQUEST/RESPONSE tokens.** Now the library users that create a fresh Angular 17+ app (with application...

Hi @alan-agius4, thanks for linking this issue to a related one. Now I tried simply re-throwing an error from my custom ErrorHandler, as somebody advised in the comment https://github.com/angular/angular/issues/33642#issuecomment-557199699 ....

> Returning 500 will cause application to be rendered completely, this was previously something that we deemed bad users experience as a better UX would to re-retry the request when...

Agreed. Duplicate. I have problem to understand what did you mean by "returned in form of diagnostics?". Could you give an example?

@JoostK I agree. The solution is to craft the library consciously so each component's logic is moved an abstract component class. And each actual component (with templates) would `extend` (in...