Utils
In the utils folder you will find different angular features such as modals, file uploader, alerts, notifications and more.
Last updated
Was this helpful?
In the utils folder you will find different angular features such as modals, file uploader, alerts, notifications and more.
Last updated
Was this helpful?
There are 2 different modals with login and signup examples
We use component
For alerts we created an Alert Component which is defined in shared module.
You can pass the following options to the alert component:
In src/app/utils/pages/alerts/alerts.page.component.ts
you can find some of the different alerts you can create using this Alert Component.
We included different options to upload files, learn more in src/app/utils/pages/file-uploader/file-uploader.page.component.html
We created a FileUploaderDirective which you can find in Shared Module.
Check src/app/utils/pages/auto-completer/auto-completer.component.html
to learn more.
For notifications we created a Notification Component which is defined in shared module.
In src/app/utils/pages/notifications/notifications.page.component.ts
you can find some of the different notifications you can create using this Notifications Component.
You can pass the following options to the notifications component:
We used component to create some nice autocomplete input examples.
We use component