Customizing Angular Material just got easier in v18!

แชร์
ฝัง
  • เผยแพร่เมื่อ 25 พ.ย. 2024

ความคิดเห็น • 37

  • @javascript_developer
    @javascript_developer 27 วันที่ผ่านมา

    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
      @ZoaibKhan  26 วันที่ผ่านมา

      Great to hear that! And you're welcome :)

  • @fityfive
    @fityfive หลายเดือนก่อน

    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.

    • @ZoaibKhan
      @ZoaibKhan  หลายเดือนก่อน

      I know how it feels, been through a painful migration myself. Good luck and hope it goes well! 🤞

  • @stevewitman
    @stevewitman 6 หลายเดือนก่อน +3

    Awesome! This is great news!

  • @BJAnderson
    @BJAnderson 5 หลายเดือนก่อน +1

    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

    • @ZoaibKhan
      @ZoaibKhan  5 หลายเดือนก่อน +1

      Oh, nice way of finding out all design tokens! Thanks for the input 🙏

  • @kylerjohnson988
    @kylerjohnson988 6 หลายเดือนก่อน +2

    Thanks for the great demo and explanation.

    • @ZoaibKhan
      @ZoaibKhan  6 หลายเดือนก่อน

      You're welcome, Kyler! Glad you found it useful :)

  • @yelose85
    @yelose85 6 หลายเดือนก่อน +2

    Great video! I can't wait to try it!

    • @ZoaibKhan
      @ZoaibKhan  6 หลายเดือนก่อน

      Hope you like it! 😀

  • @HypemanWaz
    @HypemanWaz 5 หลายเดือนก่อน +1

    Vid put toghether nicely. Would like to hear more about the host component prop.

    • @ZoaibKhan
      @ZoaibKhan  5 หลายเดือนก่อน

      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.

  • @skitto6554
    @skitto6554 6 หลายเดือนก่อน +1

    You are the man!!!

    • @ZoaibKhan
      @ZoaibKhan  6 หลายเดือนก่อน +1

      🙏

  • @stevewitman
    @stevewitman 6 หลายเดือนก่อน +1

    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.

    • @ZoaibKhan
      @ZoaibKhan  6 หลายเดือนก่อน +1

      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

  • @LarsRyeJeppesen
    @LarsRyeJeppesen 6 หลายเดือนก่อน +1

    Great , thank you

    • @ZoaibKhan
      @ZoaibKhan  6 หลายเดือนก่อน +1

      Glad you liked it! 😊

  • @raul834
    @raul834 6 หลายเดือนก่อน +1

    Great video! Thank you very much. Is there any statement from Angular Material about their commitment to the tokens? Will they stay stable?

    • @ZoaibKhan
      @ZoaibKhan  6 หลายเดือนก่อน +2

      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

    • @raul834
      @raul834 6 หลายเดือนก่อน

      @@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.

    • @ZoaibKhan
      @ZoaibKhan  6 หลายเดือนก่อน

      @@raul834 🙏

  • @CodeZakk
    @CodeZakk 6 หลายเดือนก่อน

    hi instead of using host can you show us how to apply the styles in css directly thanks!

    • @ZoaibKhan
      @ZoaibKhan  6 หลายเดือนก่อน

      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

  • @aqibjabbar5914
    @aqibjabbar5914 6 หลายเดือนก่อน +1

    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

    • @ZoaibKhan
      @ZoaibKhan  6 หลายเดือนก่อน

      Ng deep is coming back soon :p

  • @sachetacharya477
    @sachetacharya477 4 หลายเดือนก่อน

    Angular material Custom theme not working in angular 18

    • @ZoaibKhan
      @ZoaibKhan  4 หลายเดือนก่อน

      Are you using the material 3 guide? Because the syntax has changed a bit

  • @radvilardian740
    @radvilardian740 5 หลายเดือนก่อน

    the worst thing about angular is angular material, everytime u do upgrade version it breaks really hard, again and again.

    • @ZoaibKhan
      @ZoaibKhan  5 หลายเดือนก่อน

      It should get better on this count with design tokens and easier customization! :)

  • @wilfredomartel7781
    @wilfredomartel7781 5 หลายเดือนก่อน

    🎉

    • @ZoaibKhan
      @ZoaibKhan  5 หลายเดือนก่อน

      👍👍

  • @upcom1ng116
    @upcom1ng116 หลายเดือนก่อน

    Your title said 18 but the video clearly shows 17.3.6,

    • @ZoaibKhan
      @ZoaibKhan  หลายเดือนก่อน +1

      Yes, the customization options were experimental in 17, but are stable in v18 onwards

  • @sow-jr4xr
    @sow-jr4xr 5 หลายเดือนก่อน

    waste video :(

    • @ZoaibKhan
      @ZoaibKhan  5 หลายเดือนก่อน +1

      Thanks for your comment...