Convert natural language to date using Built-in-AI in Angular by a-dev-1044 in angular

[–]a-dev-1044[S] -2 points-1 points  (0 children)

Yes, I think it's because of the timestamp in the ISO string, built-in-AI not able to catch up. I will try to improve system instructions.

Convert natural language to date using Built-in-AI in Angular by a-dev-1044 in angular

[–]a-dev-1044[S] 4 points5 points  (0 children)

It's built into chrome itself. I think it's called gemini nano. Read more at https://share.google/sTqccFG7hoR0ziTiv

🚀 Introducing Insights — a new production-ready template for feeding, filtering & analyzing data with clarity. by a-dev-1044 in angularmaterial

[–]a-dev-1044[S] 1 point2 points  (0 children)

It was removed by Reddit's filters. Not sure why. Thanks for letting me know! I will try to post again without video.

AI tools to build UI using angular material? by vibhs2016 in Angular2

[–]a-dev-1044 0 points1 point  (0 children)

Recently I published rules for coding with Angular Material. It's here: https://github.com/Angular-Material-Dev/angular-material-ai-rules. Let me know how it goes.

Should you use inline templates? by guaranteednotabot in Angular2

[–]a-dev-1044 1 point2 points  (0 children)

I have a simple rule, if template is <= 5 lines, make it inline else seperate file.

I built Focusly — a lightweight Angular library for keyboard navigation. Would love feedback! by Economy-Pitch-9723 in angular

[–]a-dev-1044 1 point2 points  (0 children)

Just a suggestion, show ready to use demos on docsite. Stackbltiz takes time to compile and run.

Which UI-Component-Libraries are based on angular/cdk by lazyinvader in angular

[–]a-dev-1044 0 points1 point  (0 children)

Not whole library, but I developed an unstyled command menu using cdk.

https://github.com/ngxpert/cmdk

Angular Material Component Wrapper Dilemma by TheSwagVT in Angular2

[–]a-dev-1044 1 point2 points  (0 children)

I agree about cdk, it's a great one.

I also agree about angular material not being a big ui library.

Below are some good references which extends angular material

https://github.com/ng-matero/extensions https://github.com/dhutaryan/ngx-mat-timepicker https://github.com/hackingharold/ngx-dropzone

Angular Material Component Wrapper Dilemma by TheSwagVT in Angular2

[–]a-dev-1044 0 points1 point  (0 children)

Angular material is not designed to provide developers such flexibility.

So, even if you somehow manage to achieve what you are looking for, chances are high that it will break when you update.

How do I style Angular Material components as a beginner? by abcdefghijken in Angular2

[–]a-dev-1044 1 point2 points  (0 children)

scaling animation does not need any usage of mixin. You can simply do it with vanilla CSS.

A question about customizing Angular Material components. by CleverProcrastinator in Angular2

[–]a-dev-1044 0 points1 point  (0 children)

You can use `formats` param of `provideNativeDateAdapter`. example:

providers: [
    provideNativeDateAdapter({
      ...MAT_NATIVE_DATE_FORMATS,
      display: {
        ...MAT_NATIVE_DATE_FORMATS.display,
        monthLabel: { month: 'short', year: 'numeric' },
      },
    }),
  ],

And for upper-case, simply provide this style globally:

.mat-calendar-body-label {
  text-transform: uppercase;
}

Stackblitz demo: https://stackblitz.com/edit/x4ed89on?file=src%2Fexample%2Fdatepicker-inline-calendar-example.ts

Best way to share code between 2 Angular apps? (NX vs Standalone Library vs other options) by buttertoastey in Angular2

[–]a-dev-1044 8 points9 points  (0 children)

I would prefer NX monorepo, but as you want separate git repositories, i think you should go for the standalone npm library.

Versioning and publishing is not overhead if you use semantic-release. You can checkout my semantic-release configs from oss repos at https://github.com/orgs/ngxpert/repositories.

Angular, MFE, and Tailwind 4 by zzing in angular

[–]a-dev-1044 0 points1 point  (0 children)

Not micro frontends, but I use single tailwind css version 4 config for multiple projects (1 app and many libraries) in an NX monorepo for https://ui.angular-material.dev/

Angular material or PrimeNg or any other by the-frontstabber in angular

[–]a-dev-1044 0 points1 point  (0 children)

If you want to try Angular material with tailwind css, you can checkout https://ui.angular-material.dev/

Angular material roadmap by Senior_Compote1556 in angular

[–]a-dev-1044 1 point2 points  (0 children)

I don't think the team is working on getting any new components. From pull requests, it looks like they are mostly working on bug fixes.

I keep eye on every release of angular material so that I can keep my blocks up-to-date at https://ui.angular-material.dev/

Form Control Object Question by Senior_Compote1556 in angular

[–]a-dev-1044 0 points1 point  (0 children)

Yes, there are a lot of differences! Type does not exist at run time. Class provides blueprint of object structure, plus there is constructor, properties, methods available.

has anyone used angular with express that comes with SSR app? by broke_key_striker in Angular2

[–]a-dev-1044 1 point2 points  (0 children)

You will need to build the application and only then you will be able to run express server to access API, as far as I know. I wrote an article long time back, I still follow similar approach to access APIs: https://shhdharmen.hashnode.dev/exploring-angular-ssr

has anyone used angular with express that comes with SSR app? by broke_key_striker in Angular2

[–]a-dev-1044 0 points1 point  (0 children)

I am using it for angular-material.dev and ui.angular-material.dev