306,847 questions
0
votes
1
answer
46
views
HttpTestingController runs endlessly
In my component I have httpResource:
export class EmployeesComponent {
employees = httpResource<EmployeeResponseDtoOutput[]>(() => '/api/employees', {
defaultValue: [],
});
}
and in ...
0
votes
0
answers
24
views
How to implement rotation and custom node-based reshaping for SVG ellipse inside a resizable reference box? Using D3.js and angular 19
Reference: screen recording link
I’m working on a feature similar to Figma or Lucidchart where an ellipse (or circle) is placed inside a reference box (a square) with four corner handles for resizing.
...
1
vote
3
answers
58
views
Send Observable result to child component as Signal
In my code I am trying to get the result from this observable:
// Runs fine
obtenerOfertaPorId(id: number): Observable<Oferta> {
return this.http.get<Oferta>(`${this.apiUrl}${this....
-3
votes
0
answers
31
views
What does "NG8113: Home is not used within the template of App" mean [duplicate]
I was doing the tutorial from https://angular.dev/tutorials/first-app/11-details-page. I got the error message below:
NG8113: Home is not used within the template of App [plugin angular-compiler]
...
0
votes
0
answers
57
views
Attribute inputs vs explicit inputs in Angular [closed]
Which approach to passing static string values as inputs to an Angular component is considered a better practice and is more performant?
Pass input via an attribute
<some-component color="red&...
0
votes
0
answers
14
views
ngx cron editor not patching value on edit mode in angular12
I am using Angular 12 with the package [email protected]. The cron editor renders correctly, but when I try to patch an existing cron expression into my reactive form, the UI of the cron editor ...
Tooling
0
votes
2
replies
87
views
What tools does Angular team use to design svg?
I am reviewing Angular source code.
What tools does Angular team use to design these svg? I take some for example:
//adev/src/assets/images/overview.svg
//adev/src/assets/images/roadmap.svg
//adev/src/...
1
vote
0
answers
41
views
Angular Aria Autocomplete Feature - Compilation Error
I am working with a .NET + Angular WebApp Project
I added Angular Aria to the Angular project hoping to use their Autocomplete feature for a Select Box.
I copied the code directly from the first ...
-1
votes
0
answers
17
views
Ionic Angular ion-content inner-scroll has zero height on iOS preventing scrolling - all standard fixes attempted
I have an Ionic Angular application where scrolling is completely broken on iOS (Safari, Firefox, Edge - all WebKit-based). Desktop browsers work perfectly. The diagnostic evidence shows that the ....
0
votes
0
answers
34
views
PrimeNg OverlayPanel is displayed with and without scrolling for the same content
I use the PrimeNG OverlayPanel to display popups in my Angular app.
I noticed that for the same content, it sometimes displays a scrollbar and sometimes does not.
As you can see in the screenshots, ...
1
vote
0
answers
42
views
Filter on worksheet columns re-triggering excel office.js custom functions even when it is not volatile functions
Excel re-triggers custom functions created in office.js api addin, but from documentation it should only re-trigger the formulas which are volatile function and in office.js api to specify custom ...
0
votes
1
answer
49
views
Angular throws error on auxilary routing with lazy loading and params navigation
today I'm trying to create a simple chat page with chat list and chat window.
I tryed to implement it with auxilary routes, but some weird error stopped me.
CONTEXT:
I have an application - folder ...
-1
votes
0
answers
27
views
Angular 20 w Story 10 mocking a navigation click
I have an Angular 20 app, running Storybook 10. My component works perfectly, however, I'm trying to set up Storybook to mock a navigation link. I just can't seem to get it to work.
This is my ...
0
votes
0
answers
19
views
Angular + GoldenLayout iframe reloads every time panel is moved — how to prevent iframe from reloading?
I am using Angular 21 with GoldenLayout (v2).
Inside a GoldenLayout component, I load an external site inside an .
The problem:
Whenever I move the panel, drag it, dock it somewhere else, or resize ...
1
vote
1
answer
55
views
Angular Material: Programmatically setting MatSort does not update UI sort arrow
I'm working with an Angular Material table (mat-table) that has sorting enabled via matSort. Sorting works perfectly when I click on the column headers (mat-sort-header).
Now, I want to trigger the ...