Great video! Thank you very much. Is there any statement from Angular Material about their commitment to the tokens? Will they stay stable?
@ZoaibKhan7 ай бұрын
Yes, there is a mention of them being "stable" in the FAQs for v17 and a schematic to be provided in case they change before being stable. v17.material.angular.io/guide/material-3#can-i-depend-on-the-css-custom-property-names-being-stable
@raul8347 ай бұрын
@@ZoaibKhan thank you again. You got my subscription. I have been looking at lots of Angular videos and your channel must be one of the best.
@ZoaibKhan7 ай бұрын
@@raul834 🙏
@stevewitman7 ай бұрын
In the new Angular Material v18, what is new/different with customizing the overall color theme? Also, will there be any additional options for global theme customization (things that apply to all or many of the Angular Material components) besides the color, typography and density that is available in v17? Maybe this could be another video.
@ZoaibKhan7 ай бұрын
The theming config is basically the same - color, typography and density. But the color theming API seems simpler requiring only two color palettes, primary and tertiary. Also there's a utility for generating a material theme based on a single primary color hue - which I think will be very useful! Will be discussing quicker ways of theming in next video
@CodeZakk7 ай бұрын
hi instead of using host can you show us how to apply the styles in css directly thanks!
@ZoaibKhan7 ай бұрын
Hey Zakk, you can just set the relevant CSS variable/property directly in the styles under a class name and then apply that class to wherever you want to apply it
@javascript_developerАй бұрын
Great. thank you for making this. It make angular material customized very easy. I recently upgraded my angular app from 16 to 18. And yes this technique helped me to understand better about material.
@ZoaibKhanАй бұрын
Great to hear that! And you're welcome :)
@stevewitman7 ай бұрын
Awesome! This is great news!
@substance9011 күн бұрын
5:00 been there, done that. It was painful, believe me!
@yelose857 ай бұрын
Great video! I can't wait to try it!
@ZoaibKhan7 ай бұрын
Hope you like it! 😀
@HypemanWaz6 ай бұрын
Vid put toghether nicely. Would like to hear more about the host component prop.
@ZoaibKhan6 ай бұрын
Glad you liked it! The host component binding is the best way currently to bind attributes and css classes on the component with signals. That's why I've used it here in this way.
@skitto65547 ай бұрын
You are the man!!!
@ZoaibKhan7 ай бұрын
🙏
@kylerjohnson9887 ай бұрын
Thanks for the great demo and explanation.
@ZoaibKhan7 ай бұрын
You're welcome, Kyler! Glad you found it useful :)
@fityfive2 ай бұрын
this was very helpful , im stressing about upgrading angular as the material issues have been holding me back. this video gave me some hope although i still know it's going to be agonising.
@ZoaibKhan2 ай бұрын
I know how it feels, been through a painful migration myself. Good luck and hope it goes well! 🤞
@sachetacharya4775 ай бұрын
Angular material Custom theme not working in angular 18
@ZoaibKhan5 ай бұрын
Are you using the material 3 guide? Because the syntax has changed a bit
@LarsRyeJeppesen7 ай бұрын
Great , thank you
@ZoaibKhan7 ай бұрын
Glad you liked it! 😊
@BJAnderson6 ай бұрын
Great video. Thanks for the effort! You can use sass to compile your styles.scss file into styles.css and it will have all the css variables defined in there. Add this to your package.json scripts: "sass": "sass --load-path ./node_modules --load-path ./ --no-source-map", "sass:styles": "npm run sass src/styles.scss ./tmp/styles.css", Then run npm run sass:styles The generated css file will be in the tmp folder under your project root. If you have your material config defined in a different file, you have to compile that file instead of styles.scss... There are about 850 --mat-* css variables defined in my styles.css in Ng18
@ZoaibKhan6 ай бұрын
Oh, nice way of finding out all design tokens! Thanks for the input 🙏
@aqibjabbar59147 ай бұрын
Overall, its good, but i am experiencing ng-deep is deprecated now, and its not a good approach , use Host something like that, I think so
@ZoaibKhan7 ай бұрын
Ng deep is coming back soon :p
@radvilardian7407 ай бұрын
the worst thing about angular is angular material, everytime u do upgrade version it breaks really hard, again and again.
@ZoaibKhan7 ай бұрын
It should get better on this count with design tokens and easier customization! :)
@wilfredomartel77816 ай бұрын
🎉
@ZoaibKhan6 ай бұрын
👍👍
@upcom1ng1162 ай бұрын
Your title said 18 but the video clearly shows 17.3.6,
@ZoaibKhan2 ай бұрын
Yes, the customization options were experimental in 17, but are stable in v18 onwards