1562 comments found.
I have been trying to reach out regarding my ticket number #3682362 for the past three days but have not received a response. I am encountering an issue where the build file, heroicons, and fonts (inter.css) are not loading in the browser, resulting in a 404 error. This appears to be related to a router problem.
Could you please provide some guidance on this matter? I am currently using the latest version with the public folder. If possible, could you also provide access to a previous version that does not use the public folder?
Please revert on this ticket as soon as possible.
We don’t have any issues with our Demo app. It builds fine but we will get back to you.
If you update your ticket with extra comments, the system will put you at the back of the line every time. Please be patient and we will get back to you.
Cheers
Hey, after latest changes there is no module where is using keycloak. Could you tell me how to handle this case right now ?
You can still use NgModules with Standalone projects. Please see the Angular documentation: https://v17.angular.io/guide/standalone-components#configuring-dependency-injection
You can use “importProvidersFrom” method to provide NgModules.
Hi, since the last update routerLink is no more working to navigate from a page to another one using anchor tag, can you please fix it ? I tested it on a freshly downloaded starter.
Hello,
That’s impossible since our Demo app works fine. Our entire left navigation is consist of anchor elements with routerLink directive on them and they work just fine.
There must be something you are missing, like an import or something similar.
Cheers
Hello, I’d like to know why the images were moved to the public folder. In other words, what is the use of this moving. Does this have a possible impact on performances ?
Hello,
That’s not our decision, Angular v18 comes with public directory by default:
https://github.com/angular/angular-cli/pull/27006Thanks
Hi, it seems that version 20.0.0 that it’s shown in the demo is not available yet for download.
It will, be patient please. You can already grab it from Github.
Yes already got it from there! Thx
Hi! I think there must be a small bug with the form option ” Label and Placeholder”. It seems impossible to have both a label and a placeholder. It acts exactly the same as ” Label and Placeholder on focus” in the demo. Its not easy to implement a workaround. Can you please take a look?
Hello,
Thank you for the report. I’ll check this and fix it before the next release.
Cheers.
Hi, v18 is out, I know that’s not easy to update the entire system, but do you have an idea of how long it will take?
Any chance for the Calendar App in the next update?
Thank you for the attention.
Hello,
This one will take some time as I’m also going to prepare the Fuse for the upcoming, bigger changes such as signal components and SSR.
I’ll try including the Calendar app as well but I cannot promise as there are a lot changes that need to be implemented.
Hi,
I’ve been encountering significant slowdowns in the Chrome DevTools Element tab when trying to inspect elements or modify CSS styles. This issue persists across multiple devices, and it’s worth noting that the previous version of the template didn’t exhibit the same problem. I’m wondering if the abundance of CSS variables might be contributing to this issue. Any assistance you can provide would be greatly appreciated.
Hello,
Sorry about the late reply. For the next couple of days/weeks, I may be a little slower to reply to everything since I’m working on the new update.
I don’t have this problem myself, but will do another look. Majority of the CSS custom properties are coming from Angular Material. I don’t think they can cause such an issue but if they do, there isn’t much I can do about it since I have no control over them.
When removing *, ::before, ::after class from style.css that is included from @tailwind base the dev tools function normal, is there a way remove it on development ?
Those have crucial css styles added by Tailwind itself. Removing them could result with broken styles.
Good one! Question 1: How do I add a new a new component in the common. I created a new one to mimic the settings. After importing into layoutComponent, but I get an error “cant find modules” .
where am I suppose to register the modules. Also, the settings wasn’t registered anywhere (can’t find it at least)
Question 2: when a color is changed (by say an admin) can the color changed be retained when another user sign-in?
Q3: How can I use classic layout as default and modern layout for some pages at the same time. I tried this in the app routes but its not working
Hello,
Please use our support ticket system at https://withinpixels.ticksy.com for your support requests.
Cheers
How do i set dense layout by default? Or how can i storage in a cookie layout once is picked.
Hello,
Currently Fuse doesn’t support different density options. This will be available with Angular Material 3. Once Angular Material team completes the migration to new theming system, Fuse will be updated as well.
Hi,
Will there be a simple path to upgrade from 19.1.0 to the next major update or we will need to start from scratch on the new version?
Hello,
It depends on the Angular team.
If they transition Signals (and everything related to it) to stable in the next version (v18), then the next major update of Fuse will require a complete rewrite of most components using Signals. In that scenario, upgrading will not be straightforward.
Otherwise, the next update will be a small Angular v18 compatibility update, which will be easy to upgrade.
Cheers
Hi. Do you remember back in the day before Angular v12, before you rewrote the new template, you couldn’t pull down to refresh? Well, I was wondering if you can tell me where I can find that fix in the new template? I need to disable it for a specific purpose of mine. Thanks in advance.
Hello,
It was a design flaw in older versions rather than a fix in the new one.
Previously, Angular Material components, especially those using the Overlay component such as Dialog, Tooltip, Menu, and etc. would require body scroll to be locked.
This was a requirement so these components can lock the scrolling element when they show up to prevent content jumping, layout shifts and such. Therefore, in older versions of Fuse Angular, we were locking the body scroll by hiding the overflow and fixing its height to 100%. It had a scrolling container div within the body with appropriate class names so Angular Material could stop its scrolling behavior when it’s necessary.
Nowadays, they have better solutions because of modern browsers so we don’t lock the body scroll anymore as it can cause accessibility issues.
Not sure if there are solutions to prevent the pull down the refresh functionality without locking the body scroll but this is why it wasn’t working on previous versions of Fuse.
Cheers
Hi – I am looking for a timeline control component similar to this (please see link below) to use in the Fuse Angular Project. Do you have any recommendations? Let me know. Thanks.
https://ibb.co/sqw7N7pHello,
I don’t have any recommendations for a similar component, unfortunately.
Cheers
Dear All, Will they have a date for when they will integrate the calendar application again? It is crucial for my project and I had to disable it when they removed it.
Stay tuned
Hello,
We are planning to add the Calendar component back in the next major update if everything goes smoothly.
Cheers
Hello,
I’m trying to implement power bi dashboard in Angular fuse template v 17.2.0 but to install npm package powerbi-client and powerbi-client-angular I get the next error messages and I can´t continue to start:
Error: src/@fuse/components/fullscreen/fullscreen.component.ts:25:23 – error TS2352: Conversion of type ‘Document’ to type ‘FSDocument’ may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to ‘unknown’ first. Types of property ‘webkitExitFullscreen’ are incompatible. Type ‘void’ is not comparable to type ‘() => void’.
25 this._fsDoc = _document as FSDocument; ~~~~~~~~~~~~
Error: src/@fuse/components/fullscreen/fullscreen.types.ts:1:18 – error TS2430: Interface ‘FSDocument’ incorrectly extends interface ‘HTMLDocument’. Property ‘mozCancelFullScreen’ is optional in type ‘FSDocument’ but required in type ‘HTMLDocument’.
1 export interface FSDocument extends HTMLDocument ~~~~~
I tried to solve this in FuseFullscreenComponent but not working
constructor(@Inject(DOCUMENT) private _document: Document) { this._fsDoc = _document as unknown as FSDocument; }
errors are not resolved in fullsrceen.type.ts
Help me!!
Hello,
Can you please open a support ticket at https://withinpixels.ticksy.com
We will get back to you as soon as possible.
Cheers
Hi all,
I am trying to import fuse to a multi-project angular workspace. Are there any guides on how to proceed?
Hello,
We don’t have a specific guide for this but if you have any trouble, let us know through our ticket system and we will do our best to figure out any issues you may have.
Cheers
Can’t find the Chat application, its is real ?
Everything you see in the Demo is included.
Make sure you are looking at the correct package since there are two of them included into the zip file; one for Demo and another one for the Starter.
Starter doesn’t include the example pages and applications but Demo has everything.
Cheers
Hello, is it safe to upgrade to angular 17 (or at least 16) for this theme? We have a huge problem with ”@angular/flex-layout” that seems to be deprecated after Angular 13. I see that officially you are supporting only 14.
Thanks!
Fuse already uses Angular v17 , you can see that from the item title. Don’t look at the compatibility list as Themeforest doesn’t update them timely.
Cheers
Thanks man!
Has everything already been migrated to stand alone components?
Yes, all components are standalone components.
Hi, is there a component to change/upload a profile photo? I can’t find it in this template. If it doesnt exist are you able to update the template with this example?
Hello,
We don’t have a specific component for this. Will add this to our suggestions list.
Cheers