306,928 questions
0
votes
0
answers
8
views
Can you implement a PrimeNG SelectItem as a menu item that retains focus?
I have a front-end Angular app that uses a PrimeNG SelectItem interface to implement the application's main menu.
/**
* Represents an option item.
* @group Interface
*/
export interface SelectItem&...
1
vote
0
answers
17
views
Can´t prerender on build
I have just set up a very basic test Angular 19 app with SSR, but I keep getting the following error message when I use the Prerender Rendermode and I build the app (ng build):
ERROR re [Error]: ...
0
votes
0
answers
21
views
Why would an Angular 13 to 19 bundle optimization refactor result in larger chunks transferred on the network?
I have an older app built in v13, where all the 10 components live in the app module. All components and deps come at the same time, even if they're meant to be served piece by piece, resulting in an ...
1
vote
0
answers
24
views
SonarQube shows 0% coverage for Angular (LCOV exists) while .NET coverage is OK
I run a single batch script to analyze a mixed solution: .NET backend + Angular frontend.
The .NET coverage (OpenCover) is imported correctly, but Angular/TypeScript coverage always shows 0% in ...
0
votes
0
answers
19
views
Status bar issues in iPhone - Ionic Angular Capacitor
I am getting a strange error in my ionic ios app. When I click on any input or I go out of the app and return back to it from the background, my whole app gets squeezed.
Ionic version: 7.2.1
Capacitor ...
1
vote
2
answers
29
views
Angular + Spring Boot: file download blocks until fully received (needs “save as” first, then stream in background)
I have an Angular frontend calling a Spring Boot endpoint that returns a CSV (with JWT auth). The download currently does not start immediately: the browser finishes downloading the whole file in the ...
0
votes
0
answers
15
views
Issue with ag grid tree data structure V26
I have this configuration for my ag grid tree data :
QuoteLineItemsGrid: GridOptions = {
columnDefs: this.initQuoteLineItemsGrid(),
domLayout: 'autoHeight',
rowSelection: 'single',
sideBar: {
...
-2
votes
0
answers
16
views
In unit tests it is showing NoValueAcessor error [closed]
Chrome Headless 93.0.4577.0 (Windows 10) SolicitationCreateComponent should create FAILED error properties: Object({ longStack: 'Error: No value accessor for form control with unspecified ...
1
vote
0
answers
58
views
In Angular, a awaited method call, kicks you out of the NgZone. Why?
When you do a simple call like await Promise.resolve() inside an Angular component, the code below that call will not be inside the zone anymore.
The easiest way to reproduce this is to create a ...
0
votes
1
answer
54
views
Bold Report Viewer (Angular Embedded) - 401 Unauthorized Network call
I am using Bold Report Viewer embedded in an Angular application (Angular 13). When loading a report, I get this error:
A network failure, slow connection, or incorrect service information could be ...
0
votes
0
answers
15
views
ng-inline-svg-2 3rd Party Package doesn't work anymore after Update Angular19 [closed]
I migrated my Angular Project on my local prototype project. After the migration ng-inline-svg-2 package occurs errors. Do you have any solution or I can get new 3rd party package recommendations.
1
vote
2
answers
42
views
Angular Animations Final State not persisting
I'm trying to define an ':enter' animation that runs and then the final state sticks. Specifically, I'm trying to code a progress bar that stretches to its width when page loads and then stays. But ...
-1
votes
0
answers
30
views
Why the Echo listen method doesn't works well?
I want to make a realtime updates in a application, so I made the next event in Laravel.
<?php
namespace App\Events;
use App\Models\Note;
use Illuminate\Broadcasting\Channel;
use Illuminate\...
1
vote
1
answer
39
views
Build of angular library with ng-packagr fails for json translation files not found
I migrated one of our projects from Angular 18 to Angular 20.
The projects is strutured in this way:
project_name
-- projects
---- frontend
---- lib
------ src
------ lib
-------- i18n
-------- public-...
1
vote
1
answer
40
views
Nx with Angular did not create lib below libs folder
I executed the following:
npx nx g @nx/angular:library ui-common-lib --standalone --style=scss --buildable --importPath=@acme/ui-common-lib
nx.json contains:
workspaceLayout": {
"appsDir&...